26.36/11.89 YES 28.66/12.58 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 28.66/12.58 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 28.66/12.58 28.66/12.58 28.66/12.58 H-Termination with start terms of the given HASKELL could be proven: 28.66/12.58 28.66/12.58 (0) HASKELL 28.66/12.58 (1) LR [EQUIVALENT, 0 ms] 28.66/12.58 (2) HASKELL 28.66/12.58 (3) CR [EQUIVALENT, 0 ms] 28.66/12.58 (4) HASKELL 28.66/12.58 (5) IFR [EQUIVALENT, 0 ms] 28.66/12.58 (6) HASKELL 28.66/12.58 (7) BR [EQUIVALENT, 2 ms] 28.66/12.58 (8) HASKELL 28.66/12.58 (9) COR [EQUIVALENT, 0 ms] 28.66/12.58 (10) HASKELL 28.66/12.58 (11) LetRed [EQUIVALENT, 0 ms] 28.66/12.58 (12) HASKELL 28.66/12.58 (13) NumRed [SOUND, 0 ms] 28.66/12.58 (14) HASKELL 28.66/12.58 (15) Narrow [SOUND, 0 ms] 28.66/12.58 (16) AND 28.66/12.58 (17) QDP 28.66/12.58 (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.66/12.58 (19) YES 28.66/12.58 (20) QDP 28.66/12.58 (21) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.66/12.58 (22) YES 28.66/12.58 (23) QDP 28.66/12.58 (24) DependencyGraphProof [EQUIVALENT, 0 ms] 28.66/12.58 (25) AND 28.66/12.58 (26) QDP 28.66/12.58 (27) TransformationProof [EQUIVALENT, 1199 ms] 28.66/12.58 (28) QDP 28.66/12.58 (29) DependencyGraphProof [EQUIVALENT, 0 ms] 28.66/12.58 (30) QDP 28.66/12.58 (31) TransformationProof [EQUIVALENT, 0 ms] 28.66/12.58 (32) QDP 28.66/12.58 (33) TransformationProof [EQUIVALENT, 0 ms] 28.66/12.58 (34) QDP 28.66/12.58 (35) TransformationProof [EQUIVALENT, 0 ms] 28.66/12.58 (36) QDP 28.66/12.58 (37) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.66/12.58 (38) YES 28.66/12.58 (39) QDP 28.66/12.58 (40) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.66/12.58 (41) YES 28.66/12.58 (42) QDP 28.66/12.58 (43) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.66/12.58 (44) YES 28.66/12.58 (45) QDP 28.66/12.58 (46) QDPSizeChangeProof [EQUIVALENT, 1 ms] 28.66/12.58 (47) YES 28.66/12.58 (48) QDP 28.66/12.58 (49) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.66/12.58 (50) YES 28.66/12.58 (51) QDP 28.66/12.58 (52) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.66/12.58 (53) YES 28.66/12.58 (54) QDP 28.66/12.58 (55) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.66/12.58 (56) YES 28.66/12.58 (57) QDP 28.66/12.58 (58) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.66/12.58 (59) YES 28.66/12.58 28.66/12.58 28.66/12.58 ---------------------------------------- 28.66/12.58 28.66/12.58 (0) 28.66/12.58 Obligation: 28.66/12.58 mainModule Main 28.66/12.58 module FiniteMap where { 28.66/12.58 import qualified Main; 28.66/12.58 import qualified Maybe; 28.66/12.58 import qualified Prelude; 28.66/12.58 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 28.66/12.58 28.66/12.58 instance (Eq a, Eq b) => Eq FiniteMap b a where { 28.66/12.58 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 28.66/12.58 } 28.66/12.58 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 28.66/12.58 addListToFM fm key_elt_pairs = addListToFM_C (\old new ->new) fm key_elt_pairs; 28.66/12.58 28.66/12.58 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 28.66/12.58 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 28.66/12.58 add fmap (key,elt) = addToFM_C combiner fmap key elt; 28.66/12.58 }; 28.66/12.58 28.66/12.58 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 28.66/12.58 addToFM_C combiner EmptyFM key elt = unitFM key elt; 28.66/12.58 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.66/12.58 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 28.66/12.58 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 28.66/12.58 28.66/12.58 emptyFM :: FiniteMap a b; 28.66/12.58 emptyFM = EmptyFM; 28.66/12.58 28.66/12.58 findMax :: FiniteMap b a -> (b,a); 28.66/12.58 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 28.66/12.58 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 28.66/12.58 28.66/12.58 findMin :: FiniteMap a b -> (a,b); 28.66/12.58 findMin (Branch key elt _ EmptyFM _) = (key,elt); 28.66/12.58 findMin (Branch key elt _ fm_l _) = findMin fm_l; 28.66/12.58 28.66/12.58 fmToList :: FiniteMap a b -> [(a,b)]; 28.66/12.58 fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; 28.66/12.58 28.66/12.58 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 28.66/12.58 foldFM k z EmptyFM = z; 28.66/12.58 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 28.66/12.58 28.66/12.58 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 28.66/12.58 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 28.66/12.58 | size_r > sIZE_RATIO * size_l = case fm_R of { 28.66/12.58 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 28.66/12.58 | otherwise -> double_L fm_L fm_R; 28.66/12.58 } 28.66/12.58 | size_l > sIZE_RATIO * size_r = case fm_L of { 28.66/12.58 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 28.66/12.58 | otherwise -> double_R fm_L fm_R; 28.66/12.58 } 28.66/12.58 | otherwise = mkBranch 2 key elt fm_L fm_R where { 28.66/12.58 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.66/12.58 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.66/12.58 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.66/12.58 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.66/12.58 size_l = sizeFM fm_L; 28.66/12.58 size_r = sizeFM fm_R; 28.66/12.58 }; 28.66/12.58 28.66/12.58 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 28.66/12.58 mkBranch which key elt fm_l fm_r = let { 28.66/12.58 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 28.66/12.58 } in result where { 28.66/12.58 balance_ok = True; 28.66/12.58 left_ok = case fm_l of { 28.66/12.58 EmptyFM-> True; 28.66/12.58 Branch left_key _ _ _ _-> let { 28.66/12.58 biggest_left_key = fst (findMax fm_l); 28.66/12.58 } in biggest_left_key < key; 28.66/12.58 } ; 28.66/12.58 left_size = sizeFM fm_l; 28.66/12.58 right_ok = case fm_r of { 28.66/12.58 EmptyFM-> True; 28.66/12.58 Branch right_key _ _ _ _-> let { 28.66/12.58 smallest_right_key = fst (findMin fm_r); 28.66/12.58 } in key < smallest_right_key; 28.66/12.58 } ; 28.66/12.58 right_size = sizeFM fm_r; 28.66/12.58 unbox :: Int -> Int; 28.66/12.58 unbox x = x; 28.66/12.58 }; 28.66/12.58 28.66/12.58 sIZE_RATIO :: Int; 28.66/12.58 sIZE_RATIO = 5; 28.66/12.58 28.66/12.58 sizeFM :: FiniteMap a b -> Int; 28.66/12.58 sizeFM EmptyFM = 0; 28.66/12.58 sizeFM (Branch _ _ size _ _) = size; 28.66/12.58 28.66/12.58 unitFM :: a -> b -> FiniteMap a b; 28.66/12.58 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 28.66/12.58 28.66/12.58 } 28.66/12.58 module Maybe where { 28.66/12.58 import qualified FiniteMap; 28.66/12.58 import qualified Main; 28.66/12.58 import qualified Prelude; 28.66/12.58 } 28.66/12.58 module Main where { 28.66/12.58 import qualified FiniteMap; 28.66/12.58 import qualified Maybe; 28.66/12.58 import qualified Prelude; 28.66/12.58 } 28.66/12.58 28.66/12.58 ---------------------------------------- 28.66/12.58 28.66/12.58 (1) LR (EQUIVALENT) 28.66/12.58 Lambda Reductions: 28.66/12.58 The following Lambda expression 28.66/12.58 "\oldnew->new" 28.66/12.58 is transformed to 28.66/12.58 "addListToFM0 old new = new; 28.66/12.58 " 28.66/12.58 The following Lambda expression 28.66/12.58 "\keyeltrest->(key,elt) : rest" 28.66/12.58 is transformed to 28.66/12.58 "fmToList0 key elt rest = (key,elt) : rest; 28.66/12.58 " 28.66/12.58 28.66/12.58 ---------------------------------------- 28.66/12.58 28.66/12.58 (2) 28.66/12.58 Obligation: 28.66/12.58 mainModule Main 28.66/12.58 module FiniteMap where { 28.66/12.58 import qualified Main; 28.66/12.58 import qualified Maybe; 28.66/12.58 import qualified Prelude; 28.66/12.58 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 28.66/12.58 28.66/12.58 instance (Eq a, Eq b) => Eq FiniteMap b a where { 28.66/12.58 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 28.66/12.58 } 28.66/12.58 addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; 28.66/12.58 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 28.66/12.58 28.66/12.58 addListToFM0 old new = new; 28.66/12.58 28.66/12.58 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 28.66/12.58 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 28.66/12.58 add fmap (key,elt) = addToFM_C combiner fmap key elt; 28.66/12.58 }; 28.66/12.58 28.66/12.58 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 28.66/12.58 addToFM_C combiner EmptyFM key elt = unitFM key elt; 28.66/12.58 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.66/12.58 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 28.66/12.58 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 28.66/12.58 28.66/12.58 emptyFM :: FiniteMap b a; 28.66/12.58 emptyFM = EmptyFM; 28.66/12.58 28.66/12.58 findMax :: FiniteMap a b -> (a,b); 28.66/12.58 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 28.66/12.58 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 28.66/12.58 28.66/12.58 findMin :: FiniteMap a b -> (a,b); 28.66/12.58 findMin (Branch key elt _ EmptyFM _) = (key,elt); 28.66/12.58 findMin (Branch key elt _ fm_l _) = findMin fm_l; 28.66/12.58 28.66/12.58 fmToList :: FiniteMap b a -> [(b,a)]; 28.66/12.58 fmToList fm = foldFM fmToList0 [] fm; 28.66/12.58 28.66/12.58 fmToList0 key elt rest = (key,elt) : rest; 28.66/12.58 28.66/12.58 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 28.66/12.58 foldFM k z EmptyFM = z; 28.66/12.58 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 29.52/12.79 29.52/12.79 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 29.52/12.79 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 29.52/12.79 | size_r > sIZE_RATIO * size_l = case fm_R of { 29.52/12.79 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 29.52/12.79 | otherwise -> double_L fm_L fm_R; 29.52/12.79 } 29.52/12.79 | size_l > sIZE_RATIO * size_r = case fm_L of { 29.52/12.79 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 29.52/12.79 | otherwise -> double_R fm_L fm_R; 29.52/12.79 } 29.52/12.79 | otherwise = mkBranch 2 key elt fm_L fm_R where { 29.52/12.79 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.52/12.79 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.52/12.79 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.52/12.79 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.52/12.79 size_l = sizeFM fm_L; 29.52/12.79 size_r = sizeFM fm_R; 29.52/12.79 }; 29.52/12.79 29.52/12.79 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 29.52/12.79 mkBranch which key elt fm_l fm_r = let { 29.52/12.79 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 29.52/12.79 } in result where { 29.52/12.79 balance_ok = True; 29.52/12.79 left_ok = case fm_l of { 29.52/12.79 EmptyFM-> True; 29.52/12.79 Branch left_key _ _ _ _-> let { 29.52/12.79 biggest_left_key = fst (findMax fm_l); 29.52/12.79 } in biggest_left_key < key; 29.52/12.79 } ; 29.52/12.79 left_size = sizeFM fm_l; 29.52/12.79 right_ok = case fm_r of { 29.52/12.79 EmptyFM-> True; 29.52/12.79 Branch right_key _ _ _ _-> let { 29.52/12.79 smallest_right_key = fst (findMin fm_r); 29.52/12.79 } in key < smallest_right_key; 29.52/12.79 } ; 29.52/12.79 right_size = sizeFM fm_r; 29.52/12.79 unbox :: Int -> Int; 29.52/12.79 unbox x = x; 29.52/12.79 }; 29.52/12.79 29.52/12.79 sIZE_RATIO :: Int; 29.52/12.79 sIZE_RATIO = 5; 29.52/12.79 29.52/12.79 sizeFM :: FiniteMap b a -> Int; 29.52/12.79 sizeFM EmptyFM = 0; 29.52/12.79 sizeFM (Branch _ _ size _ _) = size; 29.52/12.79 29.52/12.79 unitFM :: a -> b -> FiniteMap a b; 29.52/12.79 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 29.52/12.79 29.52/12.79 } 29.52/12.79 module Maybe where { 29.52/12.79 import qualified FiniteMap; 29.52/12.79 import qualified Main; 29.52/12.79 import qualified Prelude; 29.52/12.79 } 29.52/12.79 module Main where { 29.52/12.79 import qualified FiniteMap; 29.52/12.79 import qualified Maybe; 29.52/12.79 import qualified Prelude; 29.52/12.79 } 29.52/12.79 29.52/12.79 ---------------------------------------- 29.52/12.79 29.52/12.79 (3) CR (EQUIVALENT) 29.52/12.79 Case Reductions: 29.52/12.79 The following Case expression 29.52/12.79 "case compare x y of { 29.52/12.79 EQ -> o; 29.52/12.79 LT -> LT; 29.52/12.79 GT -> GT} 29.52/12.79 " 29.52/12.79 is transformed to 29.52/12.79 "primCompAux0 o EQ = o; 29.52/12.79 primCompAux0 o LT = LT; 29.52/12.79 primCompAux0 o GT = GT; 29.52/12.79 " 29.52/12.79 The following Case expression 29.52/12.79 "case fm_r of { 29.52/12.79 EmptyFM -> True; 29.52/12.79 Branch right_key _ _ _ _ -> let { 29.52/12.79 smallest_right_key = fst (findMin fm_r); 29.52/12.79 } in key < smallest_right_key} 29.52/12.79 " 29.52/12.79 is transformed to 29.52/12.79 "right_ok0 fm_r key EmptyFM = True; 29.52/12.79 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 29.52/12.79 smallest_right_key = fst (findMin fm_r); 29.52/12.79 } in key < smallest_right_key; 29.52/12.79 " 29.52/12.79 The following Case expression 29.52/12.79 "case fm_l of { 29.52/12.79 EmptyFM -> True; 29.52/12.79 Branch left_key _ _ _ _ -> let { 29.52/12.79 biggest_left_key = fst (findMax fm_l); 29.52/12.79 } in biggest_left_key < key} 29.52/12.79 " 29.52/12.79 is transformed to 29.52/12.79 "left_ok0 fm_l key EmptyFM = True; 29.52/12.79 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 29.52/12.79 biggest_left_key = fst (findMax fm_l); 29.52/12.79 } in biggest_left_key < key; 29.52/12.79 " 29.52/12.79 The following Case expression 29.52/12.79 "case fm_R of { 29.52/12.79 Branch _ _ _ fm_rl fm_rr |sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R} 29.52/12.79 " 29.52/12.79 is transformed to 29.52/12.79 "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.52/12.79 " 29.52/12.79 The following Case expression 29.52/12.79 "case fm_L of { 29.52/12.79 Branch _ _ _ fm_ll fm_lr |sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R} 29.52/12.79 " 29.52/12.79 is transformed to 29.52/12.79 "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.52/12.79 " 29.52/12.79 29.52/12.79 ---------------------------------------- 29.52/12.79 29.52/12.79 (4) 29.52/12.79 Obligation: 29.52/12.79 mainModule Main 29.52/12.79 module FiniteMap where { 29.52/12.79 import qualified Main; 29.52/12.79 import qualified Maybe; 29.52/12.79 import qualified Prelude; 29.52/12.79 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 29.52/12.79 29.52/12.79 instance (Eq a, Eq b) => Eq FiniteMap a b where { 29.52/12.79 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 29.52/12.79 } 29.52/12.79 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 29.52/12.79 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 29.52/12.79 29.52/12.79 addListToFM0 old new = new; 29.52/12.79 29.52/12.79 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 29.52/12.79 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 29.52/12.79 add fmap (key,elt) = addToFM_C combiner fmap key elt; 29.52/12.79 }; 29.52/12.79 29.52/12.79 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 29.52/12.79 addToFM_C combiner EmptyFM key elt = unitFM key elt; 29.52/12.79 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.52/12.79 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 29.52/12.79 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 29.52/12.79 29.52/12.79 emptyFM :: FiniteMap a b; 29.52/12.79 emptyFM = EmptyFM; 29.52/12.79 29.52/12.79 findMax :: FiniteMap b a -> (b,a); 29.52/12.79 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 29.52/12.79 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 29.52/12.79 29.52/12.79 findMin :: FiniteMap a b -> (a,b); 29.52/12.79 findMin (Branch key elt _ EmptyFM _) = (key,elt); 29.52/12.79 findMin (Branch key elt _ fm_l _) = findMin fm_l; 29.52/12.79 29.52/12.79 fmToList :: FiniteMap b a -> [(b,a)]; 29.52/12.79 fmToList fm = foldFM fmToList0 [] fm; 29.52/12.79 29.52/12.79 fmToList0 key elt rest = (key,elt) : rest; 29.52/12.79 29.52/12.79 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 29.52/12.79 foldFM k z EmptyFM = z; 29.52/12.79 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 29.52/12.79 29.52/12.79 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 29.52/12.79 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 29.52/12.79 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 29.52/12.79 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 29.52/12.79 | otherwise = mkBranch 2 key elt fm_L fm_R where { 29.52/12.79 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.52/12.79 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.52/12.79 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 29.52/12.79 | otherwise = double_L fm_L fm_R; 29.52/12.79 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 29.52/12.79 | otherwise = double_R fm_L fm_R; 29.52/12.79 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.52/12.79 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.52/12.79 size_l = sizeFM fm_L; 29.52/12.79 size_r = sizeFM fm_R; 29.52/12.79 }; 29.52/12.79 29.52/12.79 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 29.52/12.79 mkBranch which key elt fm_l fm_r = let { 29.52/12.79 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 29.52/12.79 } in result where { 29.52/12.79 balance_ok = True; 29.52/12.79 left_ok = left_ok0 fm_l key fm_l; 29.52/12.79 left_ok0 fm_l key EmptyFM = True; 29.52/12.79 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 29.52/12.79 biggest_left_key = fst (findMax fm_l); 29.52/12.79 } in biggest_left_key < key; 29.52/12.79 left_size = sizeFM fm_l; 29.52/12.79 right_ok = right_ok0 fm_r key fm_r; 29.52/12.79 right_ok0 fm_r key EmptyFM = True; 29.52/12.79 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 29.52/12.79 smallest_right_key = fst (findMin fm_r); 29.52/12.79 } in key < smallest_right_key; 29.52/12.79 right_size = sizeFM fm_r; 29.52/12.79 unbox :: Int -> Int; 29.52/12.79 unbox x = x; 29.52/12.79 }; 29.52/12.79 29.52/12.79 sIZE_RATIO :: Int; 29.52/12.79 sIZE_RATIO = 5; 29.52/12.79 29.52/12.79 sizeFM :: FiniteMap b a -> Int; 29.52/12.79 sizeFM EmptyFM = 0; 29.52/12.79 sizeFM (Branch _ _ size _ _) = size; 29.52/12.79 29.52/12.79 unitFM :: b -> a -> FiniteMap b a; 29.52/12.79 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 29.52/12.79 29.52/12.79 } 29.52/12.79 module Maybe where { 29.52/12.79 import qualified FiniteMap; 29.52/12.79 import qualified Main; 29.52/12.79 import qualified Prelude; 29.52/12.79 } 29.52/12.79 module Main where { 29.52/12.79 import qualified FiniteMap; 29.52/12.79 import qualified Maybe; 29.52/12.79 import qualified Prelude; 29.52/12.79 } 29.52/12.79 29.52/12.79 ---------------------------------------- 29.52/12.79 29.52/12.79 (5) IFR (EQUIVALENT) 29.52/12.79 If Reductions: 29.52/12.79 The following If expression 29.52/12.79 "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" 29.52/12.79 is transformed to 29.52/12.79 "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); 29.52/12.79 primDivNatS0 x y False = Zero; 29.52/12.79 " 29.52/12.79 The following If expression 29.52/12.79 "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" 29.52/12.79 is transformed to 29.52/12.79 "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); 29.52/12.79 primModNatS0 x y False = Succ x; 29.52/12.79 " 29.52/12.79 29.52/12.79 ---------------------------------------- 29.52/12.79 29.52/12.79 (6) 29.52/12.79 Obligation: 29.52/12.79 mainModule Main 29.52/12.79 module FiniteMap where { 29.52/12.79 import qualified Main; 29.52/12.79 import qualified Maybe; 29.52/12.79 import qualified Prelude; 29.52/12.79 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 29.52/12.79 29.52/12.79 instance (Eq a, Eq b) => Eq FiniteMap a b where { 29.52/12.79 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 29.52/12.79 } 29.52/12.79 addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; 29.52/12.79 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 29.52/12.79 29.52/12.79 addListToFM0 old new = new; 29.52/12.79 29.52/12.79 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 29.52/12.79 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 29.52/12.79 add fmap (key,elt) = addToFM_C combiner fmap key elt; 29.52/12.79 }; 29.52/12.79 29.52/12.79 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 29.52/12.79 addToFM_C combiner EmptyFM key elt = unitFM key elt; 29.52/12.79 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.52/12.79 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 29.52/12.79 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 29.52/12.79 29.52/12.79 emptyFM :: FiniteMap a b; 29.52/12.79 emptyFM = EmptyFM; 29.52/12.79 29.52/12.79 findMax :: FiniteMap a b -> (a,b); 29.52/12.79 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 29.52/12.79 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 29.52/12.79 29.52/12.79 findMin :: FiniteMap b a -> (b,a); 29.52/12.79 findMin (Branch key elt _ EmptyFM _) = (key,elt); 29.52/12.79 findMin (Branch key elt _ fm_l _) = findMin fm_l; 29.52/12.79 29.52/12.79 fmToList :: FiniteMap a b -> [(a,b)]; 29.52/12.79 fmToList fm = foldFM fmToList0 [] fm; 29.52/12.79 29.52/12.79 fmToList0 key elt rest = (key,elt) : rest; 29.52/12.79 29.52/12.79 foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; 29.52/12.79 foldFM k z EmptyFM = z; 29.52/12.79 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 29.52/12.79 29.52/12.79 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 29.52/12.79 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 29.52/12.79 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 29.52/12.79 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 29.52/12.79 | otherwise = mkBranch 2 key elt fm_L fm_R where { 29.52/12.79 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.52/12.79 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.52/12.79 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 29.52/12.79 | otherwise = double_L fm_L fm_R; 29.52/12.79 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 29.52/12.79 | otherwise = double_R fm_L fm_R; 29.52/12.79 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.52/12.79 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.52/12.79 size_l = sizeFM fm_L; 29.52/12.79 size_r = sizeFM fm_R; 29.52/12.79 }; 29.52/12.79 29.52/12.79 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 29.52/12.79 mkBranch which key elt fm_l fm_r = let { 29.52/12.79 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 29.52/12.79 } in result where { 29.52/12.79 balance_ok = True; 29.52/12.79 left_ok = left_ok0 fm_l key fm_l; 29.52/12.79 left_ok0 fm_l key EmptyFM = True; 29.52/12.79 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 29.52/12.79 biggest_left_key = fst (findMax fm_l); 29.52/12.79 } in biggest_left_key < key; 29.52/12.79 left_size = sizeFM fm_l; 29.52/12.79 right_ok = right_ok0 fm_r key fm_r; 29.52/12.79 right_ok0 fm_r key EmptyFM = True; 29.52/12.79 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 29.52/12.79 smallest_right_key = fst (findMin fm_r); 29.52/12.79 } in key < smallest_right_key; 29.52/12.79 right_size = sizeFM fm_r; 29.52/12.79 unbox :: Int -> Int; 29.52/12.79 unbox x = x; 29.52/12.79 }; 29.52/12.79 29.52/12.79 sIZE_RATIO :: Int; 29.52/12.79 sIZE_RATIO = 5; 29.52/12.79 29.52/12.79 sizeFM :: FiniteMap a b -> Int; 29.52/12.79 sizeFM EmptyFM = 0; 29.52/12.79 sizeFM (Branch _ _ size _ _) = size; 29.52/12.79 29.52/12.79 unitFM :: a -> b -> FiniteMap a b; 29.52/12.79 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 29.52/12.79 29.52/12.79 } 29.52/12.79 module Maybe where { 29.52/12.79 import qualified FiniteMap; 29.52/12.79 import qualified Main; 29.52/12.79 import qualified Prelude; 29.52/12.79 } 29.52/12.79 module Main where { 29.52/12.79 import qualified FiniteMap; 29.52/12.79 import qualified Maybe; 29.52/12.79 import qualified Prelude; 29.52/12.79 } 29.52/12.79 29.52/12.79 ---------------------------------------- 29.52/12.79 29.52/12.79 (7) BR (EQUIVALENT) 29.52/12.79 Replaced joker patterns by fresh variables and removed binding patterns. 29.52/12.79 ---------------------------------------- 29.52/12.79 29.52/12.79 (8) 29.52/12.79 Obligation: 29.52/12.79 mainModule Main 29.52/12.79 module FiniteMap where { 29.52/12.79 import qualified Main; 29.52/12.79 import qualified Maybe; 29.52/12.79 import qualified Prelude; 29.52/12.79 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 29.52/12.79 29.52/12.79 instance (Eq a, Eq b) => Eq FiniteMap a b where { 29.52/12.79 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 29.52/12.79 } 29.52/12.79 addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; 29.52/12.79 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 29.52/12.79 29.52/12.79 addListToFM0 old new = new; 29.52/12.79 29.52/12.79 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 29.52/12.79 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 29.52/12.79 add fmap (key,elt) = addToFM_C combiner fmap key elt; 29.52/12.79 }; 29.52/12.79 29.52/12.79 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 29.52/12.79 addToFM_C combiner EmptyFM key elt = unitFM key elt; 29.52/12.79 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.52/12.79 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 29.52/12.79 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 29.52/12.79 29.52/12.79 emptyFM :: FiniteMap a b; 29.52/12.79 emptyFM = EmptyFM; 29.52/12.79 29.52/12.79 findMax :: FiniteMap b a -> (b,a); 29.52/12.79 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 29.52/12.79 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 29.52/12.79 29.52/12.79 findMin :: FiniteMap b a -> (b,a); 29.52/12.79 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 29.52/12.79 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 29.52/12.79 29.52/12.79 fmToList :: FiniteMap b a -> [(b,a)]; 29.52/12.79 fmToList fm = foldFM fmToList0 [] fm; 29.52/12.79 29.52/12.79 fmToList0 key elt rest = (key,elt) : rest; 29.52/12.79 29.52/12.79 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 29.52/12.79 foldFM k z EmptyFM = z; 29.52/12.79 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 29.52/12.79 29.52/12.79 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 29.52/12.79 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 29.52/12.79 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 29.52/12.79 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 29.52/12.79 | otherwise = mkBranch 2 key elt fm_L fm_R where { 29.52/12.79 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.52/12.79 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.52/12.79 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.52/12.79 | otherwise = double_L fm_L fm_R; 29.52/12.79 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.52/12.79 | otherwise = double_R fm_L fm_R; 29.52/12.79 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.52/12.79 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.52/12.79 size_l = sizeFM fm_L; 29.52/12.79 size_r = sizeFM fm_R; 29.52/12.79 }; 29.52/12.79 29.52/12.79 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 29.52/12.81 mkBranch which key elt fm_l fm_r = let { 29.52/12.81 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 29.52/12.81 } in result where { 29.52/12.81 balance_ok = True; 29.52/12.81 left_ok = left_ok0 fm_l key fm_l; 29.52/12.81 left_ok0 fm_l key EmptyFM = True; 29.52/12.81 left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { 29.52/12.81 biggest_left_key = fst (findMax fm_l); 29.52/12.81 } in biggest_left_key < key; 29.52/12.81 left_size = sizeFM fm_l; 29.52/12.81 right_ok = right_ok0 fm_r key fm_r; 29.52/12.81 right_ok0 fm_r key EmptyFM = True; 29.52/12.81 right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { 29.52/12.81 smallest_right_key = fst (findMin fm_r); 29.52/12.81 } in key < smallest_right_key; 29.52/12.81 right_size = sizeFM fm_r; 29.52/12.81 unbox :: Int -> Int; 29.52/12.81 unbox x = x; 29.52/12.81 }; 29.52/12.81 29.52/12.81 sIZE_RATIO :: Int; 29.52/12.81 sIZE_RATIO = 5; 29.52/12.81 29.52/12.81 sizeFM :: FiniteMap a b -> Int; 29.52/12.81 sizeFM EmptyFM = 0; 29.52/12.81 sizeFM (Branch vyu vyv size vyw vyx) = size; 29.52/12.81 29.52/12.81 unitFM :: b -> a -> FiniteMap b a; 29.52/12.81 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 29.52/12.81 29.52/12.81 } 29.52/12.81 module Maybe where { 29.52/12.81 import qualified FiniteMap; 29.52/12.81 import qualified Main; 29.52/12.81 import qualified Prelude; 29.52/12.81 } 29.52/12.81 module Main where { 29.52/12.81 import qualified FiniteMap; 29.52/12.81 import qualified Maybe; 29.52/12.81 import qualified Prelude; 29.52/12.81 } 29.52/12.81 29.52/12.81 ---------------------------------------- 29.52/12.81 29.52/12.81 (9) COR (EQUIVALENT) 29.52/12.81 Cond Reductions: 29.52/12.81 The following Function with conditions 29.52/12.81 "compare x y|x == yEQ|x <= yLT|otherwiseGT; 29.52/12.81 " 29.52/12.81 is transformed to 29.52/12.81 "compare x y = compare3 x y; 29.52/12.81 " 29.52/12.81 "compare0 x y True = GT; 29.52/12.81 " 29.52/12.81 "compare2 x y True = EQ; 29.52/12.81 compare2 x y False = compare1 x y (x <= y); 29.52/12.81 " 29.52/12.81 "compare1 x y True = LT; 29.52/12.81 compare1 x y False = compare0 x y otherwise; 29.52/12.81 " 29.52/12.81 "compare3 x y = compare2 x y (x == y); 29.52/12.81 " 29.52/12.81 The following Function with conditions 29.52/12.81 "absReal x|x >= 0x|otherwise`negate` x; 29.52/12.81 " 29.52/12.81 is transformed to 29.52/12.81 "absReal x = absReal2 x; 29.52/12.81 " 29.52/12.81 "absReal1 x True = x; 29.52/12.81 absReal1 x False = absReal0 x otherwise; 29.52/12.81 " 29.52/12.81 "absReal0 x True = `negate` x; 29.52/12.81 " 29.52/12.81 "absReal2 x = absReal1 x (x >= 0); 29.52/12.81 " 29.52/12.81 The following Function with conditions 29.52/12.81 "gcd' x 0 = x; 29.52/12.81 gcd' x y = gcd' y (x `rem` y); 29.52/12.81 " 29.52/12.81 is transformed to 29.52/12.81 "gcd' x vzw = gcd'2 x vzw; 29.52/12.81 gcd' x y = gcd'0 x y; 29.52/12.81 " 29.52/12.81 "gcd'0 x y = gcd' y (x `rem` y); 29.52/12.81 " 29.52/12.81 "gcd'1 True x vzw = x; 29.52/12.81 gcd'1 vzx vzy vzz = gcd'0 vzy vzz; 29.52/12.81 " 29.52/12.81 "gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; 29.52/12.81 gcd'2 wuu wuv = gcd'0 wuu wuv; 29.52/12.81 " 29.52/12.81 The following Function with conditions 29.52/12.81 "gcd 0 0 = error []; 29.52/12.81 gcd x y = gcd' (abs x) (abs y) where { 29.52/12.81 gcd' x 0 = x; 29.52/12.81 gcd' x y = gcd' y (x `rem` y); 29.52/12.81 } 29.52/12.81 ; 29.52/12.81 " 29.52/12.81 is transformed to 29.52/12.81 "gcd wuw wux = gcd3 wuw wux; 29.52/12.81 gcd x y = gcd0 x y; 29.52/12.81 " 29.52/12.81 "gcd0 x y = gcd' (abs x) (abs y) where { 29.52/12.81 gcd' x vzw = gcd'2 x vzw; 29.52/12.81 gcd' x y = gcd'0 x y; 29.52/12.81 ; 29.52/12.81 gcd'0 x y = gcd' y (x `rem` y); 29.52/12.81 ; 29.52/12.81 gcd'1 True x vzw = x; 29.52/12.81 gcd'1 vzx vzy vzz = gcd'0 vzy vzz; 29.52/12.81 ; 29.52/12.81 gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; 29.52/12.81 gcd'2 wuu wuv = gcd'0 wuu wuv; 29.52/12.81 } 29.52/12.81 ; 29.52/12.81 " 29.52/12.81 "gcd1 True wuw wux = error []; 29.52/12.81 gcd1 wuy wuz wvu = gcd0 wuz wvu; 29.52/12.81 " 29.52/12.81 "gcd2 True wuw wux = gcd1 (wux == 0) wuw wux; 29.52/12.81 gcd2 wvv wvw wvx = gcd0 wvw wvx; 29.52/12.81 " 29.52/12.81 "gcd3 wuw wux = gcd2 (wuw == 0) wuw wux; 29.52/12.81 gcd3 wvy wvz = gcd0 wvy wvz; 29.52/12.81 " 29.52/12.81 The following Function with conditions 29.52/12.81 "undefined |Falseundefined; 29.52/12.81 " 29.52/12.81 is transformed to 29.52/12.81 "undefined = undefined1; 29.52/12.81 " 29.52/12.81 "undefined0 True = undefined; 29.52/12.81 " 29.52/12.81 "undefined1 = undefined0 False; 29.52/12.81 " 29.52/12.81 The following Function with conditions 29.52/12.81 "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { 29.52/12.81 d = gcd x y; 29.52/12.81 } 29.52/12.81 ; 29.52/12.81 " 29.52/12.81 is transformed to 29.52/12.81 "reduce x y = reduce2 x y; 29.52/12.81 " 29.52/12.81 "reduce2 x y = reduce1 x y (y == 0) where { 29.52/12.81 d = gcd x y; 29.52/12.81 ; 29.52/12.81 reduce0 x y True = x `quot` d :% (y `quot` d); 29.52/12.81 ; 29.52/12.81 reduce1 x y True = error []; 29.52/12.81 reduce1 x y False = reduce0 x y otherwise; 29.52/12.81 } 29.52/12.81 ; 29.52/12.81 " 29.52/12.81 The following Function with conditions 29.52/12.81 "addToFM_C combiner EmptyFM key elt = unitFM key elt; 29.52/12.81 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.52/12.81 " 29.52/12.81 is transformed to 29.52/12.81 "addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 29.52/12.81 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.52/12.81 " 29.52/12.81 "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.52/12.81 " 29.52/12.81 "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.52/12.81 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.52/12.81 " 29.52/12.81 "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.52/12.81 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.52/12.81 " 29.52/12.81 "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.52/12.81 " 29.52/12.81 "addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 29.52/12.81 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 29.52/12.81 " 29.52/12.81 The following Function with conditions 29.52/12.81 "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.52/12.81 " 29.52/12.81 is transformed to 29.52/12.81 "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.52/12.81 " 29.52/12.81 "mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 29.52/12.81 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.52/12.81 " 29.52/12.81 "mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 29.52/12.81 " 29.52/12.81 "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.52/12.81 " 29.52/12.81 The following Function with conditions 29.52/12.81 "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.52/12.81 " 29.52/12.81 is transformed to 29.52/12.81 "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.52/12.81 " 29.52/12.81 "mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 29.52/12.81 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.52/12.81 " 29.52/12.81 "mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 29.52/12.81 " 29.52/12.81 "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.52/12.81 " 29.52/12.81 The following Function with conditions 29.52/12.81 "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.52/12.81 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.52/12.81 ; 29.52/12.81 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.52/12.81 ; 29.52/12.81 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.52/12.81 ; 29.52/12.81 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.52/12.81 ; 29.52/12.81 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.52/12.81 ; 29.52/12.81 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.52/12.81 ; 29.52/12.81 size_l = sizeFM fm_L; 29.52/12.81 ; 29.52/12.81 size_r = sizeFM fm_R; 29.52/12.81 } 29.52/12.81 ; 29.52/12.81 " 29.52/12.81 is transformed to 29.52/12.81 "mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 29.52/12.81 " 29.52/12.81 "mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 29.52/12.81 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.52/12.81 ; 29.52/12.81 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.52/12.81 ; 29.52/12.81 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.52/12.81 ; 29.52/12.81 mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 29.52/12.81 ; 29.52/12.81 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 29.52/12.81 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.52/12.81 ; 29.52/12.81 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.52/12.81 ; 29.52/12.81 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.52/12.81 ; 29.52/12.81 mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 29.52/12.81 ; 29.52/12.81 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 29.52/12.81 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.52/12.81 ; 29.52/12.81 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.52/12.81 ; 29.52/12.81 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 29.52/12.81 ; 29.52/12.81 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 29.52/12.81 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 29.52/12.81 ; 29.52/12.81 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 29.52/12.81 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 29.52/12.81 ; 29.52/12.81 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 29.52/12.81 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 29.52/12.81 ; 29.52/12.81 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.52/12.81 ; 29.52/12.81 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.52/12.81 ; 29.52/12.81 size_l = sizeFM fm_L; 29.52/12.81 ; 29.52/12.81 size_r = sizeFM fm_R; 29.52/12.81 } 29.52/12.81 ; 29.52/12.81 " 29.52/12.81 29.52/12.81 ---------------------------------------- 29.52/12.81 29.52/12.81 (10) 29.52/12.81 Obligation: 29.52/12.81 mainModule Main 29.52/12.81 module FiniteMap where { 29.52/12.81 import qualified Main; 29.52/12.81 import qualified Maybe; 29.52/12.81 import qualified Prelude; 29.52/12.81 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 29.52/12.81 29.52/12.81 instance (Eq a, Eq b) => Eq FiniteMap b a where { 29.52/12.81 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 29.52/12.81 } 29.52/12.81 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 29.52/12.81 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 29.52/12.81 29.52/12.81 addListToFM0 old new = new; 29.52/12.81 29.52/12.81 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 29.52/12.81 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 29.52/12.81 add fmap (key,elt) = addToFM_C combiner fmap key elt; 29.52/12.81 }; 29.52/12.81 29.52/12.81 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 29.52/12.81 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 29.52/12.81 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.52/12.81 29.52/12.81 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.52/12.81 29.52/12.81 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.52/12.81 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.52/12.81 29.52/12.81 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.52/12.81 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.52/12.81 29.52/12.81 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.52/12.81 29.52/12.81 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 29.52/12.81 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 29.52/12.81 29.52/12.81 emptyFM :: FiniteMap b a; 29.52/12.81 emptyFM = EmptyFM; 29.52/12.81 29.52/12.81 findMax :: FiniteMap a b -> (a,b); 29.52/12.81 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 29.52/12.81 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 29.52/12.81 29.52/12.81 findMin :: FiniteMap a b -> (a,b); 29.52/12.81 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 29.52/12.81 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 29.52/12.81 29.52/12.81 fmToList :: FiniteMap a b -> [(a,b)]; 29.52/12.81 fmToList fm = foldFM fmToList0 [] fm; 29.52/12.81 29.52/12.81 fmToList0 key elt rest = (key,elt) : rest; 29.52/12.81 29.52/12.81 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 29.52/12.81 foldFM k z EmptyFM = z; 29.52/12.81 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 29.52/12.81 29.52/12.81 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 29.52/12.81 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 29.52/12.81 29.52/12.81 mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 29.52/12.81 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.52/12.81 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.52/12.81 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.52/12.81 mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 29.52/12.81 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 29.52/12.81 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.52/12.81 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.52/12.81 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.52/12.81 mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 29.52/12.81 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 29.52/12.81 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.52/12.81 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.52/12.81 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 29.52/12.81 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 29.52/12.81 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 29.52/12.81 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 29.52/12.81 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 29.52/12.81 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 29.52/12.81 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 29.52/12.81 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.52/12.81 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.52/12.81 size_l = sizeFM fm_L; 29.52/12.81 size_r = sizeFM fm_R; 29.52/12.81 }; 29.52/12.81 29.52/12.81 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 29.52/12.81 mkBranch which key elt fm_l fm_r = let { 29.52/12.81 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 29.52/12.81 } in result where { 29.52/12.81 balance_ok = True; 29.52/12.81 left_ok = left_ok0 fm_l key fm_l; 29.52/12.81 left_ok0 fm_l key EmptyFM = True; 29.52/12.81 left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { 29.52/12.81 biggest_left_key = fst (findMax fm_l); 29.52/12.81 } in biggest_left_key < key; 29.52/12.81 left_size = sizeFM fm_l; 29.52/12.81 right_ok = right_ok0 fm_r key fm_r; 29.52/12.81 right_ok0 fm_r key EmptyFM = True; 29.52/12.81 right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { 29.52/12.81 smallest_right_key = fst (findMin fm_r); 29.52/12.81 } in key < smallest_right_key; 29.52/12.81 right_size = sizeFM fm_r; 29.52/12.81 unbox :: Int -> Int; 29.52/12.81 unbox x = x; 29.52/12.81 }; 29.52/12.81 29.52/12.81 sIZE_RATIO :: Int; 29.52/12.81 sIZE_RATIO = 5; 29.52/12.81 29.52/12.81 sizeFM :: FiniteMap b a -> Int; 29.52/12.81 sizeFM EmptyFM = 0; 29.52/12.81 sizeFM (Branch vyu vyv size vyw vyx) = size; 29.52/12.81 29.52/12.81 unitFM :: a -> b -> FiniteMap a b; 29.52/12.81 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 29.52/12.81 29.52/12.81 } 29.52/12.81 module Maybe where { 29.52/12.81 import qualified FiniteMap; 29.52/12.81 import qualified Main; 29.52/12.81 import qualified Prelude; 29.52/12.81 } 29.52/12.81 module Main where { 30.09/12.93 import qualified FiniteMap; 30.09/12.93 import qualified Maybe; 30.09/12.93 import qualified Prelude; 30.09/12.93 } 30.09/12.93 30.09/12.93 ---------------------------------------- 30.09/12.93 30.09/12.93 (11) LetRed (EQUIVALENT) 30.09/12.93 Let/Where Reductions: 30.09/12.93 The bindings of the following Let/Where expression 30.09/12.93 "gcd' (abs x) (abs y) where { 30.09/12.93 gcd' x vzw = gcd'2 x vzw; 30.09/12.93 gcd' x y = gcd'0 x y; 30.09/12.93 ; 30.09/12.93 gcd'0 x y = gcd' y (x `rem` y); 30.09/12.93 ; 30.09/12.93 gcd'1 True x vzw = x; 30.09/12.93 gcd'1 vzx vzy vzz = gcd'0 vzy vzz; 30.09/12.93 ; 30.09/12.93 gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; 30.09/12.93 gcd'2 wuu wuv = gcd'0 wuu wuv; 30.09/12.93 } 30.09/12.93 " 30.09/12.93 are unpacked to the following functions on top level 30.09/12.93 "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); 30.09/12.93 " 30.09/12.93 "gcd0Gcd' x vzw = gcd0Gcd'2 x vzw; 30.09/12.93 gcd0Gcd' x y = gcd0Gcd'0 x y; 30.09/12.93 " 30.09/12.93 "gcd0Gcd'1 True x vzw = x; 30.09/12.93 gcd0Gcd'1 vzx vzy vzz = gcd0Gcd'0 vzy vzz; 30.09/12.93 " 30.09/12.93 "gcd0Gcd'2 x vzw = gcd0Gcd'1 (vzw == 0) x vzw; 30.09/12.93 gcd0Gcd'2 wuu wuv = gcd0Gcd'0 wuu wuv; 30.09/12.93 " 30.09/12.93 The bindings of the following Let/Where expression 30.09/12.93 "reduce1 x y (y == 0) where { 30.09/12.93 d = gcd x y; 30.09/12.93 ; 30.09/12.93 reduce0 x y True = x `quot` d :% (y `quot` d); 30.09/12.93 ; 30.09/12.93 reduce1 x y True = error []; 30.09/12.93 reduce1 x y False = reduce0 x y otherwise; 30.09/12.93 } 30.09/12.93 " 30.09/12.93 are unpacked to the following functions on top level 30.09/12.93 "reduce2Reduce1 wxw wxx x y True = error []; 30.09/12.93 reduce2Reduce1 wxw wxx x y False = reduce2Reduce0 wxw wxx x y otherwise; 30.09/12.93 " 30.09/12.93 "reduce2Reduce0 wxw wxx x y True = x `quot` reduce2D wxw wxx :% (y `quot` reduce2D wxw wxx); 30.09/12.93 " 30.09/12.93 "reduce2D wxw wxx = gcd wxw wxx; 30.09/12.93 " 30.09/12.93 The bindings of the following Let/Where expression 30.09/12.93 "mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 30.09/12.93 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.09/12.93 ; 30.09/12.93 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.09/12.93 ; 30.09/12.93 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.09/12.93 ; 30.09/12.93 mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 30.09/12.93 ; 30.09/12.93 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 30.09/12.93 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.09/12.93 ; 30.09/12.93 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.09/12.93 ; 30.09/12.93 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.09/12.93 ; 30.09/12.93 mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 30.09/12.93 ; 30.09/12.93 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 30.09/12.93 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.09/12.93 ; 30.09/12.93 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.09/12.93 ; 30.09/12.93 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 30.09/12.93 ; 30.09/12.93 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 30.09/12.93 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 30.09/12.93 ; 30.09/12.93 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 30.09/12.93 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 30.09/12.93 ; 30.09/12.93 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 30.09/12.93 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 30.09/12.93 ; 30.09/12.93 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.09/12.93 ; 30.09/12.93 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.09/12.93 ; 30.09/12.93 size_l = sizeFM fm_L; 30.09/12.93 ; 30.09/12.93 size_r = sizeFM fm_R; 30.09/12.93 } 30.09/12.93 " 30.09/12.93 are unpacked to the following functions on top level 30.09/12.93 "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.09/12.93 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.09/12.93 " 30.09/12.93 "mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 30.09/12.93 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.09/12.93 " 30.09/12.93 "mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wxy; 30.09/12.93 " 30.09/12.93 "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 wxz wyu fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 30.09/12.93 " 30.09/12.93 "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.09/12.93 " 30.09/12.93 "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.09/12.93 " 30.09/12.93 "mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 30.09/12.93 " 30.09/12.93 "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.09/12.93 " 30.09/12.93 "mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; 30.09/12.93 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.09/12.93 " 30.09/12.93 "mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; 30.09/12.93 " 30.09/12.93 "mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 30.09/12.93 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.09/12.93 " 30.09/12.93 "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 wxz wyu fm_lr fm_r); 30.09/12.93 " 30.09/12.93 "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 wxz wyu fm_l fm_rl) fm_rr; 30.09/12.93 " 30.09/12.93 "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.09/12.93 " 30.09/12.93 "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.09/12.93 " 30.09/12.93 "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.09/12.93 " 30.09/12.93 "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 wxz wyu fm_lrr fm_r); 30.09/12.93 " 30.09/12.93 "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.09/12.93 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.09/12.93 " 30.09/12.93 The bindings of the following Let/Where expression 30.09/12.93 "foldl add fm key_elt_pairs where { 30.09/12.93 add fmap (key,elt) = addToFM_C combiner fmap key elt; 30.09/12.93 } 30.09/12.93 " 30.09/12.93 are unpacked to the following functions on top level 30.09/12.93 "addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; 30.09/12.93 " 30.09/12.93 The bindings of the following Let/Where expression 30.09/12.93 "let { 30.09/12.93 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 30.09/12.93 } in result where { 30.09/12.93 balance_ok = True; 30.09/12.93 ; 30.09/12.93 left_ok = left_ok0 fm_l key fm_l; 30.09/12.93 ; 30.09/12.93 left_ok0 fm_l key EmptyFM = True; 30.09/12.93 left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { 30.09/12.93 biggest_left_key = fst (findMax fm_l); 30.09/12.93 } in biggest_left_key < key; 30.09/12.93 ; 30.09/12.93 left_size = sizeFM fm_l; 30.09/12.93 ; 30.09/12.93 right_ok = right_ok0 fm_r key fm_r; 30.09/12.93 ; 30.09/12.93 right_ok0 fm_r key EmptyFM = True; 30.09/12.93 right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { 30.09/12.93 smallest_right_key = fst (findMin fm_r); 30.09/12.93 } in key < smallest_right_key; 30.09/12.93 ; 30.09/12.93 right_size = sizeFM fm_r; 30.09/12.93 ; 30.09/12.93 unbox x = x; 30.09/12.93 } 30.09/12.93 " 30.09/12.93 are unpacked to the following functions on top level 30.09/12.93 "mkBranchUnbox wyx wyy wyz x = x; 30.09/12.93 " 30.09/12.93 "mkBranchLeft_size wyx wyy wyz = sizeFM wyx; 30.09/12.93 " 30.09/12.93 "mkBranchBalance_ok wyx wyy wyz = True; 30.09/12.93 " 30.09/12.93 "mkBranchRight_size wyx wyy wyz = sizeFM wyy; 30.09/12.93 " 30.09/12.93 "mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; 30.09/12.93 mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 30.09/12.93 " 30.09/12.93 "mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyy wyz wyy; 30.09/12.93 " 30.09/12.93 "mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; 30.09/12.93 mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; 30.09/12.93 " 30.09/12.93 "mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyx wyz wyx; 30.09/12.93 " 30.09/12.93 The bindings of the following Let/Where expression 30.09/12.93 "let { 30.09/12.93 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 30.09/12.93 } in result" 30.09/12.93 are unpacked to the following functions on top level 30.09/12.93 "mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzx wzu (1 + mkBranchLeft_size wzw wzx wzu + mkBranchRight_size wzw wzx wzu)) wzw wzx; 30.09/12.93 " 30.09/12.93 The bindings of the following Let/Where expression 30.09/12.93 "let { 30.09/12.93 biggest_left_key = fst (findMax fm_l); 30.09/12.93 } in biggest_left_key < key" 30.09/12.93 are unpacked to the following functions on top level 30.09/12.93 "mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); 30.09/12.93 " 30.09/12.93 The bindings of the following Let/Where expression 30.09/12.93 "let { 30.09/12.93 smallest_right_key = fst (findMin fm_r); 30.09/12.93 } in key < smallest_right_key" 30.09/12.93 are unpacked to the following functions on top level 30.09/12.93 "mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); 30.09/12.93 " 30.09/12.93 30.09/12.93 ---------------------------------------- 30.09/12.93 30.09/12.93 (12) 30.09/12.93 Obligation: 30.09/12.93 mainModule Main 30.09/12.93 module FiniteMap where { 30.09/12.93 import qualified Main; 30.09/12.93 import qualified Maybe; 30.09/12.93 import qualified Prelude; 30.09/12.93 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 30.09/12.93 30.09/12.93 instance (Eq a, Eq b) => Eq FiniteMap a b where { 30.09/12.93 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 30.09/12.93 } 30.09/12.93 addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; 30.09/12.93 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 30.09/12.93 30.09/12.93 addListToFM0 old new = new; 30.09/12.93 30.09/12.93 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 30.09/12.93 addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; 30.09/12.93 30.09/12.93 addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; 30.09/12.93 30.09/12.93 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 30.09/12.93 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 30.09/12.93 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.09/12.93 30.09/12.93 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.09/12.93 30.09/12.93 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.09/12.93 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.09/12.93 30.09/12.93 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.09/12.93 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.09/12.93 30.09/12.93 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.09/12.93 30.09/12.93 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 30.09/12.93 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 30.09/12.93 30.09/12.93 emptyFM :: FiniteMap a b; 30.09/12.93 emptyFM = EmptyFM; 30.09/12.93 30.09/12.93 findMax :: FiniteMap b a -> (b,a); 30.09/12.93 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 30.09/12.93 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 30.09/12.93 30.09/12.93 findMin :: FiniteMap a b -> (a,b); 30.09/12.93 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 30.09/12.93 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 30.09/12.93 30.09/12.93 fmToList :: FiniteMap a b -> [(a,b)]; 30.09/12.93 fmToList fm = foldFM fmToList0 [] fm; 30.09/12.93 30.09/12.93 fmToList0 key elt rest = (key,elt) : rest; 30.09/12.93 30.09/12.93 foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; 30.09/12.93 foldFM k z EmptyFM = z; 30.09/12.93 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 30.09/12.93 30.09/12.93 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 30.09/12.93 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 30.09/12.93 30.09/12.93 mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 fm_L key elt fm_R key elt fm_L fm_R (mkBalBranch6Size_l fm_L key elt fm_R + mkBalBranch6Size_r fm_L key elt fm_R < 2); 30.09/12.93 30.09/12.93 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 wxz wyu fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 30.09/12.93 30.09/12.93 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 wxz wyu fm_lrr fm_r); 30.09/12.93 30.09/12.93 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.09/12.93 30.09/12.93 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.09/12.93 30.09/12.93 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.09/12.93 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.09/12.93 30.09/12.93 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.09/12.93 30.09/12.93 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.09/12.93 30.09/12.93 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.09/12.93 30.09/12.93 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.09/12.93 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.09/12.93 30.09/12.93 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.09/12.93 30.09/12.93 mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 30.09/12.93 30.09/12.93 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; 30.09/12.93 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.09/12.93 30.09/12.93 mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 30.09/12.93 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.09/12.93 30.09/12.93 mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 30.09/12.93 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.09/12.93 30.09/12.93 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 wxz wyu fm_l fm_rl) fm_rr; 30.09/12.93 30.09/12.93 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 wxz wyu fm_lr fm_r); 30.09/12.93 30.09/12.93 mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wxy; 30.09/12.93 30.09/12.93 mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; 30.09/12.93 30.09/12.93 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 30.09/12.93 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_l fm_r; 30.09/12.93 30.09/12.93 mkBranchBalance_ok wyx wyy wyz = True; 30.09/12.93 30.09/12.93 mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyx wyz wyx; 30.09/12.93 30.09/12.93 mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; 30.09/12.93 mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 30.09/12.93 30.09/12.93 mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); 30.09/12.93 30.09/12.93 mkBranchLeft_size wyx wyy wyz = sizeFM wyx; 30.09/12.93 30.09/12.93 mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzx wzu (1 + mkBranchLeft_size wzw wzx wzu + mkBranchRight_size wzw wzx wzu)) wzw wzx; 30.09/12.93 30.09/12.93 mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyy wyz wyy; 30.09/12.93 30.09/12.93 mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; 30.09/12.93 mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; 30.09/12.93 30.09/12.93 mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); 30.09/12.93 30.09/12.93 mkBranchRight_size wyx wyy wyz = sizeFM wyy; 30.09/12.93 30.09/12.93 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> (FiniteMap a b) ( -> a (Int -> Int))); 30.09/12.93 mkBranchUnbox wyx wyy wyz x = x; 30.09/12.93 30.09/12.93 sIZE_RATIO :: Int; 30.09/12.93 sIZE_RATIO = 5; 30.09/12.93 30.09/12.93 sizeFM :: FiniteMap b a -> Int; 30.09/12.93 sizeFM EmptyFM = 0; 30.09/12.93 sizeFM (Branch vyu vyv size vyw vyx) = size; 30.09/12.93 30.09/12.93 unitFM :: a -> b -> FiniteMap a b; 30.09/12.93 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 30.09/12.93 30.09/12.93 } 30.09/12.93 module Maybe where { 30.09/12.93 import qualified FiniteMap; 30.09/12.93 import qualified Main; 30.09/12.93 import qualified Prelude; 30.09/12.93 } 30.09/12.93 module Main where { 30.09/12.93 import qualified FiniteMap; 30.09/12.93 import qualified Maybe; 30.09/12.93 import qualified Prelude; 30.09/12.93 } 30.09/12.93 30.09/12.93 ---------------------------------------- 30.09/12.93 30.09/12.93 (13) NumRed (SOUND) 30.09/12.93 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 30.09/12.93 ---------------------------------------- 30.09/12.93 30.09/12.93 (14) 30.09/12.93 Obligation: 30.09/12.93 mainModule Main 30.09/12.93 module FiniteMap where { 30.09/12.93 import qualified Main; 30.09/12.93 import qualified Maybe; 30.09/12.93 import qualified Prelude; 30.09/12.93 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 30.09/12.93 30.09/12.93 instance (Eq a, Eq b) => Eq FiniteMap a b where { 30.09/12.93 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 30.09/12.93 } 30.09/12.93 addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; 30.09/12.93 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 30.09/12.93 30.09/12.93 addListToFM0 old new = new; 30.09/12.93 30.09/12.93 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 30.09/12.93 addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; 30.09/12.93 30.09/12.93 addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; 30.09/12.93 30.09/12.93 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 30.09/12.93 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 30.09/12.93 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.09/12.93 30.09/12.93 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.09/12.93 30.09/12.93 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.09/12.93 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.09/12.93 30.09/12.93 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.09/12.93 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.09/12.93 30.09/12.93 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.09/12.93 30.09/12.93 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 30.09/12.93 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 30.09/12.93 30.09/12.93 emptyFM :: FiniteMap b a; 30.09/12.93 emptyFM = EmptyFM; 30.09/12.93 30.09/12.93 findMax :: FiniteMap b a -> (b,a); 30.09/12.93 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 30.09/12.93 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 30.09/12.93 30.09/12.93 findMin :: FiniteMap b a -> (b,a); 30.09/12.93 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 30.09/12.93 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 30.09/12.93 30.09/12.93 fmToList :: FiniteMap b a -> [(b,a)]; 30.09/12.93 fmToList fm = foldFM fmToList0 [] fm; 30.09/12.93 30.09/12.93 fmToList0 key elt rest = (key,elt) : rest; 30.09/12.93 30.09/12.93 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 30.09/12.93 foldFM k z EmptyFM = z; 30.09/12.93 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 30.09/12.93 30.09/12.93 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 30.09/12.93 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 30.09/12.93 30.09/12.93 mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 fm_L key elt fm_R key elt fm_L fm_R (mkBalBranch6Size_l fm_L key elt fm_R + mkBalBranch6Size_r fm_L key elt fm_R < Pos (Succ (Succ Zero))); 30.09/12.93 30.09/12.93 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))))))) wxz wyu fm_l fm_rll) (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) key_r elt_r fm_rlr fm_rr); 30.09/12.93 30.09/12.93 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))))))))))))) wxz wyu fm_lrr fm_r); 30.09/12.93 30.09/12.93 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.09/12.93 30.09/12.93 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.09/12.93 30.09/12.93 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.09/12.93 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.09/12.93 30.09/12.93 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.09/12.93 30.09/12.93 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.09/12.93 30.09/12.93 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.09/12.93 30.09/12.93 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.09/12.93 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.09/12.93 30.09/12.93 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.09/12.93 30.09/12.93 mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ (Succ Zero))) key elt fm_L fm_R; 30.09/12.93 30.09/12.93 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; 30.09/12.93 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.09/12.93 30.09/12.93 mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 30.09/12.93 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.09/12.93 30.09/12.93 mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ Zero)) key elt fm_L fm_R; 30.09/12.93 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.09/12.93 30.09/12.93 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))))) wxz wyu fm_l fm_rl) fm_rr; 30.09/12.93 30.09/12.93 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)))))))))) wxz wyu fm_lr fm_r); 30.09/12.93 30.09/12.93 mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wxy; 30.09/12.93 30.09/12.93 mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; 30.09/12.93 30.09/12.93 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 30.09/12.93 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_l fm_r; 30.09/12.93 30.09/12.93 mkBranchBalance_ok wyx wyy wyz = True; 30.09/12.93 30.09/12.93 mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyx wyz wyx; 30.09/12.93 30.09/12.93 mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; 30.09/12.93 mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 30.09/12.93 30.09/12.93 mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); 30.09/12.93 30.09/12.93 mkBranchLeft_size wyx wyy wyz = sizeFM wyx; 30.09/12.93 30.09/12.93 mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzx wzu (Pos (Succ Zero) + mkBranchLeft_size wzw wzx wzu + mkBranchRight_size wzw wzx wzu)) wzw wzx; 30.09/12.93 30.09/12.93 mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyy wyz wyy; 30.09/12.93 30.09/12.93 mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; 30.09/12.93 mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; 30.09/12.93 30.09/12.93 mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); 30.09/12.93 30.09/12.93 mkBranchRight_size wyx wyy wyz = sizeFM wyy; 30.09/12.93 30.09/12.93 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> (FiniteMap a b) ( -> a (Int -> Int))); 30.09/12.93 mkBranchUnbox wyx wyy wyz x = x; 30.09/12.93 30.09/12.93 sIZE_RATIO :: Int; 30.09/12.93 sIZE_RATIO = Pos (Succ (Succ (Succ (Succ (Succ Zero))))); 30.09/12.93 30.09/12.93 sizeFM :: FiniteMap a b -> Int; 30.09/12.93 sizeFM EmptyFM = Pos Zero; 30.09/12.93 sizeFM (Branch vyu vyv size vyw vyx) = size; 30.09/12.93 30.09/12.93 unitFM :: a -> b -> FiniteMap a b; 30.09/12.93 unitFM key elt = Branch key elt (Pos (Succ Zero)) emptyFM emptyFM; 30.09/12.93 30.09/12.93 } 30.09/12.93 module Maybe where { 30.09/12.93 import qualified FiniteMap; 30.09/12.93 import qualified Main; 30.09/12.93 import qualified Prelude; 30.09/12.93 } 30.09/12.93 module Main where { 30.09/12.93 import qualified FiniteMap; 30.09/12.93 import qualified Maybe; 30.09/12.93 import qualified Prelude; 30.09/12.93 } 30.09/12.93 30.09/12.93 ---------------------------------------- 30.09/12.93 30.09/12.93 (15) Narrow (SOUND) 30.09/12.93 Haskell To QDPs 30.09/12.93 30.09/12.93 digraph dp_graph { 30.09/12.93 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.09/12.93 3[label="FiniteMap.addListToFM xuu3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 30.09/12.93 4[label="FiniteMap.addListToFM xuu3 xuu4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 30.09/12.93 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.09/12.93 6[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu3 xuu4",fontsize=16,color="burlywood",shape="triangle"];4052[label="xuu4/xuu40 : xuu41",fontsize=10,color="white",style="solid",shape="box"];6 -> 4052[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4052 -> 7[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4053[label="xuu4/[]",fontsize=10,color="white",style="solid",shape="box"];6 -> 4053[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4053 -> 8[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 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.09/12.93 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.09/12.93 9 -> 6[label="",style="dashed", color="red", weight=0]; 30.09/12.93 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.09/12.93 9 -> 12[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 10[label="xuu3",fontsize=16,color="green",shape="box"];11[label="FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu3 xuu40",fontsize=16,color="burlywood",shape="box"];4054[label="xuu40/(xuu400,xuu401)",fontsize=10,color="white",style="solid",shape="box"];11 -> 4054[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4054 -> 13[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 12[label="xuu41",fontsize=16,color="green",shape="box"];13[label="FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu3 (xuu400,xuu401)",fontsize=16,color="black",shape="box"];13 -> 14[label="",style="solid", color="black", weight=3]; 30.09/12.93 14[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu3 xuu400 xuu401",fontsize=16,color="burlywood",shape="triangle"];4055[label="xuu3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];14 -> 4055[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4055 -> 15[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4056[label="xuu3/FiniteMap.Branch xuu30 xuu31 xuu32 xuu33 xuu34",fontsize=10,color="white",style="solid",shape="box"];14 -> 4056[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4056 -> 16[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 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.09/12.93 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.09/12.93 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.09/12.93 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.09/12.93 19[label="FiniteMap.unitFM xuu400 xuu401",fontsize=16,color="black",shape="box"];19 -> 21[label="",style="solid", color="black", weight=3]; 30.09/12.93 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.09/12.93 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.09/12.93 21 -> 24[label="",style="dashed", color="green", weight=3]; 30.09/12.93 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.09/12.93 23[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="triangle"];23 -> 26[label="",style="solid", color="black", weight=3]; 30.09/12.93 24 -> 23[label="",style="dashed", color="red", weight=0]; 30.09/12.93 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.09/12.93 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"];4057[label="xuu400/Nothing",fontsize=10,color="white",style="solid",shape="box"];27 -> 4057[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4057 -> 28[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4058[label="xuu400/Just xuu4000",fontsize=10,color="white",style="solid",shape="box"];27 -> 4058[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4058 -> 29[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 28[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu30 xuu31 xuu32 xuu33 xuu34 Nothing xuu401 (compare2 Nothing xuu30 (Nothing == xuu30) == LT)",fontsize=16,color="burlywood",shape="box"];4059[label="xuu30/Nothing",fontsize=10,color="white",style="solid",shape="box"];28 -> 4059[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4059 -> 30[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4060[label="xuu30/Just xuu300",fontsize=10,color="white",style="solid",shape="box"];28 -> 4060[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4060 -> 31[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 29[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu30 xuu31 xuu32 xuu33 xuu34 (Just xuu4000) xuu401 (compare2 (Just xuu4000) xuu30 (Just xuu4000 == xuu30) == LT)",fontsize=16,color="burlywood",shape="box"];4061[label="xuu30/Nothing",fontsize=10,color="white",style="solid",shape="box"];29 -> 4061[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4061 -> 32[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4062[label="xuu30/Just xuu300",fontsize=10,color="white",style="solid",shape="box"];29 -> 4062[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4062 -> 33[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 30[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 Nothing xuu401 (compare2 Nothing Nothing (Nothing == Nothing) == LT)",fontsize=16,color="black",shape="box"];30 -> 34[label="",style="solid", color="black", weight=3]; 30.09/12.93 31[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu300) xuu31 xuu32 xuu33 xuu34 Nothing xuu401 (compare2 Nothing (Just xuu300) (Nothing == Just xuu300) == LT)",fontsize=16,color="black",shape="box"];31 -> 35[label="",style="solid", color="black", weight=3]; 30.09/12.93 32[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 (Just xuu4000) xuu401 (compare2 (Just xuu4000) Nothing (Just xuu4000 == Nothing) == LT)",fontsize=16,color="black",shape="box"];32 -> 36[label="",style="solid", color="black", weight=3]; 30.09/12.93 33[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu300) xuu31 xuu32 xuu33 xuu34 (Just xuu4000) xuu401 (compare2 (Just xuu4000) (Just xuu300) (Just xuu4000 == Just xuu300) == LT)",fontsize=16,color="black",shape="box"];33 -> 37[label="",style="solid", color="black", weight=3]; 30.09/12.93 34[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 Nothing xuu401 (compare2 Nothing Nothing True == LT)",fontsize=16,color="black",shape="box"];34 -> 38[label="",style="solid", color="black", weight=3]; 30.09/12.93 35 -> 95[label="",style="dashed", color="red", weight=0]; 30.09/12.93 35[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu300) xuu31 xuu32 xuu33 xuu34 Nothing xuu401 (compare2 Nothing (Just xuu300) False == LT)",fontsize=16,color="magenta"];35 -> 96[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 36 -> 104[label="",style="dashed", color="red", weight=0]; 30.09/12.93 36[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 (Just xuu4000) xuu401 (compare2 (Just xuu4000) Nothing False == LT)",fontsize=16,color="magenta"];36 -> 105[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 37 -> 151[label="",style="dashed", color="red", weight=0]; 30.09/12.93 37[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu300) xuu31 xuu32 xuu33 xuu34 (Just xuu4000) xuu401 (compare2 (Just xuu4000) (Just xuu300) (xuu4000 == xuu300) == LT)",fontsize=16,color="magenta"];37 -> 152[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 37 -> 153[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 37 -> 154[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 37 -> 155[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 37 -> 156[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 37 -> 157[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 37 -> 158[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 37 -> 159[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 38[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 Nothing xuu401 (EQ == LT)",fontsize=16,color="black",shape="box"];38 -> 50[label="",style="solid", color="black", weight=3]; 30.09/12.93 96 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.93 96[label="compare2 Nothing (Just xuu300) False == LT",fontsize=16,color="magenta"];96 -> 100[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 96 -> 101[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 95[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu300) xuu31 xuu32 xuu33 xuu34 Nothing xuu401 xuu22",fontsize=16,color="burlywood",shape="triangle"];4063[label="xuu22/False",fontsize=10,color="white",style="solid",shape="box"];95 -> 4063[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4063 -> 102[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4064[label="xuu22/True",fontsize=10,color="white",style="solid",shape="box"];95 -> 4064[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4064 -> 103[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 105 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.93 105[label="compare2 (Just xuu4000) Nothing False == LT",fontsize=16,color="magenta"];105 -> 109[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 105 -> 110[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 104[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 (Just xuu4000) xuu401 xuu23",fontsize=16,color="burlywood",shape="triangle"];4065[label="xuu23/False",fontsize=10,color="white",style="solid",shape="box"];104 -> 4065[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4065 -> 111[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4066[label="xuu23/True",fontsize=10,color="white",style="solid",shape="box"];104 -> 4066[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4066 -> 112[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 152[label="xuu34",fontsize=16,color="green",shape="box"];153[label="xuu300",fontsize=16,color="green",shape="box"];154[label="xuu401",fontsize=16,color="green",shape="box"];155[label="xuu33",fontsize=16,color="green",shape="box"];156[label="xuu4000",fontsize=16,color="green",shape="box"];157 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.93 157[label="compare2 (Just xuu4000) (Just xuu300) (xuu4000 == xuu300) == LT",fontsize=16,color="magenta"];157 -> 163[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 157 -> 164[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 158[label="xuu31",fontsize=16,color="green",shape="box"];159[label="xuu32",fontsize=16,color="green",shape="box"];151[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu14) xuu15 xuu16 xuu17 xuu18 (Just xuu19) xuu20 xuu24",fontsize=16,color="burlywood",shape="triangle"];4067[label="xuu24/False",fontsize=10,color="white",style="solid",shape="box"];151 -> 4067[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4067 -> 165[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4068[label="xuu24/True",fontsize=10,color="white",style="solid",shape="box"];151 -> 4068[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4068 -> 166[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 50[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 Nothing xuu401 False",fontsize=16,color="black",shape="box"];50 -> 69[label="",style="solid", color="black", weight=3]; 30.09/12.93 100 -> 1994[label="",style="dashed", color="red", weight=0]; 30.09/12.93 100[label="compare2 Nothing (Just xuu300) False",fontsize=16,color="magenta"];100 -> 1995[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 100 -> 1996[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 100 -> 1997[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 101[label="LT",fontsize=16,color="green",shape="box"];59[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4069[label="xuu4000/LT",fontsize=10,color="white",style="solid",shape="box"];59 -> 4069[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4069 -> 80[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4070[label="xuu4000/EQ",fontsize=10,color="white",style="solid",shape="box"];59 -> 4070[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4070 -> 81[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4071[label="xuu4000/GT",fontsize=10,color="white",style="solid",shape="box"];59 -> 4071[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4071 -> 82[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 102[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu300) xuu31 xuu32 xuu33 xuu34 Nothing xuu401 False",fontsize=16,color="black",shape="box"];102 -> 114[label="",style="solid", color="black", weight=3]; 30.09/12.93 103[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu300) xuu31 xuu32 xuu33 xuu34 Nothing xuu401 True",fontsize=16,color="black",shape="box"];103 -> 115[label="",style="solid", color="black", weight=3]; 30.09/12.93 109 -> 1994[label="",style="dashed", color="red", weight=0]; 30.09/12.93 109[label="compare2 (Just xuu4000) Nothing False",fontsize=16,color="magenta"];109 -> 1998[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 109 -> 1999[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 109 -> 2000[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 110[label="LT",fontsize=16,color="green",shape="box"];111[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 (Just xuu4000) xuu401 False",fontsize=16,color="black",shape="box"];111 -> 168[label="",style="solid", color="black", weight=3]; 30.09/12.93 112[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 (Just xuu4000) xuu401 True",fontsize=16,color="black",shape="box"];112 -> 169[label="",style="solid", color="black", weight=3]; 30.09/12.93 163 -> 1994[label="",style="dashed", color="red", weight=0]; 30.09/12.93 163[label="compare2 (Just xuu4000) (Just xuu300) (xuu4000 == xuu300)",fontsize=16,color="magenta"];163 -> 2001[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 163 -> 2002[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 163 -> 2003[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 164[label="LT",fontsize=16,color="green",shape="box"];165[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu14) xuu15 xuu16 xuu17 xuu18 (Just xuu19) xuu20 False",fontsize=16,color="black",shape="box"];165 -> 178[label="",style="solid", color="black", weight=3]; 30.09/12.93 166[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu14) xuu15 xuu16 xuu17 xuu18 (Just xuu19) xuu20 True",fontsize=16,color="black",shape="box"];166 -> 179[label="",style="solid", color="black", weight=3]; 30.09/12.93 69 -> 205[label="",style="dashed", color="red", weight=0]; 30.09/12.93 69[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 Nothing xuu401 (Nothing > Nothing)",fontsize=16,color="magenta"];69 -> 206[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 1995[label="False",fontsize=16,color="green",shape="box"];1996[label="Nothing",fontsize=16,color="green",shape="box"];1997[label="Just xuu300",fontsize=16,color="green",shape="box"];1994[label="compare2 xuu300 xuu310 xuu113",fontsize=16,color="burlywood",shape="triangle"];4072[label="xuu113/False",fontsize=10,color="white",style="solid",shape="box"];1994 -> 4072[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4072 -> 2029[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4073[label="xuu113/True",fontsize=10,color="white",style="solid",shape="box"];1994 -> 4073[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4073 -> 2030[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 80[label="LT == xuu300",fontsize=16,color="burlywood",shape="box"];4074[label="xuu300/LT",fontsize=10,color="white",style="solid",shape="box"];80 -> 4074[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4074 -> 116[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4075[label="xuu300/EQ",fontsize=10,color="white",style="solid",shape="box"];80 -> 4075[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4075 -> 117[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4076[label="xuu300/GT",fontsize=10,color="white",style="solid",shape="box"];80 -> 4076[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4076 -> 118[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 81[label="EQ == xuu300",fontsize=16,color="burlywood",shape="box"];4077[label="xuu300/LT",fontsize=10,color="white",style="solid",shape="box"];81 -> 4077[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4077 -> 119[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4078[label="xuu300/EQ",fontsize=10,color="white",style="solid",shape="box"];81 -> 4078[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4078 -> 120[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4079[label="xuu300/GT",fontsize=10,color="white",style="solid",shape="box"];81 -> 4079[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4079 -> 121[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 82[label="GT == xuu300",fontsize=16,color="burlywood",shape="box"];4080[label="xuu300/LT",fontsize=10,color="white",style="solid",shape="box"];82 -> 4080[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4080 -> 122[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4081[label="xuu300/EQ",fontsize=10,color="white",style="solid",shape="box"];82 -> 4081[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4081 -> 123[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4082[label="xuu300/GT",fontsize=10,color="white",style="solid",shape="box"];82 -> 4082[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4082 -> 124[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 114 -> 221[label="",style="dashed", color="red", weight=0]; 30.09/12.93 114[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu300) xuu31 xuu32 xuu33 xuu34 Nothing xuu401 (Nothing > Just xuu300)",fontsize=16,color="magenta"];114 -> 222[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 115 -> 172[label="",style="dashed", color="red", weight=0]; 30.09/12.93 115[label="FiniteMap.mkBalBranch (Just xuu300) xuu31 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu33 Nothing xuu401) xuu34",fontsize=16,color="magenta"];115 -> 173[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 1998[label="False",fontsize=16,color="green",shape="box"];1999[label="Just xuu4000",fontsize=16,color="green",shape="box"];2000[label="Nothing",fontsize=16,color="green",shape="box"];168 -> 231[label="",style="dashed", color="red", weight=0]; 30.09/12.93 168[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 (Just xuu4000) xuu401 (Just xuu4000 > Nothing)",fontsize=16,color="magenta"];168 -> 232[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 169 -> 182[label="",style="dashed", color="red", weight=0]; 30.09/12.93 169[label="FiniteMap.mkBalBranch Nothing xuu31 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu33 (Just xuu4000) xuu401) xuu34",fontsize=16,color="magenta"];169 -> 183[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2001[label="xuu4000 == xuu300",fontsize=16,color="blue",shape="box"];4083[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2001 -> 4083[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4083 -> 2031[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4084[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2001 -> 4084[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4084 -> 2032[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4085[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2001 -> 4085[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4085 -> 2033[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4086[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2001 -> 4086[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4086 -> 2034[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4087[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2001 -> 4087[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4087 -> 2035[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4088[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2001 -> 4088[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4088 -> 2036[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4089[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2001 -> 4089[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4089 -> 2037[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4090[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2001 -> 4090[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4090 -> 2038[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4091[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2001 -> 4091[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4091 -> 2039[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4092[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2001 -> 4092[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4092 -> 2040[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4093[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2001 -> 4093[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4093 -> 2041[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4094[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2001 -> 4094[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4094 -> 2042[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4095[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2001 -> 4095[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4095 -> 2043[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4096[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2001 -> 4096[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4096 -> 2044[label="",style="solid", color="blue", weight=3]; 30.09/12.93 2002[label="Just xuu4000",fontsize=16,color="green",shape="box"];2003[label="Just xuu300",fontsize=16,color="green",shape="box"];178 -> 259[label="",style="dashed", color="red", weight=0]; 30.09/12.93 178[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu14) xuu15 xuu16 xuu17 xuu18 (Just xuu19) xuu20 (Just xuu19 > Just xuu14)",fontsize=16,color="magenta"];178 -> 260[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 179 -> 172[label="",style="dashed", color="red", weight=0]; 30.09/12.93 179[label="FiniteMap.mkBalBranch (Just xuu14) xuu15 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu17 (Just xuu19) xuu20) xuu18",fontsize=16,color="magenta"];179 -> 201[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 179 -> 202[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 179 -> 203[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 179 -> 204[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 206[label="Nothing > Nothing",fontsize=16,color="black",shape="box"];206 -> 208[label="",style="solid", color="black", weight=3]; 30.09/12.93 205[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 Nothing xuu401 xuu34",fontsize=16,color="burlywood",shape="triangle"];4097[label="xuu34/False",fontsize=10,color="white",style="solid",shape="box"];205 -> 4097[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4097 -> 209[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4098[label="xuu34/True",fontsize=10,color="white",style="solid",shape="box"];205 -> 4098[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4098 -> 210[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2029[label="compare2 xuu300 xuu310 False",fontsize=16,color="black",shape="box"];2029 -> 2051[label="",style="solid", color="black", weight=3]; 30.09/12.93 2030[label="compare2 xuu300 xuu310 True",fontsize=16,color="black",shape="box"];2030 -> 2052[label="",style="solid", color="black", weight=3]; 30.09/12.93 116[label="LT == LT",fontsize=16,color="black",shape="box"];116 -> 212[label="",style="solid", color="black", weight=3]; 30.09/12.93 117[label="LT == EQ",fontsize=16,color="black",shape="box"];117 -> 213[label="",style="solid", color="black", weight=3]; 30.09/12.93 118[label="LT == GT",fontsize=16,color="black",shape="box"];118 -> 214[label="",style="solid", color="black", weight=3]; 30.09/12.93 119[label="EQ == LT",fontsize=16,color="black",shape="box"];119 -> 215[label="",style="solid", color="black", weight=3]; 30.09/12.93 120[label="EQ == EQ",fontsize=16,color="black",shape="box"];120 -> 216[label="",style="solid", color="black", weight=3]; 30.09/12.93 121[label="EQ == GT",fontsize=16,color="black",shape="box"];121 -> 217[label="",style="solid", color="black", weight=3]; 30.09/12.93 122[label="GT == LT",fontsize=16,color="black",shape="box"];122 -> 218[label="",style="solid", color="black", weight=3]; 30.09/12.93 123[label="GT == EQ",fontsize=16,color="black",shape="box"];123 -> 219[label="",style="solid", color="black", weight=3]; 30.09/12.93 124[label="GT == GT",fontsize=16,color="black",shape="box"];124 -> 220[label="",style="solid", color="black", weight=3]; 30.09/12.93 222[label="Nothing > Just xuu300",fontsize=16,color="black",shape="box"];222 -> 224[label="",style="solid", color="black", weight=3]; 30.09/12.93 221[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu300) xuu31 xuu32 xuu33 xuu34 Nothing xuu401 xuu35",fontsize=16,color="burlywood",shape="triangle"];4099[label="xuu35/False",fontsize=10,color="white",style="solid",shape="box"];221 -> 4099[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4099 -> 225[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4100[label="xuu35/True",fontsize=10,color="white",style="solid",shape="box"];221 -> 4100[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4100 -> 226[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 173 -> 14[label="",style="dashed", color="red", weight=0]; 30.09/12.93 173[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu33 Nothing xuu401",fontsize=16,color="magenta"];173 -> 227[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 173 -> 228[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 172[label="FiniteMap.mkBalBranch (Just xuu300) xuu31 xuu25 xuu34",fontsize=16,color="black",shape="triangle"];172 -> 229[label="",style="solid", color="black", weight=3]; 30.09/12.93 232[label="Just xuu4000 > Nothing",fontsize=16,color="black",shape="box"];232 -> 234[label="",style="solid", color="black", weight=3]; 30.09/12.93 231[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 (Just xuu4000) xuu401 xuu36",fontsize=16,color="burlywood",shape="triangle"];4101[label="xuu36/False",fontsize=10,color="white",style="solid",shape="box"];231 -> 4101[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4101 -> 235[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4102[label="xuu36/True",fontsize=10,color="white",style="solid",shape="box"];231 -> 4102[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4102 -> 236[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 183 -> 14[label="",style="dashed", color="red", weight=0]; 30.09/12.93 183[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu33 (Just xuu4000) xuu401",fontsize=16,color="magenta"];183 -> 237[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 183 -> 238[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 182[label="FiniteMap.mkBalBranch Nothing xuu31 xuu33 xuu34",fontsize=16,color="black",shape="triangle"];182 -> 239[label="",style="solid", color="black", weight=3]; 30.09/12.93 2031[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4103[label="xuu4000/(xuu40000,xuu40001)",fontsize=10,color="white",style="solid",shape="box"];2031 -> 4103[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4103 -> 2053[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2032[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4104[label="xuu4000/(xuu40000,xuu40001,xuu40002)",fontsize=10,color="white",style="solid",shape="box"];2032 -> 4104[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4104 -> 2054[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2033[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4105[label="xuu4000/False",fontsize=10,color="white",style="solid",shape="box"];2033 -> 4105[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4105 -> 2055[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4106[label="xuu4000/True",fontsize=10,color="white",style="solid",shape="box"];2033 -> 4106[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4106 -> 2056[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2034[label="xuu4000 == xuu300",fontsize=16,color="black",shape="triangle"];2034 -> 2057[label="",style="solid", color="black", weight=3]; 30.09/12.93 2035[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4107[label="xuu4000/Left xuu40000",fontsize=10,color="white",style="solid",shape="box"];2035 -> 4107[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4107 -> 2058[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4108[label="xuu4000/Right xuu40000",fontsize=10,color="white",style="solid",shape="box"];2035 -> 4108[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4108 -> 2059[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2036[label="xuu4000 == xuu300",fontsize=16,color="black",shape="triangle"];2036 -> 2060[label="",style="solid", color="black", weight=3]; 30.09/12.93 2037 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2037[label="xuu4000 == xuu300",fontsize=16,color="magenta"];2038[label="xuu4000 == xuu300",fontsize=16,color="black",shape="triangle"];2038 -> 2061[label="",style="solid", color="black", weight=3]; 30.09/12.93 2039[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4109[label="xuu4000/xuu40000 :% xuu40001",fontsize=10,color="white",style="solid",shape="box"];2039 -> 4109[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4109 -> 2062[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2040[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4110[label="xuu4000/Nothing",fontsize=10,color="white",style="solid",shape="box"];2040 -> 4110[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4110 -> 2063[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4111[label="xuu4000/Just xuu40000",fontsize=10,color="white",style="solid",shape="box"];2040 -> 4111[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4111 -> 2064[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2041[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4112[label="xuu4000/()",fontsize=10,color="white",style="solid",shape="box"];2041 -> 4112[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4112 -> 2065[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2042[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4113[label="xuu4000/Integer xuu40000",fontsize=10,color="white",style="solid",shape="box"];2042 -> 4113[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4113 -> 2066[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2043[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4114[label="xuu4000/xuu40000 : xuu40001",fontsize=10,color="white",style="solid",shape="box"];2043 -> 4114[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4114 -> 2067[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4115[label="xuu4000/[]",fontsize=10,color="white",style="solid",shape="box"];2043 -> 4115[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4115 -> 2068[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2044[label="xuu4000 == xuu300",fontsize=16,color="black",shape="triangle"];2044 -> 2069[label="",style="solid", color="black", weight=3]; 30.09/12.93 260[label="Just xuu19 > Just xuu14",fontsize=16,color="black",shape="box"];260 -> 262[label="",style="solid", color="black", weight=3]; 30.09/12.93 259[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu14) xuu15 xuu16 xuu17 xuu18 (Just xuu19) xuu20 xuu37",fontsize=16,color="burlywood",shape="triangle"];4116[label="xuu37/False",fontsize=10,color="white",style="solid",shape="box"];259 -> 4116[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4116 -> 263[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4117[label="xuu37/True",fontsize=10,color="white",style="solid",shape="box"];259 -> 4117[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4117 -> 264[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 201 -> 14[label="",style="dashed", color="red", weight=0]; 30.09/12.93 201[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu17 (Just xuu19) xuu20",fontsize=16,color="magenta"];201 -> 265[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 201 -> 266[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 201 -> 267[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 202[label="xuu15",fontsize=16,color="green",shape="box"];203[label="xuu18",fontsize=16,color="green",shape="box"];204[label="xuu14",fontsize=16,color="green",shape="box"];208 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.93 208[label="compare Nothing Nothing == GT",fontsize=16,color="magenta"];208 -> 268[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 208 -> 269[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 209[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 Nothing xuu401 False",fontsize=16,color="black",shape="box"];209 -> 270[label="",style="solid", color="black", weight=3]; 30.09/12.93 210[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 Nothing xuu401 True",fontsize=16,color="black",shape="box"];210 -> 271[label="",style="solid", color="black", weight=3]; 30.09/12.93 2051[label="compare1 xuu300 xuu310 (xuu300 <= xuu310)",fontsize=16,color="burlywood",shape="box"];4118[label="xuu300/Nothing",fontsize=10,color="white",style="solid",shape="box"];2051 -> 4118[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4118 -> 2096[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4119[label="xuu300/Just xuu3000",fontsize=10,color="white",style="solid",shape="box"];2051 -> 4119[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4119 -> 2097[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2052[label="EQ",fontsize=16,color="green",shape="box"];212[label="True",fontsize=16,color="green",shape="box"];213[label="False",fontsize=16,color="green",shape="box"];214[label="False",fontsize=16,color="green",shape="box"];215[label="False",fontsize=16,color="green",shape="box"];216[label="True",fontsize=16,color="green",shape="box"];217[label="False",fontsize=16,color="green",shape="box"];218[label="False",fontsize=16,color="green",shape="box"];219[label="False",fontsize=16,color="green",shape="box"];220[label="True",fontsize=16,color="green",shape="box"];224 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.93 224[label="compare Nothing (Just xuu300) == GT",fontsize=16,color="magenta"];224 -> 272[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 224 -> 273[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 225[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu300) xuu31 xuu32 xuu33 xuu34 Nothing xuu401 False",fontsize=16,color="black",shape="box"];225 -> 274[label="",style="solid", color="black", weight=3]; 30.09/12.93 226[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu300) xuu31 xuu32 xuu33 xuu34 Nothing xuu401 True",fontsize=16,color="black",shape="box"];226 -> 275[label="",style="solid", color="black", weight=3]; 30.09/12.93 227[label="xuu33",fontsize=16,color="green",shape="box"];228[label="Nothing",fontsize=16,color="green",shape="box"];229[label="FiniteMap.mkBalBranch6 (Just xuu300) xuu31 xuu25 xuu34",fontsize=16,color="black",shape="box"];229 -> 276[label="",style="solid", color="black", weight=3]; 30.09/12.93 234 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.93 234[label="compare (Just xuu4000) Nothing == GT",fontsize=16,color="magenta"];234 -> 278[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 234 -> 279[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 235[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 (Just xuu4000) xuu401 False",fontsize=16,color="black",shape="box"];235 -> 280[label="",style="solid", color="black", weight=3]; 30.09/12.93 236[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 (Just xuu4000) xuu401 True",fontsize=16,color="black",shape="box"];236 -> 281[label="",style="solid", color="black", weight=3]; 30.09/12.93 237[label="xuu33",fontsize=16,color="green",shape="box"];238[label="Just xuu4000",fontsize=16,color="green",shape="box"];239[label="FiniteMap.mkBalBranch6 Nothing xuu31 xuu33 xuu34",fontsize=16,color="black",shape="box"];239 -> 282[label="",style="solid", color="black", weight=3]; 30.09/12.93 2053[label="(xuu40000,xuu40001) == xuu300",fontsize=16,color="burlywood",shape="box"];4120[label="xuu300/(xuu3000,xuu3001)",fontsize=10,color="white",style="solid",shape="box"];2053 -> 4120[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4120 -> 2098[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2054[label="(xuu40000,xuu40001,xuu40002) == xuu300",fontsize=16,color="burlywood",shape="box"];4121[label="xuu300/(xuu3000,xuu3001,xuu3002)",fontsize=10,color="white",style="solid",shape="box"];2054 -> 4121[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4121 -> 2099[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2055[label="False == xuu300",fontsize=16,color="burlywood",shape="box"];4122[label="xuu300/False",fontsize=10,color="white",style="solid",shape="box"];2055 -> 4122[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4122 -> 2100[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4123[label="xuu300/True",fontsize=10,color="white",style="solid",shape="box"];2055 -> 4123[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4123 -> 2101[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2056[label="True == xuu300",fontsize=16,color="burlywood",shape="box"];4124[label="xuu300/False",fontsize=10,color="white",style="solid",shape="box"];2056 -> 4124[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4124 -> 2102[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4125[label="xuu300/True",fontsize=10,color="white",style="solid",shape="box"];2056 -> 4125[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4125 -> 2103[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2057[label="primEqInt xuu4000 xuu300",fontsize=16,color="burlywood",shape="triangle"];4126[label="xuu4000/Pos xuu40000",fontsize=10,color="white",style="solid",shape="box"];2057 -> 4126[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4126 -> 2104[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4127[label="xuu4000/Neg xuu40000",fontsize=10,color="white",style="solid",shape="box"];2057 -> 4127[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4127 -> 2105[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2058[label="Left xuu40000 == xuu300",fontsize=16,color="burlywood",shape="box"];4128[label="xuu300/Left xuu3000",fontsize=10,color="white",style="solid",shape="box"];2058 -> 4128[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4128 -> 2106[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4129[label="xuu300/Right xuu3000",fontsize=10,color="white",style="solid",shape="box"];2058 -> 4129[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4129 -> 2107[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2059[label="Right xuu40000 == xuu300",fontsize=16,color="burlywood",shape="box"];4130[label="xuu300/Left xuu3000",fontsize=10,color="white",style="solid",shape="box"];2059 -> 4130[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4130 -> 2108[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4131[label="xuu300/Right xuu3000",fontsize=10,color="white",style="solid",shape="box"];2059 -> 4131[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4131 -> 2109[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2060[label="primEqChar xuu4000 xuu300",fontsize=16,color="burlywood",shape="box"];4132[label="xuu4000/Char xuu40000",fontsize=10,color="white",style="solid",shape="box"];2060 -> 4132[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4132 -> 2110[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2061[label="primEqFloat xuu4000 xuu300",fontsize=16,color="burlywood",shape="box"];4133[label="xuu4000/Float xuu40000 xuu40001",fontsize=10,color="white",style="solid",shape="box"];2061 -> 4133[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4133 -> 2111[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2062[label="xuu40000 :% xuu40001 == xuu300",fontsize=16,color="burlywood",shape="box"];4134[label="xuu300/xuu3000 :% xuu3001",fontsize=10,color="white",style="solid",shape="box"];2062 -> 4134[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4134 -> 2112[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2063[label="Nothing == xuu300",fontsize=16,color="burlywood",shape="box"];4135[label="xuu300/Nothing",fontsize=10,color="white",style="solid",shape="box"];2063 -> 4135[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4135 -> 2113[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4136[label="xuu300/Just xuu3000",fontsize=10,color="white",style="solid",shape="box"];2063 -> 4136[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4136 -> 2114[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2064[label="Just xuu40000 == xuu300",fontsize=16,color="burlywood",shape="box"];4137[label="xuu300/Nothing",fontsize=10,color="white",style="solid",shape="box"];2064 -> 4137[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4137 -> 2115[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4138[label="xuu300/Just xuu3000",fontsize=10,color="white",style="solid",shape="box"];2064 -> 4138[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4138 -> 2116[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2065[label="() == xuu300",fontsize=16,color="burlywood",shape="box"];4139[label="xuu300/()",fontsize=10,color="white",style="solid",shape="box"];2065 -> 4139[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4139 -> 2117[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2066[label="Integer xuu40000 == xuu300",fontsize=16,color="burlywood",shape="box"];4140[label="xuu300/Integer xuu3000",fontsize=10,color="white",style="solid",shape="box"];2066 -> 4140[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4140 -> 2118[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2067[label="xuu40000 : xuu40001 == xuu300",fontsize=16,color="burlywood",shape="box"];4141[label="xuu300/xuu3000 : xuu3001",fontsize=10,color="white",style="solid",shape="box"];2067 -> 4141[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4141 -> 2119[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4142[label="xuu300/[]",fontsize=10,color="white",style="solid",shape="box"];2067 -> 4142[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4142 -> 2120[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2068[label="[] == xuu300",fontsize=16,color="burlywood",shape="box"];4143[label="xuu300/xuu3000 : xuu3001",fontsize=10,color="white",style="solid",shape="box"];2068 -> 4143[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4143 -> 2121[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4144[label="xuu300/[]",fontsize=10,color="white",style="solid",shape="box"];2068 -> 4144[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4144 -> 2122[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2069[label="primEqDouble xuu4000 xuu300",fontsize=16,color="burlywood",shape="box"];4145[label="xuu4000/Double xuu40000 xuu40001",fontsize=10,color="white",style="solid",shape="box"];2069 -> 4145[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4145 -> 2123[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 262 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.93 262[label="compare (Just xuu19) (Just xuu14) == GT",fontsize=16,color="magenta"];262 -> 310[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 262 -> 311[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 263[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu14) xuu15 xuu16 xuu17 xuu18 (Just xuu19) xuu20 False",fontsize=16,color="black",shape="box"];263 -> 312[label="",style="solid", color="black", weight=3]; 30.09/12.93 264[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu14) xuu15 xuu16 xuu17 xuu18 (Just xuu19) xuu20 True",fontsize=16,color="black",shape="box"];264 -> 313[label="",style="solid", color="black", weight=3]; 30.09/12.93 265[label="xuu17",fontsize=16,color="green",shape="box"];266[label="Just xuu19",fontsize=16,color="green",shape="box"];267[label="xuu20",fontsize=16,color="green",shape="box"];268[label="compare Nothing Nothing",fontsize=16,color="black",shape="box"];268 -> 314[label="",style="solid", color="black", weight=3]; 30.09/12.93 269[label="GT",fontsize=16,color="green",shape="box"];270[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 Nothing xuu401 otherwise",fontsize=16,color="black",shape="box"];270 -> 315[label="",style="solid", color="black", weight=3]; 30.09/12.93 271 -> 182[label="",style="dashed", color="red", weight=0]; 30.09/12.93 271[label="FiniteMap.mkBalBranch Nothing xuu31 xuu33 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu34 Nothing xuu401)",fontsize=16,color="magenta"];271 -> 316[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 271 -> 317[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2096[label="compare1 Nothing xuu310 (Nothing <= xuu310)",fontsize=16,color="burlywood",shape="box"];4146[label="xuu310/Nothing",fontsize=10,color="white",style="solid",shape="box"];2096 -> 4146[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4146 -> 2190[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4147[label="xuu310/Just xuu3100",fontsize=10,color="white",style="solid",shape="box"];2096 -> 4147[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4147 -> 2191[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2097[label="compare1 (Just xuu3000) xuu310 (Just xuu3000 <= xuu310)",fontsize=16,color="burlywood",shape="box"];4148[label="xuu310/Nothing",fontsize=10,color="white",style="solid",shape="box"];2097 -> 4148[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4148 -> 2192[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4149[label="xuu310/Just xuu3100",fontsize=10,color="white",style="solid",shape="box"];2097 -> 4149[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4149 -> 2193[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 272[label="compare Nothing (Just xuu300)",fontsize=16,color="black",shape="box"];272 -> 318[label="",style="solid", color="black", weight=3]; 30.09/12.93 273[label="GT",fontsize=16,color="green",shape="box"];274[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Just xuu300) xuu31 xuu32 xuu33 xuu34 Nothing xuu401 otherwise",fontsize=16,color="black",shape="box"];274 -> 319[label="",style="solid", color="black", weight=3]; 30.09/12.93 275 -> 172[label="",style="dashed", color="red", weight=0]; 30.09/12.93 275[label="FiniteMap.mkBalBranch (Just xuu300) xuu31 xuu33 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu34 Nothing xuu401)",fontsize=16,color="magenta"];275 -> 320[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 275 -> 321[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 276 -> 381[label="",style="dashed", color="red", weight=0]; 30.09/12.93 276[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu25 (Just xuu300) xuu31 xuu34 (Just xuu300) xuu31 xuu25 xuu34 (FiniteMap.mkBalBranch6Size_l xuu25 (Just xuu300) xuu31 xuu34 + FiniteMap.mkBalBranch6Size_r xuu25 (Just xuu300) xuu31 xuu34 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];276 -> 382[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 278[label="compare (Just xuu4000) Nothing",fontsize=16,color="black",shape="box"];278 -> 324[label="",style="solid", color="black", weight=3]; 30.09/12.93 279[label="GT",fontsize=16,color="green",shape="box"];280[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 (Just xuu4000) xuu401 otherwise",fontsize=16,color="black",shape="box"];280 -> 325[label="",style="solid", color="black", weight=3]; 30.09/12.93 281 -> 182[label="",style="dashed", color="red", weight=0]; 30.09/12.93 281[label="FiniteMap.mkBalBranch Nothing xuu31 xuu33 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu34 (Just xuu4000) xuu401)",fontsize=16,color="magenta"];281 -> 326[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 281 -> 327[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 282 -> 391[label="",style="dashed", color="red", weight=0]; 30.09/12.93 282[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu33 Nothing xuu31 xuu34 Nothing xuu31 xuu33 xuu34 (FiniteMap.mkBalBranch6Size_l xuu33 Nothing xuu31 xuu34 + FiniteMap.mkBalBranch6Size_r xuu33 Nothing xuu31 xuu34 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];282 -> 392[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2098[label="(xuu40000,xuu40001) == (xuu3000,xuu3001)",fontsize=16,color="black",shape="box"];2098 -> 2194[label="",style="solid", color="black", weight=3]; 30.09/12.93 2099[label="(xuu40000,xuu40001,xuu40002) == (xuu3000,xuu3001,xuu3002)",fontsize=16,color="black",shape="box"];2099 -> 2195[label="",style="solid", color="black", weight=3]; 30.09/12.93 2100[label="False == False",fontsize=16,color="black",shape="box"];2100 -> 2196[label="",style="solid", color="black", weight=3]; 30.09/12.93 2101[label="False == True",fontsize=16,color="black",shape="box"];2101 -> 2197[label="",style="solid", color="black", weight=3]; 30.09/12.93 2102[label="True == False",fontsize=16,color="black",shape="box"];2102 -> 2198[label="",style="solid", color="black", weight=3]; 30.09/12.93 2103[label="True == True",fontsize=16,color="black",shape="box"];2103 -> 2199[label="",style="solid", color="black", weight=3]; 30.09/12.93 2104[label="primEqInt (Pos xuu40000) xuu300",fontsize=16,color="burlywood",shape="box"];4150[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];2104 -> 4150[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4150 -> 2200[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4151[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];2104 -> 4151[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4151 -> 2201[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2105[label="primEqInt (Neg xuu40000) xuu300",fontsize=16,color="burlywood",shape="box"];4152[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];2105 -> 4152[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4152 -> 2202[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4153[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];2105 -> 4153[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4153 -> 2203[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2106[label="Left xuu40000 == Left xuu3000",fontsize=16,color="black",shape="box"];2106 -> 2204[label="",style="solid", color="black", weight=3]; 30.09/12.93 2107[label="Left xuu40000 == Right xuu3000",fontsize=16,color="black",shape="box"];2107 -> 2205[label="",style="solid", color="black", weight=3]; 30.09/12.93 2108[label="Right xuu40000 == Left xuu3000",fontsize=16,color="black",shape="box"];2108 -> 2206[label="",style="solid", color="black", weight=3]; 30.09/12.93 2109[label="Right xuu40000 == Right xuu3000",fontsize=16,color="black",shape="box"];2109 -> 2207[label="",style="solid", color="black", weight=3]; 30.09/12.93 2110[label="primEqChar (Char xuu40000) xuu300",fontsize=16,color="burlywood",shape="box"];4154[label="xuu300/Char xuu3000",fontsize=10,color="white",style="solid",shape="box"];2110 -> 4154[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4154 -> 2208[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2111[label="primEqFloat (Float xuu40000 xuu40001) xuu300",fontsize=16,color="burlywood",shape="box"];4155[label="xuu300/Float xuu3000 xuu3001",fontsize=10,color="white",style="solid",shape="box"];2111 -> 4155[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4155 -> 2209[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2112[label="xuu40000 :% xuu40001 == xuu3000 :% xuu3001",fontsize=16,color="black",shape="box"];2112 -> 2210[label="",style="solid", color="black", weight=3]; 30.09/12.93 2113[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];2113 -> 2211[label="",style="solid", color="black", weight=3]; 30.09/12.93 2114[label="Nothing == Just xuu3000",fontsize=16,color="black",shape="box"];2114 -> 2212[label="",style="solid", color="black", weight=3]; 30.09/12.93 2115[label="Just xuu40000 == Nothing",fontsize=16,color="black",shape="box"];2115 -> 2213[label="",style="solid", color="black", weight=3]; 30.09/12.93 2116[label="Just xuu40000 == Just xuu3000",fontsize=16,color="black",shape="box"];2116 -> 2214[label="",style="solid", color="black", weight=3]; 30.09/12.93 2117[label="() == ()",fontsize=16,color="black",shape="box"];2117 -> 2215[label="",style="solid", color="black", weight=3]; 30.09/12.93 2118[label="Integer xuu40000 == Integer xuu3000",fontsize=16,color="black",shape="box"];2118 -> 2216[label="",style="solid", color="black", weight=3]; 30.09/12.93 2119[label="xuu40000 : xuu40001 == xuu3000 : xuu3001",fontsize=16,color="black",shape="box"];2119 -> 2217[label="",style="solid", color="black", weight=3]; 30.09/12.93 2120[label="xuu40000 : xuu40001 == []",fontsize=16,color="black",shape="box"];2120 -> 2218[label="",style="solid", color="black", weight=3]; 30.09/12.93 2121[label="[] == xuu3000 : xuu3001",fontsize=16,color="black",shape="box"];2121 -> 2219[label="",style="solid", color="black", weight=3]; 30.09/12.93 2122[label="[] == []",fontsize=16,color="black",shape="box"];2122 -> 2220[label="",style="solid", color="black", weight=3]; 30.09/12.93 2123[label="primEqDouble (Double xuu40000 xuu40001) xuu300",fontsize=16,color="burlywood",shape="box"];4156[label="xuu300/Double xuu3000 xuu3001",fontsize=10,color="white",style="solid",shape="box"];2123 -> 4156[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4156 -> 2221[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 310[label="compare (Just xuu19) (Just xuu14)",fontsize=16,color="black",shape="box"];310 -> 367[label="",style="solid", color="black", weight=3]; 30.09/12.93 311[label="GT",fontsize=16,color="green",shape="box"];312[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Just xuu14) xuu15 xuu16 xuu17 xuu18 (Just xuu19) xuu20 otherwise",fontsize=16,color="black",shape="box"];312 -> 368[label="",style="solid", color="black", weight=3]; 30.09/12.93 313 -> 172[label="",style="dashed", color="red", weight=0]; 30.09/12.93 313[label="FiniteMap.mkBalBranch (Just xuu14) xuu15 xuu17 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu18 (Just xuu19) xuu20)",fontsize=16,color="magenta"];313 -> 369[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 313 -> 370[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 313 -> 371[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 313 -> 372[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 314[label="compare3 Nothing Nothing",fontsize=16,color="black",shape="box"];314 -> 373[label="",style="solid", color="black", weight=3]; 30.09/12.93 315[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 Nothing xuu401 True",fontsize=16,color="black",shape="box"];315 -> 374[label="",style="solid", color="black", weight=3]; 30.09/12.93 316[label="xuu33",fontsize=16,color="green",shape="box"];317 -> 14[label="",style="dashed", color="red", weight=0]; 30.09/12.93 317[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu34 Nothing xuu401",fontsize=16,color="magenta"];317 -> 375[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 317 -> 376[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2190[label="compare1 Nothing Nothing (Nothing <= Nothing)",fontsize=16,color="black",shape="box"];2190 -> 2253[label="",style="solid", color="black", weight=3]; 30.09/12.93 2191[label="compare1 Nothing (Just xuu3100) (Nothing <= Just xuu3100)",fontsize=16,color="black",shape="box"];2191 -> 2254[label="",style="solid", color="black", weight=3]; 30.09/12.93 2192[label="compare1 (Just xuu3000) Nothing (Just xuu3000 <= Nothing)",fontsize=16,color="black",shape="box"];2192 -> 2255[label="",style="solid", color="black", weight=3]; 30.09/12.93 2193[label="compare1 (Just xuu3000) (Just xuu3100) (Just xuu3000 <= Just xuu3100)",fontsize=16,color="black",shape="box"];2193 -> 2256[label="",style="solid", color="black", weight=3]; 30.09/12.93 318[label="compare3 Nothing (Just xuu300)",fontsize=16,color="black",shape="box"];318 -> 377[label="",style="solid", color="black", weight=3]; 30.09/12.93 319[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Just xuu300) xuu31 xuu32 xuu33 xuu34 Nothing xuu401 True",fontsize=16,color="black",shape="box"];319 -> 378[label="",style="solid", color="black", weight=3]; 30.09/12.93 320[label="xuu33",fontsize=16,color="green",shape="box"];321 -> 14[label="",style="dashed", color="red", weight=0]; 30.09/12.93 321[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu34 Nothing xuu401",fontsize=16,color="magenta"];321 -> 379[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 321 -> 380[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 382[label="FiniteMap.mkBalBranch6Size_l xuu25 (Just xuu300) xuu31 xuu34 + FiniteMap.mkBalBranch6Size_r xuu25 (Just xuu300) xuu31 xuu34 < Pos (Succ (Succ Zero))",fontsize=16,color="black",shape="box"];382 -> 384[label="",style="solid", color="black", weight=3]; 30.09/12.93 381[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu25 (Just xuu300) xuu31 xuu34 (Just xuu300) xuu31 xuu25 xuu34 xuu45",fontsize=16,color="burlywood",shape="triangle"];4157[label="xuu45/False",fontsize=10,color="white",style="solid",shape="box"];381 -> 4157[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4157 -> 385[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4158[label="xuu45/True",fontsize=10,color="white",style="solid",shape="box"];381 -> 4158[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4158 -> 386[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 324[label="compare3 (Just xuu4000) Nothing",fontsize=16,color="black",shape="box"];324 -> 387[label="",style="solid", color="black", weight=3]; 30.09/12.93 325[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 (Just xuu4000) xuu401 True",fontsize=16,color="black",shape="box"];325 -> 388[label="",style="solid", color="black", weight=3]; 30.09/12.93 326[label="xuu33",fontsize=16,color="green",shape="box"];327 -> 14[label="",style="dashed", color="red", weight=0]; 30.09/12.93 327[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu34 (Just xuu4000) xuu401",fontsize=16,color="magenta"];327 -> 389[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 327 -> 390[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 392[label="FiniteMap.mkBalBranch6Size_l xuu33 Nothing xuu31 xuu34 + FiniteMap.mkBalBranch6Size_r xuu33 Nothing xuu31 xuu34 < Pos (Succ (Succ Zero))",fontsize=16,color="black",shape="box"];392 -> 394[label="",style="solid", color="black", weight=3]; 30.09/12.93 391[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu33 Nothing xuu31 xuu34 Nothing xuu31 xuu33 xuu34 xuu46",fontsize=16,color="burlywood",shape="triangle"];4159[label="xuu46/False",fontsize=10,color="white",style="solid",shape="box"];391 -> 4159[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4159 -> 395[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4160[label="xuu46/True",fontsize=10,color="white",style="solid",shape="box"];391 -> 4160[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4160 -> 396[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2194 -> 2354[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2194[label="xuu40000 == xuu3000 && xuu40001 == xuu3001",fontsize=16,color="magenta"];2194 -> 2355[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2194 -> 2356[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2195 -> 2354[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2195[label="xuu40000 == xuu3000 && xuu40001 == xuu3001 && xuu40002 == xuu3002",fontsize=16,color="magenta"];2195 -> 2357[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2195 -> 2358[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2196[label="True",fontsize=16,color="green",shape="box"];2197[label="False",fontsize=16,color="green",shape="box"];2198[label="False",fontsize=16,color="green",shape="box"];2199[label="True",fontsize=16,color="green",shape="box"];2200[label="primEqInt (Pos (Succ xuu400000)) xuu300",fontsize=16,color="burlywood",shape="box"];4161[label="xuu300/Pos xuu3000",fontsize=10,color="white",style="solid",shape="box"];2200 -> 4161[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4161 -> 2278[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4162[label="xuu300/Neg xuu3000",fontsize=10,color="white",style="solid",shape="box"];2200 -> 4162[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4162 -> 2279[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2201[label="primEqInt (Pos Zero) xuu300",fontsize=16,color="burlywood",shape="box"];4163[label="xuu300/Pos xuu3000",fontsize=10,color="white",style="solid",shape="box"];2201 -> 4163[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4163 -> 2280[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4164[label="xuu300/Neg xuu3000",fontsize=10,color="white",style="solid",shape="box"];2201 -> 4164[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4164 -> 2281[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2202[label="primEqInt (Neg (Succ xuu400000)) xuu300",fontsize=16,color="burlywood",shape="box"];4165[label="xuu300/Pos xuu3000",fontsize=10,color="white",style="solid",shape="box"];2202 -> 4165[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4165 -> 2282[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4166[label="xuu300/Neg xuu3000",fontsize=10,color="white",style="solid",shape="box"];2202 -> 4166[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4166 -> 2283[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2203[label="primEqInt (Neg Zero) xuu300",fontsize=16,color="burlywood",shape="box"];4167[label="xuu300/Pos xuu3000",fontsize=10,color="white",style="solid",shape="box"];2203 -> 4167[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4167 -> 2284[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4168[label="xuu300/Neg xuu3000",fontsize=10,color="white",style="solid",shape="box"];2203 -> 4168[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4168 -> 2285[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2204[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];4169[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2204 -> 4169[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4169 -> 2286[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4170[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2204 -> 4170[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4170 -> 2287[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4171[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2204 -> 4171[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4171 -> 2288[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4172[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2204 -> 4172[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4172 -> 2289[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4173[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2204 -> 4173[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4173 -> 2290[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4174[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2204 -> 4174[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4174 -> 2291[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4175[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2204 -> 4175[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4175 -> 2292[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4176[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2204 -> 4176[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4176 -> 2293[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4177[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2204 -> 4177[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4177 -> 2294[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4178[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2204 -> 4178[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4178 -> 2295[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4179[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2204 -> 4179[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4179 -> 2296[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4180[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2204 -> 4180[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4180 -> 2297[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4181[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2204 -> 4181[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4181 -> 2298[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4182[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2204 -> 4182[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4182 -> 2299[label="",style="solid", color="blue", weight=3]; 30.09/12.93 2205[label="False",fontsize=16,color="green",shape="box"];2206[label="False",fontsize=16,color="green",shape="box"];2207[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];4183[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2207 -> 4183[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4183 -> 2300[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4184[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2207 -> 4184[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4184 -> 2301[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4185[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2207 -> 4185[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4185 -> 2302[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4186[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2207 -> 4186[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4186 -> 2303[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4187[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2207 -> 4187[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4187 -> 2304[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4188[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2207 -> 4188[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4188 -> 2305[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4189[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2207 -> 4189[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4189 -> 2306[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4190[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2207 -> 4190[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4190 -> 2307[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4191[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2207 -> 4191[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4191 -> 2308[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4192[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2207 -> 4192[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4192 -> 2309[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4193[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2207 -> 4193[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4193 -> 2310[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4194[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2207 -> 4194[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4194 -> 2311[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4195[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2207 -> 4195[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4195 -> 2312[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4196[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2207 -> 4196[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4196 -> 2313[label="",style="solid", color="blue", weight=3]; 30.09/12.93 2208[label="primEqChar (Char xuu40000) (Char xuu3000)",fontsize=16,color="black",shape="box"];2208 -> 2314[label="",style="solid", color="black", weight=3]; 30.09/12.93 2209[label="primEqFloat (Float xuu40000 xuu40001) (Float xuu3000 xuu3001)",fontsize=16,color="black",shape="box"];2209 -> 2315[label="",style="solid", color="black", weight=3]; 30.09/12.93 2210 -> 2354[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2210[label="xuu40000 == xuu3000 && xuu40001 == xuu3001",fontsize=16,color="magenta"];2210 -> 2359[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2210 -> 2360[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2211[label="True",fontsize=16,color="green",shape="box"];2212[label="False",fontsize=16,color="green",shape="box"];2213[label="False",fontsize=16,color="green",shape="box"];2214[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];4197[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 4197[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4197 -> 2316[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4198[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 4198[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4198 -> 2317[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4199[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 4199[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4199 -> 2318[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4200[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 4200[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4200 -> 2319[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4201[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 4201[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4201 -> 2320[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4202[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 4202[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4202 -> 2321[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4203[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 4203[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4203 -> 2322[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4204[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 4204[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4204 -> 2323[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4205[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 4205[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4205 -> 2324[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4206[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 4206[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4206 -> 2325[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4207[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 4207[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4207 -> 2326[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4208[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 4208[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4208 -> 2327[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4209[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 4209[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4209 -> 2328[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4210[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 4210[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4210 -> 2329[label="",style="solid", color="blue", weight=3]; 30.09/12.93 2215[label="True",fontsize=16,color="green",shape="box"];2216 -> 2057[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2216[label="primEqInt xuu40000 xuu3000",fontsize=16,color="magenta"];2216 -> 2330[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2216 -> 2331[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2217 -> 2354[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2217[label="xuu40000 == xuu3000 && xuu40001 == xuu3001",fontsize=16,color="magenta"];2217 -> 2361[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2217 -> 2362[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2218[label="False",fontsize=16,color="green",shape="box"];2219[label="False",fontsize=16,color="green",shape="box"];2220[label="True",fontsize=16,color="green",shape="box"];2221[label="primEqDouble (Double xuu40000 xuu40001) (Double xuu3000 xuu3001)",fontsize=16,color="black",shape="box"];2221 -> 2332[label="",style="solid", color="black", weight=3]; 30.09/12.93 367[label="compare3 (Just xuu19) (Just xuu14)",fontsize=16,color="black",shape="box"];367 -> 489[label="",style="solid", color="black", weight=3]; 30.09/12.93 368[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Just xuu14) xuu15 xuu16 xuu17 xuu18 (Just xuu19) xuu20 True",fontsize=16,color="black",shape="box"];368 -> 490[label="",style="solid", color="black", weight=3]; 30.09/12.93 369[label="xuu17",fontsize=16,color="green",shape="box"];370[label="xuu15",fontsize=16,color="green",shape="box"];371 -> 14[label="",style="dashed", color="red", weight=0]; 30.09/12.93 371[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu18 (Just xuu19) xuu20",fontsize=16,color="magenta"];371 -> 491[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 371 -> 492[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 371 -> 493[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 372[label="xuu14",fontsize=16,color="green",shape="box"];373 -> 1994[label="",style="dashed", color="red", weight=0]; 30.09/12.93 373[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="magenta"];373 -> 2013[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 373 -> 2014[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 373 -> 2015[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 374[label="FiniteMap.Branch Nothing (FiniteMap.addListToFM0 xuu31 xuu401) xuu32 xuu33 xuu34",fontsize=16,color="green",shape="box"];374 -> 496[label="",style="dashed", color="green", weight=3]; 30.09/12.93 375[label="xuu34",fontsize=16,color="green",shape="box"];376[label="Nothing",fontsize=16,color="green",shape="box"];2253[label="compare1 Nothing Nothing True",fontsize=16,color="black",shape="box"];2253 -> 2333[label="",style="solid", color="black", weight=3]; 30.09/12.93 2254[label="compare1 Nothing (Just xuu3100) True",fontsize=16,color="black",shape="box"];2254 -> 2334[label="",style="solid", color="black", weight=3]; 30.09/12.93 2255[label="compare1 (Just xuu3000) Nothing False",fontsize=16,color="black",shape="box"];2255 -> 2335[label="",style="solid", color="black", weight=3]; 30.09/12.93 2256 -> 2336[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2256[label="compare1 (Just xuu3000) (Just xuu3100) (xuu3000 <= xuu3100)",fontsize=16,color="magenta"];2256 -> 2337[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2256 -> 2338[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2256 -> 2339[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 377 -> 1994[label="",style="dashed", color="red", weight=0]; 30.09/12.93 377[label="compare2 Nothing (Just xuu300) (Nothing == Just xuu300)",fontsize=16,color="magenta"];377 -> 2016[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 377 -> 2017[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 377 -> 2018[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 378[label="FiniteMap.Branch Nothing (FiniteMap.addListToFM0 xuu31 xuu401) xuu32 xuu33 xuu34",fontsize=16,color="green",shape="box"];378 -> 502[label="",style="dashed", color="green", weight=3]; 30.09/12.93 379[label="xuu34",fontsize=16,color="green",shape="box"];380[label="Nothing",fontsize=16,color="green",shape="box"];384 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.93 384[label="compare (FiniteMap.mkBalBranch6Size_l xuu25 (Just xuu300) xuu31 xuu34 + FiniteMap.mkBalBranch6Size_r xuu25 (Just xuu300) xuu31 xuu34) (Pos (Succ (Succ Zero))) == LT",fontsize=16,color="magenta"];384 -> 503[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 384 -> 504[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 385[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu25 (Just xuu300) xuu31 xuu34 (Just xuu300) xuu31 xuu25 xuu34 False",fontsize=16,color="black",shape="box"];385 -> 505[label="",style="solid", color="black", weight=3]; 30.09/12.93 386[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu25 (Just xuu300) xuu31 xuu34 (Just xuu300) xuu31 xuu25 xuu34 True",fontsize=16,color="black",shape="box"];386 -> 506[label="",style="solid", color="black", weight=3]; 30.09/12.93 387 -> 1994[label="",style="dashed", color="red", weight=0]; 30.09/12.93 387[label="compare2 (Just xuu4000) Nothing (Just xuu4000 == Nothing)",fontsize=16,color="magenta"];387 -> 2019[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 387 -> 2020[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 387 -> 2021[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 388[label="FiniteMap.Branch (Just xuu4000) (FiniteMap.addListToFM0 xuu31 xuu401) xuu32 xuu33 xuu34",fontsize=16,color="green",shape="box"];388 -> 514[label="",style="dashed", color="green", weight=3]; 30.09/12.93 389[label="xuu34",fontsize=16,color="green",shape="box"];390[label="Just xuu4000",fontsize=16,color="green",shape="box"];394 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.93 394[label="compare (FiniteMap.mkBalBranch6Size_l xuu33 Nothing xuu31 xuu34 + FiniteMap.mkBalBranch6Size_r xuu33 Nothing xuu31 xuu34) (Pos (Succ (Succ Zero))) == LT",fontsize=16,color="magenta"];394 -> 515[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 394 -> 516[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 395[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu33 Nothing xuu31 xuu34 Nothing xuu31 xuu33 xuu34 False",fontsize=16,color="black",shape="box"];395 -> 517[label="",style="solid", color="black", weight=3]; 30.09/12.93 396[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu33 Nothing xuu31 xuu34 Nothing xuu31 xuu33 xuu34 True",fontsize=16,color="black",shape="box"];396 -> 518[label="",style="solid", color="black", weight=3]; 30.09/12.93 2355[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];4211[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2355 -> 4211[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4211 -> 2367[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4212[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2355 -> 4212[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4212 -> 2368[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4213[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2355 -> 4213[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4213 -> 2369[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4214[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2355 -> 4214[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4214 -> 2370[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4215[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2355 -> 4215[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4215 -> 2371[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4216[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2355 -> 4216[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4216 -> 2372[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4217[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2355 -> 4217[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4217 -> 2373[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4218[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2355 -> 4218[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4218 -> 2374[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4219[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2355 -> 4219[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4219 -> 2375[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4220[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2355 -> 4220[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4220 -> 2376[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4221[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2355 -> 4221[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4221 -> 2377[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4222[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2355 -> 4222[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4222 -> 2378[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4223[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2355 -> 4223[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4223 -> 2379[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4224[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2355 -> 4224[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4224 -> 2380[label="",style="solid", color="blue", weight=3]; 30.09/12.93 2356[label="xuu40001 == xuu3001",fontsize=16,color="blue",shape="box"];4225[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2356 -> 4225[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4225 -> 2381[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4226[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2356 -> 4226[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4226 -> 2382[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4227[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2356 -> 4227[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4227 -> 2383[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4228[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2356 -> 4228[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4228 -> 2384[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4229[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2356 -> 4229[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4229 -> 2385[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4230[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2356 -> 4230[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4230 -> 2386[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4231[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2356 -> 4231[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4231 -> 2387[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4232[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2356 -> 4232[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4232 -> 2388[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4233[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2356 -> 4233[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4233 -> 2389[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4234[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2356 -> 4234[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4234 -> 2390[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4235[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2356 -> 4235[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4235 -> 2391[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4236[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2356 -> 4236[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4236 -> 2392[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4237[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2356 -> 4237[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4237 -> 2393[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4238[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2356 -> 4238[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4238 -> 2394[label="",style="solid", color="blue", weight=3]; 30.09/12.93 2354[label="xuu140 && xuu141",fontsize=16,color="burlywood",shape="triangle"];4239[label="xuu140/False",fontsize=10,color="white",style="solid",shape="box"];2354 -> 4239[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4239 -> 2395[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4240[label="xuu140/True",fontsize=10,color="white",style="solid",shape="box"];2354 -> 4240[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4240 -> 2396[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2357[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];4241[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2357 -> 4241[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4241 -> 2397[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4242[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2357 -> 4242[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4242 -> 2398[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4243[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2357 -> 4243[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4243 -> 2399[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4244[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2357 -> 4244[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4244 -> 2400[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4245[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2357 -> 4245[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4245 -> 2401[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4246[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2357 -> 4246[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4246 -> 2402[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4247[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2357 -> 4247[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4247 -> 2403[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4248[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2357 -> 4248[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4248 -> 2404[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4249[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2357 -> 4249[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4249 -> 2405[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4250[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2357 -> 4250[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4250 -> 2406[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4251[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2357 -> 4251[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4251 -> 2407[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4252[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2357 -> 4252[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4252 -> 2408[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4253[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2357 -> 4253[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4253 -> 2409[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4254[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2357 -> 4254[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4254 -> 2410[label="",style="solid", color="blue", weight=3]; 30.09/12.93 2358 -> 2354[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2358[label="xuu40001 == xuu3001 && xuu40002 == xuu3002",fontsize=16,color="magenta"];2358 -> 2411[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2358 -> 2412[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2278[label="primEqInt (Pos (Succ xuu400000)) (Pos xuu3000)",fontsize=16,color="burlywood",shape="box"];4255[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];2278 -> 4255[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4255 -> 2413[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4256[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2278 -> 4256[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4256 -> 2414[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2279[label="primEqInt (Pos (Succ xuu400000)) (Neg xuu3000)",fontsize=16,color="black",shape="box"];2279 -> 2415[label="",style="solid", color="black", weight=3]; 30.09/12.93 2280[label="primEqInt (Pos Zero) (Pos xuu3000)",fontsize=16,color="burlywood",shape="box"];4257[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];2280 -> 4257[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4257 -> 2416[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4258[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2280 -> 4258[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4258 -> 2417[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2281[label="primEqInt (Pos Zero) (Neg xuu3000)",fontsize=16,color="burlywood",shape="box"];4259[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];2281 -> 4259[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4259 -> 2418[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4260[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2281 -> 4260[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4260 -> 2419[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2282[label="primEqInt (Neg (Succ xuu400000)) (Pos xuu3000)",fontsize=16,color="black",shape="box"];2282 -> 2420[label="",style="solid", color="black", weight=3]; 30.09/12.93 2283[label="primEqInt (Neg (Succ xuu400000)) (Neg xuu3000)",fontsize=16,color="burlywood",shape="box"];4261[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];2283 -> 4261[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4261 -> 2421[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4262[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2283 -> 4262[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4262 -> 2422[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2284[label="primEqInt (Neg Zero) (Pos xuu3000)",fontsize=16,color="burlywood",shape="box"];4263[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];2284 -> 4263[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4263 -> 2423[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4264[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2284 -> 4264[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4264 -> 2424[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2285[label="primEqInt (Neg Zero) (Neg xuu3000)",fontsize=16,color="burlywood",shape="box"];4265[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];2285 -> 4265[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4265 -> 2425[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4266[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2285 -> 4266[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4266 -> 2426[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2286 -> 2031[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2286[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2286 -> 2427[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2286 -> 2428[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2287 -> 2032[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2287[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2287 -> 2429[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2287 -> 2430[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2288 -> 2033[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2288[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2288 -> 2431[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2288 -> 2432[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2289 -> 2034[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2289[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2289 -> 2433[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2289 -> 2434[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2290 -> 2035[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2290[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2290 -> 2435[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2290 -> 2436[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2291 -> 2036[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2291[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2291 -> 2437[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2291 -> 2438[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2292 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2292[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2292 -> 2439[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2292 -> 2440[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2293 -> 2038[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2293[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2293 -> 2441[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2293 -> 2442[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2294 -> 2039[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2294[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2294 -> 2443[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2294 -> 2444[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2295 -> 2040[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2295[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2295 -> 2445[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2295 -> 2446[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2296 -> 2041[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2296[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2296 -> 2447[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2296 -> 2448[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2297 -> 2042[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2297[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2297 -> 2449[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2297 -> 2450[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2298 -> 2043[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2298[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2298 -> 2451[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2298 -> 2452[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2299 -> 2044[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2299[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2299 -> 2453[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2299 -> 2454[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2300 -> 2031[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2300[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2300 -> 2455[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2300 -> 2456[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2301 -> 2032[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2301[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2301 -> 2457[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2301 -> 2458[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2302 -> 2033[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2302[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2302 -> 2459[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2302 -> 2460[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2303 -> 2034[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2303[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2303 -> 2461[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2303 -> 2462[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2304 -> 2035[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2304[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2304 -> 2463[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2304 -> 2464[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2305 -> 2036[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2305[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2305 -> 2465[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2305 -> 2466[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2306 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2306[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2306 -> 2467[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2306 -> 2468[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2307 -> 2038[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2307[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2307 -> 2469[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2307 -> 2470[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2308 -> 2039[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2308[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2308 -> 2471[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2308 -> 2472[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2309 -> 2040[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2309[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2309 -> 2473[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2309 -> 2474[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2310 -> 2041[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2310[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2310 -> 2475[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2310 -> 2476[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2311 -> 2042[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2311[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2311 -> 2477[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2311 -> 2478[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2312 -> 2043[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2312[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2312 -> 2479[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2312 -> 2480[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2313 -> 2044[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2313[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2313 -> 2481[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2313 -> 2482[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2314[label="primEqNat xuu40000 xuu3000",fontsize=16,color="burlywood",shape="triangle"];4267[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];2314 -> 4267[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4267 -> 2483[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 4268[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];2314 -> 4268[label="",style="solid", color="burlywood", weight=9]; 30.09/12.93 4268 -> 2484[label="",style="solid", color="burlywood", weight=3]; 30.09/12.93 2315 -> 2034[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2315[label="xuu40000 * xuu3001 == xuu40001 * xuu3000",fontsize=16,color="magenta"];2315 -> 2485[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2315 -> 2486[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2359[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];4269[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2359 -> 4269[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4269 -> 2487[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4270[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2359 -> 4270[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4270 -> 2488[label="",style="solid", color="blue", weight=3]; 30.09/12.93 2360[label="xuu40001 == xuu3001",fontsize=16,color="blue",shape="box"];4271[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 4271[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4271 -> 2489[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4272[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 4272[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4272 -> 2490[label="",style="solid", color="blue", weight=3]; 30.09/12.93 2316 -> 2031[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2316[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2316 -> 2491[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2316 -> 2492[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2317 -> 2032[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2317[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2317 -> 2493[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2317 -> 2494[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2318 -> 2033[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2318[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2318 -> 2495[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2318 -> 2496[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2319 -> 2034[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2319[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2319 -> 2497[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2319 -> 2498[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2320 -> 2035[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2320[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2320 -> 2499[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2320 -> 2500[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2321 -> 2036[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2321[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2321 -> 2501[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2321 -> 2502[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2322 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2322[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2322 -> 2503[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2322 -> 2504[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2323 -> 2038[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2323[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2323 -> 2505[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2323 -> 2506[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2324 -> 2039[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2324[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2324 -> 2507[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2324 -> 2508[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2325 -> 2040[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2325[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2325 -> 2509[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2325 -> 2510[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2326 -> 2041[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2326[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2326 -> 2511[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2326 -> 2512[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2327 -> 2042[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2327[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2327 -> 2513[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2327 -> 2514[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2328 -> 2043[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2328[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2328 -> 2515[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2328 -> 2516[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2329 -> 2044[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2329[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2329 -> 2517[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2329 -> 2518[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2330[label="xuu40000",fontsize=16,color="green",shape="box"];2331[label="xuu3000",fontsize=16,color="green",shape="box"];2361[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];4273[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2361 -> 4273[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4273 -> 2519[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4274[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2361 -> 4274[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4274 -> 2520[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4275[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2361 -> 4275[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4275 -> 2521[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4276[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2361 -> 4276[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4276 -> 2522[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4277[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2361 -> 4277[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4277 -> 2523[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4278[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2361 -> 4278[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4278 -> 2524[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4279[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2361 -> 4279[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4279 -> 2525[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4280[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2361 -> 4280[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4280 -> 2526[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4281[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2361 -> 4281[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4281 -> 2527[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4282[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2361 -> 4282[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4282 -> 2528[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4283[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2361 -> 4283[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4283 -> 2529[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4284[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2361 -> 4284[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4284 -> 2530[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4285[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2361 -> 4285[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4285 -> 2531[label="",style="solid", color="blue", weight=3]; 30.09/12.93 4286[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2361 -> 4286[label="",style="solid", color="blue", weight=9]; 30.09/12.93 4286 -> 2532[label="",style="solid", color="blue", weight=3]; 30.09/12.93 2362 -> 2043[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2362[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2362 -> 2533[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2362 -> 2534[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2332 -> 2034[label="",style="dashed", color="red", weight=0]; 30.09/12.93 2332[label="xuu40000 * xuu3001 == xuu40001 * xuu3000",fontsize=16,color="magenta"];2332 -> 2535[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 2332 -> 2536[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 489 -> 1994[label="",style="dashed", color="red", weight=0]; 30.09/12.93 489[label="compare2 (Just xuu19) (Just xuu14) (Just xuu19 == Just xuu14)",fontsize=16,color="magenta"];489 -> 2022[label="",style="dashed", color="magenta", weight=3]; 30.09/12.93 489 -> 2023[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 489 -> 2024[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 490[label="FiniteMap.Branch (Just xuu19) (FiniteMap.addListToFM0 xuu15 xuu20) xuu16 xuu17 xuu18",fontsize=16,color="green",shape="box"];490 -> 742[label="",style="dashed", color="green", weight=3]; 30.09/12.94 491[label="xuu18",fontsize=16,color="green",shape="box"];492[label="Just xuu19",fontsize=16,color="green",shape="box"];493[label="xuu20",fontsize=16,color="green",shape="box"];2013[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];2013 -> 2045[label="",style="solid", color="black", weight=3]; 30.09/12.94 2014[label="Nothing",fontsize=16,color="green",shape="box"];2015[label="Nothing",fontsize=16,color="green",shape="box"];496[label="FiniteMap.addListToFM0 xuu31 xuu401",fontsize=16,color="black",shape="triangle"];496 -> 747[label="",style="solid", color="black", weight=3]; 30.09/12.94 2333[label="LT",fontsize=16,color="green",shape="box"];2334[label="LT",fontsize=16,color="green",shape="box"];2335[label="compare0 (Just xuu3000) Nothing otherwise",fontsize=16,color="black",shape="box"];2335 -> 2537[label="",style="solid", color="black", weight=3]; 30.09/12.94 2337[label="xuu3000",fontsize=16,color="green",shape="box"];2338[label="xuu3100",fontsize=16,color="green",shape="box"];2339[label="xuu3000 <= xuu3100",fontsize=16,color="blue",shape="box"];4287[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2339 -> 4287[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4287 -> 2538[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4288[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2339 -> 4288[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4288 -> 2539[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4289[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2339 -> 4289[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4289 -> 2540[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4290[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2339 -> 4290[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4290 -> 2541[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4291[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2339 -> 4291[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4291 -> 2542[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4292[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2339 -> 4292[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4292 -> 2543[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4293[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2339 -> 4293[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4293 -> 2544[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4294[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2339 -> 4294[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4294 -> 2545[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4295[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2339 -> 4295[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4295 -> 2546[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4296[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2339 -> 4296[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4296 -> 2547[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4297[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2339 -> 4297[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4297 -> 2548[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4298[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2339 -> 4298[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4298 -> 2549[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4299[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2339 -> 4299[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4299 -> 2550[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4300[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2339 -> 4300[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4300 -> 2551[label="",style="solid", color="blue", weight=3]; 30.09/12.94 2336[label="compare1 (Just xuu134) (Just xuu135) xuu136",fontsize=16,color="burlywood",shape="triangle"];4301[label="xuu136/False",fontsize=10,color="white",style="solid",shape="box"];2336 -> 4301[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4301 -> 2552[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4302[label="xuu136/True",fontsize=10,color="white",style="solid",shape="box"];2336 -> 4302[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4302 -> 2553[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 2016[label="Nothing == Just xuu300",fontsize=16,color="black",shape="box"];2016 -> 2046[label="",style="solid", color="black", weight=3]; 30.09/12.94 2017[label="Nothing",fontsize=16,color="green",shape="box"];2018[label="Just xuu300",fontsize=16,color="green",shape="box"];502 -> 496[label="",style="dashed", color="red", weight=0]; 30.09/12.94 502[label="FiniteMap.addListToFM0 xuu31 xuu401",fontsize=16,color="magenta"];503[label="compare (FiniteMap.mkBalBranch6Size_l xuu25 (Just xuu300) xuu31 xuu34 + FiniteMap.mkBalBranch6Size_r xuu25 (Just xuu300) xuu31 xuu34) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];503 -> 750[label="",style="solid", color="black", weight=3]; 30.09/12.94 504[label="LT",fontsize=16,color="green",shape="box"];505 -> 977[label="",style="dashed", color="red", weight=0]; 30.09/12.94 505[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu25 (Just xuu300) xuu31 xuu34 (Just xuu300) xuu31 xuu25 xuu34 (FiniteMap.mkBalBranch6Size_r xuu25 (Just xuu300) xuu31 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu25 (Just xuu300) xuu31 xuu34)",fontsize=16,color="magenta"];505 -> 978[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 506 -> 3824[label="",style="dashed", color="red", weight=0]; 30.09/12.94 506[label="FiniteMap.mkBranch (Pos (Succ Zero)) (Just xuu300) xuu31 xuu25 xuu34",fontsize=16,color="magenta"];506 -> 3825[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 506 -> 3826[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 506 -> 3827[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 506 -> 3828[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 506 -> 3829[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2019[label="Just xuu4000 == Nothing",fontsize=16,color="black",shape="box"];2019 -> 2047[label="",style="solid", color="black", weight=3]; 30.09/12.94 2020[label="Just xuu4000",fontsize=16,color="green",shape="box"];2021[label="Nothing",fontsize=16,color="green",shape="box"];514 -> 496[label="",style="dashed", color="red", weight=0]; 30.09/12.94 514[label="FiniteMap.addListToFM0 xuu31 xuu401",fontsize=16,color="magenta"];515[label="compare (FiniteMap.mkBalBranch6Size_l xuu33 Nothing xuu31 xuu34 + FiniteMap.mkBalBranch6Size_r xuu33 Nothing xuu31 xuu34) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];515 -> 755[label="",style="solid", color="black", weight=3]; 30.09/12.94 516[label="LT",fontsize=16,color="green",shape="box"];517 -> 1007[label="",style="dashed", color="red", weight=0]; 30.09/12.94 517[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu33 Nothing xuu31 xuu34 Nothing xuu31 xuu33 xuu34 (FiniteMap.mkBalBranch6Size_r xuu33 Nothing xuu31 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu33 Nothing xuu31 xuu34)",fontsize=16,color="magenta"];517 -> 1008[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 518 -> 3824[label="",style="dashed", color="red", weight=0]; 30.09/12.94 518[label="FiniteMap.mkBranch (Pos (Succ Zero)) Nothing xuu31 xuu33 xuu34",fontsize=16,color="magenta"];518 -> 3830[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 518 -> 3831[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 518 -> 3832[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 518 -> 3833[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 518 -> 3834[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2367 -> 2031[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2367[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2367 -> 2577[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2367 -> 2578[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2368 -> 2032[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2368[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2368 -> 2579[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2368 -> 2580[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2369 -> 2033[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2369[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2369 -> 2581[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2369 -> 2582[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2370 -> 2034[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2370[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2370 -> 2583[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2370 -> 2584[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2371 -> 2035[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2371[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2371 -> 2585[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2371 -> 2586[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2372 -> 2036[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2372[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2372 -> 2587[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2372 -> 2588[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2373 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2373[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2373 -> 2589[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2373 -> 2590[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2374 -> 2038[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2374[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2374 -> 2591[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2374 -> 2592[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2375 -> 2039[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2375[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2375 -> 2593[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2375 -> 2594[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2376 -> 2040[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2376[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2376 -> 2595[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2376 -> 2596[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2377 -> 2041[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2377[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2377 -> 2597[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2377 -> 2598[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2378 -> 2042[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2378[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2378 -> 2599[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2378 -> 2600[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2379 -> 2043[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2379[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2379 -> 2601[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2379 -> 2602[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2380 -> 2044[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2380[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2380 -> 2603[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2380 -> 2604[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2381 -> 2031[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2381[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2381 -> 2605[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2381 -> 2606[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2382 -> 2032[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2382[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2382 -> 2607[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2382 -> 2608[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2383 -> 2033[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2383[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2383 -> 2609[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2383 -> 2610[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2384 -> 2034[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2384[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2384 -> 2611[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2384 -> 2612[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2385 -> 2035[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2385[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2385 -> 2613[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2385 -> 2614[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2386 -> 2036[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2386[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2386 -> 2615[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2386 -> 2616[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2387 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2387[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2387 -> 2617[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2387 -> 2618[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2388 -> 2038[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2388[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2388 -> 2619[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2388 -> 2620[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2389 -> 2039[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2389[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2389 -> 2621[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2389 -> 2622[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2390 -> 2040[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2390[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2390 -> 2623[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2390 -> 2624[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2391 -> 2041[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2391[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2391 -> 2625[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2391 -> 2626[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2392 -> 2042[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2392[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2392 -> 2627[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2392 -> 2628[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2393 -> 2043[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2393[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2393 -> 2629[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2393 -> 2630[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2394 -> 2044[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2394[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2394 -> 2631[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2394 -> 2632[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2395[label="False && xuu141",fontsize=16,color="black",shape="box"];2395 -> 2633[label="",style="solid", color="black", weight=3]; 30.09/12.94 2396[label="True && xuu141",fontsize=16,color="black",shape="box"];2396 -> 2634[label="",style="solid", color="black", weight=3]; 30.09/12.94 2397 -> 2031[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2397[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2397 -> 2635[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2397 -> 2636[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2398 -> 2032[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2398[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2398 -> 2637[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2398 -> 2638[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2399 -> 2033[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2399[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2399 -> 2639[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2399 -> 2640[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2400 -> 2034[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2400[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2400 -> 2641[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2400 -> 2642[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2401 -> 2035[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2401[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2401 -> 2643[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2401 -> 2644[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2402 -> 2036[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2402[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2402 -> 2645[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2402 -> 2646[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2403 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2403[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2403 -> 2647[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2403 -> 2648[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2404 -> 2038[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2404[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2404 -> 2649[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2404 -> 2650[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2405 -> 2039[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2405[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2405 -> 2651[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2405 -> 2652[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2406 -> 2040[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2406[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2406 -> 2653[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2406 -> 2654[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2407 -> 2041[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2407[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2407 -> 2655[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2407 -> 2656[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2408 -> 2042[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2408[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2408 -> 2657[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2408 -> 2658[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2409 -> 2043[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2409[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2409 -> 2659[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2409 -> 2660[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2410 -> 2044[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2410[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2410 -> 2661[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2410 -> 2662[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2411[label="xuu40001 == xuu3001",fontsize=16,color="blue",shape="box"];4303[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2411 -> 4303[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4303 -> 2663[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4304[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2411 -> 4304[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4304 -> 2664[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4305[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2411 -> 4305[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4305 -> 2665[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4306[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2411 -> 4306[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4306 -> 2666[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4307[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2411 -> 4307[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4307 -> 2667[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4308[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2411 -> 4308[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4308 -> 2668[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4309[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2411 -> 4309[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4309 -> 2669[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4310[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2411 -> 4310[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4310 -> 2670[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4311[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2411 -> 4311[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4311 -> 2671[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4312[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2411 -> 4312[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4312 -> 2672[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4313[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2411 -> 4313[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4313 -> 2673[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4314[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2411 -> 4314[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4314 -> 2674[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4315[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2411 -> 4315[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4315 -> 2675[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4316[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2411 -> 4316[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4316 -> 2676[label="",style="solid", color="blue", weight=3]; 30.09/12.94 2412[label="xuu40002 == xuu3002",fontsize=16,color="blue",shape="box"];4317[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4317[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4317 -> 2677[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4318[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4318[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4318 -> 2678[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4319[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4319[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4319 -> 2679[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4320[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4320[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4320 -> 2680[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4321[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4321[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4321 -> 2681[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4322[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4322[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4322 -> 2682[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4323[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4323[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4323 -> 2683[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4324[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4324[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4324 -> 2684[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4325[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4325[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4325 -> 2685[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4326[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4326[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4326 -> 2686[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4327[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4327[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4327 -> 2687[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4328[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4328[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4328 -> 2688[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4329[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4329[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4329 -> 2689[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4330[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4330[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4330 -> 2690[label="",style="solid", color="blue", weight=3]; 30.09/12.94 2413[label="primEqInt (Pos (Succ xuu400000)) (Pos (Succ xuu30000))",fontsize=16,color="black",shape="box"];2413 -> 2691[label="",style="solid", color="black", weight=3]; 30.09/12.94 2414[label="primEqInt (Pos (Succ xuu400000)) (Pos Zero)",fontsize=16,color="black",shape="box"];2414 -> 2692[label="",style="solid", color="black", weight=3]; 30.09/12.94 2415[label="False",fontsize=16,color="green",shape="box"];2416[label="primEqInt (Pos Zero) (Pos (Succ xuu30000))",fontsize=16,color="black",shape="box"];2416 -> 2693[label="",style="solid", color="black", weight=3]; 30.09/12.94 2417[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2417 -> 2694[label="",style="solid", color="black", weight=3]; 30.09/12.94 2418[label="primEqInt (Pos Zero) (Neg (Succ xuu30000))",fontsize=16,color="black",shape="box"];2418 -> 2695[label="",style="solid", color="black", weight=3]; 30.09/12.94 2419[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2419 -> 2696[label="",style="solid", color="black", weight=3]; 30.09/12.94 2420[label="False",fontsize=16,color="green",shape="box"];2421[label="primEqInt (Neg (Succ xuu400000)) (Neg (Succ xuu30000))",fontsize=16,color="black",shape="box"];2421 -> 2697[label="",style="solid", color="black", weight=3]; 30.09/12.94 2422[label="primEqInt (Neg (Succ xuu400000)) (Neg Zero)",fontsize=16,color="black",shape="box"];2422 -> 2698[label="",style="solid", color="black", weight=3]; 30.09/12.94 2423[label="primEqInt (Neg Zero) (Pos (Succ xuu30000))",fontsize=16,color="black",shape="box"];2423 -> 2699[label="",style="solid", color="black", weight=3]; 30.09/12.94 2424[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2424 -> 2700[label="",style="solid", color="black", weight=3]; 30.09/12.94 2425[label="primEqInt (Neg Zero) (Neg (Succ xuu30000))",fontsize=16,color="black",shape="box"];2425 -> 2701[label="",style="solid", color="black", weight=3]; 30.09/12.94 2426[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2426 -> 2702[label="",style="solid", color="black", weight=3]; 30.09/12.94 2427[label="xuu40000",fontsize=16,color="green",shape="box"];2428[label="xuu3000",fontsize=16,color="green",shape="box"];2429[label="xuu40000",fontsize=16,color="green",shape="box"];2430[label="xuu3000",fontsize=16,color="green",shape="box"];2431[label="xuu40000",fontsize=16,color="green",shape="box"];2432[label="xuu3000",fontsize=16,color="green",shape="box"];2433[label="xuu40000",fontsize=16,color="green",shape="box"];2434[label="xuu3000",fontsize=16,color="green",shape="box"];2435[label="xuu40000",fontsize=16,color="green",shape="box"];2436[label="xuu3000",fontsize=16,color="green",shape="box"];2437[label="xuu40000",fontsize=16,color="green",shape="box"];2438[label="xuu3000",fontsize=16,color="green",shape="box"];2439[label="xuu40000",fontsize=16,color="green",shape="box"];2440[label="xuu3000",fontsize=16,color="green",shape="box"];2441[label="xuu40000",fontsize=16,color="green",shape="box"];2442[label="xuu3000",fontsize=16,color="green",shape="box"];2443[label="xuu40000",fontsize=16,color="green",shape="box"];2444[label="xuu3000",fontsize=16,color="green",shape="box"];2445[label="xuu40000",fontsize=16,color="green",shape="box"];2446[label="xuu3000",fontsize=16,color="green",shape="box"];2447[label="xuu40000",fontsize=16,color="green",shape="box"];2448[label="xuu3000",fontsize=16,color="green",shape="box"];2449[label="xuu40000",fontsize=16,color="green",shape="box"];2450[label="xuu3000",fontsize=16,color="green",shape="box"];2451[label="xuu40000",fontsize=16,color="green",shape="box"];2452[label="xuu3000",fontsize=16,color="green",shape="box"];2453[label="xuu40000",fontsize=16,color="green",shape="box"];2454[label="xuu3000",fontsize=16,color="green",shape="box"];2455[label="xuu40000",fontsize=16,color="green",shape="box"];2456[label="xuu3000",fontsize=16,color="green",shape="box"];2457[label="xuu40000",fontsize=16,color="green",shape="box"];2458[label="xuu3000",fontsize=16,color="green",shape="box"];2459[label="xuu40000",fontsize=16,color="green",shape="box"];2460[label="xuu3000",fontsize=16,color="green",shape="box"];2461[label="xuu40000",fontsize=16,color="green",shape="box"];2462[label="xuu3000",fontsize=16,color="green",shape="box"];2463[label="xuu40000",fontsize=16,color="green",shape="box"];2464[label="xuu3000",fontsize=16,color="green",shape="box"];2465[label="xuu40000",fontsize=16,color="green",shape="box"];2466[label="xuu3000",fontsize=16,color="green",shape="box"];2467[label="xuu40000",fontsize=16,color="green",shape="box"];2468[label="xuu3000",fontsize=16,color="green",shape="box"];2469[label="xuu40000",fontsize=16,color="green",shape="box"];2470[label="xuu3000",fontsize=16,color="green",shape="box"];2471[label="xuu40000",fontsize=16,color="green",shape="box"];2472[label="xuu3000",fontsize=16,color="green",shape="box"];2473[label="xuu40000",fontsize=16,color="green",shape="box"];2474[label="xuu3000",fontsize=16,color="green",shape="box"];2475[label="xuu40000",fontsize=16,color="green",shape="box"];2476[label="xuu3000",fontsize=16,color="green",shape="box"];2477[label="xuu40000",fontsize=16,color="green",shape="box"];2478[label="xuu3000",fontsize=16,color="green",shape="box"];2479[label="xuu40000",fontsize=16,color="green",shape="box"];2480[label="xuu3000",fontsize=16,color="green",shape="box"];2481[label="xuu40000",fontsize=16,color="green",shape="box"];2482[label="xuu3000",fontsize=16,color="green",shape="box"];2483[label="primEqNat (Succ xuu400000) xuu3000",fontsize=16,color="burlywood",shape="box"];4331[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];2483 -> 4331[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4331 -> 2703[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4332[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2483 -> 4332[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4332 -> 2704[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 2484[label="primEqNat Zero xuu3000",fontsize=16,color="burlywood",shape="box"];4333[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];2484 -> 4333[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4333 -> 2705[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4334[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2484 -> 4334[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4334 -> 2706[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 2485 -> 667[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2485[label="xuu40000 * xuu3001",fontsize=16,color="magenta"];2486 -> 667[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2486[label="xuu40001 * xuu3000",fontsize=16,color="magenta"];2486 -> 2707[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2486 -> 2708[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2487 -> 2034[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2487[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2487 -> 2709[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2487 -> 2710[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2488 -> 2042[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2488[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2488 -> 2711[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2488 -> 2712[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2489 -> 2034[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2489[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2489 -> 2713[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2489 -> 2714[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2490 -> 2042[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2490[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2490 -> 2715[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2490 -> 2716[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2491[label="xuu40000",fontsize=16,color="green",shape="box"];2492[label="xuu3000",fontsize=16,color="green",shape="box"];2493[label="xuu40000",fontsize=16,color="green",shape="box"];2494[label="xuu3000",fontsize=16,color="green",shape="box"];2495[label="xuu40000",fontsize=16,color="green",shape="box"];2496[label="xuu3000",fontsize=16,color="green",shape="box"];2497[label="xuu40000",fontsize=16,color="green",shape="box"];2498[label="xuu3000",fontsize=16,color="green",shape="box"];2499[label="xuu40000",fontsize=16,color="green",shape="box"];2500[label="xuu3000",fontsize=16,color="green",shape="box"];2501[label="xuu40000",fontsize=16,color="green",shape="box"];2502[label="xuu3000",fontsize=16,color="green",shape="box"];2503[label="xuu40000",fontsize=16,color="green",shape="box"];2504[label="xuu3000",fontsize=16,color="green",shape="box"];2505[label="xuu40000",fontsize=16,color="green",shape="box"];2506[label="xuu3000",fontsize=16,color="green",shape="box"];2507[label="xuu40000",fontsize=16,color="green",shape="box"];2508[label="xuu3000",fontsize=16,color="green",shape="box"];2509[label="xuu40000",fontsize=16,color="green",shape="box"];2510[label="xuu3000",fontsize=16,color="green",shape="box"];2511[label="xuu40000",fontsize=16,color="green",shape="box"];2512[label="xuu3000",fontsize=16,color="green",shape="box"];2513[label="xuu40000",fontsize=16,color="green",shape="box"];2514[label="xuu3000",fontsize=16,color="green",shape="box"];2515[label="xuu40000",fontsize=16,color="green",shape="box"];2516[label="xuu3000",fontsize=16,color="green",shape="box"];2517[label="xuu40000",fontsize=16,color="green",shape="box"];2518[label="xuu3000",fontsize=16,color="green",shape="box"];2519 -> 2031[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2519[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2519 -> 2717[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2519 -> 2718[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2520 -> 2032[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2520[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2520 -> 2719[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2520 -> 2720[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2521 -> 2033[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2521[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2521 -> 2721[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2521 -> 2722[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2522 -> 2034[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2522[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2522 -> 2723[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2522 -> 2724[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2523 -> 2035[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2523[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2523 -> 2725[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2523 -> 2726[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2524 -> 2036[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2524[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2524 -> 2727[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2524 -> 2728[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2525 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2525[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2525 -> 2729[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2525 -> 2730[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2526 -> 2038[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2526[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2526 -> 2731[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2526 -> 2732[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2527 -> 2039[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2527[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2527 -> 2733[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2527 -> 2734[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2528 -> 2040[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2528[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2528 -> 2735[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2528 -> 2736[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2529 -> 2041[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2529[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2529 -> 2737[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2529 -> 2738[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2530 -> 2042[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2530[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2530 -> 2739[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2530 -> 2740[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2531 -> 2043[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2531[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2531 -> 2741[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2531 -> 2742[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2532 -> 2044[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2532[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2532 -> 2743[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2532 -> 2744[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2533[label="xuu40001",fontsize=16,color="green",shape="box"];2534[label="xuu3001",fontsize=16,color="green",shape="box"];2535 -> 667[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2535[label="xuu40000 * xuu3001",fontsize=16,color="magenta"];2535 -> 2745[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2535 -> 2746[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2536 -> 667[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2536[label="xuu40001 * xuu3000",fontsize=16,color="magenta"];2536 -> 2747[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2536 -> 2748[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2022[label="Just xuu19 == Just xuu14",fontsize=16,color="black",shape="box"];2022 -> 2048[label="",style="solid", color="black", weight=3]; 30.09/12.94 2023[label="Just xuu19",fontsize=16,color="green",shape="box"];2024[label="Just xuu14",fontsize=16,color="green",shape="box"];742 -> 496[label="",style="dashed", color="red", weight=0]; 30.09/12.94 742[label="FiniteMap.addListToFM0 xuu15 xuu20",fontsize=16,color="magenta"];742 -> 972[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 742 -> 973[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2045[label="True",fontsize=16,color="green",shape="box"];747[label="xuu401",fontsize=16,color="green",shape="box"];2537[label="compare0 (Just xuu3000) Nothing True",fontsize=16,color="black",shape="box"];2537 -> 2749[label="",style="solid", color="black", weight=3]; 30.09/12.94 2538[label="xuu3000 <= xuu3100",fontsize=16,color="black",shape="triangle"];2538 -> 2750[label="",style="solid", color="black", weight=3]; 30.09/12.94 2539[label="xuu3000 <= xuu3100",fontsize=16,color="burlywood",shape="triangle"];4335[label="xuu3000/(xuu30000,xuu30001,xuu30002)",fontsize=10,color="white",style="solid",shape="box"];2539 -> 4335[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4335 -> 2751[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 2540[label="xuu3000 <= xuu3100",fontsize=16,color="black",shape="triangle"];2540 -> 2752[label="",style="solid", color="black", weight=3]; 30.09/12.94 2541[label="xuu3000 <= xuu3100",fontsize=16,color="burlywood",shape="triangle"];4336[label="xuu3000/Left xuu30000",fontsize=10,color="white",style="solid",shape="box"];2541 -> 4336[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4336 -> 2753[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4337[label="xuu3000/Right xuu30000",fontsize=10,color="white",style="solid",shape="box"];2541 -> 4337[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4337 -> 2754[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 2542[label="xuu3000 <= xuu3100",fontsize=16,color="black",shape="triangle"];2542 -> 2755[label="",style="solid", color="black", weight=3]; 30.09/12.94 2543[label="xuu3000 <= xuu3100",fontsize=16,color="black",shape="triangle"];2543 -> 2756[label="",style="solid", color="black", weight=3]; 30.09/12.94 2544[label="xuu3000 <= xuu3100",fontsize=16,color="black",shape="triangle"];2544 -> 2757[label="",style="solid", color="black", weight=3]; 30.09/12.94 2545[label="xuu3000 <= xuu3100",fontsize=16,color="burlywood",shape="triangle"];4338[label="xuu3000/False",fontsize=10,color="white",style="solid",shape="box"];2545 -> 4338[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4338 -> 2758[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4339[label="xuu3000/True",fontsize=10,color="white",style="solid",shape="box"];2545 -> 4339[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4339 -> 2759[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 2546[label="xuu3000 <= xuu3100",fontsize=16,color="burlywood",shape="triangle"];4340[label="xuu3000/Nothing",fontsize=10,color="white",style="solid",shape="box"];2546 -> 4340[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4340 -> 2760[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4341[label="xuu3000/Just xuu30000",fontsize=10,color="white",style="solid",shape="box"];2546 -> 4341[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4341 -> 2761[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 2547[label="xuu3000 <= xuu3100",fontsize=16,color="burlywood",shape="triangle"];4342[label="xuu3000/(xuu30000,xuu30001)",fontsize=10,color="white",style="solid",shape="box"];2547 -> 4342[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4342 -> 2762[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 2548[label="xuu3000 <= xuu3100",fontsize=16,color="black",shape="triangle"];2548 -> 2763[label="",style="solid", color="black", weight=3]; 30.09/12.94 2549[label="xuu3000 <= xuu3100",fontsize=16,color="burlywood",shape="triangle"];4343[label="xuu3000/LT",fontsize=10,color="white",style="solid",shape="box"];2549 -> 4343[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4343 -> 2764[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4344[label="xuu3000/EQ",fontsize=10,color="white",style="solid",shape="box"];2549 -> 4344[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4344 -> 2765[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4345[label="xuu3000/GT",fontsize=10,color="white",style="solid",shape="box"];2549 -> 4345[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4345 -> 2766[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 2550[label="xuu3000 <= xuu3100",fontsize=16,color="black",shape="triangle"];2550 -> 2767[label="",style="solid", color="black", weight=3]; 30.09/12.94 2551[label="xuu3000 <= xuu3100",fontsize=16,color="black",shape="triangle"];2551 -> 2768[label="",style="solid", color="black", weight=3]; 30.09/12.94 2552[label="compare1 (Just xuu134) (Just xuu135) False",fontsize=16,color="black",shape="box"];2552 -> 2769[label="",style="solid", color="black", weight=3]; 30.09/12.94 2553[label="compare1 (Just xuu134) (Just xuu135) True",fontsize=16,color="black",shape="box"];2553 -> 2770[label="",style="solid", color="black", weight=3]; 30.09/12.94 2046[label="False",fontsize=16,color="green",shape="box"];750[label="primCmpInt (FiniteMap.mkBalBranch6Size_l xuu25 (Just xuu300) xuu31 xuu34 + FiniteMap.mkBalBranch6Size_r xuu25 (Just xuu300) xuu31 xuu34) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];750 -> 976[label="",style="solid", color="black", weight=3]; 30.09/12.94 978 -> 1495[label="",style="dashed", color="red", weight=0]; 30.09/12.94 978[label="FiniteMap.mkBalBranch6Size_r xuu25 (Just xuu300) xuu31 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu25 (Just xuu300) xuu31 xuu34",fontsize=16,color="magenta"];978 -> 1496[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 978 -> 1497[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 977[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu25 (Just xuu300) xuu31 xuu34 (Just xuu300) xuu31 xuu25 xuu34 xuu64",fontsize=16,color="burlywood",shape="triangle"];4346[label="xuu64/False",fontsize=10,color="white",style="solid",shape="box"];977 -> 4346[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4346 -> 989[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4347[label="xuu64/True",fontsize=10,color="white",style="solid",shape="box"];977 -> 4347[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4347 -> 990[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 3825[label="xuu31",fontsize=16,color="green",shape="box"];3826[label="Just xuu300",fontsize=16,color="green",shape="box"];3827[label="Zero",fontsize=16,color="green",shape="box"];3828[label="xuu25",fontsize=16,color="green",shape="box"];3829[label="xuu34",fontsize=16,color="green",shape="box"];3824[label="FiniteMap.mkBranch (Pos (Succ xuu210)) xuu211 xuu212 xuu213 xuu214",fontsize=16,color="black",shape="triangle"];3824 -> 3955[label="",style="solid", color="black", weight=3]; 30.09/12.94 2047[label="False",fontsize=16,color="green",shape="box"];755[label="primCmpInt (FiniteMap.mkBalBranch6Size_l xuu33 Nothing xuu31 xuu34 + FiniteMap.mkBalBranch6Size_r xuu33 Nothing xuu31 xuu34) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];755 -> 1006[label="",style="solid", color="black", weight=3]; 30.09/12.94 1008 -> 1495[label="",style="dashed", color="red", weight=0]; 30.09/12.94 1008[label="FiniteMap.mkBalBranch6Size_r xuu33 Nothing xuu31 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu33 Nothing xuu31 xuu34",fontsize=16,color="magenta"];1008 -> 1498[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1008 -> 1499[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1007[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu33 Nothing xuu31 xuu34 Nothing xuu31 xuu33 xuu34 xuu67",fontsize=16,color="burlywood",shape="triangle"];4348[label="xuu67/False",fontsize=10,color="white",style="solid",shape="box"];1007 -> 4348[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4348 -> 1013[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4349[label="xuu67/True",fontsize=10,color="white",style="solid",shape="box"];1007 -> 4349[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4349 -> 1014[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 3830[label="xuu31",fontsize=16,color="green",shape="box"];3831[label="Nothing",fontsize=16,color="green",shape="box"];3832[label="Zero",fontsize=16,color="green",shape="box"];3833[label="xuu33",fontsize=16,color="green",shape="box"];3834[label="xuu34",fontsize=16,color="green",shape="box"];2577[label="xuu40000",fontsize=16,color="green",shape="box"];2578[label="xuu3000",fontsize=16,color="green",shape="box"];2579[label="xuu40000",fontsize=16,color="green",shape="box"];2580[label="xuu3000",fontsize=16,color="green",shape="box"];2581[label="xuu40000",fontsize=16,color="green",shape="box"];2582[label="xuu3000",fontsize=16,color="green",shape="box"];2583[label="xuu40000",fontsize=16,color="green",shape="box"];2584[label="xuu3000",fontsize=16,color="green",shape="box"];2585[label="xuu40000",fontsize=16,color="green",shape="box"];2586[label="xuu3000",fontsize=16,color="green",shape="box"];2587[label="xuu40000",fontsize=16,color="green",shape="box"];2588[label="xuu3000",fontsize=16,color="green",shape="box"];2589[label="xuu40000",fontsize=16,color="green",shape="box"];2590[label="xuu3000",fontsize=16,color="green",shape="box"];2591[label="xuu40000",fontsize=16,color="green",shape="box"];2592[label="xuu3000",fontsize=16,color="green",shape="box"];2593[label="xuu40000",fontsize=16,color="green",shape="box"];2594[label="xuu3000",fontsize=16,color="green",shape="box"];2595[label="xuu40000",fontsize=16,color="green",shape="box"];2596[label="xuu3000",fontsize=16,color="green",shape="box"];2597[label="xuu40000",fontsize=16,color="green",shape="box"];2598[label="xuu3000",fontsize=16,color="green",shape="box"];2599[label="xuu40000",fontsize=16,color="green",shape="box"];2600[label="xuu3000",fontsize=16,color="green",shape="box"];2601[label="xuu40000",fontsize=16,color="green",shape="box"];2602[label="xuu3000",fontsize=16,color="green",shape="box"];2603[label="xuu40000",fontsize=16,color="green",shape="box"];2604[label="xuu3000",fontsize=16,color="green",shape="box"];2605[label="xuu40001",fontsize=16,color="green",shape="box"];2606[label="xuu3001",fontsize=16,color="green",shape="box"];2607[label="xuu40001",fontsize=16,color="green",shape="box"];2608[label="xuu3001",fontsize=16,color="green",shape="box"];2609[label="xuu40001",fontsize=16,color="green",shape="box"];2610[label="xuu3001",fontsize=16,color="green",shape="box"];2611[label="xuu40001",fontsize=16,color="green",shape="box"];2612[label="xuu3001",fontsize=16,color="green",shape="box"];2613[label="xuu40001",fontsize=16,color="green",shape="box"];2614[label="xuu3001",fontsize=16,color="green",shape="box"];2615[label="xuu40001",fontsize=16,color="green",shape="box"];2616[label="xuu3001",fontsize=16,color="green",shape="box"];2617[label="xuu40001",fontsize=16,color="green",shape="box"];2618[label="xuu3001",fontsize=16,color="green",shape="box"];2619[label="xuu40001",fontsize=16,color="green",shape="box"];2620[label="xuu3001",fontsize=16,color="green",shape="box"];2621[label="xuu40001",fontsize=16,color="green",shape="box"];2622[label="xuu3001",fontsize=16,color="green",shape="box"];2623[label="xuu40001",fontsize=16,color="green",shape="box"];2624[label="xuu3001",fontsize=16,color="green",shape="box"];2625[label="xuu40001",fontsize=16,color="green",shape="box"];2626[label="xuu3001",fontsize=16,color="green",shape="box"];2627[label="xuu40001",fontsize=16,color="green",shape="box"];2628[label="xuu3001",fontsize=16,color="green",shape="box"];2629[label="xuu40001",fontsize=16,color="green",shape="box"];2630[label="xuu3001",fontsize=16,color="green",shape="box"];2631[label="xuu40001",fontsize=16,color="green",shape="box"];2632[label="xuu3001",fontsize=16,color="green",shape="box"];2633[label="False",fontsize=16,color="green",shape="box"];2634[label="xuu141",fontsize=16,color="green",shape="box"];2635[label="xuu40000",fontsize=16,color="green",shape="box"];2636[label="xuu3000",fontsize=16,color="green",shape="box"];2637[label="xuu40000",fontsize=16,color="green",shape="box"];2638[label="xuu3000",fontsize=16,color="green",shape="box"];2639[label="xuu40000",fontsize=16,color="green",shape="box"];2640[label="xuu3000",fontsize=16,color="green",shape="box"];2641[label="xuu40000",fontsize=16,color="green",shape="box"];2642[label="xuu3000",fontsize=16,color="green",shape="box"];2643[label="xuu40000",fontsize=16,color="green",shape="box"];2644[label="xuu3000",fontsize=16,color="green",shape="box"];2645[label="xuu40000",fontsize=16,color="green",shape="box"];2646[label="xuu3000",fontsize=16,color="green",shape="box"];2647[label="xuu40000",fontsize=16,color="green",shape="box"];2648[label="xuu3000",fontsize=16,color="green",shape="box"];2649[label="xuu40000",fontsize=16,color="green",shape="box"];2650[label="xuu3000",fontsize=16,color="green",shape="box"];2651[label="xuu40000",fontsize=16,color="green",shape="box"];2652[label="xuu3000",fontsize=16,color="green",shape="box"];2653[label="xuu40000",fontsize=16,color="green",shape="box"];2654[label="xuu3000",fontsize=16,color="green",shape="box"];2655[label="xuu40000",fontsize=16,color="green",shape="box"];2656[label="xuu3000",fontsize=16,color="green",shape="box"];2657[label="xuu40000",fontsize=16,color="green",shape="box"];2658[label="xuu3000",fontsize=16,color="green",shape="box"];2659[label="xuu40000",fontsize=16,color="green",shape="box"];2660[label="xuu3000",fontsize=16,color="green",shape="box"];2661[label="xuu40000",fontsize=16,color="green",shape="box"];2662[label="xuu3000",fontsize=16,color="green",shape="box"];2663 -> 2031[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2663[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2663 -> 2789[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2663 -> 2790[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2664 -> 2032[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2664[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2664 -> 2791[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2664 -> 2792[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2665 -> 2033[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2665[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2665 -> 2793[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2665 -> 2794[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2666 -> 2034[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2666[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2666 -> 2795[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2666 -> 2796[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2667 -> 2035[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2667[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2667 -> 2797[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2667 -> 2798[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2668 -> 2036[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2668[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2668 -> 2799[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2668 -> 2800[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2669 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2669[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2669 -> 2801[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2669 -> 2802[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2670 -> 2038[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2670[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2670 -> 2803[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2670 -> 2804[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2671 -> 2039[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2671[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2671 -> 2805[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2671 -> 2806[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2672 -> 2040[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2672[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2672 -> 2807[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2672 -> 2808[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2673 -> 2041[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2673[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2673 -> 2809[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2673 -> 2810[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2674 -> 2042[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2674[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2674 -> 2811[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2674 -> 2812[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2675 -> 2043[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2675[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2675 -> 2813[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2675 -> 2814[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2676 -> 2044[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2676[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2676 -> 2815[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2676 -> 2816[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2677 -> 2031[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2677[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2677 -> 2817[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2677 -> 2818[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2678 -> 2032[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2678[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2678 -> 2819[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2678 -> 2820[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2679 -> 2033[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2679[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2679 -> 2821[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2679 -> 2822[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2680 -> 2034[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2680[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2680 -> 2823[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2680 -> 2824[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2681 -> 2035[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2681[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2681 -> 2825[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2681 -> 2826[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2682 -> 2036[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2682[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2682 -> 2827[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2682 -> 2828[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2683 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2683[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2683 -> 2829[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2683 -> 2830[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2684 -> 2038[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2684[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2684 -> 2831[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2684 -> 2832[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2685 -> 2039[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2685[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2685 -> 2833[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2685 -> 2834[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2686 -> 2040[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2686[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2686 -> 2835[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2686 -> 2836[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2687 -> 2041[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2687[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2687 -> 2837[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2687 -> 2838[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2688 -> 2042[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2688[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2688 -> 2839[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2688 -> 2840[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2689 -> 2043[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2689[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2689 -> 2841[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2689 -> 2842[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2690 -> 2044[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2690[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2690 -> 2843[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2690 -> 2844[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2691 -> 2314[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2691[label="primEqNat xuu400000 xuu30000",fontsize=16,color="magenta"];2691 -> 2845[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2691 -> 2846[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2692[label="False",fontsize=16,color="green",shape="box"];2693[label="False",fontsize=16,color="green",shape="box"];2694[label="True",fontsize=16,color="green",shape="box"];2695[label="False",fontsize=16,color="green",shape="box"];2696[label="True",fontsize=16,color="green",shape="box"];2697 -> 2314[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2697[label="primEqNat xuu400000 xuu30000",fontsize=16,color="magenta"];2697 -> 2847[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2697 -> 2848[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2698[label="False",fontsize=16,color="green",shape="box"];2699[label="False",fontsize=16,color="green",shape="box"];2700[label="True",fontsize=16,color="green",shape="box"];2701[label="False",fontsize=16,color="green",shape="box"];2702[label="True",fontsize=16,color="green",shape="box"];2703[label="primEqNat (Succ xuu400000) (Succ xuu30000)",fontsize=16,color="black",shape="box"];2703 -> 2849[label="",style="solid", color="black", weight=3]; 30.09/12.94 2704[label="primEqNat (Succ xuu400000) Zero",fontsize=16,color="black",shape="box"];2704 -> 2850[label="",style="solid", color="black", weight=3]; 30.09/12.94 2705[label="primEqNat Zero (Succ xuu30000)",fontsize=16,color="black",shape="box"];2705 -> 2851[label="",style="solid", color="black", weight=3]; 30.09/12.94 2706[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2706 -> 2852[label="",style="solid", color="black", weight=3]; 30.09/12.94 667[label="xuu40000 * xuu3001",fontsize=16,color="black",shape="triangle"];667 -> 895[label="",style="solid", color="black", weight=3]; 30.09/12.94 2707[label="xuu3000",fontsize=16,color="green",shape="box"];2708[label="xuu40001",fontsize=16,color="green",shape="box"];2709[label="xuu40000",fontsize=16,color="green",shape="box"];2710[label="xuu3000",fontsize=16,color="green",shape="box"];2711[label="xuu40000",fontsize=16,color="green",shape="box"];2712[label="xuu3000",fontsize=16,color="green",shape="box"];2713[label="xuu40001",fontsize=16,color="green",shape="box"];2714[label="xuu3001",fontsize=16,color="green",shape="box"];2715[label="xuu40001",fontsize=16,color="green",shape="box"];2716[label="xuu3001",fontsize=16,color="green",shape="box"];2717[label="xuu40000",fontsize=16,color="green",shape="box"];2718[label="xuu3000",fontsize=16,color="green",shape="box"];2719[label="xuu40000",fontsize=16,color="green",shape="box"];2720[label="xuu3000",fontsize=16,color="green",shape="box"];2721[label="xuu40000",fontsize=16,color="green",shape="box"];2722[label="xuu3000",fontsize=16,color="green",shape="box"];2723[label="xuu40000",fontsize=16,color="green",shape="box"];2724[label="xuu3000",fontsize=16,color="green",shape="box"];2725[label="xuu40000",fontsize=16,color="green",shape="box"];2726[label="xuu3000",fontsize=16,color="green",shape="box"];2727[label="xuu40000",fontsize=16,color="green",shape="box"];2728[label="xuu3000",fontsize=16,color="green",shape="box"];2729[label="xuu40000",fontsize=16,color="green",shape="box"];2730[label="xuu3000",fontsize=16,color="green",shape="box"];2731[label="xuu40000",fontsize=16,color="green",shape="box"];2732[label="xuu3000",fontsize=16,color="green",shape="box"];2733[label="xuu40000",fontsize=16,color="green",shape="box"];2734[label="xuu3000",fontsize=16,color="green",shape="box"];2735[label="xuu40000",fontsize=16,color="green",shape="box"];2736[label="xuu3000",fontsize=16,color="green",shape="box"];2737[label="xuu40000",fontsize=16,color="green",shape="box"];2738[label="xuu3000",fontsize=16,color="green",shape="box"];2739[label="xuu40000",fontsize=16,color="green",shape="box"];2740[label="xuu3000",fontsize=16,color="green",shape="box"];2741[label="xuu40000",fontsize=16,color="green",shape="box"];2742[label="xuu3000",fontsize=16,color="green",shape="box"];2743[label="xuu40000",fontsize=16,color="green",shape="box"];2744[label="xuu3000",fontsize=16,color="green",shape="box"];2745[label="xuu3001",fontsize=16,color="green",shape="box"];2746[label="xuu40000",fontsize=16,color="green",shape="box"];2747[label="xuu3000",fontsize=16,color="green",shape="box"];2748[label="xuu40001",fontsize=16,color="green",shape="box"];2048[label="xuu19 == xuu14",fontsize=16,color="blue",shape="box"];4350[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2048 -> 4350[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4350 -> 2070[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4351[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2048 -> 4351[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4351 -> 2071[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4352[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2048 -> 4352[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4352 -> 2072[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4353[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2048 -> 4353[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4353 -> 2073[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4354[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2048 -> 4354[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4354 -> 2074[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4355[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2048 -> 4355[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4355 -> 2075[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4356[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2048 -> 4356[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4356 -> 2076[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4357[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2048 -> 4357[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4357 -> 2077[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4358[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2048 -> 4358[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4358 -> 2078[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4359[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2048 -> 4359[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4359 -> 2079[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4360[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2048 -> 4360[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4360 -> 2080[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4361[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2048 -> 4361[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4361 -> 2081[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4362[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2048 -> 4362[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4362 -> 2082[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4363[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2048 -> 4363[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4363 -> 2083[label="",style="solid", color="blue", weight=3]; 30.09/12.94 972[label="xuu15",fontsize=16,color="green",shape="box"];973[label="xuu20",fontsize=16,color="green",shape="box"];2749[label="GT",fontsize=16,color="green",shape="box"];2750 -> 2855[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2750[label="compare xuu3000 xuu3100 /= GT",fontsize=16,color="magenta"];2750 -> 2856[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2751[label="(xuu30000,xuu30001,xuu30002) <= xuu3100",fontsize=16,color="burlywood",shape="box"];4364[label="xuu3100/(xuu31000,xuu31001,xuu31002)",fontsize=10,color="white",style="solid",shape="box"];2751 -> 4364[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4364 -> 2854[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 2752 -> 2855[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2752[label="compare xuu3000 xuu3100 /= GT",fontsize=16,color="magenta"];2752 -> 2857[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2753[label="Left xuu30000 <= xuu3100",fontsize=16,color="burlywood",shape="box"];4365[label="xuu3100/Left xuu31000",fontsize=10,color="white",style="solid",shape="box"];2753 -> 4365[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4365 -> 2864[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4366[label="xuu3100/Right xuu31000",fontsize=10,color="white",style="solid",shape="box"];2753 -> 4366[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4366 -> 2865[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 2754[label="Right xuu30000 <= xuu3100",fontsize=16,color="burlywood",shape="box"];4367[label="xuu3100/Left xuu31000",fontsize=10,color="white",style="solid",shape="box"];2754 -> 4367[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4367 -> 2866[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4368[label="xuu3100/Right xuu31000",fontsize=10,color="white",style="solid",shape="box"];2754 -> 4368[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4368 -> 2867[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 2755 -> 2855[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2755[label="compare xuu3000 xuu3100 /= GT",fontsize=16,color="magenta"];2755 -> 2858[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2756 -> 2855[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2756[label="compare xuu3000 xuu3100 /= GT",fontsize=16,color="magenta"];2756 -> 2859[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2757 -> 2855[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2757[label="compare xuu3000 xuu3100 /= GT",fontsize=16,color="magenta"];2757 -> 2860[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2758[label="False <= xuu3100",fontsize=16,color="burlywood",shape="box"];4369[label="xuu3100/False",fontsize=10,color="white",style="solid",shape="box"];2758 -> 4369[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4369 -> 2868[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4370[label="xuu3100/True",fontsize=10,color="white",style="solid",shape="box"];2758 -> 4370[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4370 -> 2869[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 2759[label="True <= xuu3100",fontsize=16,color="burlywood",shape="box"];4371[label="xuu3100/False",fontsize=10,color="white",style="solid",shape="box"];2759 -> 4371[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4371 -> 2870[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4372[label="xuu3100/True",fontsize=10,color="white",style="solid",shape="box"];2759 -> 4372[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4372 -> 2871[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 2760[label="Nothing <= xuu3100",fontsize=16,color="burlywood",shape="box"];4373[label="xuu3100/Nothing",fontsize=10,color="white",style="solid",shape="box"];2760 -> 4373[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4373 -> 2872[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4374[label="xuu3100/Just xuu31000",fontsize=10,color="white",style="solid",shape="box"];2760 -> 4374[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4374 -> 2873[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 2761[label="Just xuu30000 <= xuu3100",fontsize=16,color="burlywood",shape="box"];4375[label="xuu3100/Nothing",fontsize=10,color="white",style="solid",shape="box"];2761 -> 4375[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4375 -> 2874[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4376[label="xuu3100/Just xuu31000",fontsize=10,color="white",style="solid",shape="box"];2761 -> 4376[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4376 -> 2875[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 2762[label="(xuu30000,xuu30001) <= xuu3100",fontsize=16,color="burlywood",shape="box"];4377[label="xuu3100/(xuu31000,xuu31001)",fontsize=10,color="white",style="solid",shape="box"];2762 -> 4377[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4377 -> 2876[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 2763 -> 2855[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2763[label="compare xuu3000 xuu3100 /= GT",fontsize=16,color="magenta"];2763 -> 2861[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2764[label="LT <= xuu3100",fontsize=16,color="burlywood",shape="box"];4378[label="xuu3100/LT",fontsize=10,color="white",style="solid",shape="box"];2764 -> 4378[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4378 -> 2877[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4379[label="xuu3100/EQ",fontsize=10,color="white",style="solid",shape="box"];2764 -> 4379[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4379 -> 2878[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4380[label="xuu3100/GT",fontsize=10,color="white",style="solid",shape="box"];2764 -> 4380[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4380 -> 2879[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 2765[label="EQ <= xuu3100",fontsize=16,color="burlywood",shape="box"];4381[label="xuu3100/LT",fontsize=10,color="white",style="solid",shape="box"];2765 -> 4381[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4381 -> 2880[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4382[label="xuu3100/EQ",fontsize=10,color="white",style="solid",shape="box"];2765 -> 4382[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4382 -> 2881[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4383[label="xuu3100/GT",fontsize=10,color="white",style="solid",shape="box"];2765 -> 4383[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4383 -> 2882[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 2766[label="GT <= xuu3100",fontsize=16,color="burlywood",shape="box"];4384[label="xuu3100/LT",fontsize=10,color="white",style="solid",shape="box"];2766 -> 4384[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4384 -> 2883[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4385[label="xuu3100/EQ",fontsize=10,color="white",style="solid",shape="box"];2766 -> 4385[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4385 -> 2884[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4386[label="xuu3100/GT",fontsize=10,color="white",style="solid",shape="box"];2766 -> 4386[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4386 -> 2885[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 2767 -> 2855[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2767[label="compare xuu3000 xuu3100 /= GT",fontsize=16,color="magenta"];2767 -> 2862[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2768 -> 2855[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2768[label="compare xuu3000 xuu3100 /= GT",fontsize=16,color="magenta"];2768 -> 2863[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2769[label="compare0 (Just xuu134) (Just xuu135) otherwise",fontsize=16,color="black",shape="box"];2769 -> 2886[label="",style="solid", color="black", weight=3]; 30.09/12.94 2770[label="LT",fontsize=16,color="green",shape="box"];976[label="primCmpInt (primPlusInt (FiniteMap.mkBalBranch6Size_l xuu25 (Just xuu300) xuu31 xuu34) (FiniteMap.mkBalBranch6Size_r xuu25 (Just xuu300) xuu31 xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];976 -> 1112[label="",style="solid", color="black", weight=3]; 30.09/12.94 1496 -> 667[label="",style="dashed", color="red", weight=0]; 30.09/12.94 1496[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu25 (Just xuu300) xuu31 xuu34",fontsize=16,color="magenta"];1496 -> 1506[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1496 -> 1507[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1497[label="FiniteMap.mkBalBranch6Size_r xuu25 (Just xuu300) xuu31 xuu34",fontsize=16,color="black",shape="triangle"];1497 -> 1508[label="",style="solid", color="black", weight=3]; 30.09/12.94 1495[label="xuu88 > xuu87",fontsize=16,color="black",shape="triangle"];1495 -> 1509[label="",style="solid", color="black", weight=3]; 30.09/12.94 989[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu25 (Just xuu300) xuu31 xuu34 (Just xuu300) xuu31 xuu25 xuu34 False",fontsize=16,color="black",shape="box"];989 -> 1116[label="",style="solid", color="black", weight=3]; 30.09/12.94 990[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu25 (Just xuu300) xuu31 xuu34 (Just xuu300) xuu31 xuu25 xuu34 True",fontsize=16,color="black",shape="box"];990 -> 1117[label="",style="solid", color="black", weight=3]; 30.09/12.94 3955[label="FiniteMap.mkBranchResult xuu211 xuu212 xuu213 xuu214",fontsize=16,color="black",shape="box"];3955 -> 4026[label="",style="solid", color="black", weight=3]; 30.09/12.94 1006[label="primCmpInt (primPlusInt (FiniteMap.mkBalBranch6Size_l xuu33 Nothing xuu31 xuu34) (FiniteMap.mkBalBranch6Size_r xuu33 Nothing xuu31 xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1006 -> 1147[label="",style="solid", color="black", weight=3]; 30.09/12.94 1498 -> 667[label="",style="dashed", color="red", weight=0]; 30.09/12.94 1498[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu33 Nothing xuu31 xuu34",fontsize=16,color="magenta"];1498 -> 1510[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1498 -> 1511[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1499[label="FiniteMap.mkBalBranch6Size_r xuu33 Nothing xuu31 xuu34",fontsize=16,color="black",shape="triangle"];1499 -> 1512[label="",style="solid", color="black", weight=3]; 30.09/12.94 1013[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu33 Nothing xuu31 xuu34 Nothing xuu31 xuu33 xuu34 False",fontsize=16,color="black",shape="box"];1013 -> 1151[label="",style="solid", color="black", weight=3]; 30.09/12.94 1014[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu33 Nothing xuu31 xuu34 Nothing xuu31 xuu33 xuu34 True",fontsize=16,color="black",shape="box"];1014 -> 1152[label="",style="solid", color="black", weight=3]; 30.09/12.94 2789[label="xuu40001",fontsize=16,color="green",shape="box"];2790[label="xuu3001",fontsize=16,color="green",shape="box"];2791[label="xuu40001",fontsize=16,color="green",shape="box"];2792[label="xuu3001",fontsize=16,color="green",shape="box"];2793[label="xuu40001",fontsize=16,color="green",shape="box"];2794[label="xuu3001",fontsize=16,color="green",shape="box"];2795[label="xuu40001",fontsize=16,color="green",shape="box"];2796[label="xuu3001",fontsize=16,color="green",shape="box"];2797[label="xuu40001",fontsize=16,color="green",shape="box"];2798[label="xuu3001",fontsize=16,color="green",shape="box"];2799[label="xuu40001",fontsize=16,color="green",shape="box"];2800[label="xuu3001",fontsize=16,color="green",shape="box"];2801[label="xuu40001",fontsize=16,color="green",shape="box"];2802[label="xuu3001",fontsize=16,color="green",shape="box"];2803[label="xuu40001",fontsize=16,color="green",shape="box"];2804[label="xuu3001",fontsize=16,color="green",shape="box"];2805[label="xuu40001",fontsize=16,color="green",shape="box"];2806[label="xuu3001",fontsize=16,color="green",shape="box"];2807[label="xuu40001",fontsize=16,color="green",shape="box"];2808[label="xuu3001",fontsize=16,color="green",shape="box"];2809[label="xuu40001",fontsize=16,color="green",shape="box"];2810[label="xuu3001",fontsize=16,color="green",shape="box"];2811[label="xuu40001",fontsize=16,color="green",shape="box"];2812[label="xuu3001",fontsize=16,color="green",shape="box"];2813[label="xuu40001",fontsize=16,color="green",shape="box"];2814[label="xuu3001",fontsize=16,color="green",shape="box"];2815[label="xuu40001",fontsize=16,color="green",shape="box"];2816[label="xuu3001",fontsize=16,color="green",shape="box"];2817[label="xuu40002",fontsize=16,color="green",shape="box"];2818[label="xuu3002",fontsize=16,color="green",shape="box"];2819[label="xuu40002",fontsize=16,color="green",shape="box"];2820[label="xuu3002",fontsize=16,color="green",shape="box"];2821[label="xuu40002",fontsize=16,color="green",shape="box"];2822[label="xuu3002",fontsize=16,color="green",shape="box"];2823[label="xuu40002",fontsize=16,color="green",shape="box"];2824[label="xuu3002",fontsize=16,color="green",shape="box"];2825[label="xuu40002",fontsize=16,color="green",shape="box"];2826[label="xuu3002",fontsize=16,color="green",shape="box"];2827[label="xuu40002",fontsize=16,color="green",shape="box"];2828[label="xuu3002",fontsize=16,color="green",shape="box"];2829[label="xuu40002",fontsize=16,color="green",shape="box"];2830[label="xuu3002",fontsize=16,color="green",shape="box"];2831[label="xuu40002",fontsize=16,color="green",shape="box"];2832[label="xuu3002",fontsize=16,color="green",shape="box"];2833[label="xuu40002",fontsize=16,color="green",shape="box"];2834[label="xuu3002",fontsize=16,color="green",shape="box"];2835[label="xuu40002",fontsize=16,color="green",shape="box"];2836[label="xuu3002",fontsize=16,color="green",shape="box"];2837[label="xuu40002",fontsize=16,color="green",shape="box"];2838[label="xuu3002",fontsize=16,color="green",shape="box"];2839[label="xuu40002",fontsize=16,color="green",shape="box"];2840[label="xuu3002",fontsize=16,color="green",shape="box"];2841[label="xuu40002",fontsize=16,color="green",shape="box"];2842[label="xuu3002",fontsize=16,color="green",shape="box"];2843[label="xuu40002",fontsize=16,color="green",shape="box"];2844[label="xuu3002",fontsize=16,color="green",shape="box"];2845[label="xuu400000",fontsize=16,color="green",shape="box"];2846[label="xuu30000",fontsize=16,color="green",shape="box"];2847[label="xuu400000",fontsize=16,color="green",shape="box"];2848[label="xuu30000",fontsize=16,color="green",shape="box"];2849 -> 2314[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2849[label="primEqNat xuu400000 xuu30000",fontsize=16,color="magenta"];2849 -> 2887[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2849 -> 2888[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2850[label="False",fontsize=16,color="green",shape="box"];2851[label="False",fontsize=16,color="green",shape="box"];2852[label="True",fontsize=16,color="green",shape="box"];895[label="primMulInt xuu40000 xuu3001",fontsize=16,color="burlywood",shape="triangle"];4387[label="xuu40000/Pos xuu400000",fontsize=10,color="white",style="solid",shape="box"];895 -> 4387[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4387 -> 1080[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4388[label="xuu40000/Neg xuu400000",fontsize=10,color="white",style="solid",shape="box"];895 -> 4388[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4388 -> 1081[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 2070 -> 2031[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2070[label="xuu19 == xuu14",fontsize=16,color="magenta"];2070 -> 2124[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2070 -> 2125[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2071 -> 2032[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2071[label="xuu19 == xuu14",fontsize=16,color="magenta"];2071 -> 2126[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2071 -> 2127[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2072 -> 2033[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2072[label="xuu19 == xuu14",fontsize=16,color="magenta"];2072 -> 2128[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2072 -> 2129[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2073 -> 2034[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2073[label="xuu19 == xuu14",fontsize=16,color="magenta"];2073 -> 2130[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2073 -> 2131[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2074 -> 2035[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2074[label="xuu19 == xuu14",fontsize=16,color="magenta"];2074 -> 2132[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2074 -> 2133[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2075 -> 2036[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2075[label="xuu19 == xuu14",fontsize=16,color="magenta"];2075 -> 2134[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2075 -> 2135[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2076 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2076[label="xuu19 == xuu14",fontsize=16,color="magenta"];2076 -> 2136[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2076 -> 2137[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2077 -> 2038[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2077[label="xuu19 == xuu14",fontsize=16,color="magenta"];2077 -> 2138[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2077 -> 2139[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2078 -> 2039[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2078[label="xuu19 == xuu14",fontsize=16,color="magenta"];2078 -> 2140[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2078 -> 2141[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2079 -> 2040[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2079[label="xuu19 == xuu14",fontsize=16,color="magenta"];2079 -> 2142[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2079 -> 2143[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2080 -> 2041[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2080[label="xuu19 == xuu14",fontsize=16,color="magenta"];2080 -> 2144[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2080 -> 2145[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2081 -> 2042[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2081[label="xuu19 == xuu14",fontsize=16,color="magenta"];2081 -> 2146[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2081 -> 2147[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2082 -> 2043[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2082[label="xuu19 == xuu14",fontsize=16,color="magenta"];2082 -> 2148[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2082 -> 2149[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2083 -> 2044[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2083[label="xuu19 == xuu14",fontsize=16,color="magenta"];2083 -> 2150[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2083 -> 2151[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2856[label="compare xuu3000 xuu3100",fontsize=16,color="burlywood",shape="triangle"];4389[label="xuu3000/xuu30000 : xuu30001",fontsize=10,color="white",style="solid",shape="box"];2856 -> 4389[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4389 -> 2889[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4390[label="xuu3000/[]",fontsize=10,color="white",style="solid",shape="box"];2856 -> 4390[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4390 -> 2890[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 2855[label="xuu151 /= GT",fontsize=16,color="black",shape="triangle"];2855 -> 2891[label="",style="solid", color="black", weight=3]; 30.09/12.94 2854[label="(xuu30000,xuu30001,xuu30002) <= (xuu31000,xuu31001,xuu31002)",fontsize=16,color="black",shape="box"];2854 -> 2892[label="",style="solid", color="black", weight=3]; 30.09/12.94 2857 -> 1169[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2857[label="compare xuu3000 xuu3100",fontsize=16,color="magenta"];2857 -> 2893[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2857 -> 2894[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2864[label="Left xuu30000 <= Left xuu31000",fontsize=16,color="black",shape="box"];2864 -> 2914[label="",style="solid", color="black", weight=3]; 30.09/12.94 2865[label="Left xuu30000 <= Right xuu31000",fontsize=16,color="black",shape="box"];2865 -> 2915[label="",style="solid", color="black", weight=3]; 30.09/12.94 2866[label="Right xuu30000 <= Left xuu31000",fontsize=16,color="black",shape="box"];2866 -> 2916[label="",style="solid", color="black", weight=3]; 30.09/12.94 2867[label="Right xuu30000 <= Right xuu31000",fontsize=16,color="black",shape="box"];2867 -> 2917[label="",style="solid", color="black", weight=3]; 30.09/12.94 2858[label="compare xuu3000 xuu3100",fontsize=16,color="burlywood",shape="triangle"];4391[label="xuu3000/()",fontsize=10,color="white",style="solid",shape="box"];2858 -> 4391[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4391 -> 2895[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 2859[label="compare xuu3000 xuu3100",fontsize=16,color="black",shape="triangle"];2859 -> 2896[label="",style="solid", color="black", weight=3]; 30.09/12.94 2860[label="compare xuu3000 xuu3100",fontsize=16,color="burlywood",shape="triangle"];4392[label="xuu3000/xuu30000 :% xuu30001",fontsize=10,color="white",style="solid",shape="box"];2860 -> 4392[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4392 -> 2897[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 2868[label="False <= False",fontsize=16,color="black",shape="box"];2868 -> 2918[label="",style="solid", color="black", weight=3]; 30.09/12.94 2869[label="False <= True",fontsize=16,color="black",shape="box"];2869 -> 2919[label="",style="solid", color="black", weight=3]; 30.09/12.94 2870[label="True <= False",fontsize=16,color="black",shape="box"];2870 -> 2920[label="",style="solid", color="black", weight=3]; 30.09/12.94 2871[label="True <= True",fontsize=16,color="black",shape="box"];2871 -> 2921[label="",style="solid", color="black", weight=3]; 30.09/12.94 2872[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2872 -> 2922[label="",style="solid", color="black", weight=3]; 30.09/12.94 2873[label="Nothing <= Just xuu31000",fontsize=16,color="black",shape="box"];2873 -> 2923[label="",style="solid", color="black", weight=3]; 30.09/12.94 2874[label="Just xuu30000 <= Nothing",fontsize=16,color="black",shape="box"];2874 -> 2924[label="",style="solid", color="black", weight=3]; 30.09/12.94 2875[label="Just xuu30000 <= Just xuu31000",fontsize=16,color="black",shape="box"];2875 -> 2925[label="",style="solid", color="black", weight=3]; 30.09/12.94 2876[label="(xuu30000,xuu30001) <= (xuu31000,xuu31001)",fontsize=16,color="black",shape="box"];2876 -> 2926[label="",style="solid", color="black", weight=3]; 30.09/12.94 2861[label="compare xuu3000 xuu3100",fontsize=16,color="black",shape="triangle"];2861 -> 2898[label="",style="solid", color="black", weight=3]; 30.09/12.94 2877[label="LT <= LT",fontsize=16,color="black",shape="box"];2877 -> 2927[label="",style="solid", color="black", weight=3]; 30.09/12.94 2878[label="LT <= EQ",fontsize=16,color="black",shape="box"];2878 -> 2928[label="",style="solid", color="black", weight=3]; 30.09/12.94 2879[label="LT <= GT",fontsize=16,color="black",shape="box"];2879 -> 2929[label="",style="solid", color="black", weight=3]; 30.09/12.94 2880[label="EQ <= LT",fontsize=16,color="black",shape="box"];2880 -> 2930[label="",style="solid", color="black", weight=3]; 30.09/12.94 2881[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2881 -> 2931[label="",style="solid", color="black", weight=3]; 30.09/12.94 2882[label="EQ <= GT",fontsize=16,color="black",shape="box"];2882 -> 2932[label="",style="solid", color="black", weight=3]; 30.09/12.94 2883[label="GT <= LT",fontsize=16,color="black",shape="box"];2883 -> 2933[label="",style="solid", color="black", weight=3]; 30.09/12.94 2884[label="GT <= EQ",fontsize=16,color="black",shape="box"];2884 -> 2934[label="",style="solid", color="black", weight=3]; 30.09/12.94 2885[label="GT <= GT",fontsize=16,color="black",shape="box"];2885 -> 2935[label="",style="solid", color="black", weight=3]; 30.09/12.94 2862[label="compare xuu3000 xuu3100",fontsize=16,color="black",shape="triangle"];2862 -> 2899[label="",style="solid", color="black", weight=3]; 30.09/12.94 2863[label="compare xuu3000 xuu3100",fontsize=16,color="burlywood",shape="triangle"];4393[label="xuu3000/Integer xuu30000",fontsize=10,color="white",style="solid",shape="box"];2863 -> 4393[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4393 -> 2900[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 2886[label="compare0 (Just xuu134) (Just xuu135) True",fontsize=16,color="black",shape="box"];2886 -> 2936[label="",style="solid", color="black", weight=3]; 30.09/12.94 1112[label="primCmpInt (primPlusInt (FiniteMap.sizeFM xuu25) (FiniteMap.mkBalBranch6Size_r xuu25 (Just xuu300) xuu31 xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="burlywood",shape="box"];4394[label="xuu25/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1112 -> 4394[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4394 -> 1215[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4395[label="xuu25/FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254",fontsize=10,color="white",style="solid",shape="box"];1112 -> 4395[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4395 -> 1216[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 1506 -> 1505[label="",style="dashed", color="red", weight=0]; 30.09/12.94 1506[label="FiniteMap.mkBalBranch6Size_l xuu25 (Just xuu300) xuu31 xuu34",fontsize=16,color="magenta"];1507[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];1507 -> 1529[label="",style="solid", color="black", weight=3]; 30.09/12.94 1508[label="FiniteMap.sizeFM xuu34",fontsize=16,color="burlywood",shape="triangle"];4396[label="xuu34/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1508 -> 4396[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4396 -> 1530[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4397[label="xuu34/FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344",fontsize=10,color="white",style="solid",shape="box"];1508 -> 4397[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4397 -> 1531[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 1509 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.94 1509[label="compare xuu88 xuu87 == GT",fontsize=16,color="magenta"];1509 -> 1532[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1509 -> 1533[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1116 -> 1491[label="",style="dashed", color="red", weight=0]; 30.09/12.94 1116[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu25 (Just xuu300) xuu31 xuu34 (Just xuu300) xuu31 xuu25 xuu34 (FiniteMap.mkBalBranch6Size_l xuu25 (Just xuu300) xuu31 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu25 (Just xuu300) xuu31 xuu34)",fontsize=16,color="magenta"];1116 -> 1492[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1117[label="FiniteMap.mkBalBranch6MkBalBranch0 xuu25 (Just xuu300) xuu31 xuu34 xuu25 xuu34 xuu34",fontsize=16,color="burlywood",shape="box"];4398[label="xuu34/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1117 -> 4398[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4398 -> 1224[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4399[label="xuu34/FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344",fontsize=10,color="white",style="solid",shape="box"];1117 -> 4399[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4399 -> 1225[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4026[label="FiniteMap.Branch xuu211 xuu212 (FiniteMap.mkBranchUnbox xuu213 xuu214 xuu211 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu213 xuu214 xuu211 + FiniteMap.mkBranchRight_size xuu213 xuu214 xuu211)) xuu213 xuu214",fontsize=16,color="green",shape="box"];4026 -> 4032[label="",style="dashed", color="green", weight=3]; 30.09/12.94 1147[label="primCmpInt (primPlusInt (FiniteMap.sizeFM xuu33) (FiniteMap.mkBalBranch6Size_r xuu33 Nothing xuu31 xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="burlywood",shape="box"];4400[label="xuu33/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1147 -> 4400[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4400 -> 1227[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4401[label="xuu33/FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334",fontsize=10,color="white",style="solid",shape="box"];1147 -> 4401[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4401 -> 1228[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 1510[label="FiniteMap.mkBalBranch6Size_l xuu33 Nothing xuu31 xuu34",fontsize=16,color="black",shape="triangle"];1510 -> 1534[label="",style="solid", color="black", weight=3]; 30.09/12.94 1511 -> 1507[label="",style="dashed", color="red", weight=0]; 30.09/12.94 1511[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1512 -> 1508[label="",style="dashed", color="red", weight=0]; 30.09/12.94 1512[label="FiniteMap.sizeFM xuu34",fontsize=16,color="magenta"];1151 -> 1525[label="",style="dashed", color="red", weight=0]; 30.09/12.94 1151[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu33 Nothing xuu31 xuu34 Nothing xuu31 xuu33 xuu34 (FiniteMap.mkBalBranch6Size_l xuu33 Nothing xuu31 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu33 Nothing xuu31 xuu34)",fontsize=16,color="magenta"];1151 -> 1526[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1152[label="FiniteMap.mkBalBranch6MkBalBranch0 xuu33 Nothing xuu31 xuu34 xuu33 xuu34 xuu34",fontsize=16,color="burlywood",shape="box"];4402[label="xuu34/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1152 -> 4402[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4402 -> 1235[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4403[label="xuu34/FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344",fontsize=10,color="white",style="solid",shape="box"];1152 -> 4403[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4403 -> 1236[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 2887[label="xuu400000",fontsize=16,color="green",shape="box"];2888[label="xuu30000",fontsize=16,color="green",shape="box"];1080[label="primMulInt (Pos xuu400000) xuu3001",fontsize=16,color="burlywood",shape="box"];4404[label="xuu3001/Pos xuu30010",fontsize=10,color="white",style="solid",shape="box"];1080 -> 4404[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4404 -> 1156[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4405[label="xuu3001/Neg xuu30010",fontsize=10,color="white",style="solid",shape="box"];1080 -> 4405[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4405 -> 1157[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 1081[label="primMulInt (Neg xuu400000) xuu3001",fontsize=16,color="burlywood",shape="box"];4406[label="xuu3001/Pos xuu30010",fontsize=10,color="white",style="solid",shape="box"];1081 -> 4406[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4406 -> 1158[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4407[label="xuu3001/Neg xuu30010",fontsize=10,color="white",style="solid",shape="box"];1081 -> 4407[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4407 -> 1159[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 2124[label="xuu19",fontsize=16,color="green",shape="box"];2125[label="xuu14",fontsize=16,color="green",shape="box"];2126[label="xuu19",fontsize=16,color="green",shape="box"];2127[label="xuu14",fontsize=16,color="green",shape="box"];2128[label="xuu19",fontsize=16,color="green",shape="box"];2129[label="xuu14",fontsize=16,color="green",shape="box"];2130[label="xuu19",fontsize=16,color="green",shape="box"];2131[label="xuu14",fontsize=16,color="green",shape="box"];2132[label="xuu19",fontsize=16,color="green",shape="box"];2133[label="xuu14",fontsize=16,color="green",shape="box"];2134[label="xuu19",fontsize=16,color="green",shape="box"];2135[label="xuu14",fontsize=16,color="green",shape="box"];2136[label="xuu19",fontsize=16,color="green",shape="box"];2137[label="xuu14",fontsize=16,color="green",shape="box"];2138[label="xuu19",fontsize=16,color="green",shape="box"];2139[label="xuu14",fontsize=16,color="green",shape="box"];2140[label="xuu19",fontsize=16,color="green",shape="box"];2141[label="xuu14",fontsize=16,color="green",shape="box"];2142[label="xuu19",fontsize=16,color="green",shape="box"];2143[label="xuu14",fontsize=16,color="green",shape="box"];2144[label="xuu19",fontsize=16,color="green",shape="box"];2145[label="xuu14",fontsize=16,color="green",shape="box"];2146[label="xuu19",fontsize=16,color="green",shape="box"];2147[label="xuu14",fontsize=16,color="green",shape="box"];2148[label="xuu19",fontsize=16,color="green",shape="box"];2149[label="xuu14",fontsize=16,color="green",shape="box"];2150[label="xuu19",fontsize=16,color="green",shape="box"];2151[label="xuu14",fontsize=16,color="green",shape="box"];2889[label="compare (xuu30000 : xuu30001) xuu3100",fontsize=16,color="burlywood",shape="box"];4408[label="xuu3100/xuu31000 : xuu31001",fontsize=10,color="white",style="solid",shape="box"];2889 -> 4408[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4408 -> 2937[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4409[label="xuu3100/[]",fontsize=10,color="white",style="solid",shape="box"];2889 -> 4409[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4409 -> 2938[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 2890[label="compare [] xuu3100",fontsize=16,color="burlywood",shape="box"];4410[label="xuu3100/xuu31000 : xuu31001",fontsize=10,color="white",style="solid",shape="box"];2890 -> 4410[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4410 -> 2939[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4411[label="xuu3100/[]",fontsize=10,color="white",style="solid",shape="box"];2890 -> 4411[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4411 -> 2940[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 2891 -> 2941[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2891[label="not (xuu151 == GT)",fontsize=16,color="magenta"];2891 -> 2942[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2892 -> 3006[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2892[label="xuu30000 < xuu31000 || xuu30000 == xuu31000 && (xuu30001 < xuu31001 || xuu30001 == xuu31001 && xuu30002 <= xuu31002)",fontsize=16,color="magenta"];2892 -> 3007[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2892 -> 3008[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2893[label="xuu3100",fontsize=16,color="green",shape="box"];2894[label="xuu3000",fontsize=16,color="green",shape="box"];1169[label="compare xuu30 xuu31",fontsize=16,color="black",shape="triangle"];1169 -> 1275[label="",style="solid", color="black", weight=3]; 30.09/12.94 2914[label="xuu30000 <= xuu31000",fontsize=16,color="blue",shape="box"];4412[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4412[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4412 -> 2948[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4413[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4413[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4413 -> 2949[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4414[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4414[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4414 -> 2950[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4415[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4415[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4415 -> 2951[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4416[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4416[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4416 -> 2952[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4417[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4417[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4417 -> 2953[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4418[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4418[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4418 -> 2954[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4419[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4419[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4419 -> 2955[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4420[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4420[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4420 -> 2956[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4421[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4421[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4421 -> 2957[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4422[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4422[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4422 -> 2958[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4423[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4423[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4423 -> 2959[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4424[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4424[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4424 -> 2960[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4425[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4425[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4425 -> 2961[label="",style="solid", color="blue", weight=3]; 30.09/12.94 2915[label="True",fontsize=16,color="green",shape="box"];2916[label="False",fontsize=16,color="green",shape="box"];2917[label="xuu30000 <= xuu31000",fontsize=16,color="blue",shape="box"];4426[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2917 -> 4426[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4426 -> 2962[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4427[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2917 -> 4427[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4427 -> 2963[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4428[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2917 -> 4428[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4428 -> 2964[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4429[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2917 -> 4429[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4429 -> 2965[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4430[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2917 -> 4430[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4430 -> 2966[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4431[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2917 -> 4431[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4431 -> 2967[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4432[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2917 -> 4432[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4432 -> 2968[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4433[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2917 -> 4433[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4433 -> 2969[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4434[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2917 -> 4434[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4434 -> 2970[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4435[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2917 -> 4435[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4435 -> 2971[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4436[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2917 -> 4436[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4436 -> 2972[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4437[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2917 -> 4437[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4437 -> 2973[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4438[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2917 -> 4438[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4438 -> 2974[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4439[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2917 -> 4439[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4439 -> 2975[label="",style="solid", color="blue", weight=3]; 30.09/12.94 2895[label="compare () xuu3100",fontsize=16,color="burlywood",shape="box"];4440[label="xuu3100/()",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4440[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4440 -> 2976[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 2896[label="primCmpChar xuu3000 xuu3100",fontsize=16,color="burlywood",shape="box"];4441[label="xuu3000/Char xuu30000",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4441[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4441 -> 2977[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 2897[label="compare (xuu30000 :% xuu30001) xuu3100",fontsize=16,color="burlywood",shape="box"];4442[label="xuu3100/xuu31000 :% xuu31001",fontsize=10,color="white",style="solid",shape="box"];2897 -> 4442[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4442 -> 2978[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 2918[label="True",fontsize=16,color="green",shape="box"];2919[label="True",fontsize=16,color="green",shape="box"];2920[label="False",fontsize=16,color="green",shape="box"];2921[label="True",fontsize=16,color="green",shape="box"];2922[label="True",fontsize=16,color="green",shape="box"];2923[label="True",fontsize=16,color="green",shape="box"];2924[label="False",fontsize=16,color="green",shape="box"];2925[label="xuu30000 <= xuu31000",fontsize=16,color="blue",shape="box"];4443[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2925 -> 4443[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4443 -> 2979[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4444[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2925 -> 4444[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4444 -> 2980[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4445[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2925 -> 4445[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4445 -> 2981[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4446[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2925 -> 4446[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4446 -> 2982[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4447[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2925 -> 4447[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4447 -> 2983[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4448[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2925 -> 4448[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4448 -> 2984[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4449[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2925 -> 4449[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4449 -> 2985[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4450[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2925 -> 4450[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4450 -> 2986[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4451[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2925 -> 4451[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4451 -> 2987[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4452[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2925 -> 4452[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4452 -> 2988[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4453[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2925 -> 4453[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4453 -> 2989[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4454[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2925 -> 4454[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4454 -> 2990[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4455[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2925 -> 4455[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4455 -> 2991[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4456[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2925 -> 4456[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4456 -> 2992[label="",style="solid", color="blue", weight=3]; 30.09/12.94 2926 -> 3006[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2926[label="xuu30000 < xuu31000 || xuu30000 == xuu31000 && xuu30001 <= xuu31001",fontsize=16,color="magenta"];2926 -> 3009[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2926 -> 3010[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2898[label="primCmpDouble xuu3000 xuu3100",fontsize=16,color="burlywood",shape="box"];4457[label="xuu3000/Double xuu30000 xuu30001",fontsize=10,color="white",style="solid",shape="box"];2898 -> 4457[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4457 -> 2993[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 2927[label="True",fontsize=16,color="green",shape="box"];2928[label="True",fontsize=16,color="green",shape="box"];2929[label="True",fontsize=16,color="green",shape="box"];2930[label="False",fontsize=16,color="green",shape="box"];2931[label="True",fontsize=16,color="green",shape="box"];2932[label="True",fontsize=16,color="green",shape="box"];2933[label="False",fontsize=16,color="green",shape="box"];2934[label="False",fontsize=16,color="green",shape="box"];2935[label="True",fontsize=16,color="green",shape="box"];2899[label="primCmpFloat xuu3000 xuu3100",fontsize=16,color="burlywood",shape="box"];4458[label="xuu3000/Float xuu30000 xuu30001",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4458[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4458 -> 2994[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 2900[label="compare (Integer xuu30000) xuu3100",fontsize=16,color="burlywood",shape="box"];4459[label="xuu3100/Integer xuu31000",fontsize=10,color="white",style="solid",shape="box"];2900 -> 4459[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4459 -> 2995[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 2936[label="GT",fontsize=16,color="green",shape="box"];1215[label="primCmpInt (primPlusInt (FiniteMap.sizeFM FiniteMap.EmptyFM) (FiniteMap.mkBalBranch6Size_r FiniteMap.EmptyFM (Just xuu300) xuu31 xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1215 -> 1356[label="",style="solid", color="black", weight=3]; 30.09/12.94 1216[label="primCmpInt (primPlusInt (FiniteMap.sizeFM (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254)) (FiniteMap.mkBalBranch6Size_r (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) (Just xuu300) xuu31 xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1216 -> 1357[label="",style="solid", color="black", weight=3]; 30.09/12.94 1505[label="FiniteMap.mkBalBranch6Size_l xuu25 (Just xuu300) xuu31 xuu34",fontsize=16,color="black",shape="triangle"];1505 -> 1517[label="",style="solid", color="black", weight=3]; 30.09/12.94 1529[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];1530[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1530 -> 1697[label="",style="solid", color="black", weight=3]; 30.09/12.94 1531[label="FiniteMap.sizeFM (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="black",shape="box"];1531 -> 1698[label="",style="solid", color="black", weight=3]; 30.09/12.94 1532 -> 1169[label="",style="dashed", color="red", weight=0]; 30.09/12.94 1532[label="compare xuu88 xuu87",fontsize=16,color="magenta"];1532 -> 1699[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1532 -> 1700[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1533[label="GT",fontsize=16,color="green",shape="box"];1492 -> 1495[label="",style="dashed", color="red", weight=0]; 30.09/12.94 1492[label="FiniteMap.mkBalBranch6Size_l xuu25 (Just xuu300) xuu31 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu25 (Just xuu300) xuu31 xuu34",fontsize=16,color="magenta"];1492 -> 1504[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1492 -> 1505[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1491[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu25 (Just xuu300) xuu31 xuu34 (Just xuu300) xuu31 xuu25 xuu34 xuu85",fontsize=16,color="burlywood",shape="triangle"];4460[label="xuu85/False",fontsize=10,color="white",style="solid",shape="box"];1491 -> 4460[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4460 -> 1513[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4461[label="xuu85/True",fontsize=10,color="white",style="solid",shape="box"];1491 -> 4461[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4461 -> 1514[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 1224[label="FiniteMap.mkBalBranch6MkBalBranch0 xuu25 (Just xuu300) xuu31 FiniteMap.EmptyFM xuu25 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1224 -> 1365[label="",style="solid", color="black", weight=3]; 30.09/12.94 1225[label="FiniteMap.mkBalBranch6MkBalBranch0 xuu25 (Just xuu300) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu25 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="black",shape="box"];1225 -> 1366[label="",style="solid", color="black", weight=3]; 30.09/12.94 4032[label="FiniteMap.mkBranchUnbox xuu213 xuu214 xuu211 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu213 xuu214 xuu211 + FiniteMap.mkBranchRight_size xuu213 xuu214 xuu211)",fontsize=16,color="black",shape="box"];4032 -> 4038[label="",style="solid", color="black", weight=3]; 30.09/12.94 1227[label="primCmpInt (primPlusInt (FiniteMap.sizeFM FiniteMap.EmptyFM) (FiniteMap.mkBalBranch6Size_r FiniteMap.EmptyFM Nothing xuu31 xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1227 -> 1368[label="",style="solid", color="black", weight=3]; 30.09/12.94 1228[label="primCmpInt (primPlusInt (FiniteMap.sizeFM (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334)) (FiniteMap.mkBalBranch6Size_r (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) Nothing xuu31 xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1228 -> 1369[label="",style="solid", color="black", weight=3]; 30.09/12.94 1534 -> 1508[label="",style="dashed", color="red", weight=0]; 30.09/12.94 1534[label="FiniteMap.sizeFM xuu33",fontsize=16,color="magenta"];1534 -> 1701[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1526 -> 1495[label="",style="dashed", color="red", weight=0]; 30.09/12.94 1526[label="FiniteMap.mkBalBranch6Size_l xuu33 Nothing xuu31 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu33 Nothing xuu31 xuu34",fontsize=16,color="magenta"];1526 -> 1535[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1526 -> 1536[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1525[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu33 Nothing xuu31 xuu34 Nothing xuu31 xuu33 xuu34 xuu91",fontsize=16,color="burlywood",shape="triangle"];4462[label="xuu91/False",fontsize=10,color="white",style="solid",shape="box"];1525 -> 4462[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4462 -> 1537[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4463[label="xuu91/True",fontsize=10,color="white",style="solid",shape="box"];1525 -> 4463[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4463 -> 1538[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 1235[label="FiniteMap.mkBalBranch6MkBalBranch0 xuu33 Nothing xuu31 FiniteMap.EmptyFM xuu33 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1235 -> 1376[label="",style="solid", color="black", weight=3]; 30.09/12.94 1236[label="FiniteMap.mkBalBranch6MkBalBranch0 xuu33 Nothing xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu33 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="black",shape="box"];1236 -> 1377[label="",style="solid", color="black", weight=3]; 30.09/12.94 1156[label="primMulInt (Pos xuu400000) (Pos xuu30010)",fontsize=16,color="black",shape="box"];1156 -> 1238[label="",style="solid", color="black", weight=3]; 30.09/12.94 1157[label="primMulInt (Pos xuu400000) (Neg xuu30010)",fontsize=16,color="black",shape="box"];1157 -> 1239[label="",style="solid", color="black", weight=3]; 30.09/12.94 1158[label="primMulInt (Neg xuu400000) (Pos xuu30010)",fontsize=16,color="black",shape="box"];1158 -> 1240[label="",style="solid", color="black", weight=3]; 30.09/12.94 1159[label="primMulInt (Neg xuu400000) (Neg xuu30010)",fontsize=16,color="black",shape="box"];1159 -> 1241[label="",style="solid", color="black", weight=3]; 30.09/12.94 2937[label="compare (xuu30000 : xuu30001) (xuu31000 : xuu31001)",fontsize=16,color="black",shape="box"];2937 -> 2996[label="",style="solid", color="black", weight=3]; 30.09/12.94 2938[label="compare (xuu30000 : xuu30001) []",fontsize=16,color="black",shape="box"];2938 -> 2997[label="",style="solid", color="black", weight=3]; 30.09/12.94 2939[label="compare [] (xuu31000 : xuu31001)",fontsize=16,color="black",shape="box"];2939 -> 2998[label="",style="solid", color="black", weight=3]; 30.09/12.94 2940[label="compare [] []",fontsize=16,color="black",shape="box"];2940 -> 2999[label="",style="solid", color="black", weight=3]; 30.09/12.94 2942 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2942[label="xuu151 == GT",fontsize=16,color="magenta"];2942 -> 3000[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2942 -> 3001[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2941[label="not xuu160",fontsize=16,color="burlywood",shape="triangle"];4464[label="xuu160/False",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4464[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4464 -> 3002[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4465[label="xuu160/True",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4465[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4465 -> 3003[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 3007 -> 2354[label="",style="dashed", color="red", weight=0]; 30.09/12.94 3007[label="xuu30000 == xuu31000 && (xuu30001 < xuu31001 || xuu30001 == xuu31001 && xuu30002 <= xuu31002)",fontsize=16,color="magenta"];3007 -> 3015[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3007 -> 3016[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3008[label="xuu30000 < xuu31000",fontsize=16,color="blue",shape="box"];4466[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3008 -> 4466[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4466 -> 3017[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4467[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3008 -> 4467[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4467 -> 3018[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4468[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3008 -> 4468[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4468 -> 3019[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4469[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3008 -> 4469[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4469 -> 3020[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4470[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3008 -> 4470[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4470 -> 3021[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4471[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3008 -> 4471[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4471 -> 3022[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4472[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3008 -> 4472[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4472 -> 3023[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4473[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3008 -> 4473[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4473 -> 3024[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4474[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3008 -> 4474[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4474 -> 3025[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4475[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3008 -> 4475[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4475 -> 3026[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4476[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3008 -> 4476[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4476 -> 3027[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4477[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3008 -> 4477[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4477 -> 3028[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4478[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3008 -> 4478[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4478 -> 3029[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4479[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3008 -> 4479[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4479 -> 3030[label="",style="solid", color="blue", weight=3]; 30.09/12.94 3006[label="xuu166 || xuu167",fontsize=16,color="burlywood",shape="triangle"];4480[label="xuu166/False",fontsize=10,color="white",style="solid",shape="box"];3006 -> 4480[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4480 -> 3031[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4481[label="xuu166/True",fontsize=10,color="white",style="solid",shape="box"];3006 -> 4481[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4481 -> 3032[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 1275[label="primCmpInt xuu30 xuu31",fontsize=16,color="burlywood",shape="triangle"];4482[label="xuu30/Pos xuu300",fontsize=10,color="white",style="solid",shape="box"];1275 -> 4482[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4482 -> 1419[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4483[label="xuu30/Neg xuu300",fontsize=10,color="white",style="solid",shape="box"];1275 -> 4483[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4483 -> 1420[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 2948 -> 2538[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2948[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2948 -> 3033[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2948 -> 3034[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2949 -> 2539[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2949[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2949 -> 3035[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2949 -> 3036[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2950 -> 2540[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2950[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2950 -> 3037[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2950 -> 3038[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2951 -> 2541[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2951[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2951 -> 3039[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2951 -> 3040[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2952 -> 2542[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2952[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2952 -> 3041[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2952 -> 3042[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2953 -> 2543[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2953[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2953 -> 3043[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2953 -> 3044[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2954 -> 2544[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2954[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2954 -> 3045[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2954 -> 3046[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2955 -> 2545[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2955[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2955 -> 3047[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2955 -> 3048[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2956 -> 2546[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2956[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2956 -> 3049[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2956 -> 3050[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2957 -> 2547[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2957[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2957 -> 3051[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2957 -> 3052[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2958 -> 2548[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2958[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2958 -> 3053[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2958 -> 3054[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2959 -> 2549[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2959[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2959 -> 3055[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2959 -> 3056[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2960 -> 2550[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2960[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2960 -> 3057[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2960 -> 3058[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2961 -> 2551[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2961[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2961 -> 3059[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2961 -> 3060[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2962 -> 2538[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2962[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2962 -> 3061[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2962 -> 3062[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2963 -> 2539[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2963[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2963 -> 3063[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2963 -> 3064[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2964 -> 2540[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2964[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2964 -> 3065[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2964 -> 3066[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2965 -> 2541[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2965[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2965 -> 3067[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2965 -> 3068[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2966 -> 2542[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2966[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2966 -> 3069[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2966 -> 3070[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2967 -> 2543[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2967[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2967 -> 3071[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2967 -> 3072[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2968 -> 2544[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2968[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2968 -> 3073[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2968 -> 3074[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2969 -> 2545[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2969[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2969 -> 3075[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2969 -> 3076[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2970 -> 2546[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2970[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2970 -> 3077[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2970 -> 3078[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2971 -> 2547[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2971[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2971 -> 3079[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2971 -> 3080[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2972 -> 2548[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2972[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2972 -> 3081[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2972 -> 3082[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2973 -> 2549[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2973[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2973 -> 3083[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2973 -> 3084[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2974 -> 2550[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2974[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2974 -> 3085[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2974 -> 3086[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2975 -> 2551[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2975[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2975 -> 3087[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2975 -> 3088[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2976[label="compare () ()",fontsize=16,color="black",shape="box"];2976 -> 3089[label="",style="solid", color="black", weight=3]; 30.09/12.94 2977[label="primCmpChar (Char xuu30000) xuu3100",fontsize=16,color="burlywood",shape="box"];4484[label="xuu3100/Char xuu31000",fontsize=10,color="white",style="solid",shape="box"];2977 -> 4484[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4484 -> 3090[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 2978[label="compare (xuu30000 :% xuu30001) (xuu31000 :% xuu31001)",fontsize=16,color="black",shape="box"];2978 -> 3091[label="",style="solid", color="black", weight=3]; 30.09/12.94 2979 -> 2538[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2979[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2979 -> 3092[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2979 -> 3093[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2980 -> 2539[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2980[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2980 -> 3094[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2980 -> 3095[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2981 -> 2540[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2981[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2981 -> 3096[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2981 -> 3097[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2982 -> 2541[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2982[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2982 -> 3098[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2982 -> 3099[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2983 -> 2542[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2983[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2983 -> 3100[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2983 -> 3101[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2984 -> 2543[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2984[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2984 -> 3102[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2984 -> 3103[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2985 -> 2544[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2985[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2985 -> 3104[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2985 -> 3105[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2986 -> 2545[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2986[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2986 -> 3106[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2986 -> 3107[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2987 -> 2546[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2987[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2987 -> 3108[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2987 -> 3109[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2988 -> 2547[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2988[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2988 -> 3110[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2988 -> 3111[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2989 -> 2548[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2989[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2989 -> 3112[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2989 -> 3113[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2990 -> 2549[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2990[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2990 -> 3114[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2990 -> 3115[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2991 -> 2550[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2991[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2991 -> 3116[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2991 -> 3117[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2992 -> 2551[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2992[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2992 -> 3118[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2992 -> 3119[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3009 -> 2354[label="",style="dashed", color="red", weight=0]; 30.09/12.94 3009[label="xuu30000 == xuu31000 && xuu30001 <= xuu31001",fontsize=16,color="magenta"];3009 -> 3120[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3009 -> 3121[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3010[label="xuu30000 < xuu31000",fontsize=16,color="blue",shape="box"];4485[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3010 -> 4485[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4485 -> 3122[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4486[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3010 -> 4486[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4486 -> 3123[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4487[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3010 -> 4487[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4487 -> 3124[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4488[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3010 -> 4488[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4488 -> 3125[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4489[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3010 -> 4489[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4489 -> 3126[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4490[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3010 -> 4490[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4490 -> 3127[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4491[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3010 -> 4491[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4491 -> 3128[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4492[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3010 -> 4492[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4492 -> 3129[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4493[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3010 -> 4493[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4493 -> 3130[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4494[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3010 -> 4494[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4494 -> 3131[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4495[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3010 -> 4495[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4495 -> 3132[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4496[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3010 -> 4496[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4496 -> 3133[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4497[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3010 -> 4497[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4497 -> 3134[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4498[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3010 -> 4498[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4498 -> 3135[label="",style="solid", color="blue", weight=3]; 30.09/12.94 2993[label="primCmpDouble (Double xuu30000 xuu30001) xuu3100",fontsize=16,color="burlywood",shape="box"];4499[label="xuu30001/Pos xuu300010",fontsize=10,color="white",style="solid",shape="box"];2993 -> 4499[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4499 -> 3136[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4500[label="xuu30001/Neg xuu300010",fontsize=10,color="white",style="solid",shape="box"];2993 -> 4500[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4500 -> 3137[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 2994[label="primCmpFloat (Float xuu30000 xuu30001) xuu3100",fontsize=16,color="burlywood",shape="box"];4501[label="xuu30001/Pos xuu300010",fontsize=10,color="white",style="solid",shape="box"];2994 -> 4501[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4501 -> 3138[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4502[label="xuu30001/Neg xuu300010",fontsize=10,color="white",style="solid",shape="box"];2994 -> 4502[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4502 -> 3139[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 2995[label="compare (Integer xuu30000) (Integer xuu31000)",fontsize=16,color="black",shape="box"];2995 -> 3140[label="",style="solid", color="black", weight=3]; 30.09/12.94 1356 -> 1275[label="",style="dashed", color="red", weight=0]; 30.09/12.94 1356[label="primCmpInt (primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r FiniteMap.EmptyFM (Just xuu300) xuu31 xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1356 -> 1484[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1356 -> 1485[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1357 -> 1275[label="",style="dashed", color="red", weight=0]; 30.09/12.94 1357[label="primCmpInt (primPlusInt xuu252 (FiniteMap.mkBalBranch6Size_r (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) (Just xuu300) xuu31 xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1357 -> 1486[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1357 -> 1487[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1517 -> 1508[label="",style="dashed", color="red", weight=0]; 30.09/12.94 1517[label="FiniteMap.sizeFM xuu25",fontsize=16,color="magenta"];1517 -> 1702[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1697[label="Pos Zero",fontsize=16,color="green",shape="box"];1698[label="xuu342",fontsize=16,color="green",shape="box"];1699[label="xuu87",fontsize=16,color="green",shape="box"];1700[label="xuu88",fontsize=16,color="green",shape="box"];1504 -> 667[label="",style="dashed", color="red", weight=0]; 30.09/12.94 1504[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu25 (Just xuu300) xuu31 xuu34",fontsize=16,color="magenta"];1504 -> 1515[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1504 -> 1516[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1513[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu25 (Just xuu300) xuu31 xuu34 (Just xuu300) xuu31 xuu25 xuu34 False",fontsize=16,color="black",shape="box"];1513 -> 1539[label="",style="solid", color="black", weight=3]; 30.09/12.94 1514[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu25 (Just xuu300) xuu31 xuu34 (Just xuu300) xuu31 xuu25 xuu34 True",fontsize=16,color="black",shape="box"];1514 -> 1540[label="",style="solid", color="black", weight=3]; 30.09/12.94 1365[label="error []",fontsize=16,color="red",shape="box"];1366[label="FiniteMap.mkBalBranch6MkBalBranch02 xuu25 (Just xuu300) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu25 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="black",shape="box"];1366 -> 1518[label="",style="solid", color="black", weight=3]; 30.09/12.94 4038[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu213 xuu214 xuu211 + FiniteMap.mkBranchRight_size xuu213 xuu214 xuu211",fontsize=16,color="black",shape="box"];4038 -> 4039[label="",style="solid", color="black", weight=3]; 30.09/12.94 1368 -> 1275[label="",style="dashed", color="red", weight=0]; 30.09/12.94 1368[label="primCmpInt (primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r FiniteMap.EmptyFM Nothing xuu31 xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1368 -> 1520[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1368 -> 1521[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1369 -> 1275[label="",style="dashed", color="red", weight=0]; 30.09/12.94 1369[label="primCmpInt (primPlusInt xuu332 (FiniteMap.mkBalBranch6Size_r (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) Nothing xuu31 xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1369 -> 1522[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1369 -> 1523[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1701[label="xuu33",fontsize=16,color="green",shape="box"];1535 -> 667[label="",style="dashed", color="red", weight=0]; 30.09/12.94 1535[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu33 Nothing xuu31 xuu34",fontsize=16,color="magenta"];1535 -> 1703[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1535 -> 1704[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1536 -> 1510[label="",style="dashed", color="red", weight=0]; 30.09/12.94 1536[label="FiniteMap.mkBalBranch6Size_l xuu33 Nothing xuu31 xuu34",fontsize=16,color="magenta"];1537[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu33 Nothing xuu31 xuu34 Nothing xuu31 xuu33 xuu34 False",fontsize=16,color="black",shape="box"];1537 -> 1705[label="",style="solid", color="black", weight=3]; 30.09/12.94 1538[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu33 Nothing xuu31 xuu34 Nothing xuu31 xuu33 xuu34 True",fontsize=16,color="black",shape="box"];1538 -> 1706[label="",style="solid", color="black", weight=3]; 30.09/12.94 1376[label="error []",fontsize=16,color="red",shape="box"];1377[label="FiniteMap.mkBalBranch6MkBalBranch02 xuu33 Nothing xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu33 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="black",shape="box"];1377 -> 1541[label="",style="solid", color="black", weight=3]; 30.09/12.94 1238[label="Pos (primMulNat xuu400000 xuu30010)",fontsize=16,color="green",shape="box"];1238 -> 1379[label="",style="dashed", color="green", weight=3]; 30.09/12.94 1239[label="Neg (primMulNat xuu400000 xuu30010)",fontsize=16,color="green",shape="box"];1239 -> 1380[label="",style="dashed", color="green", weight=3]; 30.09/12.94 1240[label="Neg (primMulNat xuu400000 xuu30010)",fontsize=16,color="green",shape="box"];1240 -> 1381[label="",style="dashed", color="green", weight=3]; 30.09/12.94 1241[label="Pos (primMulNat xuu400000 xuu30010)",fontsize=16,color="green",shape="box"];1241 -> 1382[label="",style="dashed", color="green", weight=3]; 30.09/12.94 2996 -> 3141[label="",style="dashed", color="red", weight=0]; 30.09/12.94 2996[label="primCompAux xuu30000 xuu31000 (compare xuu30001 xuu31001)",fontsize=16,color="magenta"];2996 -> 3142[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 2997[label="GT",fontsize=16,color="green",shape="box"];2998[label="LT",fontsize=16,color="green",shape="box"];2999[label="EQ",fontsize=16,color="green",shape="box"];3000[label="xuu151",fontsize=16,color="green",shape="box"];3001[label="GT",fontsize=16,color="green",shape="box"];3002[label="not False",fontsize=16,color="black",shape="box"];3002 -> 3143[label="",style="solid", color="black", weight=3]; 30.09/12.94 3003[label="not True",fontsize=16,color="black",shape="box"];3003 -> 3144[label="",style="solid", color="black", weight=3]; 30.09/12.94 3015[label="xuu30000 == xuu31000",fontsize=16,color="blue",shape="box"];4503[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3015 -> 4503[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4503 -> 3145[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4504[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3015 -> 4504[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4504 -> 3146[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4505[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3015 -> 4505[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4505 -> 3147[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4506[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3015 -> 4506[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4506 -> 3148[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4507[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3015 -> 4507[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4507 -> 3149[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4508[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3015 -> 4508[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4508 -> 3150[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4509[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3015 -> 4509[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4509 -> 3151[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4510[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3015 -> 4510[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4510 -> 3152[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4511[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3015 -> 4511[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4511 -> 3153[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4512[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3015 -> 4512[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4512 -> 3154[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4513[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3015 -> 4513[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4513 -> 3155[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4514[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3015 -> 4514[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4514 -> 3156[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4515[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3015 -> 4515[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4515 -> 3157[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4516[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3015 -> 4516[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4516 -> 3158[label="",style="solid", color="blue", weight=3]; 30.09/12.94 3016 -> 3006[label="",style="dashed", color="red", weight=0]; 30.09/12.94 3016[label="xuu30001 < xuu31001 || xuu30001 == xuu31001 && xuu30002 <= xuu31002",fontsize=16,color="magenta"];3016 -> 3159[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3016 -> 3160[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3017[label="xuu30000 < xuu31000",fontsize=16,color="black",shape="triangle"];3017 -> 3161[label="",style="solid", color="black", weight=3]; 30.09/12.94 3018[label="xuu30000 < xuu31000",fontsize=16,color="black",shape="triangle"];3018 -> 3162[label="",style="solid", color="black", weight=3]; 30.09/12.94 3019 -> 1259[label="",style="dashed", color="red", weight=0]; 30.09/12.94 3019[label="xuu30000 < xuu31000",fontsize=16,color="magenta"];3019 -> 3163[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3019 -> 3164[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3020[label="xuu30000 < xuu31000",fontsize=16,color="black",shape="triangle"];3020 -> 3165[label="",style="solid", color="black", weight=3]; 30.09/12.94 3021[label="xuu30000 < xuu31000",fontsize=16,color="black",shape="triangle"];3021 -> 3166[label="",style="solid", color="black", weight=3]; 30.09/12.94 3022[label="xuu30000 < xuu31000",fontsize=16,color="black",shape="triangle"];3022 -> 3167[label="",style="solid", color="black", weight=3]; 30.09/12.94 3023[label="xuu30000 < xuu31000",fontsize=16,color="black",shape="triangle"];3023 -> 3168[label="",style="solid", color="black", weight=3]; 30.09/12.94 3024[label="xuu30000 < xuu31000",fontsize=16,color="black",shape="triangle"];3024 -> 3169[label="",style="solid", color="black", weight=3]; 30.09/12.94 3025[label="xuu30000 < xuu31000",fontsize=16,color="black",shape="triangle"];3025 -> 3170[label="",style="solid", color="black", weight=3]; 30.09/12.94 3026[label="xuu30000 < xuu31000",fontsize=16,color="black",shape="triangle"];3026 -> 3171[label="",style="solid", color="black", weight=3]; 30.09/12.94 3027[label="xuu30000 < xuu31000",fontsize=16,color="black",shape="triangle"];3027 -> 3172[label="",style="solid", color="black", weight=3]; 30.09/12.94 3028[label="xuu30000 < xuu31000",fontsize=16,color="black",shape="triangle"];3028 -> 3173[label="",style="solid", color="black", weight=3]; 30.09/12.94 3029[label="xuu30000 < xuu31000",fontsize=16,color="black",shape="triangle"];3029 -> 3174[label="",style="solid", color="black", weight=3]; 30.09/12.94 3030[label="xuu30000 < xuu31000",fontsize=16,color="black",shape="triangle"];3030 -> 3175[label="",style="solid", color="black", weight=3]; 30.09/12.94 3031[label="False || xuu167",fontsize=16,color="black",shape="box"];3031 -> 3176[label="",style="solid", color="black", weight=3]; 30.09/12.94 3032[label="True || xuu167",fontsize=16,color="black",shape="box"];3032 -> 3177[label="",style="solid", color="black", weight=3]; 30.09/12.94 1419[label="primCmpInt (Pos xuu300) xuu31",fontsize=16,color="burlywood",shape="box"];4517[label="xuu300/Succ xuu3000",fontsize=10,color="white",style="solid",shape="box"];1419 -> 4517[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4517 -> 1625[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4518[label="xuu300/Zero",fontsize=10,color="white",style="solid",shape="box"];1419 -> 4518[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4518 -> 1626[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 1420[label="primCmpInt (Neg xuu300) xuu31",fontsize=16,color="burlywood",shape="box"];4519[label="xuu300/Succ xuu3000",fontsize=10,color="white",style="solid",shape="box"];1420 -> 4519[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4519 -> 1627[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4520[label="xuu300/Zero",fontsize=10,color="white",style="solid",shape="box"];1420 -> 4520[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4520 -> 1628[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 3033[label="xuu30000",fontsize=16,color="green",shape="box"];3034[label="xuu31000",fontsize=16,color="green",shape="box"];3035[label="xuu30000",fontsize=16,color="green",shape="box"];3036[label="xuu31000",fontsize=16,color="green",shape="box"];3037[label="xuu30000",fontsize=16,color="green",shape="box"];3038[label="xuu31000",fontsize=16,color="green",shape="box"];3039[label="xuu30000",fontsize=16,color="green",shape="box"];3040[label="xuu31000",fontsize=16,color="green",shape="box"];3041[label="xuu30000",fontsize=16,color="green",shape="box"];3042[label="xuu31000",fontsize=16,color="green",shape="box"];3043[label="xuu30000",fontsize=16,color="green",shape="box"];3044[label="xuu31000",fontsize=16,color="green",shape="box"];3045[label="xuu30000",fontsize=16,color="green",shape="box"];3046[label="xuu31000",fontsize=16,color="green",shape="box"];3047[label="xuu30000",fontsize=16,color="green",shape="box"];3048[label="xuu31000",fontsize=16,color="green",shape="box"];3049[label="xuu30000",fontsize=16,color="green",shape="box"];3050[label="xuu31000",fontsize=16,color="green",shape="box"];3051[label="xuu30000",fontsize=16,color="green",shape="box"];3052[label="xuu31000",fontsize=16,color="green",shape="box"];3053[label="xuu30000",fontsize=16,color="green",shape="box"];3054[label="xuu31000",fontsize=16,color="green",shape="box"];3055[label="xuu30000",fontsize=16,color="green",shape="box"];3056[label="xuu31000",fontsize=16,color="green",shape="box"];3057[label="xuu30000",fontsize=16,color="green",shape="box"];3058[label="xuu31000",fontsize=16,color="green",shape="box"];3059[label="xuu30000",fontsize=16,color="green",shape="box"];3060[label="xuu31000",fontsize=16,color="green",shape="box"];3061[label="xuu30000",fontsize=16,color="green",shape="box"];3062[label="xuu31000",fontsize=16,color="green",shape="box"];3063[label="xuu30000",fontsize=16,color="green",shape="box"];3064[label="xuu31000",fontsize=16,color="green",shape="box"];3065[label="xuu30000",fontsize=16,color="green",shape="box"];3066[label="xuu31000",fontsize=16,color="green",shape="box"];3067[label="xuu30000",fontsize=16,color="green",shape="box"];3068[label="xuu31000",fontsize=16,color="green",shape="box"];3069[label="xuu30000",fontsize=16,color="green",shape="box"];3070[label="xuu31000",fontsize=16,color="green",shape="box"];3071[label="xuu30000",fontsize=16,color="green",shape="box"];3072[label="xuu31000",fontsize=16,color="green",shape="box"];3073[label="xuu30000",fontsize=16,color="green",shape="box"];3074[label="xuu31000",fontsize=16,color="green",shape="box"];3075[label="xuu30000",fontsize=16,color="green",shape="box"];3076[label="xuu31000",fontsize=16,color="green",shape="box"];3077[label="xuu30000",fontsize=16,color="green",shape="box"];3078[label="xuu31000",fontsize=16,color="green",shape="box"];3079[label="xuu30000",fontsize=16,color="green",shape="box"];3080[label="xuu31000",fontsize=16,color="green",shape="box"];3081[label="xuu30000",fontsize=16,color="green",shape="box"];3082[label="xuu31000",fontsize=16,color="green",shape="box"];3083[label="xuu30000",fontsize=16,color="green",shape="box"];3084[label="xuu31000",fontsize=16,color="green",shape="box"];3085[label="xuu30000",fontsize=16,color="green",shape="box"];3086[label="xuu31000",fontsize=16,color="green",shape="box"];3087[label="xuu30000",fontsize=16,color="green",shape="box"];3088[label="xuu31000",fontsize=16,color="green",shape="box"];3089[label="EQ",fontsize=16,color="green",shape="box"];3090[label="primCmpChar (Char xuu30000) (Char xuu31000)",fontsize=16,color="black",shape="box"];3090 -> 3178[label="",style="solid", color="black", weight=3]; 30.09/12.94 3091[label="compare (xuu30000 * xuu31001) (xuu31000 * xuu30001)",fontsize=16,color="blue",shape="box"];4521[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3091 -> 4521[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4521 -> 3179[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4522[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3091 -> 4522[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4522 -> 3180[label="",style="solid", color="blue", weight=3]; 30.09/12.94 3092[label="xuu30000",fontsize=16,color="green",shape="box"];3093[label="xuu31000",fontsize=16,color="green",shape="box"];3094[label="xuu30000",fontsize=16,color="green",shape="box"];3095[label="xuu31000",fontsize=16,color="green",shape="box"];3096[label="xuu30000",fontsize=16,color="green",shape="box"];3097[label="xuu31000",fontsize=16,color="green",shape="box"];3098[label="xuu30000",fontsize=16,color="green",shape="box"];3099[label="xuu31000",fontsize=16,color="green",shape="box"];3100[label="xuu30000",fontsize=16,color="green",shape="box"];3101[label="xuu31000",fontsize=16,color="green",shape="box"];3102[label="xuu30000",fontsize=16,color="green",shape="box"];3103[label="xuu31000",fontsize=16,color="green",shape="box"];3104[label="xuu30000",fontsize=16,color="green",shape="box"];3105[label="xuu31000",fontsize=16,color="green",shape="box"];3106[label="xuu30000",fontsize=16,color="green",shape="box"];3107[label="xuu31000",fontsize=16,color="green",shape="box"];3108[label="xuu30000",fontsize=16,color="green",shape="box"];3109[label="xuu31000",fontsize=16,color="green",shape="box"];3110[label="xuu30000",fontsize=16,color="green",shape="box"];3111[label="xuu31000",fontsize=16,color="green",shape="box"];3112[label="xuu30000",fontsize=16,color="green",shape="box"];3113[label="xuu31000",fontsize=16,color="green",shape="box"];3114[label="xuu30000",fontsize=16,color="green",shape="box"];3115[label="xuu31000",fontsize=16,color="green",shape="box"];3116[label="xuu30000",fontsize=16,color="green",shape="box"];3117[label="xuu31000",fontsize=16,color="green",shape="box"];3118[label="xuu30000",fontsize=16,color="green",shape="box"];3119[label="xuu31000",fontsize=16,color="green",shape="box"];3120[label="xuu30000 == xuu31000",fontsize=16,color="blue",shape="box"];4523[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3120 -> 4523[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4523 -> 3181[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4524[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3120 -> 4524[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4524 -> 3182[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4525[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3120 -> 4525[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4525 -> 3183[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4526[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3120 -> 4526[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4526 -> 3184[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4527[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3120 -> 4527[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4527 -> 3185[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4528[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3120 -> 4528[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4528 -> 3186[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4529[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3120 -> 4529[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4529 -> 3187[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4530[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3120 -> 4530[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4530 -> 3188[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4531[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3120 -> 4531[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4531 -> 3189[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4532[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3120 -> 4532[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4532 -> 3190[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4533[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3120 -> 4533[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4533 -> 3191[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4534[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3120 -> 4534[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4534 -> 3192[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4535[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3120 -> 4535[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4535 -> 3193[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4536[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3120 -> 4536[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4536 -> 3194[label="",style="solid", color="blue", weight=3]; 30.09/12.94 3121[label="xuu30001 <= xuu31001",fontsize=16,color="blue",shape="box"];4537[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3121 -> 4537[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4537 -> 3195[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4538[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3121 -> 4538[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4538 -> 3196[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4539[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3121 -> 4539[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4539 -> 3197[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4540[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3121 -> 4540[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4540 -> 3198[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4541[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3121 -> 4541[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4541 -> 3199[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4542[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3121 -> 4542[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4542 -> 3200[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4543[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3121 -> 4543[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4543 -> 3201[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4544[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3121 -> 4544[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4544 -> 3202[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4545[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3121 -> 4545[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4545 -> 3203[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4546[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3121 -> 4546[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4546 -> 3204[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4547[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3121 -> 4547[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4547 -> 3205[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4548[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3121 -> 4548[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4548 -> 3206[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4549[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3121 -> 4549[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4549 -> 3207[label="",style="solid", color="blue", weight=3]; 30.09/12.94 4550[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3121 -> 4550[label="",style="solid", color="blue", weight=9]; 30.09/12.94 4550 -> 3208[label="",style="solid", color="blue", weight=3]; 30.09/12.94 3122 -> 3017[label="",style="dashed", color="red", weight=0]; 30.09/12.94 3122[label="xuu30000 < xuu31000",fontsize=16,color="magenta"];3122 -> 3209[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3122 -> 3210[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3123 -> 3018[label="",style="dashed", color="red", weight=0]; 30.09/12.94 3123[label="xuu30000 < xuu31000",fontsize=16,color="magenta"];3123 -> 3211[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3123 -> 3212[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3124 -> 1259[label="",style="dashed", color="red", weight=0]; 30.09/12.94 3124[label="xuu30000 < xuu31000",fontsize=16,color="magenta"];3124 -> 3213[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3124 -> 3214[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3125 -> 3020[label="",style="dashed", color="red", weight=0]; 30.09/12.94 3125[label="xuu30000 < xuu31000",fontsize=16,color="magenta"];3125 -> 3215[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3125 -> 3216[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3126 -> 3021[label="",style="dashed", color="red", weight=0]; 30.09/12.94 3126[label="xuu30000 < xuu31000",fontsize=16,color="magenta"];3126 -> 3217[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3126 -> 3218[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3127 -> 3022[label="",style="dashed", color="red", weight=0]; 30.09/12.94 3127[label="xuu30000 < xuu31000",fontsize=16,color="magenta"];3127 -> 3219[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3127 -> 3220[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3128 -> 3023[label="",style="dashed", color="red", weight=0]; 30.09/12.94 3128[label="xuu30000 < xuu31000",fontsize=16,color="magenta"];3128 -> 3221[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3128 -> 3222[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3129 -> 3024[label="",style="dashed", color="red", weight=0]; 30.09/12.94 3129[label="xuu30000 < xuu31000",fontsize=16,color="magenta"];3129 -> 3223[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3129 -> 3224[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3130 -> 3025[label="",style="dashed", color="red", weight=0]; 30.09/12.94 3130[label="xuu30000 < xuu31000",fontsize=16,color="magenta"];3130 -> 3225[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3130 -> 3226[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3131 -> 3026[label="",style="dashed", color="red", weight=0]; 30.09/12.94 3131[label="xuu30000 < xuu31000",fontsize=16,color="magenta"];3131 -> 3227[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3131 -> 3228[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3132 -> 3027[label="",style="dashed", color="red", weight=0]; 30.09/12.94 3132[label="xuu30000 < xuu31000",fontsize=16,color="magenta"];3132 -> 3229[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3132 -> 3230[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3133 -> 3028[label="",style="dashed", color="red", weight=0]; 30.09/12.94 3133[label="xuu30000 < xuu31000",fontsize=16,color="magenta"];3133 -> 3231[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3133 -> 3232[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3134 -> 3029[label="",style="dashed", color="red", weight=0]; 30.09/12.94 3134[label="xuu30000 < xuu31000",fontsize=16,color="magenta"];3134 -> 3233[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3134 -> 3234[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3135 -> 3030[label="",style="dashed", color="red", weight=0]; 30.09/12.94 3135[label="xuu30000 < xuu31000",fontsize=16,color="magenta"];3135 -> 3235[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3135 -> 3236[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3136[label="primCmpDouble (Double xuu30000 (Pos xuu300010)) xuu3100",fontsize=16,color="burlywood",shape="box"];4551[label="xuu3100/Double xuu31000 xuu31001",fontsize=10,color="white",style="solid",shape="box"];3136 -> 4551[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4551 -> 3237[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 3137[label="primCmpDouble (Double xuu30000 (Neg xuu300010)) xuu3100",fontsize=16,color="burlywood",shape="box"];4552[label="xuu3100/Double xuu31000 xuu31001",fontsize=10,color="white",style="solid",shape="box"];3137 -> 4552[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4552 -> 3238[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 3138[label="primCmpFloat (Float xuu30000 (Pos xuu300010)) xuu3100",fontsize=16,color="burlywood",shape="box"];4553[label="xuu3100/Float xuu31000 xuu31001",fontsize=10,color="white",style="solid",shape="box"];3138 -> 4553[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4553 -> 3239[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 3139[label="primCmpFloat (Float xuu30000 (Neg xuu300010)) xuu3100",fontsize=16,color="burlywood",shape="box"];4554[label="xuu3100/Float xuu31000 xuu31001",fontsize=10,color="white",style="solid",shape="box"];3139 -> 4554[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4554 -> 3240[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 3140 -> 1275[label="",style="dashed", color="red", weight=0]; 30.09/12.94 3140[label="primCmpInt xuu30000 xuu31000",fontsize=16,color="magenta"];3140 -> 3241[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3140 -> 3242[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1484[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1485 -> 1707[label="",style="dashed", color="red", weight=0]; 30.09/12.94 1485[label="primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r FiniteMap.EmptyFM (Just xuu300) xuu31 xuu34)",fontsize=16,color="magenta"];1485 -> 1712[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1485 -> 1713[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1486[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1487 -> 1707[label="",style="dashed", color="red", weight=0]; 30.09/12.94 1487[label="primPlusInt xuu252 (FiniteMap.mkBalBranch6Size_r (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) (Just xuu300) xuu31 xuu34)",fontsize=16,color="magenta"];1487 -> 1714[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1702[label="xuu25",fontsize=16,color="green",shape="box"];1515 -> 1497[label="",style="dashed", color="red", weight=0]; 30.09/12.94 1515[label="FiniteMap.mkBalBranch6Size_r xuu25 (Just xuu300) xuu31 xuu34",fontsize=16,color="magenta"];1516 -> 1507[label="",style="dashed", color="red", weight=0]; 30.09/12.94 1516[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1539[label="FiniteMap.mkBalBranch6MkBalBranch2 xuu25 (Just xuu300) xuu31 xuu34 (Just xuu300) xuu31 xuu25 xuu34 otherwise",fontsize=16,color="black",shape="box"];1539 -> 1725[label="",style="solid", color="black", weight=3]; 30.09/12.94 1540[label="FiniteMap.mkBalBranch6MkBalBranch1 xuu25 (Just xuu300) xuu31 xuu34 xuu25 xuu34 xuu25",fontsize=16,color="burlywood",shape="box"];4555[label="xuu25/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1540 -> 4555[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4555 -> 1726[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4556[label="xuu25/FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254",fontsize=10,color="white",style="solid",shape="box"];1540 -> 4556[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4556 -> 1727[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 1518 -> 1728[label="",style="dashed", color="red", weight=0]; 30.09/12.94 1518[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu25 (Just xuu300) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu25 (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"];1518 -> 1729[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 4039 -> 1707[label="",style="dashed", color="red", weight=0]; 30.09/12.94 4039[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu213 xuu214 xuu211) (FiniteMap.mkBranchRight_size xuu213 xuu214 xuu211)",fontsize=16,color="magenta"];4039 -> 4040[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 4039 -> 4041[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1520[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1521 -> 1707[label="",style="dashed", color="red", weight=0]; 30.09/12.94 1521[label="primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r FiniteMap.EmptyFM Nothing xuu31 xuu34)",fontsize=16,color="magenta"];1521 -> 1717[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1521 -> 1718[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1522[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1523 -> 1707[label="",style="dashed", color="red", weight=0]; 30.09/12.94 1523[label="primPlusInt xuu332 (FiniteMap.mkBalBranch6Size_r (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) Nothing xuu31 xuu34)",fontsize=16,color="magenta"];1523 -> 1719[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1523 -> 1720[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1703 -> 1499[label="",style="dashed", color="red", weight=0]; 30.09/12.94 1703[label="FiniteMap.mkBalBranch6Size_r xuu33 Nothing xuu31 xuu34",fontsize=16,color="magenta"];1704 -> 1507[label="",style="dashed", color="red", weight=0]; 30.09/12.94 1704[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1705[label="FiniteMap.mkBalBranch6MkBalBranch2 xuu33 Nothing xuu31 xuu34 Nothing xuu31 xuu33 xuu34 otherwise",fontsize=16,color="black",shape="box"];1705 -> 1734[label="",style="solid", color="black", weight=3]; 30.09/12.94 1706[label="FiniteMap.mkBalBranch6MkBalBranch1 xuu33 Nothing xuu31 xuu34 xuu33 xuu34 xuu33",fontsize=16,color="burlywood",shape="box"];4557[label="xuu33/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1706 -> 4557[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4557 -> 1735[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4558[label="xuu33/FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334",fontsize=10,color="white",style="solid",shape="box"];1706 -> 4558[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4558 -> 1736[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 1541 -> 1737[label="",style="dashed", color="red", weight=0]; 30.09/12.94 1541[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu33 Nothing xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu33 (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"];1541 -> 1738[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1379[label="primMulNat xuu400000 xuu30010",fontsize=16,color="burlywood",shape="triangle"];4559[label="xuu400000/Succ xuu4000000",fontsize=10,color="white",style="solid",shape="box"];1379 -> 4559[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4559 -> 1543[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 4560[label="xuu400000/Zero",fontsize=10,color="white",style="solid",shape="box"];1379 -> 4560[label="",style="solid", color="burlywood", weight=9]; 30.09/12.94 4560 -> 1544[label="",style="solid", color="burlywood", weight=3]; 30.09/12.94 1380 -> 1379[label="",style="dashed", color="red", weight=0]; 30.09/12.94 1380[label="primMulNat xuu400000 xuu30010",fontsize=16,color="magenta"];1380 -> 1545[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1381 -> 1379[label="",style="dashed", color="red", weight=0]; 30.09/12.94 1381[label="primMulNat xuu400000 xuu30010",fontsize=16,color="magenta"];1381 -> 1546[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1382 -> 1379[label="",style="dashed", color="red", weight=0]; 30.09/12.94 1382[label="primMulNat xuu400000 xuu30010",fontsize=16,color="magenta"];1382 -> 1547[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 1382 -> 1548[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3142 -> 2856[label="",style="dashed", color="red", weight=0]; 30.09/12.94 3142[label="compare xuu30001 xuu31001",fontsize=16,color="magenta"];3142 -> 3243[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3142 -> 3244[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3141[label="primCompAux xuu30000 xuu31000 xuu168",fontsize=16,color="black",shape="triangle"];3141 -> 3245[label="",style="solid", color="black", weight=3]; 30.09/12.94 3143[label="True",fontsize=16,color="green",shape="box"];3144[label="False",fontsize=16,color="green",shape="box"];3145 -> 2043[label="",style="dashed", color="red", weight=0]; 30.09/12.94 3145[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3145 -> 3274[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3145 -> 3275[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3146 -> 2032[label="",style="dashed", color="red", weight=0]; 30.09/12.94 3146[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3146 -> 3276[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3146 -> 3277[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3147 -> 2034[label="",style="dashed", color="red", weight=0]; 30.09/12.94 3147[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3147 -> 3278[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3147 -> 3279[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3148 -> 2035[label="",style="dashed", color="red", weight=0]; 30.09/12.94 3148[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3148 -> 3280[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3148 -> 3281[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3149 -> 2041[label="",style="dashed", color="red", weight=0]; 30.09/12.94 3149[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3149 -> 3282[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3149 -> 3283[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3150 -> 2036[label="",style="dashed", color="red", weight=0]; 30.09/12.94 3150[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3150 -> 3284[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3150 -> 3285[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3151 -> 2039[label="",style="dashed", color="red", weight=0]; 30.09/12.94 3151[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3151 -> 3286[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3151 -> 3287[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3152 -> 2033[label="",style="dashed", color="red", weight=0]; 30.09/12.94 3152[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3152 -> 3288[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3152 -> 3289[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3153 -> 2040[label="",style="dashed", color="red", weight=0]; 30.09/12.94 3153[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3153 -> 3290[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3153 -> 3291[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3154 -> 2031[label="",style="dashed", color="red", weight=0]; 30.09/12.94 3154[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3154 -> 3292[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3154 -> 3293[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3155 -> 2044[label="",style="dashed", color="red", weight=0]; 30.09/12.94 3155[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3155 -> 3294[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3155 -> 3295[label="",style="dashed", color="magenta", weight=3]; 30.09/12.94 3156 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.94 3156[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3156 -> 3296[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3156 -> 3297[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3157 -> 2038[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3157[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3157 -> 3298[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3157 -> 3299[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3158 -> 2042[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3158[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3158 -> 3300[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3158 -> 3301[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3159 -> 2354[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3159[label="xuu30001 == xuu31001 && xuu30002 <= xuu31002",fontsize=16,color="magenta"];3159 -> 3302[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3159 -> 3303[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3160[label="xuu30001 < xuu31001",fontsize=16,color="blue",shape="box"];4561[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3160 -> 4561[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4561 -> 3304[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4562[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3160 -> 4562[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4562 -> 3305[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4563[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3160 -> 4563[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4563 -> 3306[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4564[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3160 -> 4564[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4564 -> 3307[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4565[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3160 -> 4565[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4565 -> 3308[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4566[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3160 -> 4566[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4566 -> 3309[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4567[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3160 -> 4567[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4567 -> 3310[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4568[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3160 -> 4568[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4568 -> 3311[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4569[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3160 -> 4569[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4569 -> 3312[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4570[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3160 -> 4570[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4570 -> 3313[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4571[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3160 -> 4571[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4571 -> 3314[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4572[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3160 -> 4572[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4572 -> 3315[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4573[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3160 -> 4573[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4573 -> 3316[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4574[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3160 -> 4574[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4574 -> 3317[label="",style="solid", color="blue", weight=3]; 30.09/12.95 3161 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3161[label="compare xuu30000 xuu31000 == LT",fontsize=16,color="magenta"];3161 -> 3318[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3161 -> 3319[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3162 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3162[label="compare xuu30000 xuu31000 == LT",fontsize=16,color="magenta"];3162 -> 3320[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3162 -> 3321[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3163[label="xuu30000",fontsize=16,color="green",shape="box"];3164[label="xuu31000",fontsize=16,color="green",shape="box"];1259[label="xuu300 < xuu310",fontsize=16,color="black",shape="triangle"];1259 -> 1389[label="",style="solid", color="black", weight=3]; 30.09/12.95 3165 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3165[label="compare xuu30000 xuu31000 == LT",fontsize=16,color="magenta"];3165 -> 3322[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3165 -> 3323[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3166 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3166[label="compare xuu30000 xuu31000 == LT",fontsize=16,color="magenta"];3166 -> 3324[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3166 -> 3325[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3167 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3167[label="compare xuu30000 xuu31000 == LT",fontsize=16,color="magenta"];3167 -> 3326[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3167 -> 3327[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3168 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3168[label="compare xuu30000 xuu31000 == LT",fontsize=16,color="magenta"];3168 -> 3328[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3168 -> 3329[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3169 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3169[label="compare xuu30000 xuu31000 == LT",fontsize=16,color="magenta"];3169 -> 3330[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3169 -> 3331[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3170 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3170[label="compare xuu30000 xuu31000 == LT",fontsize=16,color="magenta"];3170 -> 3332[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3170 -> 3333[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3171 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3171[label="compare xuu30000 xuu31000 == LT",fontsize=16,color="magenta"];3171 -> 3334[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3171 -> 3335[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3172 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3172[label="compare xuu30000 xuu31000 == LT",fontsize=16,color="magenta"];3172 -> 3336[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3172 -> 3337[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3173 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3173[label="compare xuu30000 xuu31000 == LT",fontsize=16,color="magenta"];3173 -> 3338[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3173 -> 3339[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3174 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3174[label="compare xuu30000 xuu31000 == LT",fontsize=16,color="magenta"];3174 -> 3340[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3174 -> 3341[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3175 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3175[label="compare xuu30000 xuu31000 == LT",fontsize=16,color="magenta"];3175 -> 3342[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3175 -> 3343[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3176[label="xuu167",fontsize=16,color="green",shape="box"];3177[label="True",fontsize=16,color="green",shape="box"];1625[label="primCmpInt (Pos (Succ xuu3000)) xuu31",fontsize=16,color="burlywood",shape="box"];4575[label="xuu31/Pos xuu310",fontsize=10,color="white",style="solid",shape="box"];1625 -> 4575[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4575 -> 1825[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4576[label="xuu31/Neg xuu310",fontsize=10,color="white",style="solid",shape="box"];1625 -> 4576[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4576 -> 1826[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 1626[label="primCmpInt (Pos Zero) xuu31",fontsize=16,color="burlywood",shape="box"];4577[label="xuu31/Pos xuu310",fontsize=10,color="white",style="solid",shape="box"];1626 -> 4577[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4577 -> 1827[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4578[label="xuu31/Neg xuu310",fontsize=10,color="white",style="solid",shape="box"];1626 -> 4578[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4578 -> 1828[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 1627[label="primCmpInt (Neg (Succ xuu3000)) xuu31",fontsize=16,color="burlywood",shape="box"];4579[label="xuu31/Pos xuu310",fontsize=10,color="white",style="solid",shape="box"];1627 -> 4579[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4579 -> 1829[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4580[label="xuu31/Neg xuu310",fontsize=10,color="white",style="solid",shape="box"];1627 -> 4580[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4580 -> 1830[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 1628[label="primCmpInt (Neg Zero) xuu31",fontsize=16,color="burlywood",shape="box"];4581[label="xuu31/Pos xuu310",fontsize=10,color="white",style="solid",shape="box"];1628 -> 4581[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4581 -> 1831[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4582[label="xuu31/Neg xuu310",fontsize=10,color="white",style="solid",shape="box"];1628 -> 4582[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4582 -> 1832[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 3178 -> 2224[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3178[label="primCmpNat xuu30000 xuu31000",fontsize=16,color="magenta"];3178 -> 3344[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3178 -> 3345[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3179 -> 1169[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3179[label="compare (xuu30000 * xuu31001) (xuu31000 * xuu30001)",fontsize=16,color="magenta"];3179 -> 3346[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3179 -> 3347[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3180 -> 2863[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3180[label="compare (xuu30000 * xuu31001) (xuu31000 * xuu30001)",fontsize=16,color="magenta"];3180 -> 3348[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3180 -> 3349[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3181 -> 2043[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3181[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3181 -> 3350[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3181 -> 3351[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3182 -> 2032[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3182[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3182 -> 3352[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3182 -> 3353[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3183 -> 2034[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3183[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3183 -> 3354[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3183 -> 3355[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3184 -> 2035[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3184[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3184 -> 3356[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3184 -> 3357[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3185 -> 2041[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3185[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3185 -> 3358[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3185 -> 3359[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3186 -> 2036[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3186[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3186 -> 3360[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3186 -> 3361[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3187 -> 2039[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3187[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3187 -> 3362[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3187 -> 3363[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3188 -> 2033[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3188[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3188 -> 3364[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3188 -> 3365[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3189 -> 2040[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3189[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3189 -> 3366[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3189 -> 3367[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3190 -> 2031[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3190[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3190 -> 3368[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3190 -> 3369[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3191 -> 2044[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3191[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3191 -> 3370[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3191 -> 3371[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3192 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3192[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3192 -> 3372[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3192 -> 3373[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3193 -> 2038[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3193[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3193 -> 3374[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3193 -> 3375[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3194 -> 2042[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3194[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3194 -> 3376[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3194 -> 3377[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3195 -> 2538[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3195[label="xuu30001 <= xuu31001",fontsize=16,color="magenta"];3195 -> 3378[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3195 -> 3379[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3196 -> 2539[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3196[label="xuu30001 <= xuu31001",fontsize=16,color="magenta"];3196 -> 3380[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3196 -> 3381[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3197 -> 2540[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3197[label="xuu30001 <= xuu31001",fontsize=16,color="magenta"];3197 -> 3382[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3197 -> 3383[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3198 -> 2541[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3198[label="xuu30001 <= xuu31001",fontsize=16,color="magenta"];3198 -> 3384[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3198 -> 3385[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3199 -> 2542[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3199[label="xuu30001 <= xuu31001",fontsize=16,color="magenta"];3199 -> 3386[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3199 -> 3387[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3200 -> 2543[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3200[label="xuu30001 <= xuu31001",fontsize=16,color="magenta"];3200 -> 3388[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3200 -> 3389[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3201 -> 2544[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3201[label="xuu30001 <= xuu31001",fontsize=16,color="magenta"];3201 -> 3390[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3201 -> 3391[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3202 -> 2545[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3202[label="xuu30001 <= xuu31001",fontsize=16,color="magenta"];3202 -> 3392[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3202 -> 3393[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3203 -> 2546[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3203[label="xuu30001 <= xuu31001",fontsize=16,color="magenta"];3203 -> 3394[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3203 -> 3395[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3204 -> 2547[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3204[label="xuu30001 <= xuu31001",fontsize=16,color="magenta"];3204 -> 3396[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3204 -> 3397[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3205 -> 2548[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3205[label="xuu30001 <= xuu31001",fontsize=16,color="magenta"];3205 -> 3398[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3205 -> 3399[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3206 -> 2549[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3206[label="xuu30001 <= xuu31001",fontsize=16,color="magenta"];3206 -> 3400[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3206 -> 3401[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3207 -> 2550[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3207[label="xuu30001 <= xuu31001",fontsize=16,color="magenta"];3207 -> 3402[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3207 -> 3403[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3208 -> 2551[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3208[label="xuu30001 <= xuu31001",fontsize=16,color="magenta"];3208 -> 3404[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3208 -> 3405[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3209[label="xuu30000",fontsize=16,color="green",shape="box"];3210[label="xuu31000",fontsize=16,color="green",shape="box"];3211[label="xuu30000",fontsize=16,color="green",shape="box"];3212[label="xuu31000",fontsize=16,color="green",shape="box"];3213[label="xuu30000",fontsize=16,color="green",shape="box"];3214[label="xuu31000",fontsize=16,color="green",shape="box"];3215[label="xuu30000",fontsize=16,color="green",shape="box"];3216[label="xuu31000",fontsize=16,color="green",shape="box"];3217[label="xuu30000",fontsize=16,color="green",shape="box"];3218[label="xuu31000",fontsize=16,color="green",shape="box"];3219[label="xuu30000",fontsize=16,color="green",shape="box"];3220[label="xuu31000",fontsize=16,color="green",shape="box"];3221[label="xuu30000",fontsize=16,color="green",shape="box"];3222[label="xuu31000",fontsize=16,color="green",shape="box"];3223[label="xuu30000",fontsize=16,color="green",shape="box"];3224[label="xuu31000",fontsize=16,color="green",shape="box"];3225[label="xuu30000",fontsize=16,color="green",shape="box"];3226[label="xuu31000",fontsize=16,color="green",shape="box"];3227[label="xuu30000",fontsize=16,color="green",shape="box"];3228[label="xuu31000",fontsize=16,color="green",shape="box"];3229[label="xuu30000",fontsize=16,color="green",shape="box"];3230[label="xuu31000",fontsize=16,color="green",shape="box"];3231[label="xuu30000",fontsize=16,color="green",shape="box"];3232[label="xuu31000",fontsize=16,color="green",shape="box"];3233[label="xuu30000",fontsize=16,color="green",shape="box"];3234[label="xuu31000",fontsize=16,color="green",shape="box"];3235[label="xuu30000",fontsize=16,color="green",shape="box"];3236[label="xuu31000",fontsize=16,color="green",shape="box"];3237[label="primCmpDouble (Double xuu30000 (Pos xuu300010)) (Double xuu31000 xuu31001)",fontsize=16,color="burlywood",shape="box"];4583[label="xuu31001/Pos xuu310010",fontsize=10,color="white",style="solid",shape="box"];3237 -> 4583[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4583 -> 3406[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4584[label="xuu31001/Neg xuu310010",fontsize=10,color="white",style="solid",shape="box"];3237 -> 4584[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4584 -> 3407[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 3238[label="primCmpDouble (Double xuu30000 (Neg xuu300010)) (Double xuu31000 xuu31001)",fontsize=16,color="burlywood",shape="box"];4585[label="xuu31001/Pos xuu310010",fontsize=10,color="white",style="solid",shape="box"];3238 -> 4585[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4585 -> 3408[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4586[label="xuu31001/Neg xuu310010",fontsize=10,color="white",style="solid",shape="box"];3238 -> 4586[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4586 -> 3409[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 3239[label="primCmpFloat (Float xuu30000 (Pos xuu300010)) (Float xuu31000 xuu31001)",fontsize=16,color="burlywood",shape="box"];4587[label="xuu31001/Pos xuu310010",fontsize=10,color="white",style="solid",shape="box"];3239 -> 4587[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4587 -> 3410[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4588[label="xuu31001/Neg xuu310010",fontsize=10,color="white",style="solid",shape="box"];3239 -> 4588[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4588 -> 3411[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 3240[label="primCmpFloat (Float xuu30000 (Neg xuu300010)) (Float xuu31000 xuu31001)",fontsize=16,color="burlywood",shape="box"];4589[label="xuu31001/Pos xuu310010",fontsize=10,color="white",style="solid",shape="box"];3240 -> 4589[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4589 -> 3412[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4590[label="xuu31001/Neg xuu310010",fontsize=10,color="white",style="solid",shape="box"];3240 -> 4590[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4590 -> 3413[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 3241[label="xuu31000",fontsize=16,color="green",shape="box"];3242[label="xuu30000",fontsize=16,color="green",shape="box"];1712[label="Pos Zero",fontsize=16,color="green",shape="box"];1713 -> 1497[label="",style="dashed", color="red", weight=0]; 30.09/12.95 1713[label="FiniteMap.mkBalBranch6Size_r FiniteMap.EmptyFM (Just xuu300) xuu31 xuu34",fontsize=16,color="magenta"];1713 -> 1842[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1707[label="primPlusInt xuu252 xuu94",fontsize=16,color="burlywood",shape="triangle"];4591[label="xuu252/Pos xuu2520",fontsize=10,color="white",style="solid",shape="box"];1707 -> 4591[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4591 -> 1732[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4592[label="xuu252/Neg xuu2520",fontsize=10,color="white",style="solid",shape="box"];1707 -> 4592[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4592 -> 1733[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 1714 -> 1497[label="",style="dashed", color="red", weight=0]; 30.09/12.95 1714[label="FiniteMap.mkBalBranch6Size_r (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) (Just xuu300) xuu31 xuu34",fontsize=16,color="magenta"];1714 -> 1843[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1725[label="FiniteMap.mkBalBranch6MkBalBranch2 xuu25 (Just xuu300) xuu31 xuu34 (Just xuu300) xuu31 xuu25 xuu34 True",fontsize=16,color="black",shape="box"];1725 -> 1844[label="",style="solid", color="black", weight=3]; 30.09/12.95 1726[label="FiniteMap.mkBalBranch6MkBalBranch1 FiniteMap.EmptyFM (Just xuu300) xuu31 xuu34 FiniteMap.EmptyFM xuu34 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1726 -> 1845[label="",style="solid", color="black", weight=3]; 30.09/12.95 1727[label="FiniteMap.mkBalBranch6MkBalBranch1 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) (Just xuu300) xuu31 xuu34 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) xuu34 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254)",fontsize=16,color="black",shape="box"];1727 -> 1846[label="",style="solid", color="black", weight=3]; 30.09/12.95 1729 -> 1259[label="",style="dashed", color="red", weight=0]; 30.09/12.95 1729[label="FiniteMap.sizeFM xuu343 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu344",fontsize=16,color="magenta"];1729 -> 1847[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1729 -> 1848[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1728[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu25 (Just xuu300) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu25 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 xuu95",fontsize=16,color="burlywood",shape="triangle"];4593[label="xuu95/False",fontsize=10,color="white",style="solid",shape="box"];1728 -> 4593[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4593 -> 1849[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4594[label="xuu95/True",fontsize=10,color="white",style="solid",shape="box"];1728 -> 4594[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4594 -> 1850[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4040[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu213 xuu214 xuu211",fontsize=16,color="black",shape="box"];4040 -> 4042[label="",style="solid", color="black", weight=3]; 30.09/12.95 4041[label="FiniteMap.mkBranchRight_size xuu213 xuu214 xuu211",fontsize=16,color="black",shape="box"];4041 -> 4043[label="",style="solid", color="black", weight=3]; 30.09/12.95 1717[label="Pos Zero",fontsize=16,color="green",shape="box"];1718 -> 1499[label="",style="dashed", color="red", weight=0]; 30.09/12.95 1718[label="FiniteMap.mkBalBranch6Size_r FiniteMap.EmptyFM Nothing xuu31 xuu34",fontsize=16,color="magenta"];1718 -> 1857[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1719[label="xuu332",fontsize=16,color="green",shape="box"];1720 -> 1499[label="",style="dashed", color="red", weight=0]; 30.09/12.95 1720[label="FiniteMap.mkBalBranch6Size_r (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) Nothing xuu31 xuu34",fontsize=16,color="magenta"];1720 -> 1858[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1734[label="FiniteMap.mkBalBranch6MkBalBranch2 xuu33 Nothing xuu31 xuu34 Nothing xuu31 xuu33 xuu34 True",fontsize=16,color="black",shape="box"];1734 -> 1859[label="",style="solid", color="black", weight=3]; 30.09/12.95 1735[label="FiniteMap.mkBalBranch6MkBalBranch1 FiniteMap.EmptyFM Nothing xuu31 xuu34 FiniteMap.EmptyFM xuu34 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1735 -> 1860[label="",style="solid", color="black", weight=3]; 30.09/12.95 1736[label="FiniteMap.mkBalBranch6MkBalBranch1 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) Nothing xuu31 xuu34 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu34 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334)",fontsize=16,color="black",shape="box"];1736 -> 1861[label="",style="solid", color="black", weight=3]; 30.09/12.95 1738 -> 1259[label="",style="dashed", color="red", weight=0]; 30.09/12.95 1738[label="FiniteMap.sizeFM xuu343 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu344",fontsize=16,color="magenta"];1738 -> 1862[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1738 -> 1863[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1737[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu33 Nothing xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu33 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 xuu99",fontsize=16,color="burlywood",shape="triangle"];4595[label="xuu99/False",fontsize=10,color="white",style="solid",shape="box"];1737 -> 4595[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4595 -> 1864[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4596[label="xuu99/True",fontsize=10,color="white",style="solid",shape="box"];1737 -> 4596[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4596 -> 1865[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 1543[label="primMulNat (Succ xuu4000000) xuu30010",fontsize=16,color="burlywood",shape="box"];4597[label="xuu30010/Succ xuu300100",fontsize=10,color="white",style="solid",shape="box"];1543 -> 4597[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4597 -> 1741[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4598[label="xuu30010/Zero",fontsize=10,color="white",style="solid",shape="box"];1543 -> 4598[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4598 -> 1742[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 1544[label="primMulNat Zero xuu30010",fontsize=16,color="burlywood",shape="box"];4599[label="xuu30010/Succ xuu300100",fontsize=10,color="white",style="solid",shape="box"];1544 -> 4599[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4599 -> 1743[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4600[label="xuu30010/Zero",fontsize=10,color="white",style="solid",shape="box"];1544 -> 4600[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4600 -> 1744[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 1545[label="xuu30010",fontsize=16,color="green",shape="box"];1546[label="xuu400000",fontsize=16,color="green",shape="box"];1547[label="xuu30010",fontsize=16,color="green",shape="box"];1548[label="xuu400000",fontsize=16,color="green",shape="box"];3243[label="xuu30001",fontsize=16,color="green",shape="box"];3244[label="xuu31001",fontsize=16,color="green",shape="box"];3245 -> 3414[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3245[label="primCompAux0 xuu168 (compare xuu30000 xuu31000)",fontsize=16,color="magenta"];3245 -> 3415[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3245 -> 3416[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3274[label="xuu30000",fontsize=16,color="green",shape="box"];3275[label="xuu31000",fontsize=16,color="green",shape="box"];3276[label="xuu30000",fontsize=16,color="green",shape="box"];3277[label="xuu31000",fontsize=16,color="green",shape="box"];3278[label="xuu30000",fontsize=16,color="green",shape="box"];3279[label="xuu31000",fontsize=16,color="green",shape="box"];3280[label="xuu30000",fontsize=16,color="green",shape="box"];3281[label="xuu31000",fontsize=16,color="green",shape="box"];3282[label="xuu30000",fontsize=16,color="green",shape="box"];3283[label="xuu31000",fontsize=16,color="green",shape="box"];3284[label="xuu30000",fontsize=16,color="green",shape="box"];3285[label="xuu31000",fontsize=16,color="green",shape="box"];3286[label="xuu30000",fontsize=16,color="green",shape="box"];3287[label="xuu31000",fontsize=16,color="green",shape="box"];3288[label="xuu30000",fontsize=16,color="green",shape="box"];3289[label="xuu31000",fontsize=16,color="green",shape="box"];3290[label="xuu30000",fontsize=16,color="green",shape="box"];3291[label="xuu31000",fontsize=16,color="green",shape="box"];3292[label="xuu30000",fontsize=16,color="green",shape="box"];3293[label="xuu31000",fontsize=16,color="green",shape="box"];3294[label="xuu30000",fontsize=16,color="green",shape="box"];3295[label="xuu31000",fontsize=16,color="green",shape="box"];3296[label="xuu30000",fontsize=16,color="green",shape="box"];3297[label="xuu31000",fontsize=16,color="green",shape="box"];3298[label="xuu30000",fontsize=16,color="green",shape="box"];3299[label="xuu31000",fontsize=16,color="green",shape="box"];3300[label="xuu30000",fontsize=16,color="green",shape="box"];3301[label="xuu31000",fontsize=16,color="green",shape="box"];3302[label="xuu30001 == xuu31001",fontsize=16,color="blue",shape="box"];4601[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3302 -> 4601[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4601 -> 3417[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4602[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3302 -> 4602[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4602 -> 3418[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4603[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3302 -> 4603[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4603 -> 3419[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4604[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3302 -> 4604[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4604 -> 3420[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4605[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3302 -> 4605[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4605 -> 3421[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4606[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3302 -> 4606[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4606 -> 3422[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4607[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3302 -> 4607[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4607 -> 3423[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4608[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3302 -> 4608[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4608 -> 3424[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4609[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3302 -> 4609[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4609 -> 3425[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4610[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3302 -> 4610[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4610 -> 3426[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4611[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3302 -> 4611[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4611 -> 3427[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4612[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3302 -> 4612[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4612 -> 3428[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4613[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3302 -> 4613[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4613 -> 3429[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4614[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3302 -> 4614[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4614 -> 3430[label="",style="solid", color="blue", weight=3]; 30.09/12.95 3303[label="xuu30002 <= xuu31002",fontsize=16,color="blue",shape="box"];4615[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3303 -> 4615[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4615 -> 3431[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4616[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3303 -> 4616[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4616 -> 3432[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4617[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3303 -> 4617[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4617 -> 3433[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4618[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3303 -> 4618[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4618 -> 3434[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4619[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3303 -> 4619[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4619 -> 3435[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4620[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3303 -> 4620[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4620 -> 3436[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4621[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3303 -> 4621[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4621 -> 3437[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4622[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3303 -> 4622[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4622 -> 3438[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4623[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3303 -> 4623[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4623 -> 3439[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4624[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3303 -> 4624[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4624 -> 3440[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4625[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3303 -> 4625[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4625 -> 3441[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4626[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3303 -> 4626[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4626 -> 3442[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4627[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3303 -> 4627[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4627 -> 3443[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4628[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3303 -> 4628[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4628 -> 3444[label="",style="solid", color="blue", weight=3]; 30.09/12.95 3304 -> 3017[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3304[label="xuu30001 < xuu31001",fontsize=16,color="magenta"];3304 -> 3445[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3304 -> 3446[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3305 -> 3018[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3305[label="xuu30001 < xuu31001",fontsize=16,color="magenta"];3305 -> 3447[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3305 -> 3448[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3306 -> 1259[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3306[label="xuu30001 < xuu31001",fontsize=16,color="magenta"];3306 -> 3449[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3306 -> 3450[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3307 -> 3020[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3307[label="xuu30001 < xuu31001",fontsize=16,color="magenta"];3307 -> 3451[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3307 -> 3452[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3308 -> 3021[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3308[label="xuu30001 < xuu31001",fontsize=16,color="magenta"];3308 -> 3453[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3308 -> 3454[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3309 -> 3022[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3309[label="xuu30001 < xuu31001",fontsize=16,color="magenta"];3309 -> 3455[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3309 -> 3456[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3310 -> 3023[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3310[label="xuu30001 < xuu31001",fontsize=16,color="magenta"];3310 -> 3457[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3310 -> 3458[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3311 -> 3024[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3311[label="xuu30001 < xuu31001",fontsize=16,color="magenta"];3311 -> 3459[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3311 -> 3460[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3312 -> 3025[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3312[label="xuu30001 < xuu31001",fontsize=16,color="magenta"];3312 -> 3461[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3312 -> 3462[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3313 -> 3026[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3313[label="xuu30001 < xuu31001",fontsize=16,color="magenta"];3313 -> 3463[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3313 -> 3464[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3314 -> 3027[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3314[label="xuu30001 < xuu31001",fontsize=16,color="magenta"];3314 -> 3465[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3314 -> 3466[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3315 -> 3028[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3315[label="xuu30001 < xuu31001",fontsize=16,color="magenta"];3315 -> 3467[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3315 -> 3468[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3316 -> 3029[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3316[label="xuu30001 < xuu31001",fontsize=16,color="magenta"];3316 -> 3469[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3316 -> 3470[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3317 -> 3030[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3317[label="xuu30001 < xuu31001",fontsize=16,color="magenta"];3317 -> 3471[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3317 -> 3472[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3318 -> 2856[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3318[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3318 -> 3473[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3318 -> 3474[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3319[label="LT",fontsize=16,color="green",shape="box"];3320[label="compare xuu30000 xuu31000",fontsize=16,color="black",shape="triangle"];3320 -> 3475[label="",style="solid", color="black", weight=3]; 30.09/12.95 3321[label="LT",fontsize=16,color="green",shape="box"];1389 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.95 1389[label="compare xuu300 xuu310 == LT",fontsize=16,color="magenta"];1389 -> 1557[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1389 -> 1558[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3322[label="compare xuu30000 xuu31000",fontsize=16,color="black",shape="triangle"];3322 -> 3476[label="",style="solid", color="black", weight=3]; 30.09/12.95 3323[label="LT",fontsize=16,color="green",shape="box"];3324 -> 2858[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3324[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3324 -> 3477[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3324 -> 3478[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3325[label="LT",fontsize=16,color="green",shape="box"];3326 -> 2859[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3326[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3326 -> 3479[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3326 -> 3480[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3327[label="LT",fontsize=16,color="green",shape="box"];3328 -> 2860[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3328[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3328 -> 3481[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3328 -> 3482[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3329[label="LT",fontsize=16,color="green",shape="box"];3330[label="compare xuu30000 xuu31000",fontsize=16,color="black",shape="triangle"];3330 -> 3483[label="",style="solid", color="black", weight=3]; 30.09/12.95 3331[label="LT",fontsize=16,color="green",shape="box"];3332[label="compare xuu30000 xuu31000",fontsize=16,color="black",shape="triangle"];3332 -> 3484[label="",style="solid", color="black", weight=3]; 30.09/12.95 3333[label="LT",fontsize=16,color="green",shape="box"];3334[label="compare xuu30000 xuu31000",fontsize=16,color="black",shape="triangle"];3334 -> 3485[label="",style="solid", color="black", weight=3]; 30.09/12.95 3335[label="LT",fontsize=16,color="green",shape="box"];3336 -> 2861[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3336[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3336 -> 3486[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3336 -> 3487[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3337[label="LT",fontsize=16,color="green",shape="box"];3338[label="compare xuu30000 xuu31000",fontsize=16,color="black",shape="triangle"];3338 -> 3488[label="",style="solid", color="black", weight=3]; 30.09/12.95 3339[label="LT",fontsize=16,color="green",shape="box"];3340 -> 2862[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3340[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3340 -> 3489[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3340 -> 3490[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3341[label="LT",fontsize=16,color="green",shape="box"];3342 -> 2863[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3342[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3342 -> 3491[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3342 -> 3492[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3343[label="LT",fontsize=16,color="green",shape="box"];1825[label="primCmpInt (Pos (Succ xuu3000)) (Pos xuu310)",fontsize=16,color="black",shape="box"];1825 -> 1937[label="",style="solid", color="black", weight=3]; 30.09/12.95 1826[label="primCmpInt (Pos (Succ xuu3000)) (Neg xuu310)",fontsize=16,color="black",shape="box"];1826 -> 1938[label="",style="solid", color="black", weight=3]; 30.09/12.95 1827[label="primCmpInt (Pos Zero) (Pos xuu310)",fontsize=16,color="burlywood",shape="box"];4629[label="xuu310/Succ xuu3100",fontsize=10,color="white",style="solid",shape="box"];1827 -> 4629[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4629 -> 1939[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4630[label="xuu310/Zero",fontsize=10,color="white",style="solid",shape="box"];1827 -> 4630[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4630 -> 1940[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 1828[label="primCmpInt (Pos Zero) (Neg xuu310)",fontsize=16,color="burlywood",shape="box"];4631[label="xuu310/Succ xuu3100",fontsize=10,color="white",style="solid",shape="box"];1828 -> 4631[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4631 -> 1941[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4632[label="xuu310/Zero",fontsize=10,color="white",style="solid",shape="box"];1828 -> 4632[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4632 -> 1942[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 1829[label="primCmpInt (Neg (Succ xuu3000)) (Pos xuu310)",fontsize=16,color="black",shape="box"];1829 -> 1943[label="",style="solid", color="black", weight=3]; 30.09/12.95 1830[label="primCmpInt (Neg (Succ xuu3000)) (Neg xuu310)",fontsize=16,color="black",shape="box"];1830 -> 1944[label="",style="solid", color="black", weight=3]; 30.09/12.95 1831[label="primCmpInt (Neg Zero) (Pos xuu310)",fontsize=16,color="burlywood",shape="box"];4633[label="xuu310/Succ xuu3100",fontsize=10,color="white",style="solid",shape="box"];1831 -> 4633[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4633 -> 1945[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4634[label="xuu310/Zero",fontsize=10,color="white",style="solid",shape="box"];1831 -> 4634[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4634 -> 1946[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 1832[label="primCmpInt (Neg Zero) (Neg xuu310)",fontsize=16,color="burlywood",shape="box"];4635[label="xuu310/Succ xuu3100",fontsize=10,color="white",style="solid",shape="box"];1832 -> 4635[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4635 -> 1947[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4636[label="xuu310/Zero",fontsize=10,color="white",style="solid",shape="box"];1832 -> 4636[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4636 -> 1948[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 3344[label="xuu30000",fontsize=16,color="green",shape="box"];3345[label="xuu31000",fontsize=16,color="green",shape="box"];2224[label="primCmpNat xuu3000 xuu3100",fontsize=16,color="burlywood",shape="triangle"];4637[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];2224 -> 4637[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4637 -> 2557[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4638[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2224 -> 4638[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4638 -> 2558[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 3346 -> 667[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3346[label="xuu31000 * xuu30001",fontsize=16,color="magenta"];3346 -> 3493[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3346 -> 3494[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3347 -> 667[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3347[label="xuu30000 * xuu31001",fontsize=16,color="magenta"];3347 -> 3495[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3347 -> 3496[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3348[label="xuu30000 * xuu31001",fontsize=16,color="burlywood",shape="triangle"];4639[label="xuu30000/Integer xuu300000",fontsize=10,color="white",style="solid",shape="box"];3348 -> 4639[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4639 -> 3497[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 3349 -> 3348[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3349[label="xuu31000 * xuu30001",fontsize=16,color="magenta"];3349 -> 3498[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3349 -> 3499[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3350[label="xuu30000",fontsize=16,color="green",shape="box"];3351[label="xuu31000",fontsize=16,color="green",shape="box"];3352[label="xuu30000",fontsize=16,color="green",shape="box"];3353[label="xuu31000",fontsize=16,color="green",shape="box"];3354[label="xuu30000",fontsize=16,color="green",shape="box"];3355[label="xuu31000",fontsize=16,color="green",shape="box"];3356[label="xuu30000",fontsize=16,color="green",shape="box"];3357[label="xuu31000",fontsize=16,color="green",shape="box"];3358[label="xuu30000",fontsize=16,color="green",shape="box"];3359[label="xuu31000",fontsize=16,color="green",shape="box"];3360[label="xuu30000",fontsize=16,color="green",shape="box"];3361[label="xuu31000",fontsize=16,color="green",shape="box"];3362[label="xuu30000",fontsize=16,color="green",shape="box"];3363[label="xuu31000",fontsize=16,color="green",shape="box"];3364[label="xuu30000",fontsize=16,color="green",shape="box"];3365[label="xuu31000",fontsize=16,color="green",shape="box"];3366[label="xuu30000",fontsize=16,color="green",shape="box"];3367[label="xuu31000",fontsize=16,color="green",shape="box"];3368[label="xuu30000",fontsize=16,color="green",shape="box"];3369[label="xuu31000",fontsize=16,color="green",shape="box"];3370[label="xuu30000",fontsize=16,color="green",shape="box"];3371[label="xuu31000",fontsize=16,color="green",shape="box"];3372[label="xuu30000",fontsize=16,color="green",shape="box"];3373[label="xuu31000",fontsize=16,color="green",shape="box"];3374[label="xuu30000",fontsize=16,color="green",shape="box"];3375[label="xuu31000",fontsize=16,color="green",shape="box"];3376[label="xuu30000",fontsize=16,color="green",shape="box"];3377[label="xuu31000",fontsize=16,color="green",shape="box"];3378[label="xuu30001",fontsize=16,color="green",shape="box"];3379[label="xuu31001",fontsize=16,color="green",shape="box"];3380[label="xuu30001",fontsize=16,color="green",shape="box"];3381[label="xuu31001",fontsize=16,color="green",shape="box"];3382[label="xuu30001",fontsize=16,color="green",shape="box"];3383[label="xuu31001",fontsize=16,color="green",shape="box"];3384[label="xuu30001",fontsize=16,color="green",shape="box"];3385[label="xuu31001",fontsize=16,color="green",shape="box"];3386[label="xuu30001",fontsize=16,color="green",shape="box"];3387[label="xuu31001",fontsize=16,color="green",shape="box"];3388[label="xuu30001",fontsize=16,color="green",shape="box"];3389[label="xuu31001",fontsize=16,color="green",shape="box"];3390[label="xuu30001",fontsize=16,color="green",shape="box"];3391[label="xuu31001",fontsize=16,color="green",shape="box"];3392[label="xuu30001",fontsize=16,color="green",shape="box"];3393[label="xuu31001",fontsize=16,color="green",shape="box"];3394[label="xuu30001",fontsize=16,color="green",shape="box"];3395[label="xuu31001",fontsize=16,color="green",shape="box"];3396[label="xuu30001",fontsize=16,color="green",shape="box"];3397[label="xuu31001",fontsize=16,color="green",shape="box"];3398[label="xuu30001",fontsize=16,color="green",shape="box"];3399[label="xuu31001",fontsize=16,color="green",shape="box"];3400[label="xuu30001",fontsize=16,color="green",shape="box"];3401[label="xuu31001",fontsize=16,color="green",shape="box"];3402[label="xuu30001",fontsize=16,color="green",shape="box"];3403[label="xuu31001",fontsize=16,color="green",shape="box"];3404[label="xuu30001",fontsize=16,color="green",shape="box"];3405[label="xuu31001",fontsize=16,color="green",shape="box"];3406[label="primCmpDouble (Double xuu30000 (Pos xuu300010)) (Double xuu31000 (Pos xuu310010))",fontsize=16,color="black",shape="box"];3406 -> 3500[label="",style="solid", color="black", weight=3]; 30.09/12.95 3407[label="primCmpDouble (Double xuu30000 (Pos xuu300010)) (Double xuu31000 (Neg xuu310010))",fontsize=16,color="black",shape="box"];3407 -> 3501[label="",style="solid", color="black", weight=3]; 30.09/12.95 3408[label="primCmpDouble (Double xuu30000 (Neg xuu300010)) (Double xuu31000 (Pos xuu310010))",fontsize=16,color="black",shape="box"];3408 -> 3502[label="",style="solid", color="black", weight=3]; 30.09/12.95 3409[label="primCmpDouble (Double xuu30000 (Neg xuu300010)) (Double xuu31000 (Neg xuu310010))",fontsize=16,color="black",shape="box"];3409 -> 3503[label="",style="solid", color="black", weight=3]; 30.09/12.95 3410[label="primCmpFloat (Float xuu30000 (Pos xuu300010)) (Float xuu31000 (Pos xuu310010))",fontsize=16,color="black",shape="box"];3410 -> 3504[label="",style="solid", color="black", weight=3]; 30.09/12.95 3411[label="primCmpFloat (Float xuu30000 (Pos xuu300010)) (Float xuu31000 (Neg xuu310010))",fontsize=16,color="black",shape="box"];3411 -> 3505[label="",style="solid", color="black", weight=3]; 30.09/12.95 3412[label="primCmpFloat (Float xuu30000 (Neg xuu300010)) (Float xuu31000 (Pos xuu310010))",fontsize=16,color="black",shape="box"];3412 -> 3506[label="",style="solid", color="black", weight=3]; 30.09/12.95 3413[label="primCmpFloat (Float xuu30000 (Neg xuu300010)) (Float xuu31000 (Neg xuu310010))",fontsize=16,color="black",shape="box"];3413 -> 3507[label="",style="solid", color="black", weight=3]; 30.09/12.95 1842[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];1732[label="primPlusInt (Pos xuu2520) xuu94",fontsize=16,color="burlywood",shape="box"];4640[label="xuu94/Pos xuu940",fontsize=10,color="white",style="solid",shape="box"];1732 -> 4640[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4640 -> 1853[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4641[label="xuu94/Neg xuu940",fontsize=10,color="white",style="solid",shape="box"];1732 -> 4641[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4641 -> 1854[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 1733[label="primPlusInt (Neg xuu2520) xuu94",fontsize=16,color="burlywood",shape="box"];4642[label="xuu94/Pos xuu940",fontsize=10,color="white",style="solid",shape="box"];1733 -> 4642[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4642 -> 1855[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4643[label="xuu94/Neg xuu940",fontsize=10,color="white",style="solid",shape="box"];1733 -> 4643[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4643 -> 1856[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 1843[label="FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254",fontsize=16,color="green",shape="box"];1844 -> 3824[label="",style="dashed", color="red", weight=0]; 30.09/12.95 1844[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) (Just xuu300) xuu31 xuu25 xuu34",fontsize=16,color="magenta"];1844 -> 3835[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1844 -> 3836[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1844 -> 3837[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1844 -> 3838[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1844 -> 3839[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1845[label="error []",fontsize=16,color="red",shape="box"];1846[label="FiniteMap.mkBalBranch6MkBalBranch12 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) (Just xuu300) xuu31 xuu34 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) xuu34 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254)",fontsize=16,color="black",shape="box"];1846 -> 1964[label="",style="solid", color="black", weight=3]; 30.09/12.95 1847 -> 1508[label="",style="dashed", color="red", weight=0]; 30.09/12.95 1847[label="FiniteMap.sizeFM xuu343",fontsize=16,color="magenta"];1847 -> 1965[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1848 -> 667[label="",style="dashed", color="red", weight=0]; 30.09/12.95 1848[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu344",fontsize=16,color="magenta"];1848 -> 1966[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1848 -> 1967[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1849[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu25 (Just xuu300) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu25 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 False",fontsize=16,color="black",shape="box"];1849 -> 1968[label="",style="solid", color="black", weight=3]; 30.09/12.95 1850[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu25 (Just xuu300) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu25 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 True",fontsize=16,color="black",shape="box"];1850 -> 1969[label="",style="solid", color="black", weight=3]; 30.09/12.95 4042 -> 1707[label="",style="dashed", color="red", weight=0]; 30.09/12.95 4042[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size xuu213 xuu214 xuu211)",fontsize=16,color="magenta"];4042 -> 4044[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 4042 -> 4045[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 4043[label="FiniteMap.sizeFM xuu214",fontsize=16,color="burlywood",shape="triangle"];4644[label="xuu214/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4043 -> 4644[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4644 -> 4046[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4645[label="xuu214/FiniteMap.Branch xuu2140 xuu2141 xuu2142 xuu2143 xuu2144",fontsize=10,color="white",style="solid",shape="box"];4043 -> 4645[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4645 -> 4047[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 1857[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];1858[label="FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334",fontsize=16,color="green",shape="box"];1859 -> 3824[label="",style="dashed", color="red", weight=0]; 30.09/12.95 1859[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) Nothing xuu31 xuu33 xuu34",fontsize=16,color="magenta"];1859 -> 3840[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1859 -> 3841[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1859 -> 3842[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1859 -> 3843[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1859 -> 3844[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1860[label="error []",fontsize=16,color="red",shape="box"];1861[label="FiniteMap.mkBalBranch6MkBalBranch12 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) Nothing xuu31 xuu34 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu34 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334)",fontsize=16,color="black",shape="box"];1861 -> 1976[label="",style="solid", color="black", weight=3]; 30.09/12.95 1862 -> 1508[label="",style="dashed", color="red", weight=0]; 30.09/12.95 1862[label="FiniteMap.sizeFM xuu343",fontsize=16,color="magenta"];1862 -> 1977[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1863 -> 667[label="",style="dashed", color="red", weight=0]; 30.09/12.95 1863[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu344",fontsize=16,color="magenta"];1863 -> 1978[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1863 -> 1979[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1864[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu33 Nothing xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu33 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 False",fontsize=16,color="black",shape="box"];1864 -> 1980[label="",style="solid", color="black", weight=3]; 30.09/12.95 1865[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu33 Nothing xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu33 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 True",fontsize=16,color="black",shape="box"];1865 -> 1981[label="",style="solid", color="black", weight=3]; 30.09/12.95 1741[label="primMulNat (Succ xuu4000000) (Succ xuu300100)",fontsize=16,color="black",shape="box"];1741 -> 1868[label="",style="solid", color="black", weight=3]; 30.09/12.95 1742[label="primMulNat (Succ xuu4000000) Zero",fontsize=16,color="black",shape="box"];1742 -> 1869[label="",style="solid", color="black", weight=3]; 30.09/12.95 1743[label="primMulNat Zero (Succ xuu300100)",fontsize=16,color="black",shape="box"];1743 -> 1870[label="",style="solid", color="black", weight=3]; 30.09/12.95 1744[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1744 -> 1871[label="",style="solid", color="black", weight=3]; 30.09/12.95 3415[label="xuu168",fontsize=16,color="green",shape="box"];3416[label="compare xuu30000 xuu31000",fontsize=16,color="blue",shape="box"];4646[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3416 -> 4646[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4646 -> 3508[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4647[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3416 -> 4647[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4647 -> 3509[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4648[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3416 -> 4648[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4648 -> 3510[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4649[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3416 -> 4649[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4649 -> 3511[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4650[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3416 -> 4650[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4650 -> 3512[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4651[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3416 -> 4651[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4651 -> 3513[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4652[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3416 -> 4652[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4652 -> 3514[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4653[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3416 -> 4653[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4653 -> 3515[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4654[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3416 -> 4654[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4654 -> 3516[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4655[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3416 -> 4655[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4655 -> 3517[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4656[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3416 -> 4656[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4656 -> 3518[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4657[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3416 -> 4657[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4657 -> 3519[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4658[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3416 -> 4658[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4658 -> 3520[label="",style="solid", color="blue", weight=3]; 30.09/12.95 4659[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3416 -> 4659[label="",style="solid", color="blue", weight=9]; 30.09/12.95 4659 -> 3521[label="",style="solid", color="blue", weight=3]; 30.09/12.95 3414[label="primCompAux0 xuu182 xuu183",fontsize=16,color="burlywood",shape="triangle"];4660[label="xuu183/LT",fontsize=10,color="white",style="solid",shape="box"];3414 -> 4660[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4660 -> 3522[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4661[label="xuu183/EQ",fontsize=10,color="white",style="solid",shape="box"];3414 -> 4661[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4661 -> 3523[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4662[label="xuu183/GT",fontsize=10,color="white",style="solid",shape="box"];3414 -> 4662[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4662 -> 3524[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 3417 -> 2043[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3417[label="xuu30001 == xuu31001",fontsize=16,color="magenta"];3417 -> 3543[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3417 -> 3544[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3418 -> 2032[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3418[label="xuu30001 == xuu31001",fontsize=16,color="magenta"];3418 -> 3545[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3418 -> 3546[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3419 -> 2034[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3419[label="xuu30001 == xuu31001",fontsize=16,color="magenta"];3419 -> 3547[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3419 -> 3548[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3420 -> 2035[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3420[label="xuu30001 == xuu31001",fontsize=16,color="magenta"];3420 -> 3549[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3420 -> 3550[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3421 -> 2041[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3421[label="xuu30001 == xuu31001",fontsize=16,color="magenta"];3421 -> 3551[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3421 -> 3552[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3422 -> 2036[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3422[label="xuu30001 == xuu31001",fontsize=16,color="magenta"];3422 -> 3553[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3422 -> 3554[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3423 -> 2039[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3423[label="xuu30001 == xuu31001",fontsize=16,color="magenta"];3423 -> 3555[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3423 -> 3556[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3424 -> 2033[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3424[label="xuu30001 == xuu31001",fontsize=16,color="magenta"];3424 -> 3557[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3424 -> 3558[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3425 -> 2040[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3425[label="xuu30001 == xuu31001",fontsize=16,color="magenta"];3425 -> 3559[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3425 -> 3560[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3426 -> 2031[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3426[label="xuu30001 == xuu31001",fontsize=16,color="magenta"];3426 -> 3561[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3426 -> 3562[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3427 -> 2044[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3427[label="xuu30001 == xuu31001",fontsize=16,color="magenta"];3427 -> 3563[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3427 -> 3564[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3428 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3428[label="xuu30001 == xuu31001",fontsize=16,color="magenta"];3428 -> 3565[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3428 -> 3566[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3429 -> 2038[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3429[label="xuu30001 == xuu31001",fontsize=16,color="magenta"];3429 -> 3567[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3429 -> 3568[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3430 -> 2042[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3430[label="xuu30001 == xuu31001",fontsize=16,color="magenta"];3430 -> 3569[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3430 -> 3570[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3431 -> 2538[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3431[label="xuu30002 <= xuu31002",fontsize=16,color="magenta"];3431 -> 3571[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3431 -> 3572[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3432 -> 2539[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3432[label="xuu30002 <= xuu31002",fontsize=16,color="magenta"];3432 -> 3573[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3432 -> 3574[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3433 -> 2540[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3433[label="xuu30002 <= xuu31002",fontsize=16,color="magenta"];3433 -> 3575[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3433 -> 3576[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3434 -> 2541[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3434[label="xuu30002 <= xuu31002",fontsize=16,color="magenta"];3434 -> 3577[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3434 -> 3578[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3435 -> 2542[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3435[label="xuu30002 <= xuu31002",fontsize=16,color="magenta"];3435 -> 3579[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3435 -> 3580[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3436 -> 2543[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3436[label="xuu30002 <= xuu31002",fontsize=16,color="magenta"];3436 -> 3581[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3436 -> 3582[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3437 -> 2544[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3437[label="xuu30002 <= xuu31002",fontsize=16,color="magenta"];3437 -> 3583[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3437 -> 3584[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3438 -> 2545[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3438[label="xuu30002 <= xuu31002",fontsize=16,color="magenta"];3438 -> 3585[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3438 -> 3586[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3439 -> 2546[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3439[label="xuu30002 <= xuu31002",fontsize=16,color="magenta"];3439 -> 3587[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3439 -> 3588[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3440 -> 2547[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3440[label="xuu30002 <= xuu31002",fontsize=16,color="magenta"];3440 -> 3589[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3440 -> 3590[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3441 -> 2548[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3441[label="xuu30002 <= xuu31002",fontsize=16,color="magenta"];3441 -> 3591[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3441 -> 3592[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3442 -> 2549[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3442[label="xuu30002 <= xuu31002",fontsize=16,color="magenta"];3442 -> 3593[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3442 -> 3594[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3443 -> 2550[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3443[label="xuu30002 <= xuu31002",fontsize=16,color="magenta"];3443 -> 3595[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3443 -> 3596[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3444 -> 2551[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3444[label="xuu30002 <= xuu31002",fontsize=16,color="magenta"];3444 -> 3597[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3444 -> 3598[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3445[label="xuu30001",fontsize=16,color="green",shape="box"];3446[label="xuu31001",fontsize=16,color="green",shape="box"];3447[label="xuu30001",fontsize=16,color="green",shape="box"];3448[label="xuu31001",fontsize=16,color="green",shape="box"];3449[label="xuu30001",fontsize=16,color="green",shape="box"];3450[label="xuu31001",fontsize=16,color="green",shape="box"];3451[label="xuu30001",fontsize=16,color="green",shape="box"];3452[label="xuu31001",fontsize=16,color="green",shape="box"];3453[label="xuu30001",fontsize=16,color="green",shape="box"];3454[label="xuu31001",fontsize=16,color="green",shape="box"];3455[label="xuu30001",fontsize=16,color="green",shape="box"];3456[label="xuu31001",fontsize=16,color="green",shape="box"];3457[label="xuu30001",fontsize=16,color="green",shape="box"];3458[label="xuu31001",fontsize=16,color="green",shape="box"];3459[label="xuu30001",fontsize=16,color="green",shape="box"];3460[label="xuu31001",fontsize=16,color="green",shape="box"];3461[label="xuu30001",fontsize=16,color="green",shape="box"];3462[label="xuu31001",fontsize=16,color="green",shape="box"];3463[label="xuu30001",fontsize=16,color="green",shape="box"];3464[label="xuu31001",fontsize=16,color="green",shape="box"];3465[label="xuu30001",fontsize=16,color="green",shape="box"];3466[label="xuu31001",fontsize=16,color="green",shape="box"];3467[label="xuu30001",fontsize=16,color="green",shape="box"];3468[label="xuu31001",fontsize=16,color="green",shape="box"];3469[label="xuu30001",fontsize=16,color="green",shape="box"];3470[label="xuu31001",fontsize=16,color="green",shape="box"];3471[label="xuu30001",fontsize=16,color="green",shape="box"];3472[label="xuu31001",fontsize=16,color="green",shape="box"];3473[label="xuu30000",fontsize=16,color="green",shape="box"];3474[label="xuu31000",fontsize=16,color="green",shape="box"];3475[label="compare3 xuu30000 xuu31000",fontsize=16,color="black",shape="box"];3475 -> 3599[label="",style="solid", color="black", weight=3]; 30.09/12.95 1557 -> 1169[label="",style="dashed", color="red", weight=0]; 30.09/12.95 1557[label="compare xuu300 xuu310",fontsize=16,color="magenta"];1557 -> 1750[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1557 -> 1751[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1558[label="LT",fontsize=16,color="green",shape="box"];3476[label="compare3 xuu30000 xuu31000",fontsize=16,color="black",shape="box"];3476 -> 3600[label="",style="solid", color="black", weight=3]; 30.09/12.95 3477[label="xuu30000",fontsize=16,color="green",shape="box"];3478[label="xuu31000",fontsize=16,color="green",shape="box"];3479[label="xuu30000",fontsize=16,color="green",shape="box"];3480[label="xuu31000",fontsize=16,color="green",shape="box"];3481[label="xuu30000",fontsize=16,color="green",shape="box"];3482[label="xuu31000",fontsize=16,color="green",shape="box"];3483[label="compare3 xuu30000 xuu31000",fontsize=16,color="black",shape="box"];3483 -> 3601[label="",style="solid", color="black", weight=3]; 30.09/12.95 3484[label="compare3 xuu30000 xuu31000",fontsize=16,color="black",shape="box"];3484 -> 3602[label="",style="solid", color="black", weight=3]; 30.09/12.95 3485[label="compare3 xuu30000 xuu31000",fontsize=16,color="black",shape="box"];3485 -> 3603[label="",style="solid", color="black", weight=3]; 30.09/12.95 3486[label="xuu30000",fontsize=16,color="green",shape="box"];3487[label="xuu31000",fontsize=16,color="green",shape="box"];3488[label="compare3 xuu30000 xuu31000",fontsize=16,color="black",shape="box"];3488 -> 3604[label="",style="solid", color="black", weight=3]; 30.09/12.95 3489[label="xuu30000",fontsize=16,color="green",shape="box"];3490[label="xuu31000",fontsize=16,color="green",shape="box"];3491[label="xuu30000",fontsize=16,color="green",shape="box"];3492[label="xuu31000",fontsize=16,color="green",shape="box"];1937[label="primCmpNat (Succ xuu3000) xuu310",fontsize=16,color="burlywood",shape="triangle"];4663[label="xuu310/Succ xuu3100",fontsize=10,color="white",style="solid",shape="box"];1937 -> 4663[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4663 -> 2156[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4664[label="xuu310/Zero",fontsize=10,color="white",style="solid",shape="box"];1937 -> 4664[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4664 -> 2157[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 1938[label="GT",fontsize=16,color="green",shape="box"];1939[label="primCmpInt (Pos Zero) (Pos (Succ xuu3100))",fontsize=16,color="black",shape="box"];1939 -> 2158[label="",style="solid", color="black", weight=3]; 30.09/12.95 1940[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1940 -> 2159[label="",style="solid", color="black", weight=3]; 30.09/12.95 1941[label="primCmpInt (Pos Zero) (Neg (Succ xuu3100))",fontsize=16,color="black",shape="box"];1941 -> 2160[label="",style="solid", color="black", weight=3]; 30.09/12.95 1942[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1942 -> 2161[label="",style="solid", color="black", weight=3]; 30.09/12.95 1943[label="LT",fontsize=16,color="green",shape="box"];1944[label="primCmpNat xuu310 (Succ xuu3000)",fontsize=16,color="burlywood",shape="triangle"];4665[label="xuu310/Succ xuu3100",fontsize=10,color="white",style="solid",shape="box"];1944 -> 4665[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4665 -> 2162[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4666[label="xuu310/Zero",fontsize=10,color="white",style="solid",shape="box"];1944 -> 4666[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4666 -> 2163[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 1945[label="primCmpInt (Neg Zero) (Pos (Succ xuu3100))",fontsize=16,color="black",shape="box"];1945 -> 2164[label="",style="solid", color="black", weight=3]; 30.09/12.95 1946[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1946 -> 2165[label="",style="solid", color="black", weight=3]; 30.09/12.95 1947[label="primCmpInt (Neg Zero) (Neg (Succ xuu3100))",fontsize=16,color="black",shape="box"];1947 -> 2166[label="",style="solid", color="black", weight=3]; 30.09/12.95 1948[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1948 -> 2167[label="",style="solid", color="black", weight=3]; 30.09/12.95 2557[label="primCmpNat (Succ xuu30000) xuu3100",fontsize=16,color="burlywood",shape="box"];4667[label="xuu3100/Succ xuu31000",fontsize=10,color="white",style="solid",shape="box"];2557 -> 4667[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4667 -> 2775[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4668[label="xuu3100/Zero",fontsize=10,color="white",style="solid",shape="box"];2557 -> 4668[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4668 -> 2776[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 2558[label="primCmpNat Zero xuu3100",fontsize=16,color="burlywood",shape="box"];4669[label="xuu3100/Succ xuu31000",fontsize=10,color="white",style="solid",shape="box"];2558 -> 4669[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4669 -> 2777[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4670[label="xuu3100/Zero",fontsize=10,color="white",style="solid",shape="box"];2558 -> 4670[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4670 -> 2778[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 3493[label="xuu30001",fontsize=16,color="green",shape="box"];3494[label="xuu31000",fontsize=16,color="green",shape="box"];3495[label="xuu31001",fontsize=16,color="green",shape="box"];3496[label="xuu30000",fontsize=16,color="green",shape="box"];3497[label="Integer xuu300000 * xuu31001",fontsize=16,color="burlywood",shape="box"];4671[label="xuu31001/Integer xuu310010",fontsize=10,color="white",style="solid",shape="box"];3497 -> 4671[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4671 -> 3605[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 3498[label="xuu31000",fontsize=16,color="green",shape="box"];3499[label="xuu30001",fontsize=16,color="green",shape="box"];3500 -> 1169[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3500[label="compare (xuu30000 * Pos xuu310010) (Pos xuu300010 * xuu31000)",fontsize=16,color="magenta"];3500 -> 3606[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3500 -> 3607[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3501 -> 1169[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3501[label="compare (xuu30000 * Pos xuu310010) (Neg xuu300010 * xuu31000)",fontsize=16,color="magenta"];3501 -> 3608[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3501 -> 3609[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3502 -> 1169[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3502[label="compare (xuu30000 * Neg xuu310010) (Pos xuu300010 * xuu31000)",fontsize=16,color="magenta"];3502 -> 3610[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3502 -> 3611[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3503 -> 1169[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3503[label="compare (xuu30000 * Neg xuu310010) (Neg xuu300010 * xuu31000)",fontsize=16,color="magenta"];3503 -> 3612[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3503 -> 3613[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3504 -> 1169[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3504[label="compare (xuu30000 * Pos xuu310010) (Pos xuu300010 * xuu31000)",fontsize=16,color="magenta"];3504 -> 3614[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3504 -> 3615[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3505 -> 1169[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3505[label="compare (xuu30000 * Pos xuu310010) (Neg xuu300010 * xuu31000)",fontsize=16,color="magenta"];3505 -> 3616[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3505 -> 3617[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3506 -> 1169[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3506[label="compare (xuu30000 * Neg xuu310010) (Pos xuu300010 * xuu31000)",fontsize=16,color="magenta"];3506 -> 3618[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3506 -> 3619[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3507 -> 1169[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3507[label="compare (xuu30000 * Neg xuu310010) (Neg xuu300010 * xuu31000)",fontsize=16,color="magenta"];3507 -> 3620[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3507 -> 3621[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1853[label="primPlusInt (Pos xuu2520) (Pos xuu940)",fontsize=16,color="black",shape="box"];1853 -> 1971[label="",style="solid", color="black", weight=3]; 30.09/12.95 1854[label="primPlusInt (Pos xuu2520) (Neg xuu940)",fontsize=16,color="black",shape="box"];1854 -> 1972[label="",style="solid", color="black", weight=3]; 30.09/12.95 1855[label="primPlusInt (Neg xuu2520) (Pos xuu940)",fontsize=16,color="black",shape="box"];1855 -> 1973[label="",style="solid", color="black", weight=3]; 30.09/12.95 1856[label="primPlusInt (Neg xuu2520) (Neg xuu940)",fontsize=16,color="black",shape="box"];1856 -> 1974[label="",style="solid", color="black", weight=3]; 30.09/12.95 3835[label="xuu31",fontsize=16,color="green",shape="box"];3836[label="Just xuu300",fontsize=16,color="green",shape="box"];3837[label="Succ Zero",fontsize=16,color="green",shape="box"];3838[label="xuu25",fontsize=16,color="green",shape="box"];3839[label="xuu34",fontsize=16,color="green",shape="box"];1964 -> 2049[label="",style="dashed", color="red", weight=0]; 30.09/12.95 1964[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) (Just xuu300) xuu31 xuu34 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) xuu34 xuu250 xuu251 xuu252 xuu253 xuu254 (FiniteMap.sizeFM xuu254 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu253)",fontsize=16,color="magenta"];1964 -> 2050[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1965[label="xuu343",fontsize=16,color="green",shape="box"];1966 -> 1508[label="",style="dashed", color="red", weight=0]; 30.09/12.95 1966[label="FiniteMap.sizeFM xuu344",fontsize=16,color="magenta"];1966 -> 2084[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1967[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1968[label="FiniteMap.mkBalBranch6MkBalBranch00 xuu25 (Just xuu300) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu25 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 otherwise",fontsize=16,color="black",shape="box"];1968 -> 2085[label="",style="solid", color="black", weight=3]; 30.09/12.95 1969[label="FiniteMap.mkBalBranch6Single_L xuu25 (Just xuu300) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu25 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="black",shape="box"];1969 -> 2086[label="",style="solid", color="black", weight=3]; 30.09/12.95 4044[label="Pos (Succ Zero)",fontsize=16,color="green",shape="box"];4045[label="FiniteMap.mkBranchLeft_size xuu213 xuu214 xuu211",fontsize=16,color="black",shape="box"];4045 -> 4048[label="",style="solid", color="black", weight=3]; 30.09/12.95 4046[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];4046 -> 4049[label="",style="solid", color="black", weight=3]; 30.09/12.95 4047[label="FiniteMap.sizeFM (FiniteMap.Branch xuu2140 xuu2141 xuu2142 xuu2143 xuu2144)",fontsize=16,color="black",shape="box"];4047 -> 4050[label="",style="solid", color="black", weight=3]; 30.09/12.95 3840[label="xuu31",fontsize=16,color="green",shape="box"];3841[label="Nothing",fontsize=16,color="green",shape="box"];3842[label="Succ Zero",fontsize=16,color="green",shape="box"];3843[label="xuu33",fontsize=16,color="green",shape="box"];3844[label="xuu34",fontsize=16,color="green",shape="box"];1976 -> 2094[label="",style="dashed", color="red", weight=0]; 30.09/12.95 1976[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) Nothing xuu31 xuu34 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu34 xuu330 xuu331 xuu332 xuu333 xuu334 (FiniteMap.sizeFM xuu334 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu333)",fontsize=16,color="magenta"];1976 -> 2095[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1977[label="xuu343",fontsize=16,color="green",shape="box"];1978 -> 1508[label="",style="dashed", color="red", weight=0]; 30.09/12.95 1978[label="FiniteMap.sizeFM xuu344",fontsize=16,color="magenta"];1978 -> 2152[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1979[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1980[label="FiniteMap.mkBalBranch6MkBalBranch00 xuu33 Nothing xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu33 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 otherwise",fontsize=16,color="black",shape="box"];1980 -> 2153[label="",style="solid", color="black", weight=3]; 30.09/12.95 1981[label="FiniteMap.mkBalBranch6Single_L xuu33 Nothing xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu33 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="black",shape="box"];1981 -> 2154[label="",style="solid", color="black", weight=3]; 30.09/12.95 1868 -> 1983[label="",style="dashed", color="red", weight=0]; 30.09/12.95 1868[label="primPlusNat (primMulNat xuu4000000 (Succ xuu300100)) (Succ xuu300100)",fontsize=16,color="magenta"];1868 -> 1984[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1869[label="Zero",fontsize=16,color="green",shape="box"];1870[label="Zero",fontsize=16,color="green",shape="box"];1871[label="Zero",fontsize=16,color="green",shape="box"];3508 -> 2856[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3508[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3508 -> 3622[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3508 -> 3623[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3509 -> 3320[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3509[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3509 -> 3624[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3509 -> 3625[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3510 -> 1169[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3510[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3510 -> 3626[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3510 -> 3627[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3511 -> 3322[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3511[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3511 -> 3628[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3511 -> 3629[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3512 -> 2858[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3512[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3512 -> 3630[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3512 -> 3631[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3513 -> 2859[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3513[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3513 -> 3632[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3513 -> 3633[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3514 -> 2860[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3514[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3514 -> 3634[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3514 -> 3635[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3515 -> 3330[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3515[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3515 -> 3636[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3515 -> 3637[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3516 -> 3332[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3516[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3516 -> 3638[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3516 -> 3639[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3517 -> 3334[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3517[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3517 -> 3640[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3517 -> 3641[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3518 -> 2861[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3518[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3518 -> 3642[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3518 -> 3643[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3519 -> 3338[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3519[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3519 -> 3644[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3519 -> 3645[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3520 -> 2862[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3520[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3520 -> 3646[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3520 -> 3647[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3521 -> 2863[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3521[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3521 -> 3648[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3521 -> 3649[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3522[label="primCompAux0 xuu182 LT",fontsize=16,color="black",shape="box"];3522 -> 3650[label="",style="solid", color="black", weight=3]; 30.09/12.95 3523[label="primCompAux0 xuu182 EQ",fontsize=16,color="black",shape="box"];3523 -> 3651[label="",style="solid", color="black", weight=3]; 30.09/12.95 3524[label="primCompAux0 xuu182 GT",fontsize=16,color="black",shape="box"];3524 -> 3652[label="",style="solid", color="black", weight=3]; 30.09/12.95 3543[label="xuu30001",fontsize=16,color="green",shape="box"];3544[label="xuu31001",fontsize=16,color="green",shape="box"];3545[label="xuu30001",fontsize=16,color="green",shape="box"];3546[label="xuu31001",fontsize=16,color="green",shape="box"];3547[label="xuu30001",fontsize=16,color="green",shape="box"];3548[label="xuu31001",fontsize=16,color="green",shape="box"];3549[label="xuu30001",fontsize=16,color="green",shape="box"];3550[label="xuu31001",fontsize=16,color="green",shape="box"];3551[label="xuu30001",fontsize=16,color="green",shape="box"];3552[label="xuu31001",fontsize=16,color="green",shape="box"];3553[label="xuu30001",fontsize=16,color="green",shape="box"];3554[label="xuu31001",fontsize=16,color="green",shape="box"];3555[label="xuu30001",fontsize=16,color="green",shape="box"];3556[label="xuu31001",fontsize=16,color="green",shape="box"];3557[label="xuu30001",fontsize=16,color="green",shape="box"];3558[label="xuu31001",fontsize=16,color="green",shape="box"];3559[label="xuu30001",fontsize=16,color="green",shape="box"];3560[label="xuu31001",fontsize=16,color="green",shape="box"];3561[label="xuu30001",fontsize=16,color="green",shape="box"];3562[label="xuu31001",fontsize=16,color="green",shape="box"];3563[label="xuu30001",fontsize=16,color="green",shape="box"];3564[label="xuu31001",fontsize=16,color="green",shape="box"];3565[label="xuu30001",fontsize=16,color="green",shape="box"];3566[label="xuu31001",fontsize=16,color="green",shape="box"];3567[label="xuu30001",fontsize=16,color="green",shape="box"];3568[label="xuu31001",fontsize=16,color="green",shape="box"];3569[label="xuu30001",fontsize=16,color="green",shape="box"];3570[label="xuu31001",fontsize=16,color="green",shape="box"];3571[label="xuu30002",fontsize=16,color="green",shape="box"];3572[label="xuu31002",fontsize=16,color="green",shape="box"];3573[label="xuu30002",fontsize=16,color="green",shape="box"];3574[label="xuu31002",fontsize=16,color="green",shape="box"];3575[label="xuu30002",fontsize=16,color="green",shape="box"];3576[label="xuu31002",fontsize=16,color="green",shape="box"];3577[label="xuu30002",fontsize=16,color="green",shape="box"];3578[label="xuu31002",fontsize=16,color="green",shape="box"];3579[label="xuu30002",fontsize=16,color="green",shape="box"];3580[label="xuu31002",fontsize=16,color="green",shape="box"];3581[label="xuu30002",fontsize=16,color="green",shape="box"];3582[label="xuu31002",fontsize=16,color="green",shape="box"];3583[label="xuu30002",fontsize=16,color="green",shape="box"];3584[label="xuu31002",fontsize=16,color="green",shape="box"];3585[label="xuu30002",fontsize=16,color="green",shape="box"];3586[label="xuu31002",fontsize=16,color="green",shape="box"];3587[label="xuu30002",fontsize=16,color="green",shape="box"];3588[label="xuu31002",fontsize=16,color="green",shape="box"];3589[label="xuu30002",fontsize=16,color="green",shape="box"];3590[label="xuu31002",fontsize=16,color="green",shape="box"];3591[label="xuu30002",fontsize=16,color="green",shape="box"];3592[label="xuu31002",fontsize=16,color="green",shape="box"];3593[label="xuu30002",fontsize=16,color="green",shape="box"];3594[label="xuu31002",fontsize=16,color="green",shape="box"];3595[label="xuu30002",fontsize=16,color="green",shape="box"];3596[label="xuu31002",fontsize=16,color="green",shape="box"];3597[label="xuu30002",fontsize=16,color="green",shape="box"];3598[label="xuu31002",fontsize=16,color="green",shape="box"];3599 -> 3675[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3599[label="compare2 xuu30000 xuu31000 (xuu30000 == xuu31000)",fontsize=16,color="magenta"];3599 -> 3676[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1750[label="xuu310",fontsize=16,color="green",shape="box"];1751[label="xuu300",fontsize=16,color="green",shape="box"];3600 -> 3679[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3600[label="compare2 xuu30000 xuu31000 (xuu30000 == xuu31000)",fontsize=16,color="magenta"];3600 -> 3680[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3601 -> 3684[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3601[label="compare2 xuu30000 xuu31000 (xuu30000 == xuu31000)",fontsize=16,color="magenta"];3601 -> 3685[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3602 -> 1994[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3602[label="compare2 xuu30000 xuu31000 (xuu30000 == xuu31000)",fontsize=16,color="magenta"];3602 -> 3687[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3602 -> 3688[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3602 -> 3689[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3603 -> 3690[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3603[label="compare2 xuu30000 xuu31000 (xuu30000 == xuu31000)",fontsize=16,color="magenta"];3603 -> 3691[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3604 -> 3692[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3604[label="compare2 xuu30000 xuu31000 (xuu30000 == xuu31000)",fontsize=16,color="magenta"];3604 -> 3693[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2156[label="primCmpNat (Succ xuu3000) (Succ xuu3100)",fontsize=16,color="black",shape="box"];2156 -> 2224[label="",style="solid", color="black", weight=3]; 30.09/12.95 2157[label="primCmpNat (Succ xuu3000) Zero",fontsize=16,color="black",shape="box"];2157 -> 2225[label="",style="solid", color="black", weight=3]; 30.09/12.95 2158 -> 1944[label="",style="dashed", color="red", weight=0]; 30.09/12.95 2158[label="primCmpNat Zero (Succ xuu3100)",fontsize=16,color="magenta"];2158 -> 2226[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2158 -> 2227[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2159[label="EQ",fontsize=16,color="green",shape="box"];2160[label="GT",fontsize=16,color="green",shape="box"];2161[label="EQ",fontsize=16,color="green",shape="box"];2162[label="primCmpNat (Succ xuu3100) (Succ xuu3000)",fontsize=16,color="black",shape="box"];2162 -> 2228[label="",style="solid", color="black", weight=3]; 30.09/12.95 2163[label="primCmpNat Zero (Succ xuu3000)",fontsize=16,color="black",shape="box"];2163 -> 2229[label="",style="solid", color="black", weight=3]; 30.09/12.95 2164[label="LT",fontsize=16,color="green",shape="box"];2165[label="EQ",fontsize=16,color="green",shape="box"];2166 -> 1937[label="",style="dashed", color="red", weight=0]; 30.09/12.95 2166[label="primCmpNat (Succ xuu3100) Zero",fontsize=16,color="magenta"];2166 -> 2230[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2166 -> 2231[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2167[label="EQ",fontsize=16,color="green",shape="box"];2775[label="primCmpNat (Succ xuu30000) (Succ xuu31000)",fontsize=16,color="black",shape="box"];2775 -> 3246[label="",style="solid", color="black", weight=3]; 30.09/12.95 2776[label="primCmpNat (Succ xuu30000) Zero",fontsize=16,color="black",shape="box"];2776 -> 3247[label="",style="solid", color="black", weight=3]; 30.09/12.95 2777[label="primCmpNat Zero (Succ xuu31000)",fontsize=16,color="black",shape="box"];2777 -> 3248[label="",style="solid", color="black", weight=3]; 30.09/12.95 2778[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];2778 -> 3249[label="",style="solid", color="black", weight=3]; 30.09/12.95 3605[label="Integer xuu300000 * Integer xuu310010",fontsize=16,color="black",shape="box"];3605 -> 3694[label="",style="solid", color="black", weight=3]; 30.09/12.95 3606 -> 667[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3606[label="Pos xuu300010 * xuu31000",fontsize=16,color="magenta"];3606 -> 3695[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3606 -> 3696[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3607 -> 667[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3607[label="xuu30000 * Pos xuu310010",fontsize=16,color="magenta"];3607 -> 3697[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3607 -> 3698[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3608 -> 667[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3608[label="Neg xuu300010 * xuu31000",fontsize=16,color="magenta"];3608 -> 3699[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3608 -> 3700[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3609 -> 667[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3609[label="xuu30000 * Pos xuu310010",fontsize=16,color="magenta"];3609 -> 3701[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3609 -> 3702[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3610 -> 667[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3610[label="Pos xuu300010 * xuu31000",fontsize=16,color="magenta"];3610 -> 3703[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3610 -> 3704[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3611 -> 667[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3611[label="xuu30000 * Neg xuu310010",fontsize=16,color="magenta"];3611 -> 3705[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3611 -> 3706[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3612 -> 667[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3612[label="Neg xuu300010 * xuu31000",fontsize=16,color="magenta"];3612 -> 3707[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3612 -> 3708[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3613 -> 667[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3613[label="xuu30000 * Neg xuu310010",fontsize=16,color="magenta"];3613 -> 3709[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3613 -> 3710[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3614 -> 667[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3614[label="Pos xuu300010 * xuu31000",fontsize=16,color="magenta"];3614 -> 3711[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3614 -> 3712[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3615 -> 667[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3615[label="xuu30000 * Pos xuu310010",fontsize=16,color="magenta"];3615 -> 3713[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3615 -> 3714[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3616 -> 667[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3616[label="Neg xuu300010 * xuu31000",fontsize=16,color="magenta"];3616 -> 3715[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3616 -> 3716[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3617 -> 667[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3617[label="xuu30000 * Pos xuu310010",fontsize=16,color="magenta"];3617 -> 3717[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3617 -> 3718[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3618 -> 667[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3618[label="Pos xuu300010 * xuu31000",fontsize=16,color="magenta"];3618 -> 3719[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3618 -> 3720[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3619 -> 667[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3619[label="xuu30000 * Neg xuu310010",fontsize=16,color="magenta"];3619 -> 3721[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3619 -> 3722[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3620 -> 667[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3620[label="Neg xuu300010 * xuu31000",fontsize=16,color="magenta"];3620 -> 3723[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3620 -> 3724[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3621 -> 667[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3621[label="xuu30000 * Neg xuu310010",fontsize=16,color="magenta"];3621 -> 3725[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3621 -> 3726[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1971[label="Pos (primPlusNat xuu2520 xuu940)",fontsize=16,color="green",shape="box"];1971 -> 2088[label="",style="dashed", color="green", weight=3]; 30.09/12.95 1972[label="primMinusNat xuu2520 xuu940",fontsize=16,color="burlywood",shape="triangle"];4672[label="xuu2520/Succ xuu25200",fontsize=10,color="white",style="solid",shape="box"];1972 -> 4672[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4672 -> 2089[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4673[label="xuu2520/Zero",fontsize=10,color="white",style="solid",shape="box"];1972 -> 4673[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4673 -> 2090[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 1973 -> 1972[label="",style="dashed", color="red", weight=0]; 30.09/12.95 1973[label="primMinusNat xuu940 xuu2520",fontsize=16,color="magenta"];1973 -> 2091[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1973 -> 2092[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1974[label="Neg (primPlusNat xuu2520 xuu940)",fontsize=16,color="green",shape="box"];1974 -> 2093[label="",style="dashed", color="green", weight=3]; 30.09/12.95 2050 -> 1259[label="",style="dashed", color="red", weight=0]; 30.09/12.95 2050[label="FiniteMap.sizeFM xuu254 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu253",fontsize=16,color="magenta"];2050 -> 2168[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2050 -> 2169[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2049[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) (Just xuu300) xuu31 xuu34 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) xuu34 xuu250 xuu251 xuu252 xuu253 xuu254 xuu114",fontsize=16,color="burlywood",shape="triangle"];4674[label="xuu114/False",fontsize=10,color="white",style="solid",shape="box"];2049 -> 4674[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4674 -> 2170[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4675[label="xuu114/True",fontsize=10,color="white",style="solid",shape="box"];2049 -> 4675[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4675 -> 2171[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 2084[label="xuu344",fontsize=16,color="green",shape="box"];2085[label="FiniteMap.mkBalBranch6MkBalBranch00 xuu25 (Just xuu300) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu25 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 True",fontsize=16,color="black",shape="box"];2085 -> 2172[label="",style="solid", color="black", weight=3]; 30.09/12.95 2086 -> 3824[label="",style="dashed", color="red", weight=0]; 30.09/12.95 2086[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu340 xuu341 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (Just xuu300) xuu31 xuu25 xuu343) xuu344",fontsize=16,color="magenta"];2086 -> 3845[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2086 -> 3846[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2086 -> 3847[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2086 -> 3848[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2086 -> 3849[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 4048 -> 4043[label="",style="dashed", color="red", weight=0]; 30.09/12.95 4048[label="FiniteMap.sizeFM xuu213",fontsize=16,color="magenta"];4048 -> 4051[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 4049[label="Pos Zero",fontsize=16,color="green",shape="box"];4050[label="xuu2142",fontsize=16,color="green",shape="box"];2095 -> 1259[label="",style="dashed", color="red", weight=0]; 30.09/12.95 2095[label="FiniteMap.sizeFM xuu334 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu333",fontsize=16,color="magenta"];2095 -> 2182[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2095 -> 2183[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2094[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) Nothing xuu31 xuu34 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu34 xuu330 xuu331 xuu332 xuu333 xuu334 xuu118",fontsize=16,color="burlywood",shape="triangle"];4676[label="xuu118/False",fontsize=10,color="white",style="solid",shape="box"];2094 -> 4676[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4676 -> 2184[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4677[label="xuu118/True",fontsize=10,color="white",style="solid",shape="box"];2094 -> 4677[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4677 -> 2185[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 2152[label="xuu344",fontsize=16,color="green",shape="box"];2153[label="FiniteMap.mkBalBranch6MkBalBranch00 xuu33 Nothing xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu33 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 True",fontsize=16,color="black",shape="box"];2153 -> 2222[label="",style="solid", color="black", weight=3]; 30.09/12.95 2154 -> 3824[label="",style="dashed", color="red", weight=0]; 30.09/12.95 2154[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu340 xuu341 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) Nothing xuu31 xuu33 xuu343) xuu344",fontsize=16,color="magenta"];2154 -> 3850[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2154 -> 3851[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2154 -> 3852[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2154 -> 3853[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2154 -> 3854[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1984 -> 1379[label="",style="dashed", color="red", weight=0]; 30.09/12.95 1984[label="primMulNat xuu4000000 (Succ xuu300100)",fontsize=16,color="magenta"];1984 -> 2186[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1984 -> 2187[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1983 -> 2088[label="",style="dashed", color="red", weight=0]; 30.09/12.95 1983[label="primPlusNat xuu104 (Succ xuu300100)",fontsize=16,color="magenta"];1983 -> 2188[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 1983 -> 2189[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3622[label="xuu30000",fontsize=16,color="green",shape="box"];3623[label="xuu31000",fontsize=16,color="green",shape="box"];3624[label="xuu30000",fontsize=16,color="green",shape="box"];3625[label="xuu31000",fontsize=16,color="green",shape="box"];3626[label="xuu31000",fontsize=16,color="green",shape="box"];3627[label="xuu30000",fontsize=16,color="green",shape="box"];3628[label="xuu30000",fontsize=16,color="green",shape="box"];3629[label="xuu31000",fontsize=16,color="green",shape="box"];3630[label="xuu30000",fontsize=16,color="green",shape="box"];3631[label="xuu31000",fontsize=16,color="green",shape="box"];3632[label="xuu30000",fontsize=16,color="green",shape="box"];3633[label="xuu31000",fontsize=16,color="green",shape="box"];3634[label="xuu30000",fontsize=16,color="green",shape="box"];3635[label="xuu31000",fontsize=16,color="green",shape="box"];3636[label="xuu30000",fontsize=16,color="green",shape="box"];3637[label="xuu31000",fontsize=16,color="green",shape="box"];3638[label="xuu30000",fontsize=16,color="green",shape="box"];3639[label="xuu31000",fontsize=16,color="green",shape="box"];3640[label="xuu30000",fontsize=16,color="green",shape="box"];3641[label="xuu31000",fontsize=16,color="green",shape="box"];3642[label="xuu30000",fontsize=16,color="green",shape="box"];3643[label="xuu31000",fontsize=16,color="green",shape="box"];3644[label="xuu30000",fontsize=16,color="green",shape="box"];3645[label="xuu31000",fontsize=16,color="green",shape="box"];3646[label="xuu30000",fontsize=16,color="green",shape="box"];3647[label="xuu31000",fontsize=16,color="green",shape="box"];3648[label="xuu30000",fontsize=16,color="green",shape="box"];3649[label="xuu31000",fontsize=16,color="green",shape="box"];3650[label="LT",fontsize=16,color="green",shape="box"];3651[label="xuu182",fontsize=16,color="green",shape="box"];3652[label="GT",fontsize=16,color="green",shape="box"];3676 -> 2032[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3676[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3676 -> 3728[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3676 -> 3729[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3675[label="compare2 xuu30000 xuu31000 xuu195",fontsize=16,color="burlywood",shape="triangle"];4678[label="xuu195/False",fontsize=10,color="white",style="solid",shape="box"];3675 -> 4678[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4678 -> 3730[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4679[label="xuu195/True",fontsize=10,color="white",style="solid",shape="box"];3675 -> 4679[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4679 -> 3731[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 3680 -> 2035[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3680[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3680 -> 3732[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3680 -> 3733[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3679[label="compare2 xuu30000 xuu31000 xuu196",fontsize=16,color="burlywood",shape="triangle"];4680[label="xuu196/False",fontsize=10,color="white",style="solid",shape="box"];3679 -> 4680[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4680 -> 3734[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4681[label="xuu196/True",fontsize=10,color="white",style="solid",shape="box"];3679 -> 4681[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4681 -> 3735[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 3685 -> 2033[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3685[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3685 -> 3736[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3685 -> 3737[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3684[label="compare2 xuu30000 xuu31000 xuu197",fontsize=16,color="burlywood",shape="triangle"];4682[label="xuu197/False",fontsize=10,color="white",style="solid",shape="box"];3684 -> 4682[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4682 -> 3738[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4683[label="xuu197/True",fontsize=10,color="white",style="solid",shape="box"];3684 -> 4683[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4683 -> 3739[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 3687 -> 2040[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3687[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3687 -> 3740[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3687 -> 3741[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3688[label="xuu30000",fontsize=16,color="green",shape="box"];3689[label="xuu31000",fontsize=16,color="green",shape="box"];3691 -> 2031[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3691[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3691 -> 3742[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3691 -> 3743[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3690[label="compare2 xuu30000 xuu31000 xuu198",fontsize=16,color="burlywood",shape="triangle"];4684[label="xuu198/False",fontsize=10,color="white",style="solid",shape="box"];3690 -> 4684[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4684 -> 3744[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4685[label="xuu198/True",fontsize=10,color="white",style="solid",shape="box"];3690 -> 4685[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4685 -> 3745[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 3693 -> 59[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3693[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3693 -> 3746[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3693 -> 3747[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3692[label="compare2 xuu30000 xuu31000 xuu199",fontsize=16,color="burlywood",shape="triangle"];4686[label="xuu199/False",fontsize=10,color="white",style="solid",shape="box"];3692 -> 4686[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4686 -> 3748[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4687[label="xuu199/True",fontsize=10,color="white",style="solid",shape="box"];3692 -> 4687[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4687 -> 3749[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 2225[label="GT",fontsize=16,color="green",shape="box"];2226[label="Zero",fontsize=16,color="green",shape="box"];2227[label="xuu3100",fontsize=16,color="green",shape="box"];2228 -> 2224[label="",style="dashed", color="red", weight=0]; 30.09/12.95 2228[label="primCmpNat xuu3100 xuu3000",fontsize=16,color="magenta"];2228 -> 2559[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2228 -> 2560[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2229[label="LT",fontsize=16,color="green",shape="box"];2230[label="Zero",fontsize=16,color="green",shape="box"];2231[label="xuu3100",fontsize=16,color="green",shape="box"];3246 -> 2224[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3246[label="primCmpNat xuu30000 xuu31000",fontsize=16,color="magenta"];3246 -> 3525[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3246 -> 3526[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3247[label="GT",fontsize=16,color="green",shape="box"];3248[label="LT",fontsize=16,color="green",shape="box"];3249[label="EQ",fontsize=16,color="green",shape="box"];3694[label="Integer (primMulInt xuu300000 xuu310010)",fontsize=16,color="green",shape="box"];3694 -> 3763[label="",style="dashed", color="green", weight=3]; 30.09/12.95 3695[label="xuu31000",fontsize=16,color="green",shape="box"];3696[label="Pos xuu300010",fontsize=16,color="green",shape="box"];3697[label="Pos xuu310010",fontsize=16,color="green",shape="box"];3698[label="xuu30000",fontsize=16,color="green",shape="box"];3699[label="xuu31000",fontsize=16,color="green",shape="box"];3700[label="Neg xuu300010",fontsize=16,color="green",shape="box"];3701[label="Pos xuu310010",fontsize=16,color="green",shape="box"];3702[label="xuu30000",fontsize=16,color="green",shape="box"];3703[label="xuu31000",fontsize=16,color="green",shape="box"];3704[label="Pos xuu300010",fontsize=16,color="green",shape="box"];3705[label="Neg xuu310010",fontsize=16,color="green",shape="box"];3706[label="xuu30000",fontsize=16,color="green",shape="box"];3707[label="xuu31000",fontsize=16,color="green",shape="box"];3708[label="Neg xuu300010",fontsize=16,color="green",shape="box"];3709[label="Neg xuu310010",fontsize=16,color="green",shape="box"];3710[label="xuu30000",fontsize=16,color="green",shape="box"];3711[label="xuu31000",fontsize=16,color="green",shape="box"];3712[label="Pos xuu300010",fontsize=16,color="green",shape="box"];3713[label="Pos xuu310010",fontsize=16,color="green",shape="box"];3714[label="xuu30000",fontsize=16,color="green",shape="box"];3715[label="xuu31000",fontsize=16,color="green",shape="box"];3716[label="Neg xuu300010",fontsize=16,color="green",shape="box"];3717[label="Pos xuu310010",fontsize=16,color="green",shape="box"];3718[label="xuu30000",fontsize=16,color="green",shape="box"];3719[label="xuu31000",fontsize=16,color="green",shape="box"];3720[label="Pos xuu300010",fontsize=16,color="green",shape="box"];3721[label="Neg xuu310010",fontsize=16,color="green",shape="box"];3722[label="xuu30000",fontsize=16,color="green",shape="box"];3723[label="xuu31000",fontsize=16,color="green",shape="box"];3724[label="Neg xuu300010",fontsize=16,color="green",shape="box"];3725[label="Neg xuu310010",fontsize=16,color="green",shape="box"];3726[label="xuu30000",fontsize=16,color="green",shape="box"];2088[label="primPlusNat xuu2520 xuu940",fontsize=16,color="burlywood",shape="triangle"];4688[label="xuu2520/Succ xuu25200",fontsize=10,color="white",style="solid",shape="box"];2088 -> 4688[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4688 -> 2174[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4689[label="xuu2520/Zero",fontsize=10,color="white",style="solid",shape="box"];2088 -> 4689[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4689 -> 2175[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 2089[label="primMinusNat (Succ xuu25200) xuu940",fontsize=16,color="burlywood",shape="box"];4690[label="xuu940/Succ xuu9400",fontsize=10,color="white",style="solid",shape="box"];2089 -> 4690[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4690 -> 2176[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4691[label="xuu940/Zero",fontsize=10,color="white",style="solid",shape="box"];2089 -> 4691[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4691 -> 2177[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 2090[label="primMinusNat Zero xuu940",fontsize=16,color="burlywood",shape="box"];4692[label="xuu940/Succ xuu9400",fontsize=10,color="white",style="solid",shape="box"];2090 -> 4692[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4692 -> 2178[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4693[label="xuu940/Zero",fontsize=10,color="white",style="solid",shape="box"];2090 -> 4693[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4693 -> 2179[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 2091[label="xuu940",fontsize=16,color="green",shape="box"];2092[label="xuu2520",fontsize=16,color="green",shape="box"];2093 -> 2088[label="",style="dashed", color="red", weight=0]; 30.09/12.95 2093[label="primPlusNat xuu2520 xuu940",fontsize=16,color="magenta"];2093 -> 2180[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2093 -> 2181[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2168 -> 1508[label="",style="dashed", color="red", weight=0]; 30.09/12.95 2168[label="FiniteMap.sizeFM xuu254",fontsize=16,color="magenta"];2168 -> 2232[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2169 -> 667[label="",style="dashed", color="red", weight=0]; 30.09/12.95 2169[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu253",fontsize=16,color="magenta"];2169 -> 2233[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2169 -> 2234[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2170[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) (Just xuu300) xuu31 xuu34 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) xuu34 xuu250 xuu251 xuu252 xuu253 xuu254 False",fontsize=16,color="black",shape="box"];2170 -> 2235[label="",style="solid", color="black", weight=3]; 30.09/12.95 2171[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) (Just xuu300) xuu31 xuu34 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) xuu34 xuu250 xuu251 xuu252 xuu253 xuu254 True",fontsize=16,color="black",shape="box"];2171 -> 2236[label="",style="solid", color="black", weight=3]; 30.09/12.95 2172[label="FiniteMap.mkBalBranch6Double_L xuu25 (Just xuu300) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu25 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="burlywood",shape="box"];4694[label="xuu343/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2172 -> 4694[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4694 -> 2237[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4695[label="xuu343/FiniteMap.Branch xuu3430 xuu3431 xuu3432 xuu3433 xuu3434",fontsize=10,color="white",style="solid",shape="box"];2172 -> 4695[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4695 -> 2238[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 3845[label="xuu341",fontsize=16,color="green",shape="box"];3846[label="xuu340",fontsize=16,color="green",shape="box"];3847[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];3848 -> 3824[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3848[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (Just xuu300) xuu31 xuu25 xuu343",fontsize=16,color="magenta"];3848 -> 3956[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3848 -> 3957[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3848 -> 3958[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3848 -> 3959[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3848 -> 3960[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3849[label="xuu344",fontsize=16,color="green",shape="box"];4051[label="xuu213",fontsize=16,color="green",shape="box"];2182 -> 1508[label="",style="dashed", color="red", weight=0]; 30.09/12.95 2182[label="FiniteMap.sizeFM xuu334",fontsize=16,color="magenta"];2182 -> 2248[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2183 -> 667[label="",style="dashed", color="red", weight=0]; 30.09/12.95 2183[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu333",fontsize=16,color="magenta"];2183 -> 2249[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2183 -> 2250[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2184[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) Nothing xuu31 xuu34 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu34 xuu330 xuu331 xuu332 xuu333 xuu334 False",fontsize=16,color="black",shape="box"];2184 -> 2251[label="",style="solid", color="black", weight=3]; 30.09/12.95 2185[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) Nothing xuu31 xuu34 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu34 xuu330 xuu331 xuu332 xuu333 xuu334 True",fontsize=16,color="black",shape="box"];2185 -> 2252[label="",style="solid", color="black", weight=3]; 30.09/12.95 2222[label="FiniteMap.mkBalBranch6Double_L xuu33 Nothing xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu33 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="burlywood",shape="box"];4696[label="xuu343/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2222 -> 4696[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4696 -> 2554[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4697[label="xuu343/FiniteMap.Branch xuu3430 xuu3431 xuu3432 xuu3433 xuu3434",fontsize=10,color="white",style="solid",shape="box"];2222 -> 4697[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4697 -> 2555[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 3850[label="xuu341",fontsize=16,color="green",shape="box"];3851[label="xuu340",fontsize=16,color="green",shape="box"];3852[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];3853 -> 3824[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3853[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) Nothing xuu31 xuu33 xuu343",fontsize=16,color="magenta"];3853 -> 3961[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3853 -> 3962[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3853 -> 3963[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3853 -> 3964[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3853 -> 3965[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3854[label="xuu344",fontsize=16,color="green",shape="box"];2186[label="Succ xuu300100",fontsize=16,color="green",shape="box"];2187[label="xuu4000000",fontsize=16,color="green",shape="box"];2188[label="Succ xuu300100",fontsize=16,color="green",shape="box"];2189[label="xuu104",fontsize=16,color="green",shape="box"];3728[label="xuu30000",fontsize=16,color="green",shape="box"];3729[label="xuu31000",fontsize=16,color="green",shape="box"];3730[label="compare2 xuu30000 xuu31000 False",fontsize=16,color="black",shape="box"];3730 -> 3764[label="",style="solid", color="black", weight=3]; 30.09/12.95 3731[label="compare2 xuu30000 xuu31000 True",fontsize=16,color="black",shape="box"];3731 -> 3765[label="",style="solid", color="black", weight=3]; 30.09/12.95 3732[label="xuu30000",fontsize=16,color="green",shape="box"];3733[label="xuu31000",fontsize=16,color="green",shape="box"];3734[label="compare2 xuu30000 xuu31000 False",fontsize=16,color="black",shape="box"];3734 -> 3766[label="",style="solid", color="black", weight=3]; 30.09/12.95 3735[label="compare2 xuu30000 xuu31000 True",fontsize=16,color="black",shape="box"];3735 -> 3767[label="",style="solid", color="black", weight=3]; 30.09/12.95 3736[label="xuu30000",fontsize=16,color="green",shape="box"];3737[label="xuu31000",fontsize=16,color="green",shape="box"];3738[label="compare2 xuu30000 xuu31000 False",fontsize=16,color="black",shape="box"];3738 -> 3768[label="",style="solid", color="black", weight=3]; 30.09/12.95 3739[label="compare2 xuu30000 xuu31000 True",fontsize=16,color="black",shape="box"];3739 -> 3769[label="",style="solid", color="black", weight=3]; 30.09/12.95 3740[label="xuu30000",fontsize=16,color="green",shape="box"];3741[label="xuu31000",fontsize=16,color="green",shape="box"];3742[label="xuu30000",fontsize=16,color="green",shape="box"];3743[label="xuu31000",fontsize=16,color="green",shape="box"];3744[label="compare2 xuu30000 xuu31000 False",fontsize=16,color="black",shape="box"];3744 -> 3770[label="",style="solid", color="black", weight=3]; 30.09/12.95 3745[label="compare2 xuu30000 xuu31000 True",fontsize=16,color="black",shape="box"];3745 -> 3771[label="",style="solid", color="black", weight=3]; 30.09/12.95 3746[label="xuu30000",fontsize=16,color="green",shape="box"];3747[label="xuu31000",fontsize=16,color="green",shape="box"];3748[label="compare2 xuu30000 xuu31000 False",fontsize=16,color="black",shape="box"];3748 -> 3772[label="",style="solid", color="black", weight=3]; 30.09/12.95 3749[label="compare2 xuu30000 xuu31000 True",fontsize=16,color="black",shape="box"];3749 -> 3773[label="",style="solid", color="black", weight=3]; 30.09/12.95 2559[label="xuu3100",fontsize=16,color="green",shape="box"];2560[label="xuu3000",fontsize=16,color="green",shape="box"];3525[label="xuu30000",fontsize=16,color="green",shape="box"];3526[label="xuu31000",fontsize=16,color="green",shape="box"];3763 -> 895[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3763[label="primMulInt xuu300000 xuu310010",fontsize=16,color="magenta"];3763 -> 3791[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3763 -> 3792[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2174[label="primPlusNat (Succ xuu25200) xuu940",fontsize=16,color="burlywood",shape="box"];4698[label="xuu940/Succ xuu9400",fontsize=10,color="white",style="solid",shape="box"];2174 -> 4698[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4698 -> 2240[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4699[label="xuu940/Zero",fontsize=10,color="white",style="solid",shape="box"];2174 -> 4699[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4699 -> 2241[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 2175[label="primPlusNat Zero xuu940",fontsize=16,color="burlywood",shape="box"];4700[label="xuu940/Succ xuu9400",fontsize=10,color="white",style="solid",shape="box"];2175 -> 4700[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4700 -> 2242[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4701[label="xuu940/Zero",fontsize=10,color="white",style="solid",shape="box"];2175 -> 4701[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4701 -> 2243[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 2176[label="primMinusNat (Succ xuu25200) (Succ xuu9400)",fontsize=16,color="black",shape="box"];2176 -> 2244[label="",style="solid", color="black", weight=3]; 30.09/12.95 2177[label="primMinusNat (Succ xuu25200) Zero",fontsize=16,color="black",shape="box"];2177 -> 2245[label="",style="solid", color="black", weight=3]; 30.09/12.95 2178[label="primMinusNat Zero (Succ xuu9400)",fontsize=16,color="black",shape="box"];2178 -> 2246[label="",style="solid", color="black", weight=3]; 30.09/12.95 2179[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];2179 -> 2247[label="",style="solid", color="black", weight=3]; 30.09/12.95 2180[label="xuu940",fontsize=16,color="green",shape="box"];2181[label="xuu2520",fontsize=16,color="green",shape="box"];2232[label="xuu254",fontsize=16,color="green",shape="box"];2233 -> 1508[label="",style="dashed", color="red", weight=0]; 30.09/12.95 2233[label="FiniteMap.sizeFM xuu253",fontsize=16,color="magenta"];2233 -> 2561[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2234[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2235[label="FiniteMap.mkBalBranch6MkBalBranch10 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) (Just xuu300) xuu31 xuu34 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) xuu34 xuu250 xuu251 xuu252 xuu253 xuu254 otherwise",fontsize=16,color="black",shape="box"];2235 -> 2562[label="",style="solid", color="black", weight=3]; 30.09/12.95 2236[label="FiniteMap.mkBalBranch6Single_R (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) (Just xuu300) xuu31 xuu34 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) xuu34",fontsize=16,color="black",shape="box"];2236 -> 2563[label="",style="solid", color="black", weight=3]; 30.09/12.95 2237[label="FiniteMap.mkBalBranch6Double_L xuu25 (Just xuu300) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 FiniteMap.EmptyFM xuu344) xuu25 (FiniteMap.Branch xuu340 xuu341 xuu342 FiniteMap.EmptyFM xuu344)",fontsize=16,color="black",shape="box"];2237 -> 2564[label="",style="solid", color="black", weight=3]; 30.09/12.95 2238[label="FiniteMap.mkBalBranch6Double_L xuu25 (Just xuu300) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 (FiniteMap.Branch xuu3430 xuu3431 xuu3432 xuu3433 xuu3434) xuu344) xuu25 (FiniteMap.Branch xuu340 xuu341 xuu342 (FiniteMap.Branch xuu3430 xuu3431 xuu3432 xuu3433 xuu3434) xuu344)",fontsize=16,color="black",shape="box"];2238 -> 2565[label="",style="solid", color="black", weight=3]; 30.09/12.95 3956[label="xuu31",fontsize=16,color="green",shape="box"];3957[label="Just xuu300",fontsize=16,color="green",shape="box"];3958[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3959[label="xuu25",fontsize=16,color="green",shape="box"];3960[label="xuu343",fontsize=16,color="green",shape="box"];2248[label="xuu334",fontsize=16,color="green",shape="box"];2249 -> 1508[label="",style="dashed", color="red", weight=0]; 30.09/12.95 2249[label="FiniteMap.sizeFM xuu333",fontsize=16,color="magenta"];2249 -> 2574[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2250[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2251[label="FiniteMap.mkBalBranch6MkBalBranch10 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) Nothing xuu31 xuu34 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu34 xuu330 xuu331 xuu332 xuu333 xuu334 otherwise",fontsize=16,color="black",shape="box"];2251 -> 2575[label="",style="solid", color="black", weight=3]; 30.09/12.95 2252[label="FiniteMap.mkBalBranch6Single_R (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) Nothing xuu31 xuu34 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu34",fontsize=16,color="black",shape="box"];2252 -> 2576[label="",style="solid", color="black", weight=3]; 30.09/12.95 2554[label="FiniteMap.mkBalBranch6Double_L xuu33 Nothing xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 FiniteMap.EmptyFM xuu344) xuu33 (FiniteMap.Branch xuu340 xuu341 xuu342 FiniteMap.EmptyFM xuu344)",fontsize=16,color="black",shape="box"];2554 -> 2771[label="",style="solid", color="black", weight=3]; 30.09/12.95 2555[label="FiniteMap.mkBalBranch6Double_L xuu33 Nothing xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 (FiniteMap.Branch xuu3430 xuu3431 xuu3432 xuu3433 xuu3434) xuu344) xuu33 (FiniteMap.Branch xuu340 xuu341 xuu342 (FiniteMap.Branch xuu3430 xuu3431 xuu3432 xuu3433 xuu3434) xuu344)",fontsize=16,color="black",shape="box"];2555 -> 2772[label="",style="solid", color="black", weight=3]; 30.09/12.95 3961[label="xuu31",fontsize=16,color="green",shape="box"];3962[label="Nothing",fontsize=16,color="green",shape="box"];3963[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3964[label="xuu33",fontsize=16,color="green",shape="box"];3965[label="xuu343",fontsize=16,color="green",shape="box"];3764 -> 3793[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3764[label="compare1 xuu30000 xuu31000 (xuu30000 <= xuu31000)",fontsize=16,color="magenta"];3764 -> 3794[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3765[label="EQ",fontsize=16,color="green",shape="box"];3766 -> 3795[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3766[label="compare1 xuu30000 xuu31000 (xuu30000 <= xuu31000)",fontsize=16,color="magenta"];3766 -> 3796[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3767[label="EQ",fontsize=16,color="green",shape="box"];3768 -> 3797[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3768[label="compare1 xuu30000 xuu31000 (xuu30000 <= xuu31000)",fontsize=16,color="magenta"];3768 -> 3798[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3769[label="EQ",fontsize=16,color="green",shape="box"];3770 -> 3799[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3770[label="compare1 xuu30000 xuu31000 (xuu30000 <= xuu31000)",fontsize=16,color="magenta"];3770 -> 3800[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3771[label="EQ",fontsize=16,color="green",shape="box"];3772 -> 3801[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3772[label="compare1 xuu30000 xuu31000 (xuu30000 <= xuu31000)",fontsize=16,color="magenta"];3772 -> 3802[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3773[label="EQ",fontsize=16,color="green",shape="box"];3791[label="xuu310010",fontsize=16,color="green",shape="box"];3792[label="xuu300000",fontsize=16,color="green",shape="box"];2240[label="primPlusNat (Succ xuu25200) (Succ xuu9400)",fontsize=16,color="black",shape="box"];2240 -> 2568[label="",style="solid", color="black", weight=3]; 30.09/12.95 2241[label="primPlusNat (Succ xuu25200) Zero",fontsize=16,color="black",shape="box"];2241 -> 2569[label="",style="solid", color="black", weight=3]; 30.09/12.95 2242[label="primPlusNat Zero (Succ xuu9400)",fontsize=16,color="black",shape="box"];2242 -> 2570[label="",style="solid", color="black", weight=3]; 30.09/12.95 2243[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2243 -> 2571[label="",style="solid", color="black", weight=3]; 30.09/12.95 2244 -> 1972[label="",style="dashed", color="red", weight=0]; 30.09/12.95 2244[label="primMinusNat xuu25200 xuu9400",fontsize=16,color="magenta"];2244 -> 2572[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2244 -> 2573[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2245[label="Pos (Succ xuu25200)",fontsize=16,color="green",shape="box"];2246[label="Neg (Succ xuu9400)",fontsize=16,color="green",shape="box"];2247[label="Pos Zero",fontsize=16,color="green",shape="box"];2561[label="xuu253",fontsize=16,color="green",shape="box"];2562[label="FiniteMap.mkBalBranch6MkBalBranch10 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) (Just xuu300) xuu31 xuu34 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) xuu34 xuu250 xuu251 xuu252 xuu253 xuu254 True",fontsize=16,color="black",shape="box"];2562 -> 2779[label="",style="solid", color="black", weight=3]; 30.09/12.95 2563 -> 3824[label="",style="dashed", color="red", weight=0]; 30.09/12.95 2563[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu250 xuu251 xuu253 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (Just xuu300) xuu31 xuu254 xuu34)",fontsize=16,color="magenta"];2563 -> 3855[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2563 -> 3856[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2563 -> 3857[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2563 -> 3858[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2563 -> 3859[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2564[label="error []",fontsize=16,color="red",shape="box"];2565 -> 3824[label="",style="dashed", color="red", weight=0]; 30.09/12.95 2565[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu3430 xuu3431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (Just xuu300) xuu31 xuu25 xuu3433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu340 xuu341 xuu3434 xuu344)",fontsize=16,color="magenta"];2565 -> 3860[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2565 -> 3861[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2565 -> 3862[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2565 -> 3863[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2565 -> 3864[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2574[label="xuu333",fontsize=16,color="green",shape="box"];2575[label="FiniteMap.mkBalBranch6MkBalBranch10 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) Nothing xuu31 xuu34 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu34 xuu330 xuu331 xuu332 xuu333 xuu334 True",fontsize=16,color="black",shape="box"];2575 -> 2905[label="",style="solid", color="black", weight=3]; 30.09/12.95 2576 -> 3824[label="",style="dashed", color="red", weight=0]; 30.09/12.95 2576[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu330 xuu331 xuu333 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) Nothing xuu31 xuu334 xuu34)",fontsize=16,color="magenta"];2576 -> 3870[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2576 -> 3871[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2576 -> 3872[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2576 -> 3873[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2576 -> 3874[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2771[label="error []",fontsize=16,color="red",shape="box"];2772 -> 3824[label="",style="dashed", color="red", weight=0]; 30.09/12.95 2772[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu3430 xuu3431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) Nothing xuu31 xuu33 xuu3433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu340 xuu341 xuu3434 xuu344)",fontsize=16,color="magenta"];2772 -> 3875[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2772 -> 3876[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2772 -> 3877[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2772 -> 3878[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2772 -> 3879[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3794 -> 2539[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3794[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];3794 -> 3803[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3794 -> 3804[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3793[label="compare1 xuu30000 xuu31000 xuu204",fontsize=16,color="burlywood",shape="triangle"];4702[label="xuu204/False",fontsize=10,color="white",style="solid",shape="box"];3793 -> 4702[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4702 -> 3805[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4703[label="xuu204/True",fontsize=10,color="white",style="solid",shape="box"];3793 -> 4703[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4703 -> 3806[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 3796 -> 2541[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3796[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];3796 -> 3807[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3796 -> 3808[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3795[label="compare1 xuu30000 xuu31000 xuu205",fontsize=16,color="burlywood",shape="triangle"];4704[label="xuu205/False",fontsize=10,color="white",style="solid",shape="box"];3795 -> 4704[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4704 -> 3809[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4705[label="xuu205/True",fontsize=10,color="white",style="solid",shape="box"];3795 -> 4705[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4705 -> 3810[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 3798 -> 2545[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3798[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];3798 -> 3811[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3798 -> 3812[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3797[label="compare1 xuu30000 xuu31000 xuu206",fontsize=16,color="burlywood",shape="triangle"];4706[label="xuu206/False",fontsize=10,color="white",style="solid",shape="box"];3797 -> 4706[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4706 -> 3813[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4707[label="xuu206/True",fontsize=10,color="white",style="solid",shape="box"];3797 -> 4707[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4707 -> 3814[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 3800 -> 2547[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3800[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];3800 -> 3815[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3800 -> 3816[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3799[label="compare1 xuu30000 xuu31000 xuu207",fontsize=16,color="burlywood",shape="triangle"];4708[label="xuu207/False",fontsize=10,color="white",style="solid",shape="box"];3799 -> 4708[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4708 -> 3817[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4709[label="xuu207/True",fontsize=10,color="white",style="solid",shape="box"];3799 -> 4709[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4709 -> 3818[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 3802 -> 2549[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3802[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];3802 -> 3819[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3802 -> 3820[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3801[label="compare1 xuu30000 xuu31000 xuu208",fontsize=16,color="burlywood",shape="triangle"];4710[label="xuu208/False",fontsize=10,color="white",style="solid",shape="box"];3801 -> 4710[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4710 -> 3821[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4711[label="xuu208/True",fontsize=10,color="white",style="solid",shape="box"];3801 -> 4711[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4711 -> 3822[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 2568[label="Succ (Succ (primPlusNat xuu25200 xuu9400))",fontsize=16,color="green",shape="box"];2568 -> 2904[label="",style="dashed", color="green", weight=3]; 30.09/12.95 2569[label="Succ xuu25200",fontsize=16,color="green",shape="box"];2570[label="Succ xuu9400",fontsize=16,color="green",shape="box"];2571[label="Zero",fontsize=16,color="green",shape="box"];2572[label="xuu25200",fontsize=16,color="green",shape="box"];2573[label="xuu9400",fontsize=16,color="green",shape="box"];2779[label="FiniteMap.mkBalBranch6Double_R (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) (Just xuu300) xuu31 xuu34 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) xuu34",fontsize=16,color="burlywood",shape="box"];4712[label="xuu254/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2779 -> 4712[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4712 -> 3253[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4713[label="xuu254/FiniteMap.Branch xuu2540 xuu2541 xuu2542 xuu2543 xuu2544",fontsize=10,color="white",style="solid",shape="box"];2779 -> 4713[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4713 -> 3254[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 3855[label="xuu251",fontsize=16,color="green",shape="box"];3856[label="xuu250",fontsize=16,color="green",shape="box"];3857[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];3858[label="xuu253",fontsize=16,color="green",shape="box"];3859 -> 3824[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3859[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (Just xuu300) xuu31 xuu254 xuu34",fontsize=16,color="magenta"];3859 -> 3966[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3859 -> 3967[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3859 -> 3968[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3859 -> 3969[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3859 -> 3970[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3860[label="xuu3431",fontsize=16,color="green",shape="box"];3861[label="xuu3430",fontsize=16,color="green",shape="box"];3862[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];3863 -> 3824[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3863[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (Just xuu300) xuu31 xuu25 xuu3433",fontsize=16,color="magenta"];3863 -> 3971[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3863 -> 3972[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3863 -> 3973[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3863 -> 3974[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3863 -> 3975[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3864 -> 3824[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3864[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu340 xuu341 xuu3434 xuu344",fontsize=16,color="magenta"];3864 -> 3976[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3864 -> 3977[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3864 -> 3978[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3864 -> 3979[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3864 -> 3980[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2905[label="FiniteMap.mkBalBranch6Double_R (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) Nothing xuu31 xuu34 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu34",fontsize=16,color="burlywood",shape="box"];4714[label="xuu334/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2905 -> 4714[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4714 -> 3654[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 4715[label="xuu334/FiniteMap.Branch xuu3340 xuu3341 xuu3342 xuu3343 xuu3344",fontsize=10,color="white",style="solid",shape="box"];2905 -> 4715[label="",style="solid", color="burlywood", weight=9]; 30.09/12.95 4715 -> 3655[label="",style="solid", color="burlywood", weight=3]; 30.09/12.95 3870[label="xuu331",fontsize=16,color="green",shape="box"];3871[label="xuu330",fontsize=16,color="green",shape="box"];3872[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];3873[label="xuu333",fontsize=16,color="green",shape="box"];3874 -> 3824[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3874[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) Nothing xuu31 xuu334 xuu34",fontsize=16,color="magenta"];3874 -> 3981[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3874 -> 3982[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3874 -> 3983[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3874 -> 3984[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3874 -> 3985[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3875[label="xuu3431",fontsize=16,color="green",shape="box"];3876[label="xuu3430",fontsize=16,color="green",shape="box"];3877[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];3878 -> 3824[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3878[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) Nothing xuu31 xuu33 xuu3433",fontsize=16,color="magenta"];3878 -> 3986[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3878 -> 3987[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3878 -> 3988[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3878 -> 3989[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3878 -> 3990[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3879 -> 3824[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3879[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu340 xuu341 xuu3434 xuu344",fontsize=16,color="magenta"];3879 -> 3991[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3879 -> 3992[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3879 -> 3993[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3879 -> 3994[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3879 -> 3995[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3803[label="xuu30000",fontsize=16,color="green",shape="box"];3804[label="xuu31000",fontsize=16,color="green",shape="box"];3805[label="compare1 xuu30000 xuu31000 False",fontsize=16,color="black",shape="box"];3805 -> 3996[label="",style="solid", color="black", weight=3]; 30.09/12.95 3806[label="compare1 xuu30000 xuu31000 True",fontsize=16,color="black",shape="box"];3806 -> 3997[label="",style="solid", color="black", weight=3]; 30.09/12.95 3807[label="xuu30000",fontsize=16,color="green",shape="box"];3808[label="xuu31000",fontsize=16,color="green",shape="box"];3809[label="compare1 xuu30000 xuu31000 False",fontsize=16,color="black",shape="box"];3809 -> 3998[label="",style="solid", color="black", weight=3]; 30.09/12.95 3810[label="compare1 xuu30000 xuu31000 True",fontsize=16,color="black",shape="box"];3810 -> 3999[label="",style="solid", color="black", weight=3]; 30.09/12.95 3811[label="xuu30000",fontsize=16,color="green",shape="box"];3812[label="xuu31000",fontsize=16,color="green",shape="box"];3813[label="compare1 xuu30000 xuu31000 False",fontsize=16,color="black",shape="box"];3813 -> 4000[label="",style="solid", color="black", weight=3]; 30.09/12.95 3814[label="compare1 xuu30000 xuu31000 True",fontsize=16,color="black",shape="box"];3814 -> 4001[label="",style="solid", color="black", weight=3]; 30.09/12.95 3815[label="xuu30000",fontsize=16,color="green",shape="box"];3816[label="xuu31000",fontsize=16,color="green",shape="box"];3817[label="compare1 xuu30000 xuu31000 False",fontsize=16,color="black",shape="box"];3817 -> 4002[label="",style="solid", color="black", weight=3]; 30.09/12.95 3818[label="compare1 xuu30000 xuu31000 True",fontsize=16,color="black",shape="box"];3818 -> 4003[label="",style="solid", color="black", weight=3]; 30.09/12.95 3819[label="xuu30000",fontsize=16,color="green",shape="box"];3820[label="xuu31000",fontsize=16,color="green",shape="box"];3821[label="compare1 xuu30000 xuu31000 False",fontsize=16,color="black",shape="box"];3821 -> 4004[label="",style="solid", color="black", weight=3]; 30.09/12.95 3822[label="compare1 xuu30000 xuu31000 True",fontsize=16,color="black",shape="box"];3822 -> 4005[label="",style="solid", color="black", weight=3]; 30.09/12.95 2904 -> 2088[label="",style="dashed", color="red", weight=0]; 30.09/12.95 2904[label="primPlusNat xuu25200 xuu9400",fontsize=16,color="magenta"];2904 -> 3753[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 2904 -> 3754[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3253[label="FiniteMap.mkBalBranch6Double_R (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 FiniteMap.EmptyFM) (Just xuu300) xuu31 xuu34 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 FiniteMap.EmptyFM) xuu34",fontsize=16,color="black",shape="box"];3253 -> 3755[label="",style="solid", color="black", weight=3]; 30.09/12.95 3254[label="FiniteMap.mkBalBranch6Double_R (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 (FiniteMap.Branch xuu2540 xuu2541 xuu2542 xuu2543 xuu2544)) (Just xuu300) xuu31 xuu34 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 (FiniteMap.Branch xuu2540 xuu2541 xuu2542 xuu2543 xuu2544)) xuu34",fontsize=16,color="black",shape="box"];3254 -> 3756[label="",style="solid", color="black", weight=3]; 30.09/12.95 3966[label="xuu31",fontsize=16,color="green",shape="box"];3967[label="Just xuu300",fontsize=16,color="green",shape="box"];3968[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];3969[label="xuu254",fontsize=16,color="green",shape="box"];3970[label="xuu34",fontsize=16,color="green",shape="box"];3971[label="xuu31",fontsize=16,color="green",shape="box"];3972[label="Just xuu300",fontsize=16,color="green",shape="box"];3973[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];3974[label="xuu25",fontsize=16,color="green",shape="box"];3975[label="xuu3433",fontsize=16,color="green",shape="box"];3976[label="xuu341",fontsize=16,color="green",shape="box"];3977[label="xuu340",fontsize=16,color="green",shape="box"];3978[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];3979[label="xuu3434",fontsize=16,color="green",shape="box"];3980[label="xuu344",fontsize=16,color="green",shape="box"];3654[label="FiniteMap.mkBalBranch6Double_R (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 FiniteMap.EmptyFM) Nothing xuu31 xuu34 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 FiniteMap.EmptyFM) xuu34",fontsize=16,color="black",shape="box"];3654 -> 3761[label="",style="solid", color="black", weight=3]; 30.09/12.95 3655[label="FiniteMap.mkBalBranch6Double_R (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 (FiniteMap.Branch xuu3340 xuu3341 xuu3342 xuu3343 xuu3344)) Nothing xuu31 xuu34 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 (FiniteMap.Branch xuu3340 xuu3341 xuu3342 xuu3343 xuu3344)) xuu34",fontsize=16,color="black",shape="box"];3655 -> 3762[label="",style="solid", color="black", weight=3]; 30.09/12.95 3981[label="xuu31",fontsize=16,color="green",shape="box"];3982[label="Nothing",fontsize=16,color="green",shape="box"];3983[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];3984[label="xuu334",fontsize=16,color="green",shape="box"];3985[label="xuu34",fontsize=16,color="green",shape="box"];3986[label="xuu31",fontsize=16,color="green",shape="box"];3987[label="Nothing",fontsize=16,color="green",shape="box"];3988[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];3989[label="xuu33",fontsize=16,color="green",shape="box"];3990[label="xuu3433",fontsize=16,color="green",shape="box"];3991[label="xuu341",fontsize=16,color="green",shape="box"];3992[label="xuu340",fontsize=16,color="green",shape="box"];3993[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];3994[label="xuu3434",fontsize=16,color="green",shape="box"];3995[label="xuu344",fontsize=16,color="green",shape="box"];3996[label="compare0 xuu30000 xuu31000 otherwise",fontsize=16,color="black",shape="box"];3996 -> 4027[label="",style="solid", color="black", weight=3]; 30.09/12.95 3997[label="LT",fontsize=16,color="green",shape="box"];3998[label="compare0 xuu30000 xuu31000 otherwise",fontsize=16,color="black",shape="box"];3998 -> 4028[label="",style="solid", color="black", weight=3]; 30.09/12.95 3999[label="LT",fontsize=16,color="green",shape="box"];4000[label="compare0 xuu30000 xuu31000 otherwise",fontsize=16,color="black",shape="box"];4000 -> 4029[label="",style="solid", color="black", weight=3]; 30.09/12.95 4001[label="LT",fontsize=16,color="green",shape="box"];4002[label="compare0 xuu30000 xuu31000 otherwise",fontsize=16,color="black",shape="box"];4002 -> 4030[label="",style="solid", color="black", weight=3]; 30.09/12.95 4003[label="LT",fontsize=16,color="green",shape="box"];4004[label="compare0 xuu30000 xuu31000 otherwise",fontsize=16,color="black",shape="box"];4004 -> 4031[label="",style="solid", color="black", weight=3]; 30.09/12.95 4005[label="LT",fontsize=16,color="green",shape="box"];3753[label="xuu9400",fontsize=16,color="green",shape="box"];3754[label="xuu25200",fontsize=16,color="green",shape="box"];3755[label="error []",fontsize=16,color="red",shape="box"];3756 -> 3824[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3756[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xuu2540 xuu2541 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu250 xuu251 xuu253 xuu2543) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (Just xuu300) xuu31 xuu2544 xuu34)",fontsize=16,color="magenta"];3756 -> 3915[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3756 -> 3916[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3756 -> 3917[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3756 -> 3918[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3756 -> 3919[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3761[label="error []",fontsize=16,color="red",shape="box"];3762 -> 3824[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3762[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xuu3340 xuu3341 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu330 xuu331 xuu333 xuu3343) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) Nothing xuu31 xuu3344 xuu34)",fontsize=16,color="magenta"];3762 -> 3930[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3762 -> 3931[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3762 -> 3932[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3762 -> 3933[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3762 -> 3934[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 4027[label="compare0 xuu30000 xuu31000 True",fontsize=16,color="black",shape="box"];4027 -> 4033[label="",style="solid", color="black", weight=3]; 30.09/12.95 4028[label="compare0 xuu30000 xuu31000 True",fontsize=16,color="black",shape="box"];4028 -> 4034[label="",style="solid", color="black", weight=3]; 30.09/12.95 4029[label="compare0 xuu30000 xuu31000 True",fontsize=16,color="black",shape="box"];4029 -> 4035[label="",style="solid", color="black", weight=3]; 30.09/12.95 4030[label="compare0 xuu30000 xuu31000 True",fontsize=16,color="black",shape="box"];4030 -> 4036[label="",style="solid", color="black", weight=3]; 30.09/12.95 4031[label="compare0 xuu30000 xuu31000 True",fontsize=16,color="black",shape="box"];4031 -> 4037[label="",style="solid", color="black", weight=3]; 30.09/12.95 3915[label="xuu2541",fontsize=16,color="green",shape="box"];3916[label="xuu2540",fontsize=16,color="green",shape="box"];3917[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];3918 -> 3824[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3918[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu250 xuu251 xuu253 xuu2543",fontsize=16,color="magenta"];3918 -> 4006[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3918 -> 4007[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3918 -> 4008[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3918 -> 4009[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3918 -> 4010[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3919 -> 3824[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3919[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (Just xuu300) xuu31 xuu2544 xuu34",fontsize=16,color="magenta"];3919 -> 4011[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3919 -> 4012[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3919 -> 4013[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3919 -> 4014[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3919 -> 4015[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3930[label="xuu3341",fontsize=16,color="green",shape="box"];3931[label="xuu3340",fontsize=16,color="green",shape="box"];3932[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];3933 -> 3824[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3933[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu330 xuu331 xuu333 xuu3343",fontsize=16,color="magenta"];3933 -> 4016[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3933 -> 4017[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3933 -> 4018[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3933 -> 4019[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3933 -> 4020[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3934 -> 3824[label="",style="dashed", color="red", weight=0]; 30.09/12.95 3934[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) Nothing xuu31 xuu3344 xuu34",fontsize=16,color="magenta"];3934 -> 4021[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3934 -> 4022[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3934 -> 4023[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3934 -> 4024[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 3934 -> 4025[label="",style="dashed", color="magenta", weight=3]; 30.09/12.95 4033[label="GT",fontsize=16,color="green",shape="box"];4034[label="GT",fontsize=16,color="green",shape="box"];4035[label="GT",fontsize=16,color="green",shape="box"];4036[label="GT",fontsize=16,color="green",shape="box"];4037[label="GT",fontsize=16,color="green",shape="box"];4006[label="xuu251",fontsize=16,color="green",shape="box"];4007[label="xuu250",fontsize=16,color="green",shape="box"];4008[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];4009[label="xuu253",fontsize=16,color="green",shape="box"];4010[label="xuu2543",fontsize=16,color="green",shape="box"];4011[label="xuu31",fontsize=16,color="green",shape="box"];4012[label="Just xuu300",fontsize=16,color="green",shape="box"];4013[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];4014[label="xuu2544",fontsize=16,color="green",shape="box"];4015[label="xuu34",fontsize=16,color="green",shape="box"];4016[label="xuu331",fontsize=16,color="green",shape="box"];4017[label="xuu330",fontsize=16,color="green",shape="box"];4018[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];4019[label="xuu333",fontsize=16,color="green",shape="box"];4020[label="xuu3343",fontsize=16,color="green",shape="box"];4021[label="xuu31",fontsize=16,color="green",shape="box"];4022[label="Nothing",fontsize=16,color="green",shape="box"];4023[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];4024[label="xuu3344",fontsize=16,color="green",shape="box"];4025[label="xuu34",fontsize=16,color="green",shape="box"];} 30.09/12.95 30.09/12.95 ---------------------------------------- 30.09/12.95 30.09/12.95 (16) 30.09/12.95 Complex Obligation (AND) 30.09/12.95 30.09/12.95 ---------------------------------------- 30.09/12.95 30.09/12.95 (17) 30.09/12.95 Obligation: 30.09/12.95 Q DP problem: 30.09/12.95 The TRS P consists of the following rules: 30.09/12.95 30.09/12.95 new_primCmpNat(Succ(xuu30000), Succ(xuu31000)) -> new_primCmpNat(xuu30000, xuu31000) 30.09/12.95 30.09/12.95 R is empty. 30.09/12.95 Q is empty. 30.09/12.95 We have to consider all minimal (P,Q,R)-chains. 30.09/12.95 ---------------------------------------- 30.09/12.95 30.09/12.95 (18) QDPSizeChangeProof (EQUIVALENT) 30.09/12.95 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.09/12.95 30.09/12.95 From the DPs we obtained the following set of size-change graphs: 30.09/12.95 *new_primCmpNat(Succ(xuu30000), Succ(xuu31000)) -> new_primCmpNat(xuu30000, xuu31000) 30.09/12.95 The graph contains the following edges 1 > 1, 2 > 2 30.09/12.95 30.09/12.95 30.09/12.95 ---------------------------------------- 30.09/12.95 30.09/12.95 (19) 30.09/12.95 YES 30.09/12.95 30.09/12.95 ---------------------------------------- 30.09/12.95 30.09/12.95 (20) 30.09/12.95 Obligation: 30.09/12.95 Q DP problem: 30.09/12.95 The TRS P consists of the following rules: 30.09/12.95 30.09/12.95 new_foldl(xuu3, :(xuu40, xuu41), h, ba) -> new_foldl(new_addListToFM_CAdd(xuu3, xuu40, h, ba), xuu41, h, ba) 30.09/12.95 30.09/12.95 The TRS R consists of the following rules: 30.09/12.95 30.09/12.95 new_ltEs18(xuu3000, xuu3100, ty_Integer) -> new_ltEs17(xuu3000, xuu3100) 30.09/12.95 new_addToFM_C0(Branch(Nothing, xuu31, xuu32, xuu33, xuu34), Nothing, xuu401, h, ba) -> new_addToFM_C16(xuu31, xuu32, xuu33, xuu34, xuu401, new_esEs10(new_compare24(Nothing, Nothing, True, h), GT), h, ba) 30.09/12.95 new_compare28(xuu30000, xuu31000, False, bce, bcf, bcg) -> new_compare16(xuu30000, xuu31000, new_ltEs6(xuu30000, xuu31000, bce, bcf, bcg), bce, bcf, bcg) 30.09/12.95 new_lt7(xuu30000, xuu31000) -> new_esEs10(new_compare17(xuu30000, xuu31000), LT) 30.09/12.95 new_esEs27(xuu40001, xuu3001, app(ty_Ratio, bhh)) -> new_esEs13(xuu40001, xuu3001, bhh) 30.09/12.95 new_esEs23(xuu30000, xuu31000, ty_Bool) -> new_esEs11(xuu30000, xuu31000) 30.09/12.95 new_primCmpInt(Neg(Succ(xuu3000)), Pos(xuu310)) -> LT 30.09/12.95 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 30.09/12.95 new_esEs27(xuu40001, xuu3001, ty_Int) -> new_esEs9(xuu40001, xuu3001) 30.09/12.95 new_esEs5(Right(xuu40000), Right(xuu3000), ec, app(ty_Ratio, fc)) -> new_esEs13(xuu40000, xuu3000, fc) 30.09/12.95 new_pePe(True, xuu167) -> True 30.09/12.95 new_esEs23(xuu30000, xuu31000, app(ty_Maybe, bcd)) -> new_esEs6(xuu30000, xuu31000, bcd) 30.09/12.95 new_ltEs19(xuu30002, xuu31002, app(app(app(ty_@3, che), chf), chg)) -> new_ltEs6(xuu30002, xuu31002, che, chf, chg) 30.09/12.95 new_ltEs20(xuu30001, xuu31001, ty_Ordering) -> new_ltEs15(xuu30001, xuu31001) 30.09/12.95 new_primCmpInt(Pos(Zero), Pos(Succ(xuu3100))) -> new_primCmpNat0(Zero, xuu3100) 30.09/12.95 new_ltEs6(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), bf, bg, bh) -> new_pePe(new_lt13(xuu30000, xuu31000, bf), new_asAs(new_esEs23(xuu30000, xuu31000, bf), new_pePe(new_lt12(xuu30001, xuu31001, bg), new_asAs(new_esEs24(xuu30001, xuu31001, bg), new_ltEs19(xuu30002, xuu31002, bh))))) 30.09/12.95 new_esEs5(Right(xuu40000), Right(xuu3000), ec, app(ty_[], ff)) -> new_esEs16(xuu40000, xuu3000, ff) 30.09/12.95 new_esEs5(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, dc), dd), de), db) -> new_esEs4(xuu40000, xuu3000, dc, dd, de) 30.09/12.95 new_addToFM_C13(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba) -> Branch(Just(xuu4000), new_addListToFM0(xuu31, xuu401, ba), xuu32, xuu33, xuu34) 30.09/12.95 new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_Ratio, dh), db) -> new_esEs13(xuu40000, xuu3000, dh) 30.09/12.95 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Double) -> new_ltEs14(xuu30000, xuu31000) 30.09/12.95 new_esEs29(xuu4000, xuu300, ty_Char) -> new_esEs12(xuu4000, xuu300) 30.09/12.95 new_mkBalBranch6MkBalBranch110(xuu330, xuu331, xuu332, xuu333, EmptyFM, xuu31, xuu34, False, h, ba) -> error([]) 30.09/12.95 new_lt20(xuu30000, xuu31000, ty_Bool) -> new_lt15(xuu30000, xuu31000) 30.09/12.95 new_compare(:(xuu30000, xuu30001), [], be) -> GT 30.09/12.95 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 30.09/12.95 new_esEs27(xuu40001, xuu3001, app(ty_[], cab)) -> new_esEs16(xuu40001, xuu3001, cab) 30.09/12.95 new_esEs27(xuu40001, xuu3001, app(app(ty_Either, bhf), bhg)) -> new_esEs5(xuu40001, xuu3001, bhf, bhg) 30.09/12.95 new_addToFM_C22(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, True, h, ba) -> new_mkBalBranch0(xuu300, xuu31, new_addToFM_C0(xuu33, Nothing, xuu401, h, ba), xuu34, h, ba) 30.09/12.95 new_primCmpInt(Pos(Zero), Neg(Succ(xuu3100))) -> GT 30.09/12.95 new_compare(:(xuu30000, xuu30001), :(xuu31000, xuu31001), be) -> new_primCompAux0(xuu30000, xuu31000, new_compare(xuu30001, xuu31001, be), be) 30.09/12.95 new_esEs9(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) 30.09/12.95 new_esEs22(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) 30.09/12.95 new_esEs18(xuu40000, xuu3000, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs4(xuu40000, xuu3000, gd, ge, gf) 30.09/12.95 new_emptyFM(h, ba) -> EmptyFM 30.09/12.95 new_ltEs19(xuu30002, xuu31002, app(ty_[], chd)) -> new_ltEs5(xuu30002, xuu31002, chd) 30.09/12.95 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Char) -> new_ltEs9(xuu30000, xuu31000) 30.09/12.95 new_lt12(xuu30001, xuu31001, ty_Char) -> new_lt7(xuu30001, xuu31001) 30.09/12.95 new_esEs26(xuu40000, xuu3000, app(app(ty_@2, bfg), bfh)) -> new_esEs7(xuu40000, xuu3000, bfg, bfh) 30.09/12.95 new_ltEs4(Right(xuu30000), Right(xuu31000), ca, ty_Int) -> new_ltEs7(xuu30000, xuu31000) 30.09/12.95 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.09/12.95 new_lt13(xuu30000, xuu31000, app(ty_Ratio, cfg)) -> new_lt5(xuu30000, xuu31000, cfg) 30.09/12.95 new_esEs6(Just(xuu40000), Just(xuu3000), app(app(ty_Either, dbc), dbd)) -> new_esEs5(xuu40000, xuu3000, dbc, dbd) 30.09/12.95 new_ltEs15(EQ, LT) -> False 30.09/12.95 new_compare17(Char(xuu30000), Char(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) 30.09/12.95 new_esEs28(xuu40002, xuu3002, app(app(app(ty_@3, cae), caf), cag)) -> new_esEs4(xuu40002, xuu3002, cae, caf, cag) 30.09/12.95 new_ltEs8(xuu3000, xuu3100) -> new_fsEs(new_compare8(xuu3000, xuu3100)) 30.09/12.95 new_primCmpNat1(Succ(xuu30000), Succ(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) 30.09/12.95 new_esEs23(xuu30000, xuu31000, app(app(ty_Either, fg), fh)) -> new_esEs5(xuu30000, xuu31000, fg, fh) 30.09/12.95 new_addToFM_C13(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba) -> new_mkBalBranch(xuu31, xuu33, new_addToFM_C0(xuu34, Just(xuu4000), xuu401, h, ba), h, ba) 30.09/12.95 new_mkBalBranch6MkBalBranch50(xuu33, xuu31, xuu34, False, h, ba) -> new_mkBalBranch6MkBalBranch40(xuu33, xuu31, xuu34, new_gt(new_mkBalBranch6Size_r0(xuu33, xuu31, xuu34, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_l(xuu33, xuu31, xuu34, h, ba))), h, ba) 30.09/12.95 new_ltEs19(xuu30002, xuu31002, ty_Ordering) -> new_ltEs15(xuu30002, xuu31002) 30.09/12.95 new_compare26(xuu30000, xuu31000, True) -> EQ 30.09/12.95 new_compare24(Nothing, Just(xuu3100), False, bd) -> LT 30.09/12.95 new_esEs18(xuu40000, xuu3000, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.09/12.95 new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False 30.09/12.95 new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False 30.09/12.95 new_ltEs4(Left(xuu30000), Left(xuu31000), app(app(ty_@2, ccg), cch), cb) -> new_ltEs13(xuu30000, xuu31000, ccg, cch) 30.09/12.95 new_ltEs15(GT, LT) -> False 30.09/12.95 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.09/12.95 new_esEs24(xuu30001, xuu31001, ty_Double) -> new_esEs17(xuu30001, xuu31001) 30.09/12.95 new_compare25(xuu30000, xuu31000, False, fg, fh) -> new_compare11(xuu30000, xuu31000, new_ltEs4(xuu30000, xuu31000, fg, fh), fg, fh) 30.09/12.95 new_mkBalBranch6MkBalBranch010(xuu25, xuu300, xuu31, xuu340, xuu341, xuu342, EmptyFM, xuu344, False, h, ba) -> error([]) 30.09/12.95 new_mkBalBranch6Size_l(xuu33, xuu31, xuu34, h, ba) -> new_sizeFM0(xuu33, h, ba) 30.09/12.95 new_ltEs12(Just(xuu30000), Just(xuu31000), app(app(ty_Either, bef), beg)) -> new_ltEs4(xuu30000, xuu31000, bef, beg) 30.09/12.95 new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_Maybe, ea), db) -> new_esEs6(xuu40000, xuu3000, ea) 30.09/12.95 new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.09/12.95 new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) 30.09/12.95 new_esEs27(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) 30.09/12.95 new_esEs30(xuu19, xuu14, ty_Char) -> new_esEs12(xuu19, xuu14) 30.09/12.95 new_mkBranch(xuu210, xuu211, xuu212, xuu213, xuu214, bb, bc) -> Branch(xuu211, xuu212, new_primPlusInt(new_primPlusInt(Pos(Succ(Zero)), new_sizeFM(xuu213, bb, bc)), new_sizeFM(xuu214, bb, bc)), xuu213, xuu214) 30.09/12.95 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Char, db) -> new_esEs12(xuu40000, xuu3000) 30.09/12.95 new_esEs10(GT, GT) -> True 30.09/12.95 new_ltEs4(Left(xuu30000), Left(xuu31000), app(ty_Maybe, ccf), cb) -> new_ltEs12(xuu30000, xuu31000, ccf) 30.09/12.95 new_esEs5(Right(xuu40000), Right(xuu3000), ec, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.09/12.95 new_not(True) -> False 30.09/12.95 new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_[], eb), db) -> new_esEs16(xuu40000, xuu3000, eb) 30.09/12.95 new_esEs28(xuu40002, xuu3002, ty_Bool) -> new_esEs11(xuu40002, xuu3002) 30.09/12.95 new_lt13(xuu30000, xuu31000, app(app(app(ty_@3, bce), bcf), bcg)) -> new_lt11(xuu30000, xuu31000, bce, bcf, bcg) 30.09/12.95 new_ltEs5(xuu3000, xuu3100, be) -> new_fsEs(new_compare(xuu3000, xuu3100, be)) 30.09/12.95 new_primCompAux00(xuu182, LT) -> LT 30.09/12.95 new_lt12(xuu30001, xuu31001, ty_Double) -> new_lt17(xuu30001, xuu31001) 30.09/12.95 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Float) -> new_ltEs16(xuu30000, xuu31000) 30.09/12.95 new_ltEs20(xuu30001, xuu31001, ty_Integer) -> new_ltEs17(xuu30001, xuu31001) 30.09/12.95 new_esEs25(xuu30000, xuu31000, ty_Ordering) -> new_esEs10(xuu30000, xuu31000) 30.09/12.95 new_esEs23(xuu30000, xuu31000, app(ty_Ratio, cfg)) -> new_esEs13(xuu30000, xuu31000, cfg) 30.09/12.95 new_esEs27(xuu40001, xuu3001, ty_Bool) -> new_esEs11(xuu40001, xuu3001) 30.09/12.95 new_esEs26(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.09/12.95 new_esEs5(Right(xuu40000), Right(xuu3000), ec, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.09/12.95 new_lt12(xuu30001, xuu31001, app(app(app(ty_@3, cgc), cgd), cge)) -> new_lt11(xuu30001, xuu31001, cgc, cgd, cge) 30.09/12.95 new_esEs30(xuu19, xuu14, ty_Double) -> new_esEs17(xuu19, xuu14) 30.09/12.95 new_lt13(xuu30000, xuu31000, app(ty_Maybe, bcd)) -> new_lt6(xuu30000, xuu31000, bcd) 30.09/12.95 new_esEs5(Right(xuu40000), Right(xuu3000), ec, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.09/12.95 new_esEs19(xuu40000, xuu3000, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.09/12.95 new_esEs25(xuu30000, xuu31000, ty_Float) -> new_esEs8(xuu30000, xuu31000) 30.09/12.95 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Double, db) -> new_esEs17(xuu40000, xuu3000) 30.09/12.95 new_lt19(xuu30000, xuu31000) -> new_esEs10(new_compare7(xuu30000, xuu31000), LT) 30.09/12.95 new_compare31(xuu30000, xuu31000, app(app(app(ty_@3, bda), bdb), bdc)) -> new_compare29(xuu30000, xuu31000, bda, bdb, bdc) 30.09/12.95 new_ltEs20(xuu30001, xuu31001, app(app(app(ty_@3, ddc), ddd), dde)) -> new_ltEs6(xuu30001, xuu31001, ddc, ddd, dde) 30.09/12.95 new_esEs5(Left(xuu40000), Left(xuu3000), app(app(ty_@2, cg), da), db) -> new_esEs7(xuu40000, xuu3000, cg, da) 30.09/12.95 new_primEqNat0(Succ(xuu400000), Zero) -> False 30.09/12.95 new_primEqNat0(Zero, Succ(xuu30000)) -> False 30.09/12.95 new_esEs5(Right(xuu40000), Right(xuu3000), ec, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.09/12.95 new_esEs19(xuu40000, xuu3000, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.09/12.95 new_esEs14(@0, @0) -> True 30.09/12.95 new_lt12(xuu30001, xuu31001, app(app(ty_@2, chb), chc)) -> new_lt16(xuu30001, xuu31001, chb, chc) 30.09/12.95 new_addToFM_C0(Branch(Nothing, xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C24(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs10(new_compare24(Just(xuu4000), Nothing, False, h), LT), h, ba) 30.09/12.95 new_esEs26(xuu40000, xuu3000, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.09/12.95 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Bool, cb) -> new_ltEs11(xuu30000, xuu31000) 30.09/12.95 new_lt11(xuu30000, xuu31000, bce, bcf, bcg) -> new_esEs10(new_compare29(xuu30000, xuu31000, bce, bcf, bcg), LT) 30.09/12.95 new_esEs23(xuu30000, xuu31000, ty_Int) -> new_esEs9(xuu30000, xuu31000) 30.09/12.95 new_addToFM_C0(Branch(Just(xuu300), xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C23(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs10(new_compare24(Just(xuu4000), Just(xuu300), new_esEs29(xuu4000, xuu300, h), h), LT), h, ba) 30.09/12.95 new_ltEs15(GT, EQ) -> False 30.09/12.95 new_lt20(xuu30000, xuu31000, app(ty_[], dbh)) -> new_lt14(xuu30000, xuu31000, dbh) 30.09/12.95 new_esEs26(xuu40000, xuu3000, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.09/12.95 new_lt20(xuu30000, xuu31000, ty_Integer) -> new_lt19(xuu30000, xuu31000) 30.09/12.95 new_primCompAux00(xuu182, GT) -> GT 30.09/12.95 new_primCmpInt(Neg(Zero), Neg(Succ(xuu3100))) -> new_primCmpNat2(xuu3100, Zero) 30.09/12.95 new_esEs10(EQ, EQ) -> True 30.09/12.95 new_primMinusNat0(Succ(xuu25200), Zero) -> Pos(Succ(xuu25200)) 30.09/12.95 new_esEs29(xuu4000, xuu300, ty_Double) -> new_esEs17(xuu4000, xuu300) 30.09/12.95 new_esEs6(Just(xuu40000), Just(xuu3000), app(ty_Ratio, dbe)) -> new_esEs13(xuu40000, xuu3000, dbe) 30.09/12.95 new_lt16(xuu30000, xuu31000, bcb, bcc) -> new_esEs10(new_compare15(xuu30000, xuu31000, bcb, bcc), LT) 30.09/12.95 new_esEs17(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs9(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) 30.09/12.95 new_esEs24(xuu30001, xuu31001, app(app(app(ty_@3, cgc), cgd), cge)) -> new_esEs4(xuu30001, xuu31001, cgc, cgd, cge) 30.09/12.95 new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.09/12.95 new_esEs23(xuu30000, xuu31000, app(app(app(ty_@3, bce), bcf), bcg)) -> new_esEs4(xuu30000, xuu31000, bce, bcf, bcg) 30.09/12.95 new_esEs30(xuu19, xuu14, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_esEs4(xuu19, xuu14, ceg, ceh, cfa) 30.09/12.95 new_compare14(xuu30000, xuu31000, True) -> LT 30.09/12.95 new_primCmpInt(Pos(Succ(xuu3000)), Neg(xuu310)) -> GT 30.09/12.95 new_lt13(xuu30000, xuu31000, ty_Integer) -> new_lt19(xuu30000, xuu31000) 30.09/12.95 new_ltEs18(xuu3000, xuu3100, ty_Bool) -> new_ltEs11(xuu3000, xuu3100) 30.09/12.95 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_@0) -> new_ltEs8(xuu30000, xuu31000) 30.09/12.95 new_esEs28(xuu40002, xuu3002, ty_Double) -> new_esEs17(xuu40002, xuu3002) 30.09/12.95 new_lt13(xuu30000, xuu31000, ty_Char) -> new_lt7(xuu30000, xuu31000) 30.09/12.95 new_compare110(xuu30000, xuu31000, True, bcb, bcc) -> LT 30.09/12.95 new_ltEs4(Right(xuu30000), Right(xuu31000), ca, app(ty_Ratio, cdg)) -> new_ltEs10(xuu30000, xuu31000, cdg) 30.09/12.95 new_esEs23(xuu30000, xuu31000, ty_Double) -> new_esEs17(xuu30000, xuu31000) 30.09/12.95 new_lt20(xuu30000, xuu31000, app(app(ty_Either, dcd), dce)) -> new_lt8(xuu30000, xuu31000, dcd, dce) 30.09/12.95 new_mkBalBranch6MkBalBranch3(Branch(xuu250, xuu251, xuu252, xuu253, xuu254), xuu300, xuu31, xuu34, True, h, ba) -> new_mkBalBranch6MkBalBranch11(xuu250, xuu251, xuu252, xuu253, xuu254, xuu300, xuu31, xuu34, new_lt9(new_sizeFM0(xuu254, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM0(xuu253, h, ba))), h, ba) 30.09/12.95 new_lt13(xuu30000, xuu31000, ty_Double) -> new_lt17(xuu30000, xuu31000) 30.09/12.95 new_primPlusNat1(Succ(xuu25200), Succ(xuu9400)) -> Succ(Succ(new_primPlusNat1(xuu25200, xuu9400))) 30.09/12.95 new_primCompAux0(xuu30000, xuu31000, xuu168, be) -> new_primCompAux00(xuu168, new_compare31(xuu30000, xuu31000, be)) 30.09/12.95 new_esEs26(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.09/12.95 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Integer, cb) -> new_ltEs17(xuu30000, xuu31000) 30.09/12.95 new_esEs10(LT, EQ) -> False 30.09/12.95 new_esEs10(EQ, LT) -> False 30.09/12.95 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.09/12.95 new_esEs20(xuu40001, xuu3001, ty_Ordering) -> new_esEs10(xuu40001, xuu3001) 30.09/12.95 new_esEs29(xuu4000, xuu300, app(app(app(ty_@3, bfd), bfe), bff)) -> new_esEs4(xuu4000, xuu300, bfd, bfe, bff) 30.09/12.95 new_compare13(xuu30000, xuu31000, bcd) -> new_compare24(xuu30000, xuu31000, new_esEs6(xuu30000, xuu31000, bcd), bcd) 30.09/12.95 new_sizeFM(EmptyFM, bb, bc) -> Pos(Zero) 30.09/12.95 new_primCmpNat0(Succ(xuu3100), xuu3000) -> new_primCmpNat1(xuu3100, xuu3000) 30.09/12.95 new_compare210(xuu30000, xuu31000, True) -> EQ 30.09/12.95 new_esEs20(xuu40001, xuu3001, ty_Float) -> new_esEs8(xuu40001, xuu3001) 30.09/12.95 new_esEs28(xuu40002, xuu3002, ty_Char) -> new_esEs12(xuu40002, xuu3002) 30.09/12.95 new_addToFM_C14(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, True, h, ba) -> new_mkBalBranch0(xuu300, xuu31, xuu33, new_addToFM_C0(xuu34, Nothing, xuu401, h, ba), h, ba) 30.09/12.95 new_lt9(xuu300, xuu310) -> new_esEs10(new_compare6(xuu300, xuu310), LT) 30.09/12.95 new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) 30.09/12.95 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Bool) -> new_ltEs11(xuu30000, xuu31000) 30.09/12.95 new_esEs28(xuu40002, xuu3002, app(ty_[], cbd)) -> new_esEs16(xuu40002, xuu3002, cbd) 30.09/12.95 new_esEs27(xuu40001, xuu3001, app(app(ty_@2, bha), bhb)) -> new_esEs7(xuu40001, xuu3001, bha, bhb) 30.09/12.95 new_ltEs18(xuu3000, xuu3100, app(ty_Maybe, cd)) -> new_ltEs12(xuu3000, xuu3100, cd) 30.09/12.95 new_ltEs4(Right(xuu30000), Right(xuu31000), ca, ty_Char) -> new_ltEs9(xuu30000, xuu31000) 30.09/12.95 new_esEs19(xuu40000, xuu3000, app(app(app(ty_@3, hh), baa), bab)) -> new_esEs4(xuu40000, xuu3000, hh, baa, bab) 30.09/12.95 new_pePe(False, xuu167) -> xuu167 30.09/12.95 new_esEs27(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) 30.09/12.95 new_ltEs4(Left(xuu30000), Left(xuu31000), app(ty_Ratio, cce), cb) -> new_ltEs10(xuu30000, xuu31000, cce) 30.09/12.95 new_ltEs18(xuu3000, xuu3100, app(app(app(ty_@3, bf), bg), bh)) -> new_ltEs6(xuu3000, xuu3100, bf, bg, bh) 30.09/12.95 new_esEs11(False, True) -> False 30.09/12.95 new_esEs11(True, False) -> False 30.09/12.95 new_compare25(xuu30000, xuu31000, True, fg, fh) -> EQ 30.09/12.95 new_ltEs4(Left(xuu30000), Left(xuu31000), app(app(app(ty_@3, cbh), cca), ccb), cb) -> new_ltEs6(xuu30000, xuu31000, cbh, cca, ccb) 30.09/12.95 new_mkBalBranch6MkBalBranch01(xuu33, xuu31, xuu340, xuu341, xuu342, Branch(xuu3430, xuu3431, xuu3432, xuu3433, xuu3434), xuu344, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), xuu3430, xuu3431, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Zero))))), Nothing, xuu31, xuu33, xuu3433, app(ty_Maybe, h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), xuu340, xuu341, xuu3434, xuu344, app(ty_Maybe, h), ba), app(ty_Maybe, h), ba) 30.09/12.95 new_primMinusNat0(Succ(xuu25200), Succ(xuu9400)) -> new_primMinusNat0(xuu25200, xuu9400) 30.09/12.95 new_compare26(xuu30000, xuu31000, False) -> new_compare111(xuu30000, xuu31000, new_ltEs11(xuu30000, xuu31000)) 30.09/12.95 new_lt12(xuu30001, xuu31001, ty_Int) -> new_lt9(xuu30001, xuu31001) 30.09/12.95 new_ltEs4(Right(xuu30000), Right(xuu31000), ca, ty_Double) -> new_ltEs14(xuu30000, xuu31000) 30.09/12.95 new_mkBalBranch6MkBalBranch30(Branch(xuu330, xuu331, xuu332, xuu333, xuu334), xuu31, xuu34, True, h, ba) -> new_mkBalBranch6MkBalBranch110(xuu330, xuu331, xuu332, xuu333, xuu334, xuu31, xuu34, new_lt9(new_sizeFM0(xuu334, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM0(xuu333, h, ba))), h, ba) 30.09/12.95 new_compare31(xuu30000, xuu31000, ty_Float) -> new_compare19(xuu30000, xuu31000) 30.09/12.95 new_ltEs19(xuu30002, xuu31002, ty_Integer) -> new_ltEs17(xuu30002, xuu31002) 30.09/12.95 new_lt6(xuu30000, xuu31000, bcd) -> new_esEs10(new_compare13(xuu30000, xuu31000, bcd), LT) 30.09/12.95 new_compare7(Integer(xuu30000), Integer(xuu31000)) -> new_primCmpInt(xuu30000, xuu31000) 30.09/12.95 new_compare10(xuu134, xuu135, False, cbe) -> GT 30.09/12.95 new_mkBalBranch6MkBalBranch30(xuu33, xuu31, xuu34, False, h, ba) -> new_mkBranch(Succ(Zero), Nothing, xuu31, xuu33, xuu34, app(ty_Maybe, h), ba) 30.09/12.95 new_compare11(xuu30000, xuu31000, False, fg, fh) -> GT 30.09/12.95 new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False 30.09/12.95 new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False 30.09/12.95 new_compare24(xuu300, xuu310, True, bd) -> EQ 30.09/12.95 new_esEs19(xuu40000, xuu3000, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.09/12.95 new_esEs19(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.09/12.95 new_compare24(Just(xuu3000), Just(xuu3100), False, bd) -> new_compare10(xuu3000, xuu3100, new_ltEs18(xuu3000, xuu3100, bd), bd) 30.09/12.95 new_esEs18(xuu40000, xuu3000, app(ty_Ratio, ha)) -> new_esEs13(xuu40000, xuu3000, ha) 30.09/12.95 new_compare31(xuu30000, xuu31000, ty_Int) -> new_compare6(xuu30000, xuu31000) 30.09/12.95 new_ltEs20(xuu30001, xuu31001, app(ty_Ratio, ddh)) -> new_ltEs10(xuu30001, xuu31001, ddh) 30.09/12.95 new_primCmpInt0(EmptyFM, xuu300, xuu31, xuu34, h, ba) -> new_primCmpInt(new_primPlusInt(Pos(Zero), new_mkBalBranch6Size_r(EmptyFM, xuu300, xuu31, xuu34, h, ba)), Pos(Succ(Succ(Zero)))) 30.09/12.95 new_esEs6(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, dah), dba), dbb)) -> new_esEs4(xuu40000, xuu3000, dah, dba, dbb) 30.09/12.95 new_esEs5(Right(xuu40000), Right(xuu3000), ec, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.09/12.95 new_mkBalBranch6MkBalBranch01(xuu33, xuu31, xuu340, xuu341, xuu342, xuu343, xuu344, True, h, ba) -> new_mkBranch(Succ(Succ(Zero)), xuu340, xuu341, new_mkBranch(Succ(Succ(Succ(Zero))), Nothing, xuu31, xuu33, xuu343, app(ty_Maybe, h), ba), xuu344, app(ty_Maybe, h), ba) 30.09/12.95 new_esEs26(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.09/12.95 new_esEs5(Right(xuu40000), Right(xuu3000), ec, app(app(ty_@2, ed), ee)) -> new_esEs7(xuu40000, xuu3000, ed, ee) 30.09/12.95 new_ltEs18(xuu3000, xuu3100, ty_Double) -> new_ltEs14(xuu3000, xuu3100) 30.09/12.95 new_esEs26(xuu40000, xuu3000, app(ty_[], bgh)) -> new_esEs16(xuu40000, xuu3000, bgh) 30.09/12.95 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Ordering, db) -> new_esEs10(xuu40000, xuu3000) 30.09/12.95 new_esEs24(xuu30001, xuu31001, app(app(ty_Either, cgf), cgg)) -> new_esEs5(xuu30001, xuu31001, cgf, cgg) 30.09/12.95 new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) 30.09/12.95 new_primCmpInt(Neg(Zero), Pos(Succ(xuu3100))) -> LT 30.09/12.95 new_compare9(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Integer) -> new_compare7(new_sr0(xuu30000, xuu31001), new_sr0(xuu31000, xuu30001)) 30.09/12.95 new_compare19(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.09/12.95 new_primMulInt(Pos(xuu400000), Pos(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) 30.09/12.95 new_esEs29(xuu4000, xuu300, ty_Float) -> new_esEs8(xuu4000, xuu300) 30.09/12.95 new_esEs18(xuu40000, xuu3000, app(ty_[], hc)) -> new_esEs16(xuu40000, xuu3000, hc) 30.09/12.95 new_ltEs19(xuu30002, xuu31002, app(ty_Ratio, dab)) -> new_ltEs10(xuu30002, xuu31002, dab) 30.09/12.95 new_esEs24(xuu30001, xuu31001, ty_Ordering) -> new_esEs10(xuu30001, xuu31001) 30.09/12.95 new_ltEs14(xuu3000, xuu3100) -> new_fsEs(new_compare5(xuu3000, xuu3100)) 30.09/12.95 new_compare10(xuu134, xuu135, True, cbe) -> LT 30.09/12.95 new_esEs5(Right(xuu40000), Right(xuu3000), ec, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs4(xuu40000, xuu3000, ef, eg, eh) 30.09/12.95 new_esEs24(xuu30001, xuu31001, app(ty_Maybe, cha)) -> new_esEs6(xuu30001, xuu31001, cha) 30.09/12.95 new_mkBalBranch6MkBalBranch50(xuu33, xuu31, xuu34, True, h, ba) -> new_mkBranch(Zero, Nothing, xuu31, xuu33, xuu34, app(ty_Maybe, h), ba) 30.09/12.95 new_mkBalBranch6MkBalBranch010(xuu25, xuu300, xuu31, xuu340, xuu341, xuu342, Branch(xuu3430, xuu3431, xuu3432, xuu3433, xuu3434), xuu344, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), xuu3430, xuu3431, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Zero))))), Just(xuu300), xuu31, xuu25, xuu3433, app(ty_Maybe, h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), xuu340, xuu341, xuu3434, xuu344, app(ty_Maybe, h), ba), app(ty_Maybe, h), ba) 30.09/12.95 new_mkBalBranch6Size_r(xuu25, xuu300, xuu31, xuu34, h, ba) -> new_sizeFM0(xuu34, h, ba) 30.09/12.95 new_primMulNat0(Succ(xuu4000000), Zero) -> Zero 30.09/12.95 new_primMulNat0(Zero, Succ(xuu300100)) -> Zero 30.09/12.95 new_ltEs11(False, False) -> True 30.09/12.95 new_compare31(xuu30000, xuu31000, ty_Bool) -> new_compare12(xuu30000, xuu31000) 30.09/12.95 new_esEs7(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), hd, he) -> new_asAs(new_esEs19(xuu40000, xuu3000, hd), new_esEs20(xuu40001, xuu3001, he)) 30.09/12.95 new_esEs24(xuu30001, xuu31001, ty_Char) -> new_esEs12(xuu30001, xuu31001) 30.09/12.95 new_lt13(xuu30000, xuu31000, ty_Bool) -> new_lt15(xuu30000, xuu31000) 30.09/12.95 new_primPlusInt(Pos(xuu2520), Pos(xuu940)) -> Pos(new_primPlusNat1(xuu2520, xuu940)) 30.09/12.95 new_addToFM_C0(Branch(Just(xuu300), xuu31, xuu32, xuu33, xuu34), Nothing, xuu401, h, ba) -> new_addToFM_C22(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, new_esEs10(new_compare24(Nothing, Just(xuu300), False, h), LT), h, ba) 30.09/12.95 new_esEs30(xuu19, xuu14, ty_Float) -> new_esEs8(xuu19, xuu14) 30.09/12.95 new_addListToFM_CAdd(xuu3, @2(xuu400, xuu401), h, ba) -> new_addToFM_C0(xuu3, xuu400, xuu401, h, ba) 30.09/12.95 new_mkBalBranch6MkBalBranch010(xuu25, xuu300, xuu31, xuu340, xuu341, xuu342, xuu343, xuu344, True, h, ba) -> new_mkBranch(Succ(Succ(Zero)), xuu340, xuu341, new_mkBranch(Succ(Succ(Succ(Zero))), Just(xuu300), xuu31, xuu25, xuu343, app(ty_Maybe, h), ba), xuu344, app(ty_Maybe, h), ba) 30.09/12.95 new_compare9(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Int) -> new_compare6(new_sr(xuu30000, xuu31001), new_sr(xuu31000, xuu30001)) 30.09/12.95 new_esEs18(xuu40000, xuu3000, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.09/12.95 new_compare27(xuu30000, xuu31000, False, bcb, bcc) -> new_compare110(xuu30000, xuu31000, new_ltEs13(xuu30000, xuu31000, bcb, bcc), bcb, bcc) 30.09/12.95 new_ltEs17(xuu3000, xuu3100) -> new_fsEs(new_compare7(xuu3000, xuu3100)) 30.09/12.95 new_ltEs18(xuu3000, xuu3100, ty_@0) -> new_ltEs8(xuu3000, xuu3100) 30.09/12.95 new_lt20(xuu30000, xuu31000, app(app(app(ty_@3, dca), dcb), dcc)) -> new_lt11(xuu30000, xuu31000, dca, dcb, dcc) 30.09/12.95 new_compare24(Just(xuu3000), Nothing, False, bd) -> GT 30.09/12.95 new_esEs5(Left(xuu40000), Left(xuu3000), app(app(ty_Either, df), dg), db) -> new_esEs5(xuu40000, xuu3000, df, dg) 30.09/12.95 new_compare19(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.09/12.95 new_primCmpNat0(Zero, xuu3000) -> LT 30.09/12.95 new_esEs5(Right(xuu40000), Right(xuu3000), ec, app(ty_Maybe, fd)) -> new_esEs6(xuu40000, xuu3000, fd) 30.09/12.95 new_esEs18(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.09/12.95 new_esEs22(xuu40001, xuu3001, ty_Int) -> new_esEs9(xuu40001, xuu3001) 30.09/12.95 new_lt8(xuu30000, xuu31000, fg, fh) -> new_esEs10(new_compare18(xuu30000, xuu31000, fg, fh), LT) 30.09/12.95 new_lt15(xuu30000, xuu31000) -> new_esEs10(new_compare12(xuu30000, xuu31000), LT) 30.09/12.95 new_compare111(xuu30000, xuu31000, True) -> LT 30.09/12.95 new_esEs27(xuu40001, xuu3001, ty_Float) -> new_esEs8(xuu40001, xuu3001) 30.09/12.95 new_lt14(xuu30000, xuu31000, cbf) -> new_esEs10(new_compare(xuu30000, xuu31000, cbf), LT) 30.09/12.95 new_compare31(xuu30000, xuu31000, app(ty_Ratio, bdf)) -> new_compare9(xuu30000, xuu31000, bdf) 30.09/12.95 new_lt13(xuu30000, xuu31000, ty_Float) -> new_lt10(xuu30000, xuu31000) 30.09/12.95 new_esEs20(xuu40001, xuu3001, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs4(xuu40001, xuu3001, bbb, bbc, bbd) 30.09/12.95 new_ltEs11(True, True) -> True 30.09/12.95 new_ltEs16(xuu3000, xuu3100) -> new_fsEs(new_compare19(xuu3000, xuu3100)) 30.09/12.95 new_addToFM_C24(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba) -> new_addToFM_C13(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs10(new_compare24(Just(xuu4000), Nothing, False, h), GT), h, ba) 30.09/12.95 new_primPlusNat1(Succ(xuu25200), Zero) -> Succ(xuu25200) 30.09/12.95 new_primPlusNat1(Zero, Succ(xuu9400)) -> Succ(xuu9400) 30.09/12.95 new_esEs30(xuu19, xuu14, ty_@0) -> new_esEs14(xuu19, xuu14) 30.09/12.95 new_ltEs4(Right(xuu30000), Right(xuu31000), ca, ty_Ordering) -> new_ltEs15(xuu30000, xuu31000) 30.09/12.95 new_mkBalBranch0(xuu300, xuu31, xuu25, xuu34, h, ba) -> new_mkBalBranch6MkBalBranch5(xuu25, xuu300, xuu31, xuu34, new_esEs10(new_primCmpInt0(xuu25, xuu300, xuu31, xuu34, h, ba), LT), h, ba) 30.09/12.95 new_lt13(xuu30000, xuu31000, ty_Ordering) -> new_lt18(xuu30000, xuu31000) 30.09/12.95 new_esEs16([], [], ga) -> True 30.09/12.95 new_ltEs12(Just(xuu30000), Just(xuu31000), app(app(app(ty_@3, bec), bed), bee)) -> new_ltEs6(xuu30000, xuu31000, bec, bed, bee) 30.09/12.95 new_ltEs20(xuu30001, xuu31001, ty_Double) -> new_ltEs14(xuu30001, xuu31001) 30.09/12.95 new_esEs23(xuu30000, xuu31000, ty_Ordering) -> new_esEs10(xuu30000, xuu31000) 30.09/12.95 new_lt12(xuu30001, xuu31001, ty_Float) -> new_lt10(xuu30001, xuu31001) 30.09/12.95 new_ltEs12(Just(xuu30000), Just(xuu31000), app(ty_Maybe, bfa)) -> new_ltEs12(xuu30000, xuu31000, bfa) 30.09/12.95 new_esEs29(xuu4000, xuu300, ty_@0) -> new_esEs14(xuu4000, xuu300) 30.09/12.95 new_primMulInt(Neg(xuu400000), Neg(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) 30.09/12.95 new_primCmpInt1(EmptyFM, xuu31, xuu34, h, ba) -> new_primCmpInt(new_primPlusInt(Pos(Zero), new_mkBalBranch6Size_r0(EmptyFM, xuu31, xuu34, h, ba)), Pos(Succ(Succ(Zero)))) 30.09/12.95 new_esEs20(xuu40001, xuu3001, ty_Double) -> new_esEs17(xuu40001, xuu3001) 30.09/12.95 new_esEs25(xuu30000, xuu31000, app(app(ty_@2, dch), dda)) -> new_esEs7(xuu30000, xuu31000, dch, dda) 30.09/12.95 new_esEs25(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) 30.09/12.95 new_lt20(xuu30000, xuu31000, app(ty_Ratio, dcf)) -> new_lt5(xuu30000, xuu31000, dcf) 30.09/12.95 new_addListToFM0(xuu31, xuu401, ba) -> xuu401 30.09/12.95 new_compare([], :(xuu31000, xuu31001), be) -> LT 30.09/12.95 new_esEs28(xuu40002, xuu3002, ty_Integer) -> new_esEs15(xuu40002, xuu3002) 30.09/12.95 new_ltEs19(xuu30002, xuu31002, app(app(ty_@2, dad), dae)) -> new_ltEs13(xuu30002, xuu31002, dad, dae) 30.09/12.95 new_esEs6(Just(xuu40000), Just(xuu3000), app(ty_Maybe, dbf)) -> new_esEs6(xuu40000, xuu3000, dbf) 30.09/12.95 new_primCmpInt0(Branch(xuu250, xuu251, xuu252, xuu253, xuu254), xuu300, xuu31, xuu34, h, ba) -> new_primCmpInt(new_primPlusInt(xuu252, new_mkBalBranch6Size_r(Branch(xuu250, xuu251, xuu252, xuu253, xuu254), xuu300, xuu31, xuu34, h, ba)), Pos(Succ(Succ(Zero)))) 30.09/12.95 new_esEs6(Nothing, Just(xuu3000), cga) -> False 30.09/12.95 new_esEs6(Just(xuu40000), Nothing, cga) -> False 30.09/12.95 new_ltEs11(False, True) -> True 30.09/12.95 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Float, cb) -> new_ltEs16(xuu30000, xuu31000) 30.09/12.95 new_ltEs4(Right(xuu30000), Right(xuu31000), ca, ty_@0) -> new_ltEs8(xuu30000, xuu31000) 30.09/12.95 new_ltEs19(xuu30002, xuu31002, ty_@0) -> new_ltEs8(xuu30002, xuu31002) 30.09/12.95 new_ltEs15(EQ, GT) -> True 30.09/12.95 new_esEs24(xuu30001, xuu31001, ty_Bool) -> new_esEs11(xuu30001, xuu31001) 30.09/12.95 new_esEs6(Nothing, Nothing, cga) -> True 30.09/12.95 new_addToFM_C16(xuu31, xuu32, xuu33, xuu34, xuu401, False, h, ba) -> Branch(Nothing, new_addListToFM0(xuu31, xuu401, ba), xuu32, xuu33, xuu34) 30.09/12.95 new_ltEs18(xuu3000, xuu3100, ty_Char) -> new_ltEs9(xuu3000, xuu3100) 30.09/12.95 new_esEs11(False, False) -> True 30.09/12.95 new_esEs10(LT, LT) -> True 30.09/12.95 new_ltEs18(xuu3000, xuu3100, ty_Ordering) -> new_ltEs15(xuu3000, xuu3100) 30.09/12.95 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Int, cb) -> new_ltEs7(xuu30000, xuu31000) 30.09/12.95 new_esEs21(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.09/12.95 new_mkBalBranch6MkBalBranch11(xuu250, xuu251, xuu252, xuu253, EmptyFM, xuu300, xuu31, xuu34, False, h, ba) -> error([]) 30.09/12.95 new_ltEs20(xuu30001, xuu31001, app(app(ty_@2, deb), dec)) -> new_ltEs13(xuu30001, xuu31001, deb, dec) 30.09/12.95 new_primCmpNat2(xuu3000, Zero) -> GT 30.09/12.95 new_esEs28(xuu40002, xuu3002, ty_Float) -> new_esEs8(xuu40002, xuu3002) 30.09/12.95 new_lt4(xuu30000, xuu31000) -> new_esEs10(new_compare8(xuu30000, xuu31000), LT) 30.09/12.95 new_compare6(xuu30, xuu31) -> new_primCmpInt(xuu30, xuu31) 30.09/12.95 new_compare31(xuu30000, xuu31000, app(ty_Maybe, bdg)) -> new_compare13(xuu30000, xuu31000, bdg) 30.09/12.95 new_mkBalBranch6MkBalBranch5(xuu25, xuu300, xuu31, xuu34, False, h, ba) -> new_mkBalBranch6MkBalBranch4(xuu25, xuu300, xuu31, xuu34, new_gt(new_mkBalBranch6Size_r(xuu25, xuu300, xuu31, xuu34, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_l0(xuu25, xuu300, xuu31, xuu34, h, ba))), h, ba) 30.09/12.95 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.09/12.95 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Bool, db) -> new_esEs11(xuu40000, xuu3000) 30.09/12.95 new_lt13(xuu30000, xuu31000, ty_Int) -> new_lt9(xuu30000, xuu31000) 30.09/12.95 new_esEs16(:(xuu40000, xuu40001), :(xuu3000, xuu3001), ga) -> new_asAs(new_esEs18(xuu40000, xuu3000, ga), new_esEs16(xuu40001, xuu3001, ga)) 30.09/12.95 new_compare30(xuu30000, xuu31000) -> new_compare210(xuu30000, xuu31000, new_esEs10(xuu30000, xuu31000)) 30.09/12.95 new_ltEs19(xuu30002, xuu31002, ty_Char) -> new_ltEs9(xuu30002, xuu31002) 30.09/12.95 new_lt12(xuu30001, xuu31001, ty_Bool) -> new_lt15(xuu30001, xuu31001) 30.09/12.95 new_compare31(xuu30000, xuu31000, ty_Integer) -> new_compare7(xuu30000, xuu31000) 30.09/12.95 new_ltEs12(Just(xuu30000), Just(xuu31000), app(ty_[], beb)) -> new_ltEs5(xuu30000, xuu31000, beb) 30.09/12.95 new_esEs26(xuu40000, xuu3000, app(app(app(ty_@3, bga), bgb), bgc)) -> new_esEs4(xuu40000, xuu3000, bga, bgb, bgc) 30.09/12.95 new_primMulInt(Pos(xuu400000), Neg(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) 30.09/12.95 new_primMulInt(Neg(xuu400000), Pos(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) 30.09/12.95 new_esEs12(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) 30.09/12.95 new_esEs19(xuu40000, xuu3000, app(app(ty_Either, bac), bad)) -> new_esEs5(xuu40000, xuu3000, bac, bad) 30.09/12.95 new_addToFM_C15(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, cec, ced) -> new_mkBalBranch0(xuu14, xuu15, xuu17, new_addToFM_C0(xuu18, Just(xuu19), xuu20, cec, ced), cec, ced) 30.09/12.95 new_esEs26(xuu40000, xuu3000, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.09/12.95 new_lt17(xuu30000, xuu31000) -> new_esEs10(new_compare5(xuu30000, xuu31000), LT) 30.09/12.95 new_esEs20(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) 30.09/12.95 new_ltEs20(xuu30001, xuu31001, ty_@0) -> new_ltEs8(xuu30001, xuu31001) 30.09/12.95 new_ltEs4(Right(xuu30000), Right(xuu31000), ca, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_ltEs6(xuu30000, xuu31000, cdb, cdc, cdd) 30.09/12.95 new_ltEs4(Right(xuu30000), Right(xuu31000), ca, app(app(ty_Either, cde), cdf)) -> new_ltEs4(xuu30000, xuu31000, cde, cdf) 30.09/12.95 new_ltEs4(Left(xuu30000), Left(xuu31000), app(ty_[], cbg), cb) -> new_ltEs5(xuu30000, xuu31000, cbg) 30.09/12.95 new_primCmpNat1(Succ(xuu30000), Zero) -> GT 30.09/12.95 new_esEs27(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) 30.09/12.95 new_ltEs4(Right(xuu30000), Right(xuu31000), ca, ty_Integer) -> new_ltEs17(xuu30000, xuu31000) 30.09/12.95 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Ordering) -> new_ltEs15(xuu30000, xuu31000) 30.09/12.95 new_compare14(xuu30000, xuu31000, False) -> GT 30.09/12.95 new_ltEs19(xuu30002, xuu31002, ty_Double) -> new_ltEs14(xuu30002, xuu31002) 30.09/12.95 new_primPlusInt(Neg(xuu2520), Neg(xuu940)) -> Neg(new_primPlusNat1(xuu2520, xuu940)) 30.09/12.95 new_sr0(Integer(xuu300000), Integer(xuu310010)) -> Integer(new_primMulInt(xuu300000, xuu310010)) 30.09/12.95 new_ltEs9(xuu3000, xuu3100) -> new_fsEs(new_compare17(xuu3000, xuu3100)) 30.09/12.95 new_primCmpNat2(xuu3000, Succ(xuu3100)) -> new_primCmpNat1(xuu3000, xuu3100) 30.09/12.95 new_mkBalBranch6MkBalBranch5(xuu25, xuu300, xuu31, xuu34, True, h, ba) -> new_mkBranch(Zero, Just(xuu300), xuu31, xuu25, xuu34, app(ty_Maybe, h), ba) 30.09/12.95 new_esEs28(xuu40002, xuu3002, ty_@0) -> new_esEs14(xuu40002, xuu3002) 30.09/12.95 new_ltEs15(LT, GT) -> True 30.09/12.95 new_ltEs20(xuu30001, xuu31001, app(app(ty_Either, ddf), ddg)) -> new_ltEs4(xuu30001, xuu31001, ddf, ddg) 30.09/12.95 new_ltEs4(Right(xuu30000), Right(xuu31000), ca, app(ty_[], cda)) -> new_ltEs5(xuu30000, xuu31000, cda) 30.09/12.95 new_esEs29(xuu4000, xuu300, ty_Integer) -> new_esEs15(xuu4000, xuu300) 30.09/12.95 new_esEs20(xuu40001, xuu3001, app(ty_Ratio, bbg)) -> new_esEs13(xuu40001, xuu3001, bbg) 30.09/12.95 new_esEs20(xuu40001, xuu3001, ty_Int) -> new_esEs9(xuu40001, xuu3001) 30.09/12.95 new_esEs30(xuu19, xuu14, ty_Integer) -> new_esEs15(xuu19, xuu14) 30.09/12.95 new_esEs15(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) 30.09/12.95 new_esEs25(xuu30000, xuu31000, app(ty_Ratio, dcf)) -> new_esEs13(xuu30000, xuu31000, dcf) 30.09/12.95 new_mkBalBranch(xuu31, xuu33, xuu34, h, ba) -> new_mkBalBranch6MkBalBranch50(xuu33, xuu31, xuu34, new_esEs10(new_primCmpInt1(xuu33, xuu31, xuu34, h, ba), LT), h, ba) 30.09/12.95 new_esEs25(xuu30000, xuu31000, ty_Bool) -> new_esEs11(xuu30000, xuu31000) 30.09/12.95 new_compare31(xuu30000, xuu31000, app(ty_[], bch)) -> new_compare(xuu30000, xuu31000, bch) 30.09/12.95 new_esEs25(xuu30000, xuu31000, ty_Int) -> new_esEs9(xuu30000, xuu31000) 30.09/12.95 new_asAs(True, xuu141) -> xuu141 30.09/12.95 new_esEs5(Right(xuu40000), Right(xuu3000), ec, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.09/12.95 new_ltEs13(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), ce, cf) -> new_pePe(new_lt20(xuu30000, xuu31000, ce), new_asAs(new_esEs25(xuu30000, xuu31000, ce), new_ltEs20(xuu30001, xuu31001, cf))) 30.09/12.95 new_esEs18(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.09/12.95 new_ltEs4(Right(xuu30000), Right(xuu31000), ca, ty_Bool) -> new_ltEs11(xuu30000, xuu31000) 30.09/12.95 new_esEs24(xuu30001, xuu31001, ty_@0) -> new_esEs14(xuu30001, xuu31001) 30.09/12.95 new_compare31(xuu30000, xuu31000, app(app(ty_@2, bdh), bea)) -> new_compare15(xuu30000, xuu31000, bdh, bea) 30.09/12.95 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Integer, db) -> new_esEs15(xuu40000, xuu3000) 30.09/12.95 new_lt12(xuu30001, xuu31001, ty_Ordering) -> new_lt18(xuu30001, xuu31001) 30.09/12.95 new_compare18(xuu30000, xuu31000, fg, fh) -> new_compare25(xuu30000, xuu31000, new_esEs5(xuu30000, xuu31000, fg, fh), fg, fh) 30.09/12.95 new_lt13(xuu30000, xuu31000, app(app(ty_Either, fg), fh)) -> new_lt8(xuu30000, xuu31000, fg, fh) 30.09/12.95 new_esEs19(xuu40000, xuu3000, app(ty_Ratio, bae)) -> new_esEs13(xuu40000, xuu3000, bae) 30.09/12.95 new_mkBalBranch6MkBalBranch110(xuu330, xuu331, xuu332, xuu333, xuu334, xuu31, xuu34, True, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), xuu330, xuu331, xuu333, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), Nothing, xuu31, xuu334, xuu34, app(ty_Maybe, h), ba), app(ty_Maybe, h), ba) 30.09/12.95 new_ltEs20(xuu30001, xuu31001, ty_Char) -> new_ltEs9(xuu30001, xuu31001) 30.09/12.95 new_primMinusNat0(Zero, Zero) -> Pos(Zero) 30.09/12.95 new_esEs24(xuu30001, xuu31001, ty_Integer) -> new_esEs15(xuu30001, xuu31001) 30.09/12.95 new_esEs19(xuu40000, xuu3000, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.09/12.95 new_esEs29(xuu4000, xuu300, app(ty_[], ga)) -> new_esEs16(xuu4000, xuu300, ga) 30.09/12.95 new_ltEs20(xuu30001, xuu31001, ty_Float) -> new_ltEs16(xuu30001, xuu31001) 30.09/12.95 new_lt13(xuu30000, xuu31000, ty_@0) -> new_lt4(xuu30000, xuu31000) 30.09/12.95 new_primPlusInt(Pos(xuu2520), Neg(xuu940)) -> new_primMinusNat0(xuu2520, xuu940) 30.09/12.95 new_primPlusInt(Neg(xuu2520), Pos(xuu940)) -> new_primMinusNat0(xuu940, xuu2520) 30.09/12.95 new_compare12(xuu30000, xuu31000) -> new_compare26(xuu30000, xuu31000, new_esEs11(xuu30000, xuu31000)) 30.09/12.95 new_esEs19(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.09/12.95 new_esEs18(xuu40000, xuu3000, app(app(ty_@2, gb), gc)) -> new_esEs7(xuu40000, xuu3000, gb, gc) 30.09/12.95 new_esEs24(xuu30001, xuu31001, app(app(ty_@2, chb), chc)) -> new_esEs7(xuu30001, xuu31001, chb, chc) 30.09/12.95 new_esEs30(xuu19, xuu14, app(app(ty_@2, cee), cef)) -> new_esEs7(xuu19, xuu14, cee, cef) 30.09/12.95 new_lt12(xuu30001, xuu31001, app(ty_[], cgb)) -> new_lt14(xuu30001, xuu31001, cgb) 30.09/12.95 new_esEs29(xuu4000, xuu300, app(app(ty_Either, ec), db)) -> new_esEs5(xuu4000, xuu300, ec, db) 30.09/12.95 new_ltEs18(xuu3000, xuu3100, app(app(ty_@2, ce), cf)) -> new_ltEs13(xuu3000, xuu3100, ce, cf) 30.09/12.95 new_lt20(xuu30000, xuu31000, ty_Char) -> new_lt7(xuu30000, xuu31000) 30.09/12.95 new_compare15(xuu30000, xuu31000, bcb, bcc) -> new_compare27(xuu30000, xuu31000, new_esEs7(xuu30000, xuu31000, bcb, bcc), bcb, bcc) 30.09/12.95 new_primCompAux00(xuu182, EQ) -> xuu182 30.09/12.95 new_mkBalBranch6MkBalBranch4(xuu25, xuu300, xuu31, EmptyFM, True, h, ba) -> error([]) 30.09/12.95 new_sr(xuu40000, xuu3001) -> new_primMulInt(xuu40000, xuu3001) 30.09/12.95 new_lt12(xuu30001, xuu31001, app(ty_Maybe, cha)) -> new_lt6(xuu30001, xuu31001, cha) 30.09/12.95 new_esEs25(xuu30000, xuu31000, ty_Integer) -> new_esEs15(xuu30000, xuu31000) 30.09/12.95 new_primMulNat0(Zero, Zero) -> Zero 30.09/12.95 new_lt13(xuu30000, xuu31000, app(app(ty_@2, bcb), bcc)) -> new_lt16(xuu30000, xuu31000, bcb, bcc) 30.09/12.95 new_esEs30(xuu19, xuu14, app(ty_[], cff)) -> new_esEs16(xuu19, xuu14, cff) 30.09/12.95 new_esEs24(xuu30001, xuu31001, app(ty_[], cgb)) -> new_esEs16(xuu30001, xuu31001, cgb) 30.09/12.95 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Int, db) -> new_esEs9(xuu40000, xuu3000) 30.09/12.95 new_esEs23(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) 30.09/12.95 new_compare111(xuu30000, xuu31000, False) -> GT 30.09/12.95 new_primCmpNat1(Zero, Zero) -> EQ 30.09/12.95 new_ltEs20(xuu30001, xuu31001, app(ty_Maybe, dea)) -> new_ltEs12(xuu30001, xuu31001, dea) 30.09/12.95 new_esEs30(xuu19, xuu14, ty_Int) -> new_esEs9(xuu19, xuu14) 30.09/12.95 new_addToFM_C22(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, False, h, ba) -> new_addToFM_C14(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, new_esEs10(new_compare24(Nothing, Just(xuu300), False, h), GT), h, ba) 30.09/12.95 new_esEs23(xuu30000, xuu31000, app(app(ty_@2, bcb), bcc)) -> new_esEs7(xuu30000, xuu31000, bcb, bcc) 30.09/12.95 new_compare28(xuu30000, xuu31000, True, bce, bcf, bcg) -> EQ 30.09/12.95 new_ltEs18(xuu3000, xuu3100, app(app(ty_Either, ca), cb)) -> new_ltEs4(xuu3000, xuu3100, ca, cb) 30.09/12.95 new_lt20(xuu30000, xuu31000, ty_Float) -> new_lt10(xuu30000, xuu31000) 30.09/12.95 new_esEs20(xuu40001, xuu3001, app(app(ty_Either, bbe), bbf)) -> new_esEs5(xuu40001, xuu3001, bbe, bbf) 30.09/12.95 new_ltEs11(True, False) -> False 30.09/12.95 new_esEs5(Right(xuu40000), Right(xuu3000), ec, app(app(ty_Either, fa), fb)) -> new_esEs5(xuu40000, xuu3000, fa, fb) 30.09/12.95 new_esEs19(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.09/12.95 new_ltEs15(EQ, EQ) -> True 30.09/12.95 new_esEs26(xuu40000, xuu3000, app(ty_Maybe, bgg)) -> new_esEs6(xuu40000, xuu3000, bgg) 30.09/12.95 new_addToFM_C23(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, cec, ced) -> new_mkBalBranch0(xuu14, xuu15, new_addToFM_C0(xuu17, Just(xuu19), xuu20, cec, ced), xuu18, cec, ced) 30.09/12.95 new_fsEs(xuu151) -> new_not(new_esEs10(xuu151, GT)) 30.09/12.95 new_esEs26(xuu40000, xuu3000, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.09/12.95 new_esEs30(xuu19, xuu14, app(ty_Ratio, cfd)) -> new_esEs13(xuu19, xuu14, cfd) 30.09/12.95 new_esEs24(xuu30001, xuu31001, app(ty_Ratio, cgh)) -> new_esEs13(xuu30001, xuu31001, cgh) 30.09/12.95 new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.09/12.95 new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.09/12.95 new_ltEs18(xuu3000, xuu3100, app(ty_Ratio, cc)) -> new_ltEs10(xuu3000, xuu3100, cc) 30.09/12.95 new_lt12(xuu30001, xuu31001, ty_@0) -> new_lt4(xuu30001, xuu31001) 30.09/12.95 new_esEs6(Just(xuu40000), Just(xuu3000), app(app(ty_@2, daf), dag)) -> new_esEs7(xuu40000, xuu3000, daf, dag) 30.09/12.95 new_gt(xuu88, xuu87) -> new_esEs10(new_compare6(xuu88, xuu87), GT) 30.09/12.95 new_mkBalBranch6MkBalBranch40(xuu33, xuu31, EmptyFM, True, h, ba) -> error([]) 30.09/12.95 new_esEs18(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.09/12.95 new_mkBalBranch6MkBalBranch3(EmptyFM, xuu300, xuu31, xuu34, True, h, ba) -> error([]) 30.09/12.95 new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False 30.09/12.95 new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False 30.09/12.95 new_esEs29(xuu4000, xuu300, app(ty_Ratio, cfh)) -> new_esEs13(xuu4000, xuu300, cfh) 30.09/12.95 new_esEs24(xuu30001, xuu31001, ty_Int) -> new_esEs9(xuu30001, xuu31001) 30.09/12.95 new_esEs25(xuu30000, xuu31000, app(ty_Maybe, dcg)) -> new_esEs6(xuu30000, xuu31000, dcg) 30.09/12.95 new_compare([], [], be) -> EQ 30.09/12.95 new_ltEs15(LT, EQ) -> True 30.09/12.95 new_esEs20(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) 30.09/12.95 new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) 30.09/12.95 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.09/12.95 new_esEs20(xuu40001, xuu3001, app(ty_[], bca)) -> new_esEs16(xuu40001, xuu3001, bca) 30.09/12.95 new_esEs28(xuu40002, xuu3002, app(app(ty_@2, cac), cad)) -> new_esEs7(xuu40002, xuu3002, cac, cad) 30.09/12.95 new_ltEs4(Left(xuu30000), Left(xuu31000), app(app(ty_Either, ccc), ccd), cb) -> new_ltEs4(xuu30000, xuu31000, ccc, ccd) 30.09/12.95 new_lt13(xuu30000, xuu31000, app(ty_[], cbf)) -> new_lt14(xuu30000, xuu31000, cbf) 30.09/12.95 new_esEs25(xuu30000, xuu31000, app(app(ty_Either, dcd), dce)) -> new_esEs5(xuu30000, xuu31000, dcd, dce) 30.09/12.95 new_esEs20(xuu40001, xuu3001, app(ty_Maybe, bbh)) -> new_esEs6(xuu40001, xuu3001, bbh) 30.09/12.95 new_ltEs19(xuu30002, xuu31002, app(ty_Maybe, dac)) -> new_ltEs12(xuu30002, xuu31002, dac) 30.09/12.95 new_esEs11(True, True) -> True 30.09/12.95 new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False 30.09/12.95 new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False 30.09/12.95 new_esEs19(xuu40000, xuu3000, app(ty_Maybe, baf)) -> new_esEs6(xuu40000, xuu3000, baf) 30.09/12.95 new_compare29(xuu30000, xuu31000, bce, bcf, bcg) -> new_compare28(xuu30000, xuu31000, new_esEs4(xuu30000, xuu31000, bce, bcf, bcg), bce, bcf, bcg) 30.09/12.95 new_compare31(xuu30000, xuu31000, ty_Double) -> new_compare5(xuu30000, xuu31000) 30.09/12.95 new_mkBalBranch6MkBalBranch3(xuu25, xuu300, xuu31, xuu34, False, h, ba) -> new_mkBranch(Succ(Zero), Just(xuu300), xuu31, xuu25, xuu34, app(ty_Maybe, h), ba) 30.09/12.95 new_esEs25(xuu30000, xuu31000, app(ty_[], dbh)) -> new_esEs16(xuu30000, xuu31000, dbh) 30.09/12.95 new_esEs19(xuu40000, xuu3000, app(ty_[], bag)) -> new_esEs16(xuu40000, xuu3000, bag) 30.09/12.95 new_esEs29(xuu4000, xuu300, ty_Int) -> new_esEs9(xuu4000, xuu300) 30.09/12.95 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 30.09/12.95 new_ltEs15(GT, GT) -> True 30.09/12.95 new_esEs26(xuu40000, xuu3000, app(app(ty_Either, bgd), bge)) -> new_esEs5(xuu40000, xuu3000, bgd, bge) 30.09/12.95 new_esEs30(xuu19, xuu14, ty_Bool) -> new_esEs11(xuu19, xuu14) 30.09/12.95 new_esEs30(xuu19, xuu14, app(ty_Maybe, cfe)) -> new_esEs6(xuu19, xuu14, cfe) 30.09/12.95 new_esEs10(LT, GT) -> False 30.09/12.95 new_esEs10(GT, LT) -> False 30.09/12.95 new_sizeFM0(Branch(xuu340, xuu341, xuu342, xuu343, xuu344), h, ba) -> xuu342 30.09/12.95 new_esEs21(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.09/12.95 new_mkBalBranch6MkBalBranch11(xuu250, xuu251, xuu252, xuu253, xuu254, xuu300, xuu31, xuu34, True, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), xuu250, xuu251, xuu253, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), Just(xuu300), xuu31, xuu254, xuu34, app(ty_Maybe, h), ba), app(ty_Maybe, h), ba) 30.09/12.95 new_ltEs10(xuu3000, xuu3100, cc) -> new_fsEs(new_compare9(xuu3000, xuu3100, cc)) 30.09/12.95 new_sizeFM(Branch(xuu2140, xuu2141, xuu2142, xuu2143, xuu2144), bb, bc) -> xuu2142 30.09/12.95 new_esEs19(xuu40000, xuu3000, app(app(ty_@2, hf), hg)) -> new_esEs7(xuu40000, xuu3000, hf, hg) 30.09/12.95 new_ltEs7(xuu3000, xuu3100) -> new_fsEs(new_compare6(xuu3000, xuu3100)) 30.09/12.95 new_ltEs12(Just(xuu30000), Just(xuu31000), app(app(ty_@2, bfb), bfc)) -> new_ltEs13(xuu30000, xuu31000, bfb, bfc) 30.09/12.96 new_esEs27(xuu40001, xuu3001, app(app(app(ty_@3, bhc), bhd), bhe)) -> new_esEs4(xuu40001, xuu3001, bhc, bhd, bhe) 30.09/12.96 new_addToFM_C16(xuu31, xuu32, xuu33, xuu34, xuu401, True, h, ba) -> new_mkBalBranch(xuu31, xuu33, new_addToFM_C0(xuu34, Nothing, xuu401, h, ba), h, ba) 30.09/12.96 new_primPlusNat0(xuu104, xuu300100) -> new_primPlusNat1(xuu104, Succ(xuu300100)) 30.09/12.96 new_not(False) -> True 30.09/12.96 new_esEs28(xuu40002, xuu3002, ty_Int) -> new_esEs9(xuu40002, xuu3002) 30.09/12.96 new_compare31(xuu30000, xuu31000, ty_Char) -> new_compare17(xuu30000, xuu31000) 30.09/12.96 new_esEs18(xuu40000, xuu3000, app(app(ty_Either, gg), gh)) -> new_esEs5(xuu40000, xuu3000, gg, gh) 30.09/12.96 new_esEs28(xuu40002, xuu3002, app(ty_Ratio, cbb)) -> new_esEs13(xuu40002, xuu3002, cbb) 30.09/12.96 new_esEs29(xuu4000, xuu300, ty_Ordering) -> new_esEs10(xuu4000, xuu300) 30.09/12.96 new_lt20(xuu30000, xuu31000, ty_@0) -> new_lt4(xuu30000, xuu31000) 30.09/12.96 new_esEs25(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) 30.09/12.96 new_esEs5(Right(xuu40000), Right(xuu3000), ec, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.09/12.96 new_compare19(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.09/12.96 new_compare19(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.09/12.96 new_lt12(xuu30001, xuu31001, app(app(ty_Either, cgf), cgg)) -> new_lt8(xuu30001, xuu31001, cgf, cgg) 30.09/12.96 new_addToFM_C14(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, False, h, ba) -> Branch(Nothing, new_addListToFM0(xuu31, xuu401, ba), xuu32, xuu33, xuu34) 30.09/12.96 new_esEs25(xuu30000, xuu31000, ty_Double) -> new_esEs17(xuu30000, xuu31000) 30.09/12.96 new_esEs5(Left(xuu40000), Right(xuu3000), ec, db) -> False 30.09/12.96 new_esEs5(Right(xuu40000), Left(xuu3000), ec, db) -> False 30.09/12.96 new_primCmpInt(Pos(Succ(xuu3000)), Pos(xuu310)) -> new_primCmpNat2(xuu3000, xuu310) 30.09/12.96 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Int) -> new_ltEs7(xuu30000, xuu31000) 30.09/12.96 new_mkBalBranch6MkBalBranch01(xuu33, xuu31, xuu340, xuu341, xuu342, EmptyFM, xuu344, False, h, ba) -> error([]) 30.09/12.96 new_lt12(xuu30001, xuu31001, ty_Integer) -> new_lt19(xuu30001, xuu31001) 30.09/12.96 new_compare27(xuu30000, xuu31000, True, bcb, bcc) -> EQ 30.09/12.96 new_mkBalBranch6MkBalBranch110(xuu330, xuu331, xuu332, xuu333, Branch(xuu3340, xuu3341, xuu3342, xuu3343, xuu3344), xuu31, xuu34, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), xuu3340, xuu3341, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), xuu330, xuu331, xuu333, xuu3343, app(ty_Maybe, h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), Nothing, xuu31, xuu3344, xuu34, app(ty_Maybe, h), ba), app(ty_Maybe, h), ba) 30.09/12.96 new_primCmpInt1(Branch(xuu330, xuu331, xuu332, xuu333, xuu334), xuu31, xuu34, h, ba) -> new_primCmpInt(new_primPlusInt(xuu332, new_mkBalBranch6Size_r0(Branch(xuu330, xuu331, xuu332, xuu333, xuu334), xuu31, xuu34, h, ba)), Pos(Succ(Succ(Zero)))) 30.09/12.96 new_esEs29(xuu4000, xuu300, app(app(ty_@2, hd), he)) -> new_esEs7(xuu4000, xuu300, hd, he) 30.09/12.96 new_esEs18(xuu40000, xuu3000, app(ty_Maybe, hb)) -> new_esEs6(xuu40000, xuu3000, hb) 30.09/12.96 new_ltEs4(Left(xuu30000), Right(xuu31000), ca, cb) -> True 30.09/12.96 new_esEs27(xuu40001, xuu3001, ty_Ordering) -> new_esEs10(xuu40001, xuu3001) 30.09/12.96 new_esEs30(xuu19, xuu14, ty_Ordering) -> new_esEs10(xuu19, xuu14) 30.09/12.96 new_mkBalBranch6Size_l0(xuu25, xuu300, xuu31, xuu34, h, ba) -> new_sizeFM0(xuu25, h, ba) 30.09/12.96 new_ltEs18(xuu3000, xuu3100, app(ty_[], be)) -> new_ltEs5(xuu3000, xuu3100, be) 30.09/12.96 new_ltEs4(Right(xuu30000), Right(xuu31000), ca, app(app(ty_@2, cea), ceb)) -> new_ltEs13(xuu30000, xuu31000, cea, ceb) 30.09/12.96 new_esEs30(xuu19, xuu14, app(app(ty_Either, cfb), cfc)) -> new_esEs5(xuu19, xuu14, cfb, cfc) 30.09/12.96 new_lt20(xuu30000, xuu31000, ty_Int) -> new_lt9(xuu30000, xuu31000) 30.09/12.96 new_lt5(xuu30000, xuu31000, cfg) -> new_esEs10(new_compare9(xuu30000, xuu31000, cfg), LT) 30.09/12.96 new_ltEs20(xuu30001, xuu31001, ty_Bool) -> new_ltEs11(xuu30001, xuu31001) 30.09/12.96 new_compare11(xuu30000, xuu31000, True, fg, fh) -> LT 30.09/12.96 new_compare16(xuu30000, xuu31000, False, bce, bcf, bcg) -> GT 30.09/12.96 new_ltEs19(xuu30002, xuu31002, ty_Int) -> new_ltEs7(xuu30002, xuu31002) 30.09/12.96 new_primCmpNat1(Zero, Succ(xuu31000)) -> LT 30.09/12.96 new_lt12(xuu30001, xuu31001, app(ty_Ratio, cgh)) -> new_lt5(xuu30001, xuu31001, cgh) 30.09/12.96 new_esEs29(xuu4000, xuu300, app(ty_Maybe, cga)) -> new_esEs6(xuu4000, xuu300, cga) 30.09/12.96 new_addToFM_C24(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba) -> new_mkBalBranch(xuu31, new_addToFM_C0(xuu33, Just(xuu4000), xuu401, h, ba), xuu34, h, ba) 30.09/12.96 new_mkBalBranch6MkBalBranch11(xuu250, xuu251, xuu252, xuu253, Branch(xuu2540, xuu2541, xuu2542, xuu2543, xuu2544), xuu300, xuu31, xuu34, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), xuu2540, xuu2541, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), xuu250, xuu251, xuu253, xuu2543, app(ty_Maybe, h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), Just(xuu300), xuu31, xuu2544, xuu34, app(ty_Maybe, h), ba), app(ty_Maybe, h), ba) 30.09/12.96 new_compare210(xuu30000, xuu31000, False) -> new_compare14(xuu30000, xuu31000, new_ltEs15(xuu30000, xuu31000)) 30.09/12.96 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 30.09/12.96 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 30.09/12.96 new_esEs25(xuu30000, xuu31000, app(app(app(ty_@3, dca), dcb), dcc)) -> new_esEs4(xuu30000, xuu31000, dca, dcb, dcc) 30.09/12.96 new_lt20(xuu30000, xuu31000, ty_Double) -> new_lt17(xuu30000, xuu31000) 30.09/12.96 new_lt18(xuu30000, xuu31000) -> new_esEs10(new_compare30(xuu30000, xuu31000), LT) 30.09/12.96 new_primPlusNat1(Zero, Zero) -> Zero 30.09/12.96 new_esEs18(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.09/12.96 new_compare31(xuu30000, xuu31000, ty_Ordering) -> new_compare30(xuu30000, xuu31000) 30.09/12.96 new_mkBalBranch6MkBalBranch4(xuu25, xuu300, xuu31, Branch(xuu340, xuu341, xuu342, xuu343, xuu344), True, h, ba) -> new_mkBalBranch6MkBalBranch010(xuu25, xuu300, xuu31, xuu340, xuu341, xuu342, xuu343, xuu344, new_lt9(new_sizeFM0(xuu343, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM0(xuu344, h, ba))), h, ba) 30.09/12.96 new_lt20(xuu30000, xuu31000, app(app(ty_@2, dch), dda)) -> new_lt16(xuu30000, xuu31000, dch, dda) 30.09/12.96 new_esEs20(xuu40001, xuu3001, ty_Bool) -> new_esEs11(xuu40001, xuu3001) 30.09/12.96 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Double, cb) -> new_ltEs14(xuu30000, xuu31000) 30.09/12.96 new_ltEs19(xuu30002, xuu31002, ty_Bool) -> new_ltEs11(xuu30002, xuu31002) 30.09/12.96 new_ltEs20(xuu30001, xuu31001, ty_Int) -> new_ltEs7(xuu30001, xuu31001) 30.09/12.96 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Float, db) -> new_esEs8(xuu40000, xuu3000) 30.09/12.96 new_ltEs12(Just(xuu30000), Just(xuu31000), app(ty_Ratio, beh)) -> new_ltEs10(xuu30000, xuu31000, beh) 30.09/12.96 new_esEs27(xuu40001, xuu3001, ty_Double) -> new_esEs17(xuu40001, xuu3001) 30.09/12.96 new_esEs24(xuu30001, xuu31001, ty_Float) -> new_esEs8(xuu30001, xuu31001) 30.09/12.96 new_ltEs15(LT, LT) -> True 30.09/12.96 new_ltEs12(Nothing, Just(xuu31000), cd) -> True 30.09/12.96 new_esEs10(EQ, GT) -> False 30.09/12.96 new_esEs10(GT, EQ) -> False 30.09/12.96 new_esEs18(xuu40000, xuu3000, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.09/12.96 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Ordering, cb) -> new_ltEs15(xuu30000, xuu31000) 30.09/12.96 new_ltEs19(xuu30002, xuu31002, app(app(ty_Either, chh), daa)) -> new_ltEs4(xuu30002, xuu31002, chh, daa) 30.09/12.96 new_esEs28(xuu40002, xuu3002, app(ty_Maybe, cbc)) -> new_esEs6(xuu40002, xuu3002, cbc) 30.09/12.96 new_mkBalBranch6MkBalBranch4(xuu25, xuu300, xuu31, xuu34, False, h, ba) -> new_mkBalBranch6MkBalBranch3(xuu25, xuu300, xuu31, xuu34, new_gt(new_mkBalBranch6Size_l0(xuu25, xuu300, xuu31, xuu34, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_r(xuu25, xuu300, xuu31, xuu34, h, ba))), h, ba) 30.09/12.96 new_esEs8(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs9(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) 30.09/12.96 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 30.09/12.96 new_addToFM_C15(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, False, cec, ced) -> Branch(Just(xuu19), new_addListToFM0(xuu15, xuu20, ced), xuu16, xuu17, xuu18) 30.09/12.96 new_primMulNat0(Succ(xuu4000000), Succ(xuu300100)) -> new_primPlusNat0(new_primMulNat0(xuu4000000, Succ(xuu300100)), xuu300100) 30.09/12.96 new_mkBalBranch6MkBalBranch30(EmptyFM, xuu31, xuu34, True, h, ba) -> error([]) 30.09/12.96 new_lt20(xuu30000, xuu31000, ty_Ordering) -> new_lt18(xuu30000, xuu31000) 30.09/12.96 new_compare31(xuu30000, xuu31000, ty_@0) -> new_compare8(xuu30000, xuu31000) 30.09/12.96 new_ltEs4(Right(xuu30000), Right(xuu31000), ca, app(ty_Maybe, cdh)) -> new_ltEs12(xuu30000, xuu31000, cdh) 30.09/12.96 new_compare16(xuu30000, xuu31000, True, bce, bcf, bcg) -> LT 30.09/12.96 new_esEs5(Right(xuu40000), Right(xuu3000), ec, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.09/12.96 new_mkBalBranch6MkBalBranch40(xuu33, xuu31, Branch(xuu340, xuu341, xuu342, xuu343, xuu344), True, h, ba) -> new_mkBalBranch6MkBalBranch01(xuu33, xuu31, xuu340, xuu341, xuu342, xuu343, xuu344, new_lt9(new_sizeFM0(xuu343, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM0(xuu344, h, ba))), h, ba) 30.09/12.96 new_esEs13(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), cfh) -> new_asAs(new_esEs21(xuu40000, xuu3000, cfh), new_esEs22(xuu40001, xuu3001, cfh)) 30.09/12.96 new_esEs27(xuu40001, xuu3001, app(ty_Maybe, caa)) -> new_esEs6(xuu40001, xuu3001, caa) 30.09/12.96 new_addToFM_C0(EmptyFM, xuu400, xuu401, h, ba) -> Branch(xuu400, xuu401, Pos(Succ(Zero)), new_emptyFM(h, ba), new_emptyFM(h, ba)) 30.09/12.96 new_esEs6(Just(xuu40000), Just(xuu3000), app(ty_[], dbg)) -> new_esEs16(xuu40000, xuu3000, dbg) 30.09/12.96 new_primMinusNat0(Zero, Succ(xuu9400)) -> Neg(Succ(xuu9400)) 30.09/12.96 new_esEs5(Left(xuu40000), Left(xuu3000), ty_@0, db) -> new_esEs14(xuu40000, xuu3000) 30.09/12.96 new_ltEs12(Nothing, Nothing, cd) -> True 30.09/12.96 new_esEs16(:(xuu40000, xuu40001), [], ga) -> False 30.09/12.96 new_esEs16([], :(xuu3000, xuu3001), ga) -> False 30.09/12.96 new_ltEs19(xuu30002, xuu31002, ty_Float) -> new_ltEs16(xuu30002, xuu31002) 30.09/12.96 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_@0, cb) -> new_ltEs8(xuu30000, xuu31000) 30.09/12.96 new_compare31(xuu30000, xuu31000, app(app(ty_Either, bdd), bde)) -> new_compare18(xuu30000, xuu31000, bdd, bde) 30.09/12.96 new_ltEs12(Just(xuu30000), Nothing, cd) -> False 30.09/12.96 new_esEs23(xuu30000, xuu31000, app(ty_[], cbf)) -> new_esEs16(xuu30000, xuu31000, cbf) 30.09/12.96 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 30.09/12.96 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 30.09/12.96 new_compare8(@0, @0) -> EQ 30.09/12.96 new_mkBalBranch6Size_r0(xuu33, xuu31, xuu34, h, ba) -> new_sizeFM0(xuu34, h, ba) 30.09/12.96 new_lt20(xuu30000, xuu31000, app(ty_Maybe, dcg)) -> new_lt6(xuu30000, xuu31000, dcg) 30.09/12.96 new_compare110(xuu30000, xuu31000, False, bcb, bcc) -> GT 30.09/12.96 new_esEs4(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), bfd, bfe, bff) -> new_asAs(new_esEs26(xuu40000, xuu3000, bfd), new_asAs(new_esEs27(xuu40001, xuu3001, bfe), new_esEs28(xuu40002, xuu3002, bff))) 30.09/12.96 new_mkBalBranch6MkBalBranch40(xuu33, xuu31, xuu34, False, h, ba) -> new_mkBalBranch6MkBalBranch30(xuu33, xuu31, xuu34, new_gt(new_mkBalBranch6Size_l(xuu33, xuu31, xuu34, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_r0(xuu33, xuu31, xuu34, h, ba))), h, ba) 30.09/12.96 new_esEs23(xuu30000, xuu31000, ty_Integer) -> new_esEs15(xuu30000, xuu31000) 30.09/12.96 new_esEs28(xuu40002, xuu3002, app(app(ty_Either, cah), cba)) -> new_esEs5(xuu40002, xuu3002, cah, cba) 30.09/12.96 new_primEqNat0(Zero, Zero) -> True 30.09/12.96 new_ltEs18(xuu3000, xuu3100, ty_Float) -> new_ltEs16(xuu3000, xuu3100) 30.09/12.96 new_esEs19(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.09/12.96 new_addToFM_C23(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, False, cec, ced) -> new_addToFM_C15(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, new_esEs10(new_compare24(Just(xuu19), Just(xuu14), new_esEs30(xuu19, xuu14, cec), cec), GT), cec, ced) 30.09/12.96 new_esEs18(xuu40000, xuu3000, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.09/12.96 new_esEs28(xuu40002, xuu3002, ty_Ordering) -> new_esEs10(xuu40002, xuu3002) 30.09/12.96 new_ltEs20(xuu30001, xuu31001, app(ty_[], ddb)) -> new_ltEs5(xuu30001, xuu31001, ddb) 30.09/12.96 new_ltEs4(Right(xuu30000), Right(xuu31000), ca, ty_Float) -> new_ltEs16(xuu30000, xuu31000) 30.09/12.96 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Integer) -> new_ltEs17(xuu30000, xuu31000) 30.09/12.96 new_esEs6(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.09/12.96 new_esEs29(xuu4000, xuu300, ty_Bool) -> new_esEs11(xuu4000, xuu300) 30.09/12.96 new_asAs(False, xuu141) -> False 30.09/12.96 new_esEs23(xuu30000, xuu31000, ty_Float) -> new_esEs8(xuu30000, xuu31000) 30.09/12.96 new_compare24(Nothing, Nothing, False, bd) -> LT 30.09/12.96 new_esEs20(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) 30.09/12.96 new_esEs26(xuu40000, xuu3000, app(ty_Ratio, bgf)) -> new_esEs13(xuu40000, xuu3000, bgf) 30.09/12.96 new_lt10(xuu30000, xuu31000) -> new_esEs10(new_compare19(xuu30000, xuu31000), LT) 30.09/12.96 new_esEs26(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.09/12.96 new_esEs23(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) 30.09/12.96 new_ltEs4(Right(xuu30000), Left(xuu31000), ca, cb) -> False 30.09/12.96 new_sizeFM0(EmptyFM, h, ba) -> Pos(Zero) 30.09/12.96 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.09/12.96 new_primCmpInt(Neg(Succ(xuu3000)), Neg(xuu310)) -> new_primCmpNat0(xuu310, xuu3000) 30.09/12.96 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.09/12.96 new_ltEs18(xuu3000, xuu3100, ty_Int) -> new_ltEs7(xuu3000, xuu3100) 30.09/12.96 new_esEs20(xuu40001, xuu3001, app(app(ty_@2, bah), bba)) -> new_esEs7(xuu40001, xuu3001, bah, bba) 30.09/12.96 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Char, cb) -> new_ltEs9(xuu30000, xuu31000) 30.09/12.96 30.09/12.96 The set Q consists of the following terms: 30.09/12.96 30.09/12.96 new_mkBalBranch6MkBalBranch010(x0, x1, x2, x3, x4, x5, EmptyFM, x6, False, x7, x8) 30.09/12.96 new_primPlusNat1(Succ(x0), Succ(x1)) 30.09/12.96 new_esEs27(x0, x1, ty_Ordering) 30.09/12.96 new_esEs19(x0, x1, ty_Bool) 30.09/12.96 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.09/12.96 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 30.09/12.96 new_ltEs4(Left(x0), Left(x1), ty_Integer, x2) 30.09/12.96 new_primPlusInt(Pos(x0), Neg(x1)) 30.09/12.96 new_primPlusInt(Neg(x0), Pos(x1)) 30.09/12.96 new_mkBalBranch6MkBalBranch110(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) 30.09/12.96 new_ltEs18(x0, x1, ty_Bool) 30.09/12.96 new_primCmpNat2(x0, Succ(x1)) 30.09/12.96 new_addToFM_C14(x0, x1, x2, x3, x4, x5, True, x6, x7) 30.09/12.96 new_lt20(x0, x1, ty_Int) 30.09/12.96 new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_sr0(Integer(x0), Integer(x1)) 30.09/12.96 new_compare15(x0, x1, x2, x3) 30.09/12.96 new_ltEs17(x0, x1) 30.09/12.96 new_mkBalBranch6MkBalBranch110(x0, x1, x2, x3, EmptyFM, x4, x5, False, x6, x7) 30.09/12.96 new_esEs23(x0, x1, ty_Char) 30.09/12.96 new_compare31(x0, x1, ty_Ordering) 30.09/12.96 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.09/12.96 new_compare24(Nothing, Nothing, False, x0) 30.09/12.96 new_primMinusNat0(Succ(x0), Succ(x1)) 30.09/12.96 new_lt20(x0, x1, ty_Ordering) 30.09/12.96 new_primCmpNat1(Succ(x0), Zero) 30.09/12.96 new_primPlusNat1(Zero, Zero) 30.09/12.96 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 30.09/12.96 new_esEs27(x0, x1, ty_Double) 30.09/12.96 new_compare([], :(x0, x1), x2) 30.09/12.96 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 30.09/12.96 new_esEs18(x0, x1, app(ty_Maybe, x2)) 30.09/12.96 new_esEs28(x0, x1, ty_Char) 30.09/12.96 new_compare31(x0, x1, ty_Int) 30.09/12.96 new_esEs25(x0, x1, ty_Char) 30.09/12.96 new_primCmpNat1(Zero, Zero) 30.09/12.96 new_esEs16([], [], x0) 30.09/12.96 new_primPlusInt(Neg(x0), Neg(x1)) 30.09/12.96 new_esEs25(x0, x1, app(ty_[], x2)) 30.09/12.96 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 30.09/12.96 new_ltEs18(x0, x1, ty_@0) 30.09/12.96 new_compare26(x0, x1, True) 30.09/12.96 new_esEs10(EQ, EQ) 30.09/12.96 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.09/12.96 new_compare31(x0, x1, ty_Char) 30.09/12.96 new_lt20(x0, x1, ty_Double) 30.09/12.96 new_ltEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.09/12.96 new_primEqInt(Pos(Zero), Pos(Zero)) 30.09/12.96 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 30.09/12.96 new_primCmpInt1(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8) 30.09/12.96 new_primMinusNat0(Zero, Zero) 30.09/12.96 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 30.09/12.96 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 30.09/12.96 new_esEs29(x0, x1, app(ty_Maybe, x2)) 30.09/12.96 new_primCompAux00(x0, GT) 30.09/12.96 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 30.09/12.96 new_esEs25(x0, x1, ty_Int) 30.09/12.96 new_lt13(x0, x1, ty_Integer) 30.09/12.96 new_esEs24(x0, x1, ty_Bool) 30.09/12.96 new_compare31(x0, x1, ty_Double) 30.09/12.96 new_emptyFM(x0, x1) 30.09/12.96 new_ltEs12(Just(x0), Just(x1), ty_Ordering) 30.09/12.96 new_esEs19(x0, x1, ty_@0) 30.09/12.96 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 30.09/12.96 new_ltEs7(x0, x1) 30.09/12.96 new_esEs30(x0, x1, ty_Integer) 30.09/12.96 new_lt12(x0, x1, app(ty_Maybe, x2)) 30.09/12.96 new_mkBalBranch6MkBalBranch4(x0, x1, x2, x3, False, x4, x5) 30.09/12.96 new_mkBalBranch6MkBalBranch4(x0, x1, x2, Branch(x3, x4, x5, x6, x7), True, x8, x9) 30.09/12.96 new_esEs25(x0, x1, ty_Ordering) 30.09/12.96 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.09/12.96 new_esEs20(x0, x1, app(ty_Ratio, x2)) 30.09/12.96 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 30.09/12.96 new_lt18(x0, x1) 30.09/12.96 new_primEqInt(Neg(Zero), Neg(Zero)) 30.09/12.96 new_ltEs12(Just(x0), Just(x1), app(ty_[], x2)) 30.09/12.96 new_compare31(x0, x1, app(ty_Ratio, x2)) 30.09/12.96 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.09/12.96 new_ltEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 30.09/12.96 new_primCmpNat0(Succ(x0), x1) 30.09/12.96 new_esEs20(x0, x1, app(ty_Maybe, x2)) 30.09/12.96 new_lt20(x0, x1, ty_Char) 30.09/12.96 new_ltEs4(Left(x0), Left(x1), ty_@0, x2) 30.09/12.96 new_esEs23(x0, x1, ty_Ordering) 30.09/12.96 new_compare210(x0, x1, True) 30.09/12.96 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 30.09/12.96 new_ltEs19(x0, x1, ty_Float) 30.09/12.96 new_sIZE_RATIO 30.09/12.96 new_esEs30(x0, x1, ty_@0) 30.09/12.96 new_lt20(x0, x1, app(ty_[], x2)) 30.09/12.96 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 30.09/12.96 new_esEs27(x0, x1, app(ty_Maybe, x2)) 30.09/12.96 new_esEs25(x0, x1, ty_@0) 30.09/12.96 new_esEs25(x0, x1, ty_Double) 30.09/12.96 new_esEs24(x0, x1, app(ty_[], x2)) 30.09/12.96 new_esEs6(Nothing, Nothing, x0) 30.09/12.96 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 30.09/12.96 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 30.09/12.96 new_ltEs4(Right(x0), Right(x1), x2, ty_Float) 30.09/12.96 new_ltEs11(True, True) 30.09/12.96 new_esEs27(x0, x1, ty_Char) 30.09/12.96 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 30.09/12.96 new_esEs13(:%(x0, x1), :%(x2, x3), x4) 30.09/12.96 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_ltEs12(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.09/12.96 new_compare14(x0, x1, True) 30.09/12.96 new_esEs6(Nothing, Just(x0), x1) 30.09/12.96 new_esEs27(x0, x1, app(ty_Ratio, x2)) 30.09/12.96 new_esEs18(x0, x1, app(ty_Ratio, x2)) 30.09/12.96 new_esEs24(x0, x1, ty_Char) 30.09/12.96 new_ltEs12(Just(x0), Just(x1), ty_Int) 30.09/12.96 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.09/12.96 new_compare30(x0, x1) 30.09/12.96 new_ltEs18(x0, x1, ty_Integer) 30.09/12.96 new_primEqInt(Pos(Zero), Neg(Zero)) 30.09/12.96 new_primEqInt(Neg(Zero), Pos(Zero)) 30.09/12.96 new_ltEs4(Left(x0), Left(x1), ty_Bool, x2) 30.09/12.96 new_ltEs9(x0, x1) 30.09/12.96 new_ltEs20(x0, x1, app(ty_[], x2)) 30.09/12.96 new_esEs27(x0, x1, ty_Int) 30.09/12.96 new_compare16(x0, x1, True, x2, x3, x4) 30.09/12.96 new_compare7(Integer(x0), Integer(x1)) 30.09/12.96 new_esEs23(x0, x1, ty_Integer) 30.09/12.96 new_ltEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.09/12.96 new_esEs26(x0, x1, ty_Ordering) 30.09/12.96 new_compare(:(x0, x1), [], x2) 30.09/12.96 new_ltEs12(Just(x0), Just(x1), ty_Char) 30.09/12.96 new_sizeFM(EmptyFM, x0, x1) 30.09/12.96 new_addToFM_C23(x0, x1, x2, x3, x4, x5, x6, False, x7, x8) 30.09/12.96 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 30.09/12.96 new_compare8(@0, @0) 30.09/12.96 new_mkBalBranch(x0, x1, x2, x3, x4) 30.09/12.96 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 30.09/12.96 new_ltEs12(Just(x0), Just(x1), ty_Double) 30.09/12.96 new_primPlusInt(Pos(x0), Pos(x1)) 30.09/12.96 new_esEs27(x0, x1, ty_@0) 30.09/12.96 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 30.09/12.96 new_primMulInt(Neg(x0), Neg(x1)) 30.09/12.96 new_compare5(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 30.09/12.96 new_compare5(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 30.09/12.96 new_addToFM_C15(x0, x1, x2, x3, x4, x5, x6, False, x7, x8) 30.09/12.96 new_esEs24(x0, x1, ty_Int) 30.09/12.96 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 30.09/12.96 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 30.09/12.96 new_esEs26(x0, x1, app(ty_Maybe, x2)) 30.09/12.96 new_esEs25(x0, x1, ty_Bool) 30.09/12.96 new_ltEs15(EQ, EQ) 30.09/12.96 new_esEs28(x0, x1, ty_Ordering) 30.09/12.96 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 30.09/12.96 new_lt12(x0, x1, ty_Integer) 30.09/12.96 new_esEs28(x0, x1, app(ty_Ratio, x2)) 30.09/12.96 new_addToFM_C24(x0, x1, x2, x3, x4, x5, True, x6, x7) 30.09/12.96 new_esEs30(x0, x1, ty_Bool) 30.09/12.96 new_esEs24(x0, x1, ty_@0) 30.09/12.96 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.09/12.96 new_esEs22(x0, x1, ty_Integer) 30.09/12.96 new_mkBalBranch6MkBalBranch010(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) 30.09/12.96 new_esEs18(x0, x1, ty_Ordering) 30.09/12.96 new_esEs30(x0, x1, ty_Char) 30.09/12.96 new_esEs20(x0, x1, ty_Integer) 30.09/12.96 new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_ltEs18(x0, x1, ty_Float) 30.09/12.96 new_ltEs13(@2(x0, x1), @2(x2, x3), x4, x5) 30.09/12.96 new_ltEs12(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_esEs27(x0, x1, ty_Bool) 30.09/12.96 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 30.09/12.96 new_ltEs5(x0, x1, x2) 30.09/12.96 new_esEs28(x0, x1, ty_Integer) 30.09/12.96 new_lt20(x0, x1, ty_Integer) 30.09/12.96 new_esEs19(x0, x1, ty_Double) 30.09/12.96 new_esEs6(Just(x0), Just(x1), ty_Float) 30.09/12.96 new_esEs24(x0, x1, ty_Float) 30.09/12.96 new_esEs24(x0, x1, app(ty_Maybe, x2)) 30.09/12.96 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 30.09/12.96 new_mkBalBranch6MkBalBranch3(Branch(x0, x1, x2, x3, x4), x5, x6, x7, True, x8, x9) 30.09/12.96 new_esEs18(x0, x1, ty_Double) 30.09/12.96 new_primCmpInt0(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8, x9) 30.09/12.96 new_esEs30(x0, x1, ty_Int) 30.09/12.96 new_compare28(x0, x1, False, x2, x3, x4) 30.09/12.96 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 30.09/12.96 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 30.09/12.96 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.09/12.96 new_esEs24(x0, x1, ty_Double) 30.09/12.96 new_lt13(x0, x1, app(ty_Maybe, x2)) 30.09/12.96 new_compare27(x0, x1, False, x2, x3) 30.09/12.96 new_esEs19(x0, x1, app(ty_[], x2)) 30.09/12.96 new_compare17(Char(x0), Char(x1)) 30.09/12.96 new_ltEs20(x0, x1, ty_Double) 30.09/12.96 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_primMulNat0(Zero, Succ(x0)) 30.09/12.96 new_ltEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.09/12.96 new_ltEs15(GT, LT) 30.09/12.96 new_ltEs15(LT, GT) 30.09/12.96 new_addToFM_C23(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) 30.09/12.96 new_esEs9(x0, x1) 30.09/12.96 new_compare16(x0, x1, False, x2, x3, x4) 30.09/12.96 new_ltEs12(Just(x0), Just(x1), ty_@0) 30.09/12.96 new_ltEs19(x0, x1, ty_Integer) 30.09/12.96 new_esEs28(x0, x1, ty_Bool) 30.09/12.96 new_ltEs18(x0, x1, ty_Int) 30.09/12.96 new_compare5(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 30.09/12.96 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_esEs6(Just(x0), Nothing, x1) 30.09/12.96 new_addToFM_C15(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) 30.09/12.96 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.09/12.96 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.09/12.96 new_mkBalBranch6MkBalBranch010(x0, x1, x2, x3, x4, x5, Branch(x6, x7, x8, x9, x10), x11, False, x12, x13) 30.09/12.96 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 30.09/12.96 new_esEs6(Just(x0), Just(x1), ty_Int) 30.09/12.96 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 30.09/12.96 new_ltEs18(x0, x1, ty_Char) 30.09/12.96 new_lt12(x0, x1, app(ty_Ratio, x2)) 30.09/12.96 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, EmptyFM, x4, x5, x6, False, x7, x8) 30.09/12.96 new_esEs25(x0, x1, ty_Integer) 30.09/12.96 new_primCmpNat1(Zero, Succ(x0)) 30.09/12.96 new_lt12(x0, x1, ty_Bool) 30.09/12.96 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 30.09/12.96 new_primCompAux00(x0, EQ) 30.09/12.96 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 30.09/12.96 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 30.09/12.96 new_mkBalBranch6MkBalBranch30(Branch(x0, x1, x2, x3, x4), x5, x6, True, x7, x8) 30.09/12.96 new_primCmpNat1(Succ(x0), Succ(x1)) 30.09/12.96 new_primEqNat0(Zero, Succ(x0)) 30.09/12.96 new_ltEs20(x0, x1, ty_Ordering) 30.09/12.96 new_esEs30(x0, x1, ty_Float) 30.09/12.96 new_esEs17(Double(x0, x1), Double(x2, x3)) 30.09/12.96 new_esEs29(x0, x1, ty_Integer) 30.09/12.96 new_esEs6(Just(x0), Just(x1), ty_Ordering) 30.09/12.96 new_ltEs4(Left(x0), Left(x1), ty_Ordering, x2) 30.09/12.96 new_lt12(x0, x1, app(ty_[], x2)) 30.09/12.96 new_pePe(True, x0) 30.09/12.96 new_primCmpInt(Neg(Zero), Neg(Zero)) 30.09/12.96 new_compare19(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 30.09/12.96 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.09/12.96 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 30.09/12.96 new_addListToFM_CAdd(x0, @2(x1, x2), x3, x4) 30.09/12.96 new_ltEs19(x0, x1, ty_Bool) 30.09/12.96 new_esEs12(Char(x0), Char(x1)) 30.09/12.96 new_ltEs12(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.09/12.96 new_addToFM_C24(x0, x1, x2, x3, x4, x5, False, x6, x7) 30.09/12.96 new_primCmpInt(Pos(Zero), Neg(Zero)) 30.09/12.96 new_primCmpInt(Neg(Zero), Pos(Zero)) 30.09/12.96 new_ltEs4(Right(x0), Right(x1), x2, ty_Bool) 30.09/12.96 new_mkBalBranch6Size_l(x0, x1, x2, x3, x4) 30.09/12.96 new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) 30.09/12.96 new_mkBalBranch6MkBalBranch30(x0, x1, x2, False, x3, x4) 30.09/12.96 new_esEs29(x0, x1, ty_Ordering) 30.09/12.96 new_esEs23(x0, x1, ty_Bool) 30.09/12.96 new_lt12(x0, x1, ty_Char) 30.09/12.96 new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) 30.09/12.96 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 30.09/12.96 new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, False, x4, x5) 30.09/12.96 new_esEs24(x0, x1, app(ty_Ratio, x2)) 30.09/12.96 new_esEs11(False, False) 30.09/12.96 new_esEs10(LT, GT) 30.09/12.96 new_esEs10(GT, LT) 30.09/12.96 new_esEs23(x0, x1, ty_Float) 30.09/12.96 new_esEs20(x0, x1, ty_Float) 30.09/12.96 new_esEs6(Just(x0), Just(x1), ty_Char) 30.09/12.96 new_addToFM_C0(Branch(Just(x0), x1, x2, x3, x4), Just(x5), x6, x7, x8) 30.09/12.96 new_addToFM_C22(x0, x1, x2, x3, x4, x5, True, x6, x7) 30.09/12.96 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.09/12.96 new_compare31(x0, x1, app(app(ty_@2, x2), x3)) 30.09/12.96 new_lt20(x0, x1, ty_@0) 30.09/12.96 new_lt13(x0, x1, ty_@0) 30.09/12.96 new_ltEs4(Right(x0), Right(x1), x2, ty_Ordering) 30.09/12.96 new_esEs20(x0, x1, ty_Bool) 30.09/12.96 new_lt12(x0, x1, ty_Int) 30.09/12.96 new_compare24(x0, x1, True, x2) 30.09/12.96 new_ltEs4(Right(x0), Right(x1), x2, ty_Integer) 30.09/12.96 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 30.09/12.96 new_primEqNat0(Succ(x0), Zero) 30.09/12.96 new_primCmpInt1(EmptyFM, x0, x1, x2, x3) 30.09/12.96 new_esEs27(x0, x1, ty_Integer) 30.09/12.96 new_lt4(x0, x1) 30.09/12.96 new_compare111(x0, x1, True) 30.09/12.96 new_lt10(x0, x1) 30.09/12.96 new_esEs18(x0, x1, ty_@0) 30.09/12.96 new_compare([], [], x0) 30.09/12.96 new_primMulNat0(Succ(x0), Succ(x1)) 30.09/12.96 new_esEs26(x0, x1, ty_Double) 30.09/12.96 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.09/12.96 new_esEs28(x0, x1, ty_Float) 30.09/12.96 new_mkBalBranch6MkBalBranch4(x0, x1, x2, EmptyFM, True, x3, x4) 30.09/12.96 new_compare31(x0, x1, ty_@0) 30.09/12.96 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 30.09/12.96 new_addToFM_C0(Branch(Nothing, x0, x1, x2, x3), Nothing, x4, x5, x6) 30.09/12.96 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.09/12.96 new_esEs20(x0, x1, ty_Int) 30.09/12.96 new_ltEs4(Left(x0), Right(x1), x2, x3) 30.09/12.96 new_ltEs4(Right(x0), Left(x1), x2, x3) 30.09/12.96 new_esEs6(Just(x0), Just(x1), ty_Bool) 30.09/12.96 new_esEs26(x0, x1, ty_@0) 30.09/12.96 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.09/12.96 new_esEs28(x0, x1, ty_Int) 30.09/12.96 new_ltEs11(False, True) 30.09/12.96 new_ltEs11(True, False) 30.09/12.96 new_mkBalBranch6Size_l0(x0, x1, x2, x3, x4, x5) 30.09/12.96 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 30.09/12.96 new_esEs10(EQ, GT) 30.09/12.96 new_esEs10(GT, EQ) 30.09/12.96 new_esEs26(x0, x1, app(ty_Ratio, x2)) 30.09/12.96 new_lt13(x0, x1, ty_Double) 30.09/12.96 new_esEs23(x0, x1, ty_Int) 30.09/12.96 new_esEs20(x0, x1, ty_Char) 30.09/12.96 new_lt12(x0, x1, ty_Float) 30.09/12.96 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 30.09/12.96 new_ltEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.09/12.96 new_esEs30(x0, x1, app(ty_Maybe, x2)) 30.09/12.96 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, EmptyFM, x5, False, x6, x7) 30.09/12.96 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 30.09/12.96 new_sizeFM0(EmptyFM, x0, x1) 30.09/12.96 new_esEs27(x0, x1, ty_Float) 30.09/12.96 new_compare12(x0, x1) 30.09/12.96 new_lt12(x0, x1, ty_Double) 30.09/12.96 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 30.09/12.96 new_lt20(x0, x1, app(ty_Maybe, x2)) 30.09/12.96 new_addToFM_C16(x0, x1, x2, x3, x4, True, x5, x6) 30.09/12.96 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.09/12.96 new_compare31(x0, x1, app(app(ty_Either, x2), x3)) 30.09/12.96 new_esEs29(x0, x1, ty_Char) 30.09/12.96 new_compare11(x0, x1, False, x2, x3) 30.09/12.96 new_compare27(x0, x1, True, x2, x3) 30.09/12.96 new_mkBalBranch6Size_r0(x0, x1, x2, x3, x4) 30.09/12.96 new_primMulNat0(Zero, Zero) 30.09/12.96 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_lt12(x0, x1, ty_Ordering) 30.09/12.96 new_primCompAux00(x0, LT) 30.09/12.96 new_ltEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.09/12.96 new_addToFM_C13(x0, x1, x2, x3, x4, x5, True, x6, x7) 30.09/12.96 new_ltEs19(x0, x1, ty_Char) 30.09/12.96 new_sr(x0, x1) 30.09/12.96 new_compare10(x0, x1, False, x2) 30.09/12.96 new_asAs(False, x0) 30.09/12.96 new_ltEs19(x0, x1, ty_Int) 30.09/12.96 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, Branch(x4, x5, x6, x7, x8), x9, x10, x11, False, x12, x13) 30.09/12.96 new_esEs18(x0, x1, app(ty_[], x2)) 30.09/12.96 new_ltEs14(x0, x1) 30.09/12.96 new_lt14(x0, x1, x2) 30.09/12.96 new_esEs28(x0, x1, app(ty_[], x2)) 30.09/12.96 new_ltEs20(x0, x1, ty_Integer) 30.09/12.96 new_esEs23(x0, x1, app(ty_[], x2)) 30.09/12.96 new_ltEs4(Right(x0), Right(x1), x2, ty_Int) 30.09/12.96 new_ltEs19(x0, x1, app(ty_[], x2)) 30.09/12.96 new_esEs8(Float(x0, x1), Float(x2, x3)) 30.09/12.96 new_compare24(Nothing, Just(x0), False, x1) 30.09/12.96 new_ltEs18(x0, x1, app(ty_[], x2)) 30.09/12.96 new_esEs6(Just(x0), Just(x1), ty_Integer) 30.09/12.96 new_esEs29(x0, x1, ty_@0) 30.09/12.96 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.09/12.96 new_esEs29(x0, x1, app(ty_[], x2)) 30.09/12.96 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 30.09/12.96 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 30.09/12.96 new_ltEs4(Right(x0), Right(x1), x2, ty_Char) 30.09/12.96 new_esEs27(x0, x1, app(ty_[], x2)) 30.09/12.96 new_esEs25(x0, x1, app(ty_Maybe, x2)) 30.09/12.96 new_ltEs19(x0, x1, ty_Ordering) 30.09/12.96 new_gt(x0, x1) 30.09/12.96 new_esEs25(x0, x1, app(ty_Ratio, x2)) 30.09/12.96 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 30.09/12.96 new_lt8(x0, x1, x2, x3) 30.09/12.96 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 30.09/12.96 new_mkBalBranch6MkBalBranch50(x0, x1, x2, False, x3, x4) 30.09/12.96 new_ltEs19(x0, x1, ty_@0) 30.09/12.96 new_primCompAux0(x0, x1, x2, x3) 30.09/12.96 new_esEs22(x0, x1, ty_Int) 30.09/12.96 new_ltEs20(x0, x1, ty_@0) 30.09/12.96 new_ltEs12(Just(x0), Just(x1), ty_Integer) 30.09/12.96 new_esEs18(x0, x1, ty_Bool) 30.09/12.96 new_esEs21(x0, x1, ty_Int) 30.09/12.96 new_ltEs12(Just(x0), Just(x1), ty_Float) 30.09/12.96 new_esEs6(Just(x0), Just(x1), ty_@0) 30.09/12.96 new_esEs10(LT, LT) 30.09/12.96 new_compare13(x0, x1, x2) 30.09/12.96 new_esEs30(x0, x1, ty_Double) 30.09/12.96 new_not(True) 30.09/12.96 new_esEs29(x0, x1, ty_Bool) 30.09/12.96 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 30.09/12.96 new_compare210(x0, x1, False) 30.09/12.96 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_lt15(x0, x1) 30.09/12.96 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 30.09/12.96 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, Branch(x5, x6, x7, x8, x9), x10, False, x11, x12) 30.09/12.96 new_addToFM_C0(EmptyFM, x0, x1, x2, x3) 30.09/12.96 new_esEs23(x0, x1, app(ty_Ratio, x2)) 30.09/12.96 new_pePe(False, x0) 30.09/12.96 new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6) 30.09/12.96 new_esEs29(x0, x1, ty_Double) 30.09/12.96 new_esEs11(True, True) 30.09/12.96 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 30.09/12.96 new_mkBranch(x0, x1, x2, x3, x4, x5, x6) 30.09/12.96 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 30.09/12.96 new_primCmpNat0(Zero, x0) 30.09/12.96 new_esEs15(Integer(x0), Integer(x1)) 30.09/12.96 new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, True, x4, x5) 30.09/12.96 new_ltEs4(Left(x0), Left(x1), ty_Double, x2) 30.09/12.96 new_ltEs15(GT, EQ) 30.09/12.96 new_ltEs15(EQ, GT) 30.09/12.96 new_primCmpNat2(x0, Zero) 30.09/12.96 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.09/12.96 new_mkBalBranch0(x0, x1, x2, x3, x4, x5) 30.09/12.96 new_compare19(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 30.09/12.96 new_esEs11(False, True) 30.09/12.96 new_esEs11(True, False) 30.09/12.96 new_compare31(x0, x1, app(ty_[], x2)) 30.09/12.96 new_esEs29(x0, x1, ty_Int) 30.09/12.96 new_esEs26(x0, x1, ty_Integer) 30.09/12.96 new_ltEs20(x0, x1, ty_Char) 30.09/12.96 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.09/12.96 new_lt13(x0, x1, ty_Ordering) 30.09/12.96 new_lt17(x0, x1) 30.09/12.96 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 30.09/12.96 new_compare110(x0, x1, True, x2, x3) 30.09/12.96 new_ltEs4(Right(x0), Right(x1), x2, ty_@0) 30.09/12.96 new_compare25(x0, x1, False, x2, x3) 30.09/12.96 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 30.09/12.96 new_ltEs12(Just(x0), Just(x1), ty_Bool) 30.09/12.96 new_esEs30(x0, x1, app(ty_Ratio, x2)) 30.09/12.96 new_primEqNat0(Succ(x0), Succ(x1)) 30.09/12.96 new_lt13(x0, x1, app(ty_[], x2)) 30.09/12.96 new_esEs18(x0, x1, ty_Integer) 30.09/12.96 new_esEs20(x0, x1, ty_Ordering) 30.09/12.96 new_mkBalBranch6MkBalBranch3(x0, x1, x2, x3, False, x4, x5) 30.09/12.96 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 30.09/12.96 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) 30.09/12.96 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 30.09/12.96 new_lt13(x0, x1, app(ty_Ratio, x2)) 30.09/12.96 new_ltEs20(x0, x1, ty_Bool) 30.09/12.96 new_primPlusNat1(Succ(x0), Zero) 30.09/12.96 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) 30.09/12.96 new_lt5(x0, x1, x2) 30.09/12.96 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.09/12.96 new_esEs16(:(x0, x1), [], x2) 30.09/12.96 new_primMulNat0(Succ(x0), Zero) 30.09/12.96 new_primCmpInt(Pos(Zero), Pos(Zero)) 30.09/12.96 new_compare31(x0, x1, ty_Integer) 30.09/12.96 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 30.09/12.96 new_addToFM_C16(x0, x1, x2, x3, x4, False, x5, x6) 30.09/12.96 new_lt12(x0, x1, ty_@0) 30.09/12.96 new_esEs19(x0, x1, ty_Ordering) 30.09/12.96 new_ltEs4(Left(x0), Left(x1), ty_Int, x2) 30.09/12.96 new_esEs10(GT, GT) 30.09/12.96 new_mkBalBranch6Size_r(x0, x1, x2, x3, x4, x5) 30.09/12.96 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 30.09/12.96 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 30.09/12.96 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 30.09/12.96 new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.09/12.96 new_primMulInt(Pos(x0), Pos(x1)) 30.09/12.96 new_esEs14(@0, @0) 30.09/12.96 new_esEs16([], :(x0, x1), x2) 30.09/12.96 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_primPlusNat1(Zero, Succ(x0)) 30.09/12.96 new_esEs29(x0, x1, app(ty_Ratio, x2)) 30.09/12.96 new_addToFM_C13(x0, x1, x2, x3, x4, x5, False, x6, x7) 30.09/12.96 new_mkBalBranch6MkBalBranch3(EmptyFM, x0, x1, x2, True, x3, x4) 30.09/12.96 new_primPlusNat0(x0, x1) 30.09/12.96 new_esEs10(LT, EQ) 30.09/12.96 new_esEs10(EQ, LT) 30.09/12.96 new_compare10(x0, x1, True, x2) 30.09/12.96 new_lt13(x0, x1, app(app(ty_@2, x2), x3)) 30.09/12.96 new_compare26(x0, x1, False) 30.09/12.96 new_ltEs10(x0, x1, x2) 30.09/12.96 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 30.09/12.96 new_ltEs4(Left(x0), Left(x1), ty_Char, x2) 30.09/12.96 new_esEs18(x0, x1, ty_Int) 30.09/12.96 new_primMulInt(Pos(x0), Neg(x1)) 30.09/12.96 new_primMulInt(Neg(x0), Pos(x1)) 30.09/12.96 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 30.09/12.96 new_esEs19(x0, x1, ty_Float) 30.09/12.96 new_lt11(x0, x1, x2, x3, x4) 30.09/12.96 new_esEs6(Just(x0), Just(x1), ty_Double) 30.09/12.96 new_ltEs18(x0, x1, ty_Ordering) 30.09/12.96 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 30.09/12.96 new_esEs19(x0, x1, app(ty_Maybe, x2)) 30.09/12.96 new_compare6(x0, x1) 30.09/12.96 new_esEs26(x0, x1, ty_Bool) 30.09/12.96 new_esEs26(x0, x1, app(ty_[], x2)) 30.09/12.96 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 30.09/12.96 new_compare24(Just(x0), Just(x1), False, x2) 30.09/12.96 new_esEs19(x0, x1, app(ty_Ratio, x2)) 30.09/12.96 new_compare25(x0, x1, True, x2, x3) 30.09/12.96 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 30.09/12.96 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 30.09/12.96 new_compare31(x0, x1, app(ty_Maybe, x2)) 30.09/12.96 new_ltEs12(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.09/12.96 new_primMinusNat0(Succ(x0), Zero) 30.09/12.96 new_lt20(x0, x1, ty_Bool) 30.09/12.96 new_ltEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.09/12.96 new_ltEs12(Just(x0), Nothing, x1) 30.09/12.96 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 30.09/12.96 new_ltEs15(EQ, LT) 30.09/12.96 new_esEs16(:(x0, x1), :(x2, x3), x4) 30.09/12.96 new_ltEs15(LT, EQ) 30.09/12.96 new_compare110(x0, x1, False, x2, x3) 30.09/12.96 new_compare11(x0, x1, True, x2, x3) 30.09/12.96 new_ltEs4(Left(x0), Left(x1), ty_Float, x2) 30.09/12.96 new_ltEs20(x0, x1, ty_Float) 30.09/12.96 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.09/12.96 new_esEs30(x0, x1, ty_Ordering) 30.09/12.96 new_ltEs4(Right(x0), Right(x1), x2, ty_Double) 30.09/12.96 new_esEs19(x0, x1, ty_Char) 30.09/12.96 new_ltEs15(GT, GT) 30.09/12.96 new_compare5(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 30.09/12.96 new_ltEs20(x0, x1, ty_Int) 30.09/12.96 new_ltEs12(Nothing, Nothing, x0) 30.09/12.96 new_primCmpInt0(EmptyFM, x0, x1, x2, x3, x4) 30.09/12.96 new_compare31(x0, x1, ty_Bool) 30.09/12.96 new_addToFM_C14(x0, x1, x2, x3, x4, x5, False, x6, x7) 30.09/12.96 new_esEs29(x0, x1, ty_Float) 30.09/12.96 new_fsEs(x0) 30.09/12.96 new_lt9(x0, x1) 30.09/12.96 new_ltEs11(False, False) 30.09/12.96 new_esEs19(x0, x1, ty_Int) 30.09/12.96 new_ltEs18(x0, x1, ty_Double) 30.09/12.96 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 30.09/12.96 new_compare24(Just(x0), Nothing, False, x1) 30.09/12.96 new_compare111(x0, x1, False) 30.09/12.96 new_mkBalBranch6MkBalBranch40(x0, x1, EmptyFM, True, x2, x3) 30.09/12.96 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_lt13(x0, x1, ty_Bool) 30.09/12.96 new_esEs26(x0, x1, ty_Int) 30.09/12.96 new_primEqNat0(Zero, Zero) 30.09/12.96 new_compare19(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 30.09/12.96 new_compare19(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 30.09/12.96 new_lt6(x0, x1, x2) 30.09/12.96 new_lt13(x0, x1, ty_Float) 30.09/12.96 new_esEs25(x0, x1, ty_Float) 30.09/12.96 new_lt16(x0, x1, x2, x3) 30.09/12.96 new_esEs20(x0, x1, ty_@0) 30.09/12.96 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.09/12.96 new_not(False) 30.09/12.96 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 30.09/12.96 new_mkBalBranch6MkBalBranch110(x0, x1, x2, x3, Branch(x4, x5, x6, x7, x8), x9, x10, False, x11, x12) 30.09/12.96 new_esEs24(x0, x1, ty_Integer) 30.09/12.96 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 30.09/12.96 new_compare(:(x0, x1), :(x2, x3), x4) 30.09/12.96 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 30.09/12.96 new_esEs30(x0, x1, app(ty_[], x2)) 30.09/12.96 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 30.09/12.96 new_lt7(x0, x1) 30.09/12.96 new_ltEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.09/12.96 new_esEs23(x0, x1, ty_Double) 30.09/12.96 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_ltEs12(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.09/12.96 new_lt20(x0, x1, app(ty_Ratio, x2)) 30.09/12.96 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 30.09/12.96 new_compare29(x0, x1, x2, x3, x4) 30.09/12.96 new_esEs18(x0, x1, ty_Char) 30.09/12.96 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 30.09/12.96 new_addToFM_C22(x0, x1, x2, x3, x4, x5, False, x6, x7) 30.09/12.96 new_ltEs19(x0, x1, ty_Double) 30.09/12.96 new_compare14(x0, x1, False) 30.09/12.96 new_ltEs8(x0, x1) 30.09/12.96 new_addListToFM0(x0, x1, x2) 30.09/12.96 new_esEs28(x0, x1, ty_Double) 30.09/12.96 new_esEs19(x0, x1, ty_Integer) 30.09/12.96 new_esEs21(x0, x1, ty_Integer) 30.09/12.96 new_ltEs15(LT, LT) 30.09/12.96 new_esEs26(x0, x1, ty_Float) 30.09/12.96 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_lt13(x0, x1, ty_Int) 30.09/12.96 new_esEs20(x0, x1, app(ty_[], x2)) 30.09/12.96 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 30.09/12.96 new_lt13(x0, x1, app(app(ty_Either, x2), x3)) 30.09/12.96 new_esEs26(x0, x1, ty_Char) 30.09/12.96 new_compare28(x0, x1, True, x2, x3, x4) 30.09/12.96 new_ltEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.09/12.96 new_mkBalBranch6MkBalBranch30(EmptyFM, x0, x1, True, x2, x3) 30.09/12.96 new_primMinusNat0(Zero, Succ(x0)) 30.09/12.96 new_lt20(x0, x1, ty_Float) 30.09/12.96 new_sizeFM0(Branch(x0, x1, x2, x3, x4), x5, x6) 30.09/12.96 new_lt19(x0, x1) 30.09/12.96 new_esEs5(Left(x0), Right(x1), x2, x3) 30.09/12.96 new_esEs5(Right(x0), Left(x1), x2, x3) 30.09/12.96 new_asAs(True, x0) 30.09/12.96 new_addToFM_C0(Branch(Nothing, x0, x1, x2, x3), Just(x4), x5, x6, x7) 30.09/12.96 new_mkBalBranch6MkBalBranch40(x0, x1, x2, False, x3, x4) 30.09/12.96 new_lt13(x0, x1, ty_Char) 30.09/12.96 new_esEs28(x0, x1, app(ty_Maybe, x2)) 30.09/12.96 new_esEs23(x0, x1, ty_@0) 30.09/12.96 new_mkBalBranch6MkBalBranch50(x0, x1, x2, True, x3, x4) 30.09/12.96 new_ltEs16(x0, x1) 30.09/12.96 new_esEs20(x0, x1, ty_Double) 30.09/12.96 new_mkBalBranch6MkBalBranch40(x0, x1, Branch(x2, x3, x4, x5, x6), True, x7, x8) 30.09/12.96 new_esEs18(x0, x1, ty_Float) 30.09/12.96 new_esEs28(x0, x1, ty_@0) 30.09/12.96 new_esEs23(x0, x1, app(ty_Maybe, x2)) 30.09/12.96 new_addToFM_C0(Branch(Just(x0), x1, x2, x3, x4), Nothing, x5, x6, x7) 30.09/12.96 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.09/12.96 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 30.09/12.96 new_compare18(x0, x1, x2, x3) 30.09/12.96 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 30.09/12.96 new_ltEs12(Nothing, Just(x0), x1) 30.09/12.96 new_compare31(x0, x1, ty_Float) 30.09/12.96 new_esEs24(x0, x1, ty_Ordering) 30.09/12.96 30.09/12.96 We have to consider all minimal (P,Q,R)-chains. 30.09/12.96 ---------------------------------------- 30.09/12.96 30.09/12.96 (21) QDPSizeChangeProof (EQUIVALENT) 30.09/12.96 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.09/12.96 30.09/12.96 From the DPs we obtained the following set of size-change graphs: 30.09/12.96 *new_foldl(xuu3, :(xuu40, xuu41), h, ba) -> new_foldl(new_addListToFM_CAdd(xuu3, xuu40, h, ba), xuu41, h, ba) 30.09/12.96 The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4 30.09/12.96 30.09/12.96 30.09/12.96 ---------------------------------------- 30.09/12.96 30.09/12.96 (22) 30.09/12.96 YES 30.09/12.96 30.09/12.96 ---------------------------------------- 30.09/12.96 30.09/12.96 (23) 30.09/12.96 Obligation: 30.09/12.96 Q DP problem: 30.09/12.96 The TRS P consists of the following rules: 30.09/12.96 30.09/12.96 new_addToFM_C2(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, True, h, ba) -> new_addToFM_C(xuu33, Nothing, xuu401, h, ba) 30.09/12.96 new_addToFM_C(Branch(Nothing, xuu31, xuu32, xuu33, xuu34), Nothing, xuu401, h, ba) -> new_addToFM_C1(xuu31, xuu32, xuu33, xuu34, xuu401, new_esEs10(new_compare24(Nothing, Nothing, True, h), GT), h, ba) 30.09/12.96 new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba) -> new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs10(new_compare24(Just(xuu4000), Nothing, False, h), GT), h, ba) 30.09/12.96 new_addToFM_C21(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, False, bb, bc) -> new_addToFM_C12(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, new_esEs10(new_compare24(Just(xuu19), Just(xuu14), new_esEs30(xuu19, xuu14, bb), bb), GT), bb, bc) 30.09/12.96 new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba) -> new_addToFM_C(xuu34, Just(xuu4000), xuu401, h, ba) 30.09/12.96 new_addToFM_C(Branch(Nothing, xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs10(new_compare24(Just(xuu4000), Nothing, False, h), LT), h, ba) 30.09/12.96 new_addToFM_C12(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, bb, bc) -> new_addToFM_C(xuu18, Just(xuu19), xuu20, bb, bc) 30.09/12.96 new_addToFM_C2(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, False, h, ba) -> new_addToFM_C10(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, new_esEs10(new_compare24(Nothing, Just(xuu300), False, h), GT), h, ba) 30.09/12.96 new_addToFM_C(Branch(Just(xuu300), xuu31, xuu32, xuu33, xuu34), Nothing, xuu401, h, ba) -> new_addToFM_C2(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, new_esEs10(new_compare24(Nothing, Just(xuu300), False, h), LT), h, ba) 30.09/12.96 new_addToFM_C1(xuu31, xuu32, xuu33, xuu34, xuu401, True, h, ba) -> new_addToFM_C(xuu34, Nothing, xuu401, h, ba) 30.09/12.96 new_addToFM_C(Branch(Just(xuu300), xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C21(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs10(new_compare24(Just(xuu4000), Just(xuu300), new_esEs29(xuu4000, xuu300, h), h), LT), h, ba) 30.09/12.96 new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba) -> new_addToFM_C(xuu33, Just(xuu4000), xuu401, h, ba) 30.09/12.96 new_addToFM_C21(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, bb, bc) -> new_addToFM_C(xuu17, Just(xuu19), xuu20, bb, bc) 30.09/12.96 new_addToFM_C10(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, True, h, ba) -> new_addToFM_C(xuu34, Nothing, xuu401, h, ba) 30.09/12.96 30.09/12.96 The TRS R consists of the following rules: 30.09/12.96 30.09/12.96 new_ltEs18(xuu3000, xuu3100, ty_Integer) -> new_ltEs17(xuu3000, xuu3100) 30.09/12.96 new_compare28(xuu30000, xuu31000, False, bgd, bge, bgf) -> new_compare16(xuu30000, xuu31000, new_ltEs6(xuu30000, xuu31000, bgd, bge, bgf), bgd, bge, bgf) 30.09/12.96 new_lt7(xuu30000, xuu31000) -> new_esEs10(new_compare17(xuu30000, xuu31000), LT) 30.09/12.96 new_esEs23(xuu30000, xuu31000, ty_Bool) -> new_esEs11(xuu30000, xuu31000) 30.09/12.96 new_esEs27(xuu40001, xuu3001, app(ty_Ratio, dcd)) -> new_esEs13(xuu40001, xuu3001, dcd) 30.09/12.96 new_primCmpInt(Neg(Succ(xuu3000)), Pos(xuu310)) -> LT 30.09/12.96 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 30.09/12.96 new_esEs27(xuu40001, xuu3001, ty_Int) -> new_esEs9(xuu40001, xuu3001) 30.09/12.96 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(ty_Ratio, hh)) -> new_esEs13(xuu40000, xuu3000, hh) 30.09/12.96 new_esEs23(xuu30000, xuu31000, app(ty_Maybe, baf)) -> new_esEs6(xuu30000, xuu31000, baf) 30.09/12.96 new_pePe(True, xuu167) -> True 30.09/12.96 new_ltEs19(xuu30002, xuu31002, app(app(app(ty_@3, cad), cae), caf)) -> new_ltEs6(xuu30002, xuu31002, cad, cae, caf) 30.09/12.96 new_ltEs20(xuu30001, xuu31001, ty_Ordering) -> new_ltEs15(xuu30001, xuu31001) 30.09/12.96 new_primCmpInt(Pos(Zero), Pos(Succ(xuu3100))) -> new_primCmpNat0(Zero, xuu3100) 30.09/12.96 new_ltEs6(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), ee, ef, eg) -> new_pePe(new_lt13(xuu30000, xuu31000, ee), new_asAs(new_esEs23(xuu30000, xuu31000, ee), new_pePe(new_lt12(xuu30001, xuu31001, ef), new_asAs(new_esEs24(xuu30001, xuu31001, ef), new_ltEs19(xuu30002, xuu31002, eg))))) 30.09/12.96 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(ty_[], bab)) -> new_esEs16(xuu40000, xuu3000, bab) 30.09/12.96 new_esEs5(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, fh), ga), gb), fg) -> new_esEs4(xuu40000, xuu3000, fh, ga, gb) 30.09/12.96 new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_Ratio, ge), fg) -> new_esEs13(xuu40000, xuu3000, ge) 30.09/12.96 new_esEs29(xuu4000, xuu300, ty_Char) -> new_esEs12(xuu4000, xuu300) 30.09/12.96 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Double) -> new_ltEs14(xuu30000, xuu31000) 30.09/12.96 new_lt20(xuu30000, xuu31000, ty_Bool) -> new_lt15(xuu30000, xuu31000) 30.09/12.96 new_compare(:(xuu30000, xuu30001), [], ed) -> GT 30.09/12.96 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 30.09/12.96 new_esEs27(xuu40001, xuu3001, app(ty_[], dcf)) -> new_esEs16(xuu40001, xuu3001, dcf) 30.09/12.96 new_esEs27(xuu40001, xuu3001, app(app(ty_Either, dcb), dcc)) -> new_esEs5(xuu40001, xuu3001, dcb, dcc) 30.09/12.96 new_primCmpInt(Pos(Zero), Neg(Succ(xuu3100))) -> GT 30.09/12.96 new_compare(:(xuu30000, xuu30001), :(xuu31000, xuu31001), ed) -> new_primCompAux0(xuu30000, xuu31000, new_compare(xuu30001, xuu31001, ed), ed) 30.09/12.96 new_esEs9(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) 30.09/12.96 new_esEs22(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) 30.09/12.96 new_esEs18(xuu40000, xuu3000, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs4(xuu40000, xuu3000, bbb, bbc, bbd) 30.09/12.96 new_ltEs19(xuu30002, xuu31002, app(ty_[], cac)) -> new_ltEs5(xuu30002, xuu31002, cac) 30.09/12.96 new_lt12(xuu30001, xuu31001, ty_Char) -> new_lt7(xuu30001, xuu31001) 30.09/12.96 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Char) -> new_ltEs9(xuu30000, xuu31000) 30.09/12.96 new_esEs26(xuu40000, xuu3000, app(app(ty_@2, dac), dad)) -> new_esEs7(xuu40000, xuu3000, dac, dad) 30.09/12.96 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Int) -> new_ltEs7(xuu30000, xuu31000) 30.09/12.96 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.09/12.96 new_lt13(xuu30000, xuu31000, app(ty_Ratio, bae)) -> new_lt5(xuu30000, xuu31000, bae) 30.09/12.96 new_esEs6(Just(xuu40000), Just(xuu3000), app(app(ty_Either, cfb), cfc)) -> new_esEs5(xuu40000, xuu3000, cfb, cfc) 30.09/12.96 new_ltEs15(EQ, LT) -> False 30.09/12.96 new_compare17(Char(xuu30000), Char(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) 30.09/12.96 new_ltEs8(xuu3000, xuu3100) -> new_fsEs(new_compare8(xuu3000, xuu3100)) 30.09/12.96 new_esEs28(xuu40002, xuu3002, app(app(app(ty_@3, dda), ddb), ddc)) -> new_esEs4(xuu40002, xuu3002, dda, ddb, ddc) 30.09/12.96 new_primCmpNat1(Succ(xuu30000), Succ(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) 30.09/12.96 new_esEs23(xuu30000, xuu31000, app(app(ty_Either, bac), bad)) -> new_esEs5(xuu30000, xuu31000, bac, bad) 30.09/12.96 new_ltEs19(xuu30002, xuu31002, ty_Ordering) -> new_ltEs15(xuu30002, xuu31002) 30.09/12.96 new_compare26(xuu30000, xuu31000, True) -> EQ 30.09/12.96 new_compare24(Nothing, Just(xuu3100), False, ec) -> LT 30.09/12.96 new_esEs18(xuu40000, xuu3000, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.09/12.96 new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False 30.09/12.96 new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False 30.09/12.96 new_ltEs4(Left(xuu30000), Left(xuu31000), app(app(ty_@2, ce), cf), be) -> new_ltEs13(xuu30000, xuu31000, ce, cf) 30.09/12.96 new_ltEs15(GT, LT) -> False 30.09/12.96 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.09/12.96 new_esEs24(xuu30001, xuu31001, ty_Double) -> new_esEs17(xuu30001, xuu31001) 30.09/12.96 new_compare25(xuu30000, xuu31000, False, bac, bad) -> new_compare11(xuu30000, xuu31000, new_ltEs4(xuu30000, xuu31000, bac, bad), bac, bad) 30.09/12.96 new_ltEs12(Just(xuu30000), Just(xuu31000), app(app(ty_Either, cdg), cdh)) -> new_ltEs4(xuu30000, xuu31000, cdg, cdh) 30.09/12.96 new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_Maybe, gf), fg) -> new_esEs6(xuu40000, xuu3000, gf) 30.09/12.96 new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.09/12.96 new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) 30.09/12.96 new_esEs30(xuu19, xuu14, ty_Char) -> new_esEs12(xuu19, xuu14) 30.09/12.96 new_esEs27(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) 30.09/12.96 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Char, fg) -> new_esEs12(xuu40000, xuu3000) 30.09/12.96 new_esEs10(GT, GT) -> True 30.09/12.96 new_ltEs4(Left(xuu30000), Left(xuu31000), app(ty_Maybe, cd), be) -> new_ltEs12(xuu30000, xuu31000, cd) 30.09/12.96 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.09/12.96 new_not(True) -> False 30.09/12.96 new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_[], gg), fg) -> new_esEs16(xuu40000, xuu3000, gg) 30.09/12.96 new_lt13(xuu30000, xuu31000, app(app(app(ty_@3, bgd), bge), bgf)) -> new_lt11(xuu30000, xuu31000, bgd, bge, bgf) 30.09/12.96 new_esEs28(xuu40002, xuu3002, ty_Bool) -> new_esEs11(xuu40002, xuu3002) 30.09/12.96 new_ltEs5(xuu3000, xuu3100, ed) -> new_fsEs(new_compare(xuu3000, xuu3100, ed)) 30.09/12.96 new_primCompAux00(xuu182, LT) -> LT 30.09/12.96 new_lt12(xuu30001, xuu31001, ty_Double) -> new_lt17(xuu30001, xuu31001) 30.09/12.96 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Float) -> new_ltEs16(xuu30000, xuu31000) 30.09/12.96 new_ltEs20(xuu30001, xuu31001, ty_Integer) -> new_ltEs17(xuu30001, xuu31001) 30.09/12.96 new_esEs25(xuu30000, xuu31000, ty_Ordering) -> new_esEs10(xuu30000, xuu31000) 30.09/12.96 new_esEs23(xuu30000, xuu31000, app(ty_Ratio, bae)) -> new_esEs13(xuu30000, xuu31000, bae) 30.09/12.96 new_esEs27(xuu40001, xuu3001, ty_Bool) -> new_esEs11(xuu40001, xuu3001) 30.09/12.96 new_esEs26(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.09/12.96 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.09/12.96 new_lt12(xuu30001, xuu31001, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_lt11(xuu30001, xuu31001, bhb, bhc, bhd) 30.09/12.96 new_esEs30(xuu19, xuu14, ty_Double) -> new_esEs17(xuu19, xuu14) 30.09/12.96 new_lt13(xuu30000, xuu31000, app(ty_Maybe, baf)) -> new_lt6(xuu30000, xuu31000, baf) 30.09/12.96 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.09/12.96 new_esEs19(xuu40000, xuu3000, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.09/12.96 new_esEs25(xuu30000, xuu31000, ty_Float) -> new_esEs8(xuu30000, xuu31000) 30.09/12.96 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Double, fg) -> new_esEs17(xuu40000, xuu3000) 30.09/12.96 new_lt19(xuu30000, xuu31000) -> new_esEs10(new_compare7(xuu30000, xuu31000), LT) 30.09/12.96 new_compare31(xuu30000, xuu31000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_compare29(xuu30000, xuu31000, cbf, cbg, cbh) 30.09/12.96 new_ltEs20(xuu30001, xuu31001, app(app(app(ty_@3, chb), chc), chd)) -> new_ltEs6(xuu30001, xuu31001, chb, chc, chd) 30.09/12.96 new_esEs5(Left(xuu40000), Left(xuu3000), app(app(ty_@2, fd), ff), fg) -> new_esEs7(xuu40000, xuu3000, fd, ff) 30.09/12.96 new_primEqNat0(Succ(xuu400000), Zero) -> False 30.09/12.96 new_primEqNat0(Zero, Succ(xuu30000)) -> False 30.09/12.96 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.09/12.96 new_esEs19(xuu40000, xuu3000, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.09/12.96 new_esEs14(@0, @0) -> True 30.09/12.96 new_lt12(xuu30001, xuu31001, app(app(ty_@2, caa), cab)) -> new_lt16(xuu30001, xuu31001, caa, cab) 30.09/12.96 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Bool, be) -> new_ltEs11(xuu30000, xuu31000) 30.09/12.96 new_esEs26(xuu40000, xuu3000, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.09/12.96 new_lt11(xuu30000, xuu31000, bgd, bge, bgf) -> new_esEs10(new_compare29(xuu30000, xuu31000, bgd, bge, bgf), LT) 30.09/12.96 new_esEs23(xuu30000, xuu31000, ty_Int) -> new_esEs9(xuu30000, xuu31000) 30.09/12.96 new_ltEs15(GT, EQ) -> False 30.09/12.96 new_lt20(xuu30000, xuu31000, app(ty_[], cfg)) -> new_lt14(xuu30000, xuu31000, cfg) 30.09/12.96 new_esEs26(xuu40000, xuu3000, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.09/12.96 new_lt20(xuu30000, xuu31000, ty_Integer) -> new_lt19(xuu30000, xuu31000) 30.09/12.96 new_primCompAux00(xuu182, GT) -> GT 30.09/12.96 new_primCmpInt(Neg(Zero), Neg(Succ(xuu3100))) -> new_primCmpNat2(xuu3100, Zero) 30.09/12.96 new_esEs10(EQ, EQ) -> True 30.09/12.96 new_esEs29(xuu4000, xuu300, ty_Double) -> new_esEs17(xuu4000, xuu300) 30.09/12.96 new_esEs6(Just(xuu40000), Just(xuu3000), app(ty_Ratio, cfd)) -> new_esEs13(xuu40000, xuu3000, cfd) 30.09/12.96 new_lt16(xuu30000, xuu31000, bgb, bgc) -> new_esEs10(new_compare15(xuu30000, xuu31000, bgb, bgc), LT) 30.09/12.96 new_esEs17(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs9(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) 30.09/12.96 new_esEs24(xuu30001, xuu31001, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_esEs4(xuu30001, xuu31001, bhb, bhc, bhd) 30.09/12.96 new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.09/12.96 new_esEs23(xuu30000, xuu31000, app(app(app(ty_@3, bgd), bge), bgf)) -> new_esEs4(xuu30000, xuu31000, bgd, bge, bgf) 30.09/12.96 new_esEs30(xuu19, xuu14, app(app(app(ty_@3, bcd), bce), bcf)) -> new_esEs4(xuu19, xuu14, bcd, bce, bcf) 30.09/12.96 new_compare14(xuu30000, xuu31000, True) -> LT 30.09/12.96 new_primCmpInt(Pos(Succ(xuu3000)), Neg(xuu310)) -> GT 30.09/12.96 new_lt13(xuu30000, xuu31000, ty_Integer) -> new_lt19(xuu30000, xuu31000) 30.09/12.96 new_ltEs18(xuu3000, xuu3100, ty_Bool) -> new_ltEs11(xuu3000, xuu3100) 30.09/12.96 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_@0) -> new_ltEs8(xuu30000, xuu31000) 30.09/12.96 new_esEs28(xuu40002, xuu3002, ty_Double) -> new_esEs17(xuu40002, xuu3002) 30.09/12.96 new_lt13(xuu30000, xuu31000, ty_Char) -> new_lt7(xuu30000, xuu31000) 30.09/12.96 new_compare110(xuu30000, xuu31000, True, bgb, bgc) -> LT 30.09/12.96 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(ty_Ratio, dg)) -> new_ltEs10(xuu30000, xuu31000, dg) 30.09/12.96 new_esEs23(xuu30000, xuu31000, ty_Double) -> new_esEs17(xuu30000, xuu31000) 30.09/12.96 new_lt20(xuu30000, xuu31000, app(app(ty_Either, cgc), cgd)) -> new_lt8(xuu30000, xuu31000, cgc, cgd) 30.09/12.96 new_lt13(xuu30000, xuu31000, ty_Double) -> new_lt17(xuu30000, xuu31000) 30.09/12.96 new_primPlusNat1(Succ(xuu25200), Succ(xuu9400)) -> Succ(Succ(new_primPlusNat1(xuu25200, xuu9400))) 30.09/12.96 new_primCompAux0(xuu30000, xuu31000, xuu168, ed) -> new_primCompAux00(xuu168, new_compare31(xuu30000, xuu31000, ed)) 30.09/12.96 new_esEs26(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.09/12.96 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Integer, be) -> new_ltEs17(xuu30000, xuu31000) 30.09/12.96 new_esEs10(LT, EQ) -> False 30.09/12.96 new_esEs10(EQ, LT) -> False 30.09/12.96 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.09/12.96 new_esEs20(xuu40001, xuu3001, ty_Ordering) -> new_esEs10(xuu40001, xuu3001) 30.09/12.96 new_esEs29(xuu4000, xuu300, app(app(app(ty_@3, ccg), cch), cda)) -> new_esEs4(xuu4000, xuu300, ccg, cch, cda) 30.09/12.96 new_compare13(xuu30000, xuu31000, baf) -> new_compare24(xuu30000, xuu31000, new_esEs6(xuu30000, xuu31000, baf), baf) 30.09/12.96 new_primCmpNat0(Succ(xuu3100), xuu3000) -> new_primCmpNat1(xuu3100, xuu3000) 30.09/12.96 new_compare210(xuu30000, xuu31000, True) -> EQ 30.09/12.96 new_esEs20(xuu40001, xuu3001, ty_Float) -> new_esEs8(xuu40001, xuu3001) 30.09/12.96 new_esEs28(xuu40002, xuu3002, ty_Char) -> new_esEs12(xuu40002, xuu3002) 30.09/12.96 new_lt9(xuu300, xuu310) -> new_esEs10(new_compare6(xuu300, xuu310), LT) 30.09/12.96 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Bool) -> new_ltEs11(xuu30000, xuu31000) 30.09/12.96 new_esEs28(xuu40002, xuu3002, app(ty_[], ddh)) -> new_esEs16(xuu40002, xuu3002, ddh) 30.09/12.96 new_esEs27(xuu40001, xuu3001, app(app(ty_@2, dbe), dbf)) -> new_esEs7(xuu40001, xuu3001, dbe, dbf) 30.09/12.96 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Char) -> new_ltEs9(xuu30000, xuu31000) 30.09/12.96 new_ltEs18(xuu3000, xuu3100, app(ty_Maybe, fa)) -> new_ltEs12(xuu3000, xuu3100, fa) 30.09/12.96 new_esEs19(xuu40000, xuu3000, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs4(xuu40000, xuu3000, bdh, bea, beb) 30.09/12.96 new_pePe(False, xuu167) -> xuu167 30.09/12.96 new_esEs27(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) 30.09/12.96 new_ltEs4(Left(xuu30000), Left(xuu31000), app(ty_Ratio, cc), be) -> new_ltEs10(xuu30000, xuu31000, cc) 30.09/12.96 new_ltEs18(xuu3000, xuu3100, app(app(app(ty_@3, ee), ef), eg)) -> new_ltEs6(xuu3000, xuu3100, ee, ef, eg) 30.09/12.96 new_esEs11(False, True) -> False 30.09/12.96 new_esEs11(True, False) -> False 30.09/12.96 new_compare25(xuu30000, xuu31000, True, bac, bad) -> EQ 30.09/12.96 new_ltEs4(Left(xuu30000), Left(xuu31000), app(app(app(ty_@3, bf), bg), bh), be) -> new_ltEs6(xuu30000, xuu31000, bf, bg, bh) 30.09/12.96 new_lt12(xuu30001, xuu31001, ty_Int) -> new_lt9(xuu30001, xuu31001) 30.09/12.96 new_compare26(xuu30000, xuu31000, False) -> new_compare111(xuu30000, xuu31000, new_ltEs11(xuu30000, xuu31000)) 30.09/12.96 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Double) -> new_ltEs14(xuu30000, xuu31000) 30.09/12.96 new_ltEs19(xuu30002, xuu31002, ty_Integer) -> new_ltEs17(xuu30002, xuu31002) 30.09/12.96 new_compare31(xuu30000, xuu31000, ty_Float) -> new_compare19(xuu30000, xuu31000) 30.09/12.96 new_lt6(xuu30000, xuu31000, baf) -> new_esEs10(new_compare13(xuu30000, xuu31000, baf), LT) 30.09/12.96 new_compare7(Integer(xuu30000), Integer(xuu31000)) -> new_primCmpInt(xuu30000, xuu31000) 30.09/12.96 new_compare10(xuu134, xuu135, False, dea) -> GT 30.09/12.96 new_compare11(xuu30000, xuu31000, False, bac, bad) -> GT 30.09/12.96 new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False 30.09/12.96 new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False 30.09/12.96 new_compare24(xuu300, xuu310, True, ec) -> EQ 30.09/12.96 new_esEs19(xuu40000, xuu3000, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.09/12.96 new_esEs19(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.09/12.96 new_compare24(Just(xuu3000), Just(xuu3100), False, ec) -> new_compare10(xuu3000, xuu3100, new_ltEs18(xuu3000, xuu3100, ec), ec) 30.09/12.96 new_esEs18(xuu40000, xuu3000, app(ty_Ratio, bbg)) -> new_esEs13(xuu40000, xuu3000, bbg) 30.09/12.96 new_compare31(xuu30000, xuu31000, ty_Int) -> new_compare6(xuu30000, xuu31000) 30.09/12.96 new_ltEs20(xuu30001, xuu31001, app(ty_Ratio, chg)) -> new_ltEs10(xuu30001, xuu31001, chg) 30.09/12.96 new_esEs6(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, ceg), ceh), cfa)) -> new_esEs4(xuu40000, xuu3000, ceg, ceh, cfa) 30.09/12.96 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.09/12.96 new_esEs26(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.09/12.96 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(app(ty_@2, ha), hb)) -> new_esEs7(xuu40000, xuu3000, ha, hb) 30.09/12.96 new_ltEs18(xuu3000, xuu3100, ty_Double) -> new_ltEs14(xuu3000, xuu3100) 30.09/12.96 new_esEs26(xuu40000, xuu3000, app(ty_[], dbd)) -> new_esEs16(xuu40000, xuu3000, dbd) 30.09/12.96 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Ordering, fg) -> new_esEs10(xuu40000, xuu3000) 30.09/12.96 new_esEs24(xuu30001, xuu31001, app(app(ty_Either, bhe), bhf)) -> new_esEs5(xuu30001, xuu31001, bhe, bhf) 30.09/12.96 new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) 30.09/12.96 new_primCmpInt(Neg(Zero), Pos(Succ(xuu3100))) -> LT 30.09/12.96 new_compare9(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Integer) -> new_compare7(new_sr0(xuu30000, xuu31001), new_sr0(xuu31000, xuu30001)) 30.09/12.96 new_compare19(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.09/12.96 new_primMulInt(Pos(xuu400000), Pos(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) 30.09/12.96 new_esEs29(xuu4000, xuu300, ty_Float) -> new_esEs8(xuu4000, xuu300) 30.09/12.96 new_esEs18(xuu40000, xuu3000, app(ty_[], bca)) -> new_esEs16(xuu40000, xuu3000, bca) 30.09/12.96 new_ltEs19(xuu30002, xuu31002, app(ty_Ratio, cba)) -> new_ltEs10(xuu30002, xuu31002, cba) 30.09/12.96 new_esEs24(xuu30001, xuu31001, ty_Ordering) -> new_esEs10(xuu30001, xuu31001) 30.09/12.96 new_ltEs14(xuu3000, xuu3100) -> new_fsEs(new_compare5(xuu3000, xuu3100)) 30.09/12.96 new_compare10(xuu134, xuu135, True, dea) -> LT 30.09/12.96 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(app(app(ty_@3, hc), hd), he)) -> new_esEs4(xuu40000, xuu3000, hc, hd, he) 30.09/12.96 new_esEs24(xuu30001, xuu31001, app(ty_Maybe, bhh)) -> new_esEs6(xuu30001, xuu31001, bhh) 30.09/12.96 new_primMulNat0(Succ(xuu4000000), Zero) -> Zero 30.09/12.96 new_primMulNat0(Zero, Succ(xuu300100)) -> Zero 30.09/12.96 new_ltEs11(False, False) -> True 30.09/12.96 new_compare31(xuu30000, xuu31000, ty_Bool) -> new_compare12(xuu30000, xuu31000) 30.09/12.96 new_esEs7(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bdd, bde) -> new_asAs(new_esEs19(xuu40000, xuu3000, bdd), new_esEs20(xuu40001, xuu3001, bde)) 30.09/12.96 new_esEs24(xuu30001, xuu31001, ty_Char) -> new_esEs12(xuu30001, xuu31001) 30.09/12.96 new_lt13(xuu30000, xuu31000, ty_Bool) -> new_lt15(xuu30000, xuu31000) 30.09/12.96 new_esEs30(xuu19, xuu14, ty_Float) -> new_esEs8(xuu19, xuu14) 30.09/12.96 new_compare9(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Int) -> new_compare6(new_sr(xuu30000, xuu31001), new_sr(xuu31000, xuu30001)) 30.09/12.96 new_esEs18(xuu40000, xuu3000, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.09/12.96 new_compare27(xuu30000, xuu31000, False, bgb, bgc) -> new_compare110(xuu30000, xuu31000, new_ltEs13(xuu30000, xuu31000, bgb, bgc), bgb, bgc) 30.09/12.96 new_ltEs17(xuu3000, xuu3100) -> new_fsEs(new_compare7(xuu3000, xuu3100)) 30.09/12.96 new_ltEs18(xuu3000, xuu3100, ty_@0) -> new_ltEs8(xuu3000, xuu3100) 30.09/12.96 new_lt20(xuu30000, xuu31000, app(app(app(ty_@3, cfh), cga), cgb)) -> new_lt11(xuu30000, xuu31000, cfh, cga, cgb) 30.09/12.96 new_compare24(Just(xuu3000), Nothing, False, ec) -> GT 30.09/12.96 new_esEs5(Left(xuu40000), Left(xuu3000), app(app(ty_Either, gc), gd), fg) -> new_esEs5(xuu40000, xuu3000, gc, gd) 30.09/12.96 new_compare19(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.09/12.96 new_primCmpNat0(Zero, xuu3000) -> LT 30.09/12.96 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(ty_Maybe, baa)) -> new_esEs6(xuu40000, xuu3000, baa) 30.09/12.96 new_esEs18(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.09/12.96 new_esEs22(xuu40001, xuu3001, ty_Int) -> new_esEs9(xuu40001, xuu3001) 30.09/12.96 new_lt8(xuu30000, xuu31000, bac, bad) -> new_esEs10(new_compare18(xuu30000, xuu31000, bac, bad), LT) 30.09/12.96 new_lt15(xuu30000, xuu31000) -> new_esEs10(new_compare12(xuu30000, xuu31000), LT) 30.09/12.96 new_compare111(xuu30000, xuu31000, True) -> LT 30.09/12.96 new_esEs27(xuu40001, xuu3001, ty_Float) -> new_esEs8(xuu40001, xuu3001) 30.09/12.96 new_lt14(xuu30000, xuu31000, bgh) -> new_esEs10(new_compare(xuu30000, xuu31000, bgh), LT) 30.09/12.96 new_compare31(xuu30000, xuu31000, app(ty_Ratio, ccc)) -> new_compare9(xuu30000, xuu31000, ccc) 30.09/12.96 new_lt13(xuu30000, xuu31000, ty_Float) -> new_lt10(xuu30000, xuu31000) 30.09/12.96 new_esEs20(xuu40001, xuu3001, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_esEs4(xuu40001, xuu3001, bfb, bfc, bfd) 30.09/12.96 new_ltEs11(True, True) -> True 30.09/12.96 new_ltEs16(xuu3000, xuu3100) -> new_fsEs(new_compare19(xuu3000, xuu3100)) 30.09/12.96 new_primPlusNat1(Succ(xuu25200), Zero) -> Succ(xuu25200) 30.09/12.96 new_primPlusNat1(Zero, Succ(xuu9400)) -> Succ(xuu9400) 30.09/12.96 new_esEs30(xuu19, xuu14, ty_@0) -> new_esEs14(xuu19, xuu14) 30.09/12.96 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Ordering) -> new_ltEs15(xuu30000, xuu31000) 30.09/12.96 new_lt13(xuu30000, xuu31000, ty_Ordering) -> new_lt18(xuu30000, xuu31000) 30.09/12.96 new_esEs16([], [], bag) -> True 30.09/12.96 new_ltEs12(Just(xuu30000), Just(xuu31000), app(app(app(ty_@3, cdd), cde), cdf)) -> new_ltEs6(xuu30000, xuu31000, cdd, cde, cdf) 30.09/12.96 new_ltEs20(xuu30001, xuu31001, ty_Double) -> new_ltEs14(xuu30001, xuu31001) 30.09/12.96 new_esEs23(xuu30000, xuu31000, ty_Ordering) -> new_esEs10(xuu30000, xuu31000) 30.09/12.96 new_lt12(xuu30001, xuu31001, ty_Float) -> new_lt10(xuu30001, xuu31001) 30.09/12.96 new_ltEs12(Just(xuu30000), Just(xuu31000), app(ty_Maybe, ceb)) -> new_ltEs12(xuu30000, xuu31000, ceb) 30.09/12.96 new_esEs29(xuu4000, xuu300, ty_@0) -> new_esEs14(xuu4000, xuu300) 30.09/12.96 new_primMulInt(Neg(xuu400000), Neg(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) 30.09/12.96 new_esEs20(xuu40001, xuu3001, ty_Double) -> new_esEs17(xuu40001, xuu3001) 30.09/12.96 new_esEs25(xuu30000, xuu31000, app(app(ty_@2, cgg), cgh)) -> new_esEs7(xuu30000, xuu31000, cgg, cgh) 30.09/12.96 new_esEs25(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) 30.09/12.96 new_lt20(xuu30000, xuu31000, app(ty_Ratio, cge)) -> new_lt5(xuu30000, xuu31000, cge) 30.09/12.96 new_compare([], :(xuu31000, xuu31001), ed) -> LT 30.09/12.96 new_esEs28(xuu40002, xuu3002, ty_Integer) -> new_esEs15(xuu40002, xuu3002) 30.09/12.96 new_ltEs19(xuu30002, xuu31002, app(app(ty_@2, cbc), cbd)) -> new_ltEs13(xuu30002, xuu31002, cbc, cbd) 30.09/12.96 new_esEs6(Just(xuu40000), Just(xuu3000), app(ty_Maybe, cfe)) -> new_esEs6(xuu40000, xuu3000, cfe) 30.09/12.96 new_esEs6(Nothing, Just(xuu3000), cdb) -> False 30.09/12.96 new_esEs6(Just(xuu40000), Nothing, cdb) -> False 30.09/12.96 new_ltEs11(False, True) -> True 30.09/12.96 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Float, be) -> new_ltEs16(xuu30000, xuu31000) 30.09/12.96 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_@0) -> new_ltEs8(xuu30000, xuu31000) 30.09/12.96 new_ltEs19(xuu30002, xuu31002, ty_@0) -> new_ltEs8(xuu30002, xuu31002) 30.09/12.96 new_ltEs15(EQ, GT) -> True 30.09/12.96 new_esEs24(xuu30001, xuu31001, ty_Bool) -> new_esEs11(xuu30001, xuu31001) 30.09/12.96 new_esEs6(Nothing, Nothing, cdb) -> True 30.09/12.96 new_ltEs18(xuu3000, xuu3100, ty_Char) -> new_ltEs9(xuu3000, xuu3100) 30.09/12.96 new_esEs11(False, False) -> True 30.09/12.96 new_esEs10(LT, LT) -> True 30.09/12.96 new_ltEs18(xuu3000, xuu3100, ty_Ordering) -> new_ltEs15(xuu3000, xuu3100) 30.09/12.96 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Int, be) -> new_ltEs7(xuu30000, xuu31000) 30.09/12.96 new_esEs21(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.09/12.96 new_ltEs20(xuu30001, xuu31001, app(app(ty_@2, daa), dab)) -> new_ltEs13(xuu30001, xuu31001, daa, dab) 30.09/12.96 new_primCmpNat2(xuu3000, Zero) -> GT 30.09/12.96 new_esEs28(xuu40002, xuu3002, ty_Float) -> new_esEs8(xuu40002, xuu3002) 30.09/12.96 new_lt4(xuu30000, xuu31000) -> new_esEs10(new_compare8(xuu30000, xuu31000), LT) 30.09/12.96 new_compare6(xuu30, xuu31) -> new_primCmpInt(xuu30, xuu31) 30.09/12.96 new_compare31(xuu30000, xuu31000, app(ty_Maybe, ccd)) -> new_compare13(xuu30000, xuu31000, ccd) 30.09/12.96 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.09/12.96 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Bool, fg) -> new_esEs11(xuu40000, xuu3000) 30.09/12.96 new_lt13(xuu30000, xuu31000, ty_Int) -> new_lt9(xuu30000, xuu31000) 30.09/12.96 new_esEs16(:(xuu40000, xuu40001), :(xuu3000, xuu3001), bag) -> new_asAs(new_esEs18(xuu40000, xuu3000, bag), new_esEs16(xuu40001, xuu3001, bag)) 30.09/12.96 new_compare30(xuu30000, xuu31000) -> new_compare210(xuu30000, xuu31000, new_esEs10(xuu30000, xuu31000)) 30.09/12.96 new_ltEs19(xuu30002, xuu31002, ty_Char) -> new_ltEs9(xuu30002, xuu31002) 30.09/12.96 new_lt12(xuu30001, xuu31001, ty_Bool) -> new_lt15(xuu30001, xuu31001) 30.09/12.96 new_compare31(xuu30000, xuu31000, ty_Integer) -> new_compare7(xuu30000, xuu31000) 30.09/12.96 new_ltEs12(Just(xuu30000), Just(xuu31000), app(ty_[], cdc)) -> new_ltEs5(xuu30000, xuu31000, cdc) 30.09/12.96 new_esEs26(xuu40000, xuu3000, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs4(xuu40000, xuu3000, dae, daf, dag) 30.09/12.96 new_primMulInt(Pos(xuu400000), Neg(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) 30.09/12.96 new_primMulInt(Neg(xuu400000), Pos(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) 30.09/12.96 new_esEs12(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) 30.09/12.96 new_esEs19(xuu40000, xuu3000, app(app(ty_Either, bec), bed)) -> new_esEs5(xuu40000, xuu3000, bec, bed) 30.09/12.96 new_lt17(xuu30000, xuu31000) -> new_esEs10(new_compare5(xuu30000, xuu31000), LT) 30.09/12.96 new_esEs26(xuu40000, xuu3000, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.09/12.96 new_esEs20(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) 30.09/12.96 new_ltEs20(xuu30001, xuu31001, ty_@0) -> new_ltEs8(xuu30001, xuu31001) 30.09/12.96 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(app(app(ty_@3, db), dc), dd)) -> new_ltEs6(xuu30000, xuu31000, db, dc, dd) 30.09/12.96 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(app(ty_Either, de), df)) -> new_ltEs4(xuu30000, xuu31000, de, df) 30.09/12.96 new_ltEs4(Left(xuu30000), Left(xuu31000), app(ty_[], bd), be) -> new_ltEs5(xuu30000, xuu31000, bd) 30.09/12.96 new_primCmpNat1(Succ(xuu30000), Zero) -> GT 30.09/12.96 new_esEs27(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) 30.09/12.96 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Integer) -> new_ltEs17(xuu30000, xuu31000) 30.09/12.96 new_compare14(xuu30000, xuu31000, False) -> GT 30.09/12.96 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Ordering) -> new_ltEs15(xuu30000, xuu31000) 30.09/12.96 new_ltEs19(xuu30002, xuu31002, ty_Double) -> new_ltEs14(xuu30002, xuu31002) 30.09/12.96 new_sr0(Integer(xuu300000), Integer(xuu310010)) -> Integer(new_primMulInt(xuu300000, xuu310010)) 30.09/12.96 new_ltEs9(xuu3000, xuu3100) -> new_fsEs(new_compare17(xuu3000, xuu3100)) 30.09/12.96 new_primCmpNat2(xuu3000, Succ(xuu3100)) -> new_primCmpNat1(xuu3000, xuu3100) 30.09/12.96 new_esEs28(xuu40002, xuu3002, ty_@0) -> new_esEs14(xuu40002, xuu3002) 30.09/12.96 new_ltEs15(LT, GT) -> True 30.09/12.96 new_ltEs20(xuu30001, xuu31001, app(app(ty_Either, che), chf)) -> new_ltEs4(xuu30001, xuu31001, che, chf) 30.09/12.96 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(ty_[], da)) -> new_ltEs5(xuu30000, xuu31000, da) 30.09/12.96 new_esEs29(xuu4000, xuu300, ty_Integer) -> new_esEs15(xuu4000, xuu300) 30.09/12.96 new_esEs20(xuu40001, xuu3001, app(ty_Ratio, bfg)) -> new_esEs13(xuu40001, xuu3001, bfg) 30.09/12.96 new_esEs30(xuu19, xuu14, ty_Integer) -> new_esEs15(xuu19, xuu14) 30.09/12.96 new_esEs20(xuu40001, xuu3001, ty_Int) -> new_esEs9(xuu40001, xuu3001) 30.09/12.96 new_esEs15(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) 30.09/12.96 new_esEs25(xuu30000, xuu31000, app(ty_Ratio, cge)) -> new_esEs13(xuu30000, xuu31000, cge) 30.09/12.96 new_esEs25(xuu30000, xuu31000, ty_Bool) -> new_esEs11(xuu30000, xuu31000) 30.09/12.96 new_compare31(xuu30000, xuu31000, app(ty_[], cbe)) -> new_compare(xuu30000, xuu31000, cbe) 30.09/12.96 new_esEs25(xuu30000, xuu31000, ty_Int) -> new_esEs9(xuu30000, xuu31000) 30.09/12.96 new_asAs(True, xuu141) -> xuu141 30.09/12.96 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.09/12.96 new_ltEs13(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), fb, fc) -> new_pePe(new_lt20(xuu30000, xuu31000, fb), new_asAs(new_esEs25(xuu30000, xuu31000, fb), new_ltEs20(xuu30001, xuu31001, fc))) 30.09/12.96 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Bool) -> new_ltEs11(xuu30000, xuu31000) 30.09/12.96 new_esEs18(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.09/12.96 new_esEs24(xuu30001, xuu31001, ty_@0) -> new_esEs14(xuu30001, xuu31001) 30.09/12.96 new_compare31(xuu30000, xuu31000, app(app(ty_@2, cce), ccf)) -> new_compare15(xuu30000, xuu31000, cce, ccf) 30.09/12.96 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Integer, fg) -> new_esEs15(xuu40000, xuu3000) 30.09/12.96 new_lt12(xuu30001, xuu31001, ty_Ordering) -> new_lt18(xuu30001, xuu31001) 30.09/12.96 new_compare18(xuu30000, xuu31000, bac, bad) -> new_compare25(xuu30000, xuu31000, new_esEs5(xuu30000, xuu31000, bac, bad), bac, bad) 30.09/12.96 new_lt13(xuu30000, xuu31000, app(app(ty_Either, bac), bad)) -> new_lt8(xuu30000, xuu31000, bac, bad) 30.09/12.96 new_esEs19(xuu40000, xuu3000, app(ty_Ratio, bee)) -> new_esEs13(xuu40000, xuu3000, bee) 30.09/12.96 new_ltEs20(xuu30001, xuu31001, ty_Char) -> new_ltEs9(xuu30001, xuu31001) 30.09/12.96 new_esEs24(xuu30001, xuu31001, ty_Integer) -> new_esEs15(xuu30001, xuu31001) 30.09/12.96 new_esEs19(xuu40000, xuu3000, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.09/12.96 new_esEs29(xuu4000, xuu300, app(ty_[], bag)) -> new_esEs16(xuu4000, xuu300, bag) 30.09/12.96 new_ltEs20(xuu30001, xuu31001, ty_Float) -> new_ltEs16(xuu30001, xuu31001) 30.09/12.96 new_lt13(xuu30000, xuu31000, ty_@0) -> new_lt4(xuu30000, xuu31000) 30.09/12.96 new_compare12(xuu30000, xuu31000) -> new_compare26(xuu30000, xuu31000, new_esEs11(xuu30000, xuu31000)) 30.09/12.96 new_esEs19(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.09/12.96 new_esEs18(xuu40000, xuu3000, app(app(ty_@2, bah), bba)) -> new_esEs7(xuu40000, xuu3000, bah, bba) 30.09/12.96 new_esEs24(xuu30001, xuu31001, app(app(ty_@2, caa), cab)) -> new_esEs7(xuu30001, xuu31001, caa, cab) 30.09/12.96 new_esEs30(xuu19, xuu14, app(app(ty_@2, bcb), bcc)) -> new_esEs7(xuu19, xuu14, bcb, bcc) 30.09/12.96 new_lt12(xuu30001, xuu31001, app(ty_[], bha)) -> new_lt14(xuu30001, xuu31001, bha) 30.09/12.96 new_esEs29(xuu4000, xuu300, app(app(ty_Either, gh), fg)) -> new_esEs5(xuu4000, xuu300, gh, fg) 30.09/12.96 new_ltEs18(xuu3000, xuu3100, app(app(ty_@2, fb), fc)) -> new_ltEs13(xuu3000, xuu3100, fb, fc) 30.09/12.96 new_lt20(xuu30000, xuu31000, ty_Char) -> new_lt7(xuu30000, xuu31000) 30.09/12.96 new_compare15(xuu30000, xuu31000, bgb, bgc) -> new_compare27(xuu30000, xuu31000, new_esEs7(xuu30000, xuu31000, bgb, bgc), bgb, bgc) 30.09/12.96 new_primCompAux00(xuu182, EQ) -> xuu182 30.09/12.96 new_sr(xuu40000, xuu3001) -> new_primMulInt(xuu40000, xuu3001) 30.09/12.96 new_lt12(xuu30001, xuu31001, app(ty_Maybe, bhh)) -> new_lt6(xuu30001, xuu31001, bhh) 30.09/12.96 new_esEs25(xuu30000, xuu31000, ty_Integer) -> new_esEs15(xuu30000, xuu31000) 30.09/12.96 new_primMulNat0(Zero, Zero) -> Zero 30.09/12.96 new_lt13(xuu30000, xuu31000, app(app(ty_@2, bgb), bgc)) -> new_lt16(xuu30000, xuu31000, bgb, bgc) 30.09/12.96 new_esEs30(xuu19, xuu14, app(ty_[], bdc)) -> new_esEs16(xuu19, xuu14, bdc) 30.09/12.96 new_esEs24(xuu30001, xuu31001, app(ty_[], bha)) -> new_esEs16(xuu30001, xuu31001, bha) 30.09/12.96 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Int, fg) -> new_esEs9(xuu40000, xuu3000) 30.09/12.96 new_esEs23(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) 30.09/12.96 new_compare111(xuu30000, xuu31000, False) -> GT 30.09/12.96 new_primCmpNat1(Zero, Zero) -> EQ 30.09/12.96 new_ltEs20(xuu30001, xuu31001, app(ty_Maybe, chh)) -> new_ltEs12(xuu30001, xuu31001, chh) 30.09/12.96 new_esEs30(xuu19, xuu14, ty_Int) -> new_esEs9(xuu19, xuu14) 30.09/12.96 new_esEs23(xuu30000, xuu31000, app(app(ty_@2, bgb), bgc)) -> new_esEs7(xuu30000, xuu31000, bgb, bgc) 30.09/12.96 new_compare28(xuu30000, xuu31000, True, bgd, bge, bgf) -> EQ 30.09/12.96 new_ltEs18(xuu3000, xuu3100, app(app(ty_Either, cg), be)) -> new_ltEs4(xuu3000, xuu3100, cg, be) 30.09/12.96 new_lt20(xuu30000, xuu31000, ty_Float) -> new_lt10(xuu30000, xuu31000) 30.09/12.96 new_esEs20(xuu40001, xuu3001, app(app(ty_Either, bfe), bff)) -> new_esEs5(xuu40001, xuu3001, bfe, bff) 30.09/12.96 new_ltEs11(True, False) -> False 30.09/12.96 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(app(ty_Either, hf), hg)) -> new_esEs5(xuu40000, xuu3000, hf, hg) 30.09/12.96 new_esEs19(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.09/12.96 new_ltEs15(EQ, EQ) -> True 30.09/12.96 new_esEs26(xuu40000, xuu3000, app(ty_Maybe, dbc)) -> new_esEs6(xuu40000, xuu3000, dbc) 30.09/12.96 new_fsEs(xuu151) -> new_not(new_esEs10(xuu151, GT)) 30.09/12.96 new_esEs30(xuu19, xuu14, app(ty_Ratio, bda)) -> new_esEs13(xuu19, xuu14, bda) 30.09/12.96 new_esEs26(xuu40000, xuu3000, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.09/12.96 new_esEs24(xuu30001, xuu31001, app(ty_Ratio, bhg)) -> new_esEs13(xuu30001, xuu31001, bhg) 30.09/12.96 new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.09/12.96 new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.09/12.96 new_ltEs18(xuu3000, xuu3100, app(ty_Ratio, eh)) -> new_ltEs10(xuu3000, xuu3100, eh) 30.09/12.96 new_lt12(xuu30001, xuu31001, ty_@0) -> new_lt4(xuu30001, xuu31001) 30.09/12.96 new_esEs6(Just(xuu40000), Just(xuu3000), app(app(ty_@2, cee), cef)) -> new_esEs7(xuu40000, xuu3000, cee, cef) 30.09/12.96 new_esEs18(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.09/12.96 new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False 30.09/12.96 new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False 30.09/12.96 new_esEs29(xuu4000, xuu300, app(ty_Ratio, bgg)) -> new_esEs13(xuu4000, xuu300, bgg) 30.09/12.96 new_esEs24(xuu30001, xuu31001, ty_Int) -> new_esEs9(xuu30001, xuu31001) 30.09/12.96 new_esEs25(xuu30000, xuu31000, app(ty_Maybe, cgf)) -> new_esEs6(xuu30000, xuu31000, cgf) 30.09/12.96 new_compare([], [], ed) -> EQ 30.09/12.96 new_ltEs15(LT, EQ) -> True 30.09/12.96 new_esEs20(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) 30.09/12.96 new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) 30.09/12.96 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.09/12.96 new_esEs20(xuu40001, xuu3001, app(ty_[], bga)) -> new_esEs16(xuu40001, xuu3001, bga) 30.09/12.96 new_esEs28(xuu40002, xuu3002, app(app(ty_@2, dcg), dch)) -> new_esEs7(xuu40002, xuu3002, dcg, dch) 30.09/12.96 new_ltEs4(Left(xuu30000), Left(xuu31000), app(app(ty_Either, ca), cb), be) -> new_ltEs4(xuu30000, xuu31000, ca, cb) 30.09/12.96 new_lt13(xuu30000, xuu31000, app(ty_[], bgh)) -> new_lt14(xuu30000, xuu31000, bgh) 30.09/12.96 new_esEs25(xuu30000, xuu31000, app(app(ty_Either, cgc), cgd)) -> new_esEs5(xuu30000, xuu31000, cgc, cgd) 30.09/12.96 new_esEs20(xuu40001, xuu3001, app(ty_Maybe, bfh)) -> new_esEs6(xuu40001, xuu3001, bfh) 30.09/12.96 new_ltEs19(xuu30002, xuu31002, app(ty_Maybe, cbb)) -> new_ltEs12(xuu30002, xuu31002, cbb) 30.09/12.96 new_esEs11(True, True) -> True 30.09/12.96 new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False 30.09/12.96 new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False 30.09/12.96 new_esEs19(xuu40000, xuu3000, app(ty_Maybe, bef)) -> new_esEs6(xuu40000, xuu3000, bef) 30.09/12.96 new_compare29(xuu30000, xuu31000, bgd, bge, bgf) -> new_compare28(xuu30000, xuu31000, new_esEs4(xuu30000, xuu31000, bgd, bge, bgf), bgd, bge, bgf) 30.09/12.96 new_compare31(xuu30000, xuu31000, ty_Double) -> new_compare5(xuu30000, xuu31000) 30.09/12.96 new_esEs25(xuu30000, xuu31000, app(ty_[], cfg)) -> new_esEs16(xuu30000, xuu31000, cfg) 30.09/12.96 new_esEs19(xuu40000, xuu3000, app(ty_[], beg)) -> new_esEs16(xuu40000, xuu3000, beg) 30.09/12.96 new_esEs29(xuu4000, xuu300, ty_Int) -> new_esEs9(xuu4000, xuu300) 30.09/12.96 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 30.09/12.96 new_ltEs15(GT, GT) -> True 30.09/12.96 new_esEs30(xuu19, xuu14, ty_Bool) -> new_esEs11(xuu19, xuu14) 30.09/12.96 new_esEs26(xuu40000, xuu3000, app(app(ty_Either, dah), dba)) -> new_esEs5(xuu40000, xuu3000, dah, dba) 30.09/12.96 new_esEs30(xuu19, xuu14, app(ty_Maybe, bdb)) -> new_esEs6(xuu19, xuu14, bdb) 30.09/12.96 new_esEs10(LT, GT) -> False 30.09/12.96 new_esEs10(GT, LT) -> False 30.09/12.96 new_esEs21(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.09/12.96 new_ltEs10(xuu3000, xuu3100, eh) -> new_fsEs(new_compare9(xuu3000, xuu3100, eh)) 30.09/12.96 new_esEs19(xuu40000, xuu3000, app(app(ty_@2, bdf), bdg)) -> new_esEs7(xuu40000, xuu3000, bdf, bdg) 30.09/12.96 new_ltEs7(xuu3000, xuu3100) -> new_fsEs(new_compare6(xuu3000, xuu3100)) 30.09/12.96 new_ltEs12(Just(xuu30000), Just(xuu31000), app(app(ty_@2, cec), ced)) -> new_ltEs13(xuu30000, xuu31000, cec, ced) 30.09/12.96 new_esEs27(xuu40001, xuu3001, app(app(app(ty_@3, dbg), dbh), dca)) -> new_esEs4(xuu40001, xuu3001, dbg, dbh, dca) 30.09/12.96 new_primPlusNat0(xuu104, xuu300100) -> new_primPlusNat1(xuu104, Succ(xuu300100)) 30.09/12.96 new_not(False) -> True 30.09/12.96 new_esEs28(xuu40002, xuu3002, ty_Int) -> new_esEs9(xuu40002, xuu3002) 30.09/12.96 new_compare31(xuu30000, xuu31000, ty_Char) -> new_compare17(xuu30000, xuu31000) 30.09/12.96 new_esEs18(xuu40000, xuu3000, app(app(ty_Either, bbe), bbf)) -> new_esEs5(xuu40000, xuu3000, bbe, bbf) 30.09/12.96 new_esEs28(xuu40002, xuu3002, app(ty_Ratio, ddf)) -> new_esEs13(xuu40002, xuu3002, ddf) 30.09/12.96 new_esEs29(xuu4000, xuu300, ty_Ordering) -> new_esEs10(xuu4000, xuu300) 30.09/12.96 new_lt20(xuu30000, xuu31000, ty_@0) -> new_lt4(xuu30000, xuu31000) 30.09/12.96 new_esEs25(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) 30.09/12.96 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.09/12.96 new_compare19(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.09/12.96 new_compare19(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.09/12.96 new_lt12(xuu30001, xuu31001, app(app(ty_Either, bhe), bhf)) -> new_lt8(xuu30001, xuu31001, bhe, bhf) 30.09/12.96 new_esEs25(xuu30000, xuu31000, ty_Double) -> new_esEs17(xuu30000, xuu31000) 30.09/12.96 new_esEs5(Left(xuu40000), Right(xuu3000), gh, fg) -> False 30.09/12.96 new_esEs5(Right(xuu40000), Left(xuu3000), gh, fg) -> False 30.09/12.96 new_primCmpInt(Pos(Succ(xuu3000)), Pos(xuu310)) -> new_primCmpNat2(xuu3000, xuu310) 30.09/12.96 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Int) -> new_ltEs7(xuu30000, xuu31000) 30.09/12.96 new_lt12(xuu30001, xuu31001, ty_Integer) -> new_lt19(xuu30001, xuu31001) 30.09/12.96 new_compare27(xuu30000, xuu31000, True, bgb, bgc) -> EQ 30.09/12.96 new_esEs29(xuu4000, xuu300, app(app(ty_@2, bdd), bde)) -> new_esEs7(xuu4000, xuu300, bdd, bde) 30.09/12.96 new_ltEs4(Left(xuu30000), Right(xuu31000), cg, be) -> True 30.09/12.96 new_esEs18(xuu40000, xuu3000, app(ty_Maybe, bbh)) -> new_esEs6(xuu40000, xuu3000, bbh) 30.09/12.96 new_esEs30(xuu19, xuu14, ty_Ordering) -> new_esEs10(xuu19, xuu14) 30.09/12.96 new_esEs27(xuu40001, xuu3001, ty_Ordering) -> new_esEs10(xuu40001, xuu3001) 30.09/12.96 new_ltEs18(xuu3000, xuu3100, app(ty_[], ed)) -> new_ltEs5(xuu3000, xuu3100, ed) 30.09/12.96 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(app(ty_@2, ea), eb)) -> new_ltEs13(xuu30000, xuu31000, ea, eb) 30.09/12.96 new_esEs30(xuu19, xuu14, app(app(ty_Either, bcg), bch)) -> new_esEs5(xuu19, xuu14, bcg, bch) 30.09/12.96 new_lt20(xuu30000, xuu31000, ty_Int) -> new_lt9(xuu30000, xuu31000) 30.09/12.96 new_lt5(xuu30000, xuu31000, bae) -> new_esEs10(new_compare9(xuu30000, xuu31000, bae), LT) 30.09/12.96 new_ltEs20(xuu30001, xuu31001, ty_Bool) -> new_ltEs11(xuu30001, xuu31001) 30.09/12.96 new_compare16(xuu30000, xuu31000, False, bgd, bge, bgf) -> GT 30.09/12.96 new_compare11(xuu30000, xuu31000, True, bac, bad) -> LT 30.09/12.96 new_ltEs19(xuu30002, xuu31002, ty_Int) -> new_ltEs7(xuu30002, xuu31002) 30.09/12.96 new_primCmpNat1(Zero, Succ(xuu31000)) -> LT 30.09/12.96 new_lt12(xuu30001, xuu31001, app(ty_Ratio, bhg)) -> new_lt5(xuu30001, xuu31001, bhg) 30.09/12.96 new_esEs29(xuu4000, xuu300, app(ty_Maybe, cdb)) -> new_esEs6(xuu4000, xuu300, cdb) 30.09/12.96 new_compare210(xuu30000, xuu31000, False) -> new_compare14(xuu30000, xuu31000, new_ltEs15(xuu30000, xuu31000)) 30.09/12.96 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 30.09/12.96 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 30.09/12.96 new_esEs25(xuu30000, xuu31000, app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs4(xuu30000, xuu31000, cfh, cga, cgb) 30.09/12.96 new_lt20(xuu30000, xuu31000, ty_Double) -> new_lt17(xuu30000, xuu31000) 30.09/12.96 new_lt18(xuu30000, xuu31000) -> new_esEs10(new_compare30(xuu30000, xuu31000), LT) 30.09/12.96 new_primPlusNat1(Zero, Zero) -> Zero 30.09/12.96 new_esEs18(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.09/12.96 new_compare31(xuu30000, xuu31000, ty_Ordering) -> new_compare30(xuu30000, xuu31000) 30.09/12.96 new_lt20(xuu30000, xuu31000, app(app(ty_@2, cgg), cgh)) -> new_lt16(xuu30000, xuu31000, cgg, cgh) 30.09/12.96 new_esEs20(xuu40001, xuu3001, ty_Bool) -> new_esEs11(xuu40001, xuu3001) 30.09/12.96 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Double, be) -> new_ltEs14(xuu30000, xuu31000) 30.09/12.96 new_ltEs19(xuu30002, xuu31002, ty_Bool) -> new_ltEs11(xuu30002, xuu31002) 30.09/12.96 new_ltEs20(xuu30001, xuu31001, ty_Int) -> new_ltEs7(xuu30001, xuu31001) 30.09/12.96 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Float, fg) -> new_esEs8(xuu40000, xuu3000) 30.09/12.96 new_ltEs12(Just(xuu30000), Just(xuu31000), app(ty_Ratio, cea)) -> new_ltEs10(xuu30000, xuu31000, cea) 30.09/12.96 new_esEs27(xuu40001, xuu3001, ty_Double) -> new_esEs17(xuu40001, xuu3001) 30.09/12.96 new_esEs24(xuu30001, xuu31001, ty_Float) -> new_esEs8(xuu30001, xuu31001) 30.09/12.96 new_ltEs15(LT, LT) -> True 30.09/12.96 new_ltEs12(Nothing, Just(xuu31000), fa) -> True 30.09/12.96 new_esEs10(EQ, GT) -> False 30.09/12.96 new_esEs10(GT, EQ) -> False 30.09/12.96 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Ordering, be) -> new_ltEs15(xuu30000, xuu31000) 30.09/12.96 new_esEs18(xuu40000, xuu3000, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.09/12.96 new_ltEs19(xuu30002, xuu31002, app(app(ty_Either, cag), cah)) -> new_ltEs4(xuu30002, xuu31002, cag, cah) 30.09/12.96 new_esEs28(xuu40002, xuu3002, app(ty_Maybe, ddg)) -> new_esEs6(xuu40002, xuu3002, ddg) 30.09/12.96 new_esEs8(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs9(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) 30.09/12.96 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 30.09/12.96 new_primMulNat0(Succ(xuu4000000), Succ(xuu300100)) -> new_primPlusNat0(new_primMulNat0(xuu4000000, Succ(xuu300100)), xuu300100) 30.09/12.96 new_lt20(xuu30000, xuu31000, ty_Ordering) -> new_lt18(xuu30000, xuu31000) 30.09/12.96 new_compare31(xuu30000, xuu31000, ty_@0) -> new_compare8(xuu30000, xuu31000) 30.09/12.96 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(ty_Maybe, dh)) -> new_ltEs12(xuu30000, xuu31000, dh) 30.09/12.96 new_compare16(xuu30000, xuu31000, True, bgd, bge, bgf) -> LT 30.09/12.96 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.09/12.96 new_esEs13(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), bgg) -> new_asAs(new_esEs21(xuu40000, xuu3000, bgg), new_esEs22(xuu40001, xuu3001, bgg)) 30.09/12.96 new_esEs27(xuu40001, xuu3001, app(ty_Maybe, dce)) -> new_esEs6(xuu40001, xuu3001, dce) 30.09/12.96 new_esEs6(Just(xuu40000), Just(xuu3000), app(ty_[], cff)) -> new_esEs16(xuu40000, xuu3000, cff) 30.09/12.96 new_esEs5(Left(xuu40000), Left(xuu3000), ty_@0, fg) -> new_esEs14(xuu40000, xuu3000) 30.09/12.96 new_ltEs12(Nothing, Nothing, fa) -> True 30.09/12.96 new_esEs16(:(xuu40000, xuu40001), [], bag) -> False 30.09/12.96 new_esEs16([], :(xuu3000, xuu3001), bag) -> False 30.09/12.96 new_ltEs19(xuu30002, xuu31002, ty_Float) -> new_ltEs16(xuu30002, xuu31002) 30.09/12.96 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_@0, be) -> new_ltEs8(xuu30000, xuu31000) 30.09/12.96 new_compare31(xuu30000, xuu31000, app(app(ty_Either, cca), ccb)) -> new_compare18(xuu30000, xuu31000, cca, ccb) 30.09/12.96 new_esEs23(xuu30000, xuu31000, app(ty_[], bgh)) -> new_esEs16(xuu30000, xuu31000, bgh) 30.09/12.96 new_ltEs12(Just(xuu30000), Nothing, fa) -> False 30.09/12.96 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 30.09/12.96 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 30.09/12.96 new_compare8(@0, @0) -> EQ 30.09/12.96 new_lt20(xuu30000, xuu31000, app(ty_Maybe, cgf)) -> new_lt6(xuu30000, xuu31000, cgf) 30.09/12.96 new_compare110(xuu30000, xuu31000, False, bgb, bgc) -> GT 30.09/12.96 new_esEs4(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), ccg, cch, cda) -> new_asAs(new_esEs26(xuu40000, xuu3000, ccg), new_asAs(new_esEs27(xuu40001, xuu3001, cch), new_esEs28(xuu40002, xuu3002, cda))) 30.09/12.96 new_esEs23(xuu30000, xuu31000, ty_Integer) -> new_esEs15(xuu30000, xuu31000) 30.09/12.96 new_esEs28(xuu40002, xuu3002, app(app(ty_Either, ddd), dde)) -> new_esEs5(xuu40002, xuu3002, ddd, dde) 30.09/12.96 new_primEqNat0(Zero, Zero) -> True 30.09/12.96 new_ltEs18(xuu3000, xuu3100, ty_Float) -> new_ltEs16(xuu3000, xuu3100) 30.09/12.96 new_esEs19(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.09/12.96 new_esEs18(xuu40000, xuu3000, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.09/12.96 new_ltEs20(xuu30001, xuu31001, app(ty_[], cha)) -> new_ltEs5(xuu30001, xuu31001, cha) 30.09/12.96 new_esEs28(xuu40002, xuu3002, ty_Ordering) -> new_esEs10(xuu40002, xuu3002) 30.09/12.96 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Float) -> new_ltEs16(xuu30000, xuu31000) 30.09/12.96 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Integer) -> new_ltEs17(xuu30000, xuu31000) 30.09/12.96 new_esEs6(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.09/12.96 new_esEs29(xuu4000, xuu300, ty_Bool) -> new_esEs11(xuu4000, xuu300) 30.09/12.96 new_asAs(False, xuu141) -> False 30.09/12.96 new_esEs23(xuu30000, xuu31000, ty_Float) -> new_esEs8(xuu30000, xuu31000) 30.09/12.96 new_compare24(Nothing, Nothing, False, ec) -> LT 30.09/12.96 new_esEs20(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) 30.09/12.96 new_esEs26(xuu40000, xuu3000, app(ty_Ratio, dbb)) -> new_esEs13(xuu40000, xuu3000, dbb) 30.09/12.96 new_lt10(xuu30000, xuu31000) -> new_esEs10(new_compare19(xuu30000, xuu31000), LT) 30.09/12.96 new_esEs26(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.09/12.96 new_esEs23(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) 30.09/12.96 new_ltEs4(Right(xuu30000), Left(xuu31000), cg, be) -> False 30.09/12.96 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.09/12.96 new_primCmpInt(Neg(Succ(xuu3000)), Neg(xuu310)) -> new_primCmpNat0(xuu310, xuu3000) 30.09/12.96 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.09/12.96 new_ltEs18(xuu3000, xuu3100, ty_Int) -> new_ltEs7(xuu3000, xuu3100) 30.09/12.96 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Char, be) -> new_ltEs9(xuu30000, xuu31000) 30.09/12.96 new_esEs20(xuu40001, xuu3001, app(app(ty_@2, beh), bfa)) -> new_esEs7(xuu40001, xuu3001, beh, bfa) 30.09/12.96 30.09/12.96 The set Q consists of the following terms: 30.09/12.96 30.09/12.96 new_primPlusNat1(Succ(x0), Succ(x1)) 30.09/12.96 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 30.09/12.96 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 30.09/12.96 new_esEs27(x0, x1, ty_Ordering) 30.09/12.96 new_esEs19(x0, x1, ty_Bool) 30.09/12.96 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 30.09/12.96 new_ltEs4(Left(x0), Left(x1), ty_Char, x2) 30.09/12.96 new_esEs24(x0, x1, app(ty_Maybe, x2)) 30.09/12.96 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.09/12.96 new_ltEs18(x0, x1, ty_Bool) 30.09/12.96 new_primCmpNat2(x0, Succ(x1)) 30.09/12.96 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_ltEs12(Nothing, Nothing, x0) 30.09/12.96 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_lt20(x0, x1, ty_Int) 30.09/12.96 new_lt20(x0, x1, app(ty_[], x2)) 30.09/12.96 new_sr0(Integer(x0), Integer(x1)) 30.09/12.96 new_ltEs17(x0, x1) 30.09/12.96 new_esEs23(x0, x1, ty_Char) 30.09/12.96 new_compare31(x0, x1, ty_Ordering) 30.09/12.96 new_compare110(x0, x1, False, x2, x3) 30.09/12.96 new_ltEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.09/12.96 new_lt20(x0, x1, ty_Ordering) 30.09/12.96 new_esEs28(x0, x1, app(ty_[], x2)) 30.09/12.96 new_primCmpNat1(Succ(x0), Zero) 30.09/12.96 new_primPlusNat1(Zero, Zero) 30.09/12.96 new_esEs27(x0, x1, ty_Double) 30.09/12.96 new_esEs19(x0, x1, app(ty_Maybe, x2)) 30.09/12.96 new_esEs28(x0, x1, ty_Char) 30.09/12.96 new_compare31(x0, x1, ty_Int) 30.09/12.96 new_esEs25(x0, x1, ty_Char) 30.09/12.96 new_primCmpNat1(Zero, Zero) 30.09/12.96 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 30.09/12.96 new_ltEs18(x0, x1, ty_@0) 30.09/12.96 new_compare26(x0, x1, True) 30.09/12.96 new_esEs10(EQ, EQ) 30.09/12.96 new_lt14(x0, x1, x2) 30.09/12.96 new_compare31(x0, x1, ty_Char) 30.09/12.96 new_lt20(x0, x1, ty_Double) 30.09/12.96 new_primEqInt(Pos(Zero), Pos(Zero)) 30.09/12.96 new_lt13(x0, x1, app(ty_Maybe, x2)) 30.09/12.96 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 30.09/12.96 new_ltEs4(Left(x0), Left(x1), ty_Int, x2) 30.09/12.96 new_ltEs4(Right(x0), Right(x1), x2, ty_Integer) 30.09/12.96 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.09/12.96 new_primCompAux00(x0, GT) 30.09/12.96 new_ltEs12(Just(x0), Nothing, x1) 30.09/12.96 new_esEs25(x0, x1, ty_Int) 30.09/12.96 new_lt13(x0, x1, ty_Integer) 30.09/12.96 new_esEs24(x0, x1, ty_Bool) 30.09/12.96 new_compare31(x0, x1, ty_Double) 30.09/12.96 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 30.09/12.96 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 30.09/12.96 new_ltEs12(Just(x0), Just(x1), ty_Ordering) 30.09/12.96 new_esEs19(x0, x1, ty_@0) 30.09/12.96 new_ltEs7(x0, x1) 30.09/12.96 new_esEs6(Nothing, Just(x0), x1) 30.09/12.96 new_esEs30(x0, x1, ty_Integer) 30.09/12.96 new_esEs25(x0, x1, ty_Ordering) 30.09/12.96 new_ltEs12(Just(x0), Just(x1), app(ty_[], x2)) 30.09/12.96 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 30.09/12.96 new_ltEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.09/12.96 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 30.09/12.96 new_compare([], :(x0, x1), x2) 30.09/12.96 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 30.09/12.96 new_lt18(x0, x1) 30.09/12.96 new_primEqInt(Neg(Zero), Neg(Zero)) 30.09/12.96 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_compare24(Nothing, Nothing, False, x0) 30.09/12.96 new_primCmpNat0(Succ(x0), x1) 30.09/12.96 new_ltEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.09/12.96 new_lt20(x0, x1, ty_Char) 30.09/12.96 new_ltEs12(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.09/12.96 new_esEs23(x0, x1, ty_Ordering) 30.09/12.96 new_compare210(x0, x1, True) 30.09/12.96 new_compare13(x0, x1, x2) 30.09/12.96 new_ltEs19(x0, x1, ty_Float) 30.09/12.96 new_esEs30(x0, x1, ty_@0) 30.09/12.96 new_lt13(x0, x1, app(ty_[], x2)) 30.09/12.96 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 30.09/12.96 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 30.09/12.96 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.09/12.96 new_ltEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 30.09/12.96 new_esEs25(x0, x1, ty_@0) 30.09/12.96 new_esEs25(x0, x1, ty_Double) 30.09/12.96 new_ltEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.09/12.96 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.09/12.96 new_esEs23(x0, x1, app(ty_[], x2)) 30.09/12.96 new_compare27(x0, x1, True, x2, x3) 30.09/12.96 new_compare(:(x0, x1), [], x2) 30.09/12.96 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 30.09/12.96 new_esEs20(x0, x1, app(ty_Ratio, x2)) 30.09/12.96 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.09/12.96 new_ltEs4(Right(x0), Right(x1), x2, ty_Bool) 30.09/12.96 new_compare28(x0, x1, False, x2, x3, x4) 30.09/12.96 new_ltEs4(Left(x0), Left(x1), ty_Bool, x2) 30.09/12.96 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 30.09/12.96 new_ltEs11(True, True) 30.09/12.96 new_esEs27(x0, x1, ty_Char) 30.09/12.96 new_esEs19(x0, x1, app(ty_Ratio, x2)) 30.09/12.96 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 30.09/12.96 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 30.09/12.96 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 30.09/12.96 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 30.09/12.96 new_compare14(x0, x1, True) 30.09/12.96 new_esEs18(x0, x1, app(ty_Ratio, x2)) 30.09/12.96 new_esEs24(x0, x1, app(ty_Ratio, x2)) 30.09/12.96 new_esEs24(x0, x1, ty_Char) 30.09/12.96 new_ltEs12(Just(x0), Just(x1), ty_Int) 30.09/12.96 new_ltEs4(Left(x0), Left(x1), ty_Ordering, x2) 30.09/12.96 new_compare27(x0, x1, False, x2, x3) 30.09/12.96 new_compare30(x0, x1) 30.09/12.96 new_ltEs18(x0, x1, ty_Integer) 30.09/12.96 new_primEqInt(Pos(Zero), Neg(Zero)) 30.09/12.96 new_primEqInt(Neg(Zero), Pos(Zero)) 30.09/12.96 new_ltEs9(x0, x1) 30.09/12.96 new_esEs27(x0, x1, ty_Int) 30.09/12.96 new_compare7(Integer(x0), Integer(x1)) 30.09/12.96 new_esEs27(x0, x1, app(ty_[], x2)) 30.09/12.96 new_esEs23(x0, x1, ty_Integer) 30.09/12.96 new_esEs26(x0, x1, ty_Ordering) 30.09/12.96 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_ltEs12(Just(x0), Just(x1), ty_Char) 30.09/12.96 new_compare8(@0, @0) 30.09/12.96 new_ltEs12(Just(x0), Just(x1), ty_Double) 30.09/12.96 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 30.09/12.96 new_esEs27(x0, x1, ty_@0) 30.09/12.96 new_primMulInt(Neg(x0), Neg(x1)) 30.09/12.96 new_compare5(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 30.09/12.96 new_compare5(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 30.09/12.96 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.09/12.96 new_ltEs4(Left(x0), Left(x1), ty_Integer, x2) 30.09/12.96 new_esEs24(x0, x1, ty_Int) 30.09/12.96 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 30.09/12.96 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 30.09/12.96 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 30.09/12.96 new_ltEs13(@2(x0, x1), @2(x2, x3), x4, x5) 30.09/12.96 new_esEs25(x0, x1, ty_Bool) 30.09/12.96 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 30.09/12.96 new_compare16(x0, x1, True, x2, x3, x4) 30.09/12.96 new_ltEs15(EQ, EQ) 30.09/12.96 new_esEs28(x0, x1, ty_Ordering) 30.09/12.96 new_lt12(x0, x1, ty_Integer) 30.09/12.96 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.09/12.96 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.09/12.96 new_esEs30(x0, x1, ty_Bool) 30.09/12.96 new_esEs24(x0, x1, ty_@0) 30.09/12.96 new_compare29(x0, x1, x2, x3, x4) 30.09/12.96 new_lt12(x0, x1, app(ty_Maybe, x2)) 30.09/12.96 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 30.09/12.96 new_esEs22(x0, x1, ty_Integer) 30.09/12.96 new_esEs18(x0, x1, ty_Ordering) 30.09/12.96 new_esEs30(x0, x1, ty_Char) 30.09/12.96 new_esEs20(x0, x1, ty_Integer) 30.09/12.96 new_ltEs18(x0, x1, ty_Float) 30.09/12.96 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.09/12.96 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 30.09/12.96 new_esEs27(x0, x1, ty_Bool) 30.09/12.96 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 30.09/12.96 new_compare([], [], x0) 30.09/12.96 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 30.09/12.96 new_esEs28(x0, x1, ty_Integer) 30.09/12.96 new_lt20(x0, x1, ty_Integer) 30.09/12.96 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_esEs19(x0, x1, ty_Double) 30.09/12.96 new_esEs6(Just(x0), Just(x1), ty_Float) 30.09/12.96 new_esEs16(:(x0, x1), [], x2) 30.09/12.96 new_esEs24(x0, x1, ty_Float) 30.09/12.96 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 30.09/12.96 new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_esEs18(x0, x1, ty_Double) 30.09/12.96 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.09/12.96 new_esEs30(x0, x1, ty_Int) 30.09/12.96 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 30.09/12.96 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 30.09/12.96 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 30.09/12.96 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.09/12.96 new_lt5(x0, x1, x2) 30.09/12.96 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 30.09/12.96 new_esEs24(x0, x1, ty_Double) 30.09/12.96 new_compare17(Char(x0), Char(x1)) 30.09/12.96 new_ltEs20(x0, x1, ty_Double) 30.09/12.96 new_ltEs18(x0, x1, app(ty_[], x2)) 30.09/12.96 new_primMulNat0(Zero, Succ(x0)) 30.09/12.96 new_ltEs15(GT, LT) 30.09/12.96 new_ltEs15(LT, GT) 30.09/12.96 new_esEs9(x0, x1) 30.09/12.96 new_ltEs12(Just(x0), Just(x1), ty_@0) 30.09/12.96 new_ltEs4(Right(x0), Right(x1), x2, ty_Char) 30.09/12.96 new_ltEs19(x0, x1, ty_Integer) 30.09/12.96 new_esEs28(x0, x1, ty_Bool) 30.09/12.96 new_ltEs18(x0, x1, ty_Int) 30.09/12.96 new_compare5(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 30.09/12.96 new_ltEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.09/12.96 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 30.09/12.96 new_ltEs5(x0, x1, x2) 30.09/12.96 new_esEs6(Nothing, Nothing, x0) 30.09/12.96 new_esEs6(Just(x0), Nothing, x1) 30.09/12.96 new_lt11(x0, x1, x2, x3, x4) 30.09/12.96 new_esEs6(Just(x0), Just(x1), ty_Int) 30.09/12.96 new_ltEs4(Right(x0), Right(x1), x2, ty_Int) 30.09/12.96 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 30.09/12.96 new_ltEs18(x0, x1, ty_Char) 30.09/12.96 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 30.09/12.96 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 30.09/12.96 new_esEs25(x0, x1, ty_Integer) 30.09/12.96 new_primCmpNat1(Zero, Succ(x0)) 30.09/12.96 new_lt12(x0, x1, ty_Bool) 30.09/12.96 new_compare10(x0, x1, True, x2) 30.09/12.96 new_primCompAux00(x0, EQ) 30.09/12.96 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 30.09/12.96 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 30.09/12.96 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 30.09/12.96 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 30.09/12.96 new_primCmpNat1(Succ(x0), Succ(x1)) 30.09/12.96 new_primEqNat0(Zero, Succ(x0)) 30.09/12.96 new_ltEs20(x0, x1, ty_Ordering) 30.09/12.96 new_esEs30(x0, x1, ty_Float) 30.09/12.96 new_esEs17(Double(x0, x1), Double(x2, x3)) 30.09/12.96 new_esEs29(x0, x1, ty_Integer) 30.09/12.96 new_esEs6(Just(x0), Just(x1), ty_Ordering) 30.09/12.96 new_pePe(True, x0) 30.09/12.96 new_compare28(x0, x1, True, x2, x3, x4) 30.09/12.96 new_primCmpInt(Neg(Zero), Neg(Zero)) 30.09/12.96 new_lt12(x0, x1, app(ty_Ratio, x2)) 30.09/12.96 new_ltEs4(Left(x0), Left(x1), ty_Double, x2) 30.09/12.96 new_compare19(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 30.09/12.96 new_esEs30(x0, x1, app(ty_Maybe, x2)) 30.09/12.96 new_esEs18(x0, x1, app(ty_[], x2)) 30.09/12.96 new_ltEs19(x0, x1, ty_Bool) 30.09/12.96 new_esEs12(Char(x0), Char(x1)) 30.09/12.96 new_compare24(x0, x1, True, x2) 30.09/12.96 new_compare24(Nothing, Just(x0), False, x1) 30.09/12.96 new_primCmpInt(Pos(Zero), Neg(Zero)) 30.09/12.96 new_primCmpInt(Neg(Zero), Pos(Zero)) 30.09/12.96 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) 30.09/12.96 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 30.09/12.96 new_esEs29(x0, x1, ty_Ordering) 30.09/12.96 new_esEs23(x0, x1, ty_Bool) 30.09/12.96 new_lt12(x0, x1, ty_Char) 30.09/12.96 new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) 30.09/12.96 new_compare15(x0, x1, x2, x3) 30.09/12.96 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_esEs29(x0, x1, app(ty_Maybe, x2)) 30.09/12.96 new_lt20(x0, x1, app(ty_Maybe, x2)) 30.09/12.96 new_esEs11(False, False) 30.09/12.96 new_esEs10(LT, GT) 30.09/12.96 new_esEs10(GT, LT) 30.09/12.96 new_ltEs4(Right(x0), Right(x1), x2, ty_Float) 30.09/12.96 new_esEs23(x0, x1, ty_Float) 30.09/12.96 new_esEs20(x0, x1, ty_Float) 30.09/12.96 new_esEs26(x0, x1, app(ty_[], x2)) 30.09/12.96 new_compare11(x0, x1, False, x2, x3) 30.09/12.96 new_esEs6(Just(x0), Just(x1), ty_Char) 30.09/12.96 new_ltEs4(Left(x0), Left(x1), ty_@0, x2) 30.09/12.96 new_lt20(x0, x1, ty_@0) 30.09/12.96 new_esEs20(x0, x1, app(ty_[], x2)) 30.09/12.96 new_lt13(x0, x1, ty_@0) 30.09/12.96 new_esEs20(x0, x1, ty_Bool) 30.09/12.96 new_lt12(x0, x1, ty_Int) 30.09/12.96 new_esEs23(x0, x1, app(ty_Maybe, x2)) 30.09/12.96 new_compare31(x0, x1, app(ty_[], x2)) 30.09/12.96 new_ltEs12(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_primEqNat0(Succ(x0), Zero) 30.09/12.96 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 30.09/12.96 new_esEs27(x0, x1, ty_Integer) 30.09/12.96 new_lt4(x0, x1) 30.09/12.96 new_compare111(x0, x1, True) 30.09/12.96 new_lt10(x0, x1) 30.09/12.96 new_esEs18(x0, x1, ty_@0) 30.09/12.96 new_primMulNat0(Succ(x0), Succ(x1)) 30.09/12.96 new_esEs26(x0, x1, ty_Double) 30.09/12.96 new_esEs25(x0, x1, app(ty_Maybe, x2)) 30.09/12.96 new_esEs28(x0, x1, ty_Float) 30.09/12.96 new_compare31(x0, x1, ty_@0) 30.09/12.96 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 30.09/12.96 new_esEs20(x0, x1, ty_Int) 30.09/12.96 new_esEs6(Just(x0), Just(x1), ty_Bool) 30.09/12.96 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.09/12.96 new_esEs26(x0, x1, ty_@0) 30.09/12.96 new_esEs28(x0, x1, ty_Int) 30.09/12.96 new_ltEs11(False, True) 30.09/12.96 new_ltEs11(True, False) 30.09/12.96 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 30.09/12.96 new_esEs10(EQ, GT) 30.09/12.96 new_esEs10(GT, EQ) 30.09/12.96 new_esEs16([], :(x0, x1), x2) 30.09/12.96 new_lt13(x0, x1, ty_Double) 30.09/12.96 new_esEs23(x0, x1, ty_Int) 30.09/12.96 new_esEs20(x0, x1, ty_Char) 30.09/12.96 new_lt12(x0, x1, ty_Float) 30.09/12.96 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_ltEs12(Nothing, Just(x0), x1) 30.09/12.96 new_esEs26(x0, x1, app(ty_Ratio, x2)) 30.09/12.96 new_ltEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.09/12.96 new_lt13(x0, x1, app(app(ty_@2, x2), x3)) 30.09/12.96 new_esEs19(x0, x1, app(ty_[], x2)) 30.09/12.96 new_esEs27(x0, x1, ty_Float) 30.09/12.96 new_compare25(x0, x1, False, x2, x3) 30.09/12.96 new_compare12(x0, x1) 30.09/12.96 new_lt12(x0, x1, ty_Double) 30.09/12.96 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 30.09/12.96 new_lt20(x0, x1, app(ty_Ratio, x2)) 30.09/12.96 new_esEs29(x0, x1, ty_Char) 30.09/12.96 new_esEs16(:(x0, x1), :(x2, x3), x4) 30.09/12.96 new_primMulNat0(Zero, Zero) 30.09/12.96 new_compare31(x0, x1, app(ty_Maybe, x2)) 30.09/12.96 new_lt12(x0, x1, ty_Ordering) 30.09/12.96 new_esEs25(x0, x1, app(ty_Ratio, x2)) 30.09/12.96 new_primCompAux00(x0, LT) 30.09/12.96 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.09/12.96 new_ltEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.09/12.96 new_ltEs19(x0, x1, ty_Char) 30.09/12.96 new_esEs27(x0, x1, app(ty_Ratio, x2)) 30.09/12.96 new_sr(x0, x1) 30.09/12.96 new_primCompAux0(x0, x1, x2, x3) 30.09/12.96 new_asAs(False, x0) 30.09/12.96 new_ltEs19(x0, x1, ty_Int) 30.09/12.96 new_lt8(x0, x1, x2, x3) 30.09/12.96 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 30.09/12.96 new_ltEs14(x0, x1) 30.09/12.96 new_esEs28(x0, x1, app(ty_Maybe, x2)) 30.09/12.96 new_ltEs20(x0, x1, ty_Integer) 30.09/12.96 new_esEs8(Float(x0, x1), Float(x2, x3)) 30.09/12.96 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_esEs6(Just(x0), Just(x1), ty_Integer) 30.09/12.96 new_esEs29(x0, x1, ty_@0) 30.09/12.96 new_ltEs19(x0, x1, ty_Ordering) 30.09/12.96 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.09/12.96 new_ltEs4(Right(x0), Right(x1), x2, ty_Ordering) 30.09/12.96 new_ltEs19(x0, x1, ty_@0) 30.09/12.96 new_esEs22(x0, x1, ty_Int) 30.09/12.96 new_ltEs20(x0, x1, ty_@0) 30.09/12.96 new_ltEs12(Just(x0), Just(x1), ty_Integer) 30.09/12.96 new_esEs18(x0, x1, ty_Bool) 30.09/12.96 new_esEs21(x0, x1, ty_Int) 30.09/12.96 new_ltEs12(Just(x0), Just(x1), ty_Float) 30.09/12.96 new_esEs6(Just(x0), Just(x1), ty_@0) 30.09/12.96 new_esEs10(LT, LT) 30.09/12.96 new_esEs28(x0, x1, app(ty_Ratio, x2)) 30.09/12.96 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.09/12.96 new_esEs30(x0, x1, ty_Double) 30.09/12.96 new_not(True) 30.09/12.96 new_esEs29(x0, x1, ty_Bool) 30.09/12.96 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_compare210(x0, x1, False) 30.09/12.96 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 30.09/12.96 new_lt15(x0, x1) 30.09/12.96 new_pePe(False, x0) 30.09/12.96 new_esEs29(x0, x1, ty_Double) 30.09/12.96 new_esEs11(True, True) 30.09/12.96 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_ltEs10(x0, x1, x2) 30.09/12.96 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 30.09/12.96 new_compare31(x0, x1, app(ty_Ratio, x2)) 30.09/12.96 new_ltEs4(Right(x0), Right(x1), x2, ty_Double) 30.09/12.96 new_primCmpNat0(Zero, x0) 30.09/12.96 new_esEs15(Integer(x0), Integer(x1)) 30.09/12.96 new_lt12(x0, x1, app(ty_[], x2)) 30.09/12.96 new_esEs27(x0, x1, app(ty_Maybe, x2)) 30.09/12.96 new_ltEs15(GT, EQ) 30.09/12.96 new_ltEs15(EQ, GT) 30.09/12.96 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 30.09/12.96 new_primCmpNat2(x0, Zero) 30.09/12.96 new_compare19(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 30.09/12.96 new_esEs11(False, True) 30.09/12.96 new_esEs11(True, False) 30.09/12.96 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.09/12.96 new_esEs29(x0, x1, ty_Int) 30.09/12.96 new_esEs26(x0, x1, ty_Integer) 30.09/12.96 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 30.09/12.96 new_ltEs20(x0, x1, ty_Char) 30.09/12.96 new_lt13(x0, x1, ty_Ordering) 30.09/12.96 new_lt17(x0, x1) 30.09/12.96 new_lt13(x0, x1, app(app(ty_Either, x2), x3)) 30.09/12.96 new_ltEs12(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.09/12.96 new_esEs23(x0, x1, app(ty_Ratio, x2)) 30.09/12.96 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 30.09/12.96 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 30.09/12.96 new_ltEs12(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.09/12.96 new_ltEs12(Just(x0), Just(x1), ty_Bool) 30.09/12.96 new_primEqNat0(Succ(x0), Succ(x1)) 30.09/12.96 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 30.09/12.96 new_esEs18(x0, x1, ty_Integer) 30.09/12.96 new_esEs20(x0, x1, ty_Ordering) 30.09/12.96 new_ltEs20(x0, x1, ty_Bool) 30.09/12.96 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.09/12.96 new_primPlusNat1(Succ(x0), Zero) 30.09/12.96 new_ltEs4(Left(x0), Right(x1), x2, x3) 30.09/12.96 new_ltEs4(Right(x0), Left(x1), x2, x3) 30.09/12.96 new_esEs29(x0, x1, app(ty_[], x2)) 30.09/12.96 new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_primMulNat0(Succ(x0), Zero) 30.09/12.96 new_compare18(x0, x1, x2, x3) 30.09/12.96 new_primCmpInt(Pos(Zero), Pos(Zero)) 30.09/12.96 new_compare31(x0, x1, ty_Integer) 30.09/12.96 new_lt12(x0, x1, ty_@0) 30.09/12.96 new_esEs19(x0, x1, ty_Ordering) 30.09/12.96 new_esEs10(GT, GT) 30.09/12.96 new_esEs20(x0, x1, app(ty_Maybe, x2)) 30.09/12.96 new_lt16(x0, x1, x2, x3) 30.09/12.96 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 30.09/12.96 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 30.09/12.96 new_compare25(x0, x1, True, x2, x3) 30.09/12.96 new_primMulInt(Pos(x0), Pos(x1)) 30.09/12.96 new_compare16(x0, x1, False, x2, x3, x4) 30.09/12.96 new_esEs14(@0, @0) 30.09/12.96 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 30.09/12.96 new_primPlusNat1(Zero, Succ(x0)) 30.09/12.96 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.09/12.96 new_esEs30(x0, x1, app(ty_Ratio, x2)) 30.09/12.96 new_primPlusNat0(x0, x1) 30.09/12.96 new_ltEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.09/12.96 new_esEs10(LT, EQ) 30.09/12.96 new_esEs10(EQ, LT) 30.09/12.96 new_compare24(Just(x0), Nothing, False, x1) 30.09/12.96 new_compare26(x0, x1, False) 30.09/12.96 new_esEs18(x0, x1, app(ty_Maybe, x2)) 30.09/12.96 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 30.09/12.96 new_esEs18(x0, x1, ty_Int) 30.09/12.96 new_primMulInt(Pos(x0), Neg(x1)) 30.09/12.96 new_primMulInt(Neg(x0), Pos(x1)) 30.09/12.96 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 30.09/12.96 new_esEs19(x0, x1, ty_Float) 30.09/12.96 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 30.09/12.96 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.09/12.96 new_esEs5(Left(x0), Right(x1), x2, x3) 30.09/12.96 new_esEs5(Right(x0), Left(x1), x2, x3) 30.09/12.96 new_esEs29(x0, x1, app(ty_Ratio, x2)) 30.09/12.96 new_lt13(x0, x1, app(ty_Ratio, x2)) 30.09/12.96 new_esEs6(Just(x0), Just(x1), ty_Double) 30.09/12.96 new_compare110(x0, x1, True, x2, x3) 30.09/12.96 new_ltEs18(x0, x1, ty_Ordering) 30.09/12.96 new_compare6(x0, x1) 30.09/12.96 new_ltEs20(x0, x1, app(ty_[], x2)) 30.09/12.96 new_esEs26(x0, x1, ty_Bool) 30.09/12.96 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 30.09/12.96 new_lt20(x0, x1, ty_Bool) 30.09/12.96 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 30.09/12.96 new_ltEs15(EQ, LT) 30.09/12.96 new_ltEs15(LT, EQ) 30.09/12.96 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 30.09/12.96 new_ltEs20(x0, x1, ty_Float) 30.09/12.96 new_compare11(x0, x1, True, x2, x3) 30.09/12.96 new_esEs30(x0, x1, app(ty_[], x2)) 30.09/12.96 new_esEs30(x0, x1, ty_Ordering) 30.09/12.96 new_esEs19(x0, x1, ty_Char) 30.09/12.96 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_ltEs15(GT, GT) 30.09/12.96 new_compare5(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 30.09/12.96 new_ltEs20(x0, x1, ty_Int) 30.09/12.96 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 30.09/12.96 new_compare31(x0, x1, ty_Bool) 30.09/12.96 new_esEs16([], [], x0) 30.09/12.96 new_esEs29(x0, x1, ty_Float) 30.09/12.96 new_ltEs4(Right(x0), Right(x1), x2, ty_@0) 30.09/12.96 new_fsEs(x0) 30.09/12.96 new_lt9(x0, x1) 30.09/12.96 new_ltEs11(False, False) 30.09/12.96 new_esEs19(x0, x1, ty_Int) 30.09/12.96 new_ltEs18(x0, x1, ty_Double) 30.09/12.96 new_compare111(x0, x1, False) 30.09/12.96 new_lt13(x0, x1, ty_Bool) 30.09/12.96 new_esEs26(x0, x1, app(ty_Maybe, x2)) 30.09/12.96 new_esEs26(x0, x1, ty_Int) 30.09/12.96 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 30.09/12.96 new_primEqNat0(Zero, Zero) 30.09/12.96 new_compare24(Just(x0), Just(x1), False, x2) 30.09/12.96 new_ltEs4(Left(x0), Left(x1), ty_Float, x2) 30.09/12.96 new_compare19(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 30.09/12.96 new_compare19(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 30.09/12.96 new_lt13(x0, x1, ty_Float) 30.09/12.96 new_esEs25(x0, x1, ty_Float) 30.09/12.96 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.09/12.96 new_esEs20(x0, x1, ty_@0) 30.09/12.96 new_ltEs19(x0, x1, app(ty_[], x2)) 30.09/12.96 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 30.09/12.96 new_not(False) 30.09/12.96 new_esEs24(x0, x1, ty_Integer) 30.09/12.96 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 30.09/12.96 new_lt7(x0, x1) 30.09/12.96 new_esEs23(x0, x1, ty_Double) 30.09/12.96 new_compare31(x0, x1, app(app(ty_Either, x2), x3)) 30.09/12.96 new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.09/12.96 new_esEs18(x0, x1, ty_Char) 30.09/12.96 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 30.09/12.96 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.09/12.96 new_ltEs19(x0, x1, ty_Double) 30.09/12.96 new_esEs13(:%(x0, x1), :%(x2, x3), x4) 30.09/12.96 new_compare14(x0, x1, False) 30.09/12.96 new_ltEs8(x0, x1) 30.09/12.96 new_esEs28(x0, x1, ty_Double) 30.09/12.96 new_esEs19(x0, x1, ty_Integer) 30.09/12.96 new_esEs21(x0, x1, ty_Integer) 30.09/12.96 new_ltEs15(LT, LT) 30.09/12.96 new_ltEs12(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.09/12.96 new_esEs26(x0, x1, ty_Float) 30.09/12.96 new_esEs25(x0, x1, app(ty_[], x2)) 30.09/12.96 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 30.09/12.96 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 30.09/12.96 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.09/12.96 new_lt13(x0, x1, ty_Int) 30.09/12.96 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 30.09/12.96 new_compare(:(x0, x1), :(x2, x3), x4) 30.09/12.96 new_lt6(x0, x1, x2) 30.09/12.96 new_esEs26(x0, x1, ty_Char) 30.09/12.96 new_lt20(x0, x1, ty_Float) 30.09/12.96 new_lt19(x0, x1) 30.09/12.96 new_asAs(True, x0) 30.09/12.96 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 30.09/12.96 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.09/12.96 new_lt13(x0, x1, ty_Char) 30.09/12.96 new_esEs23(x0, x1, ty_@0) 30.09/12.96 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.09/12.96 new_ltEs16(x0, x1) 30.09/12.96 new_compare31(x0, x1, app(app(ty_@2, x2), x3)) 30.09/12.96 new_esEs20(x0, x1, ty_Double) 30.09/12.96 new_esEs18(x0, x1, ty_Float) 30.09/12.96 new_esEs28(x0, x1, ty_@0) 30.09/12.96 new_compare10(x0, x1, False, x2) 30.09/12.96 new_esEs24(x0, x1, app(ty_[], x2)) 30.09/12.96 new_compare31(x0, x1, ty_Float) 30.09/12.96 new_esEs24(x0, x1, ty_Ordering) 30.09/12.96 30.09/12.96 We have to consider all minimal (P,Q,R)-chains. 30.09/12.96 ---------------------------------------- 30.09/12.96 30.09/12.96 (24) DependencyGraphProof (EQUIVALENT) 30.09/12.96 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. 30.09/12.96 ---------------------------------------- 30.09/12.96 30.09/12.96 (25) 30.09/12.96 Complex Obligation (AND) 30.09/12.96 30.09/12.96 ---------------------------------------- 30.09/12.96 30.09/12.96 (26) 30.09/12.96 Obligation: 30.09/12.96 Q DP problem: 30.09/12.96 The TRS P consists of the following rules: 30.09/12.96 30.09/12.96 new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba) -> new_addToFM_C(xuu34, Just(xuu4000), xuu401, h, ba) 30.09/12.96 new_addToFM_C(Branch(Nothing, xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs10(new_compare24(Just(xuu4000), Nothing, False, h), LT), h, ba) 30.09/12.96 new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba) -> new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs10(new_compare24(Just(xuu4000), Nothing, False, h), GT), h, ba) 30.09/12.96 new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba) -> new_addToFM_C(xuu33, Just(xuu4000), xuu401, h, ba) 30.09/12.96 new_addToFM_C(Branch(Just(xuu300), xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C21(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs10(new_compare24(Just(xuu4000), Just(xuu300), new_esEs29(xuu4000, xuu300, h), h), LT), h, ba) 30.39/12.96 new_addToFM_C21(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, False, bb, bc) -> new_addToFM_C12(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, new_esEs10(new_compare24(Just(xuu19), Just(xuu14), new_esEs30(xuu19, xuu14, bb), bb), GT), bb, bc) 30.39/12.96 new_addToFM_C12(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, bb, bc) -> new_addToFM_C(xuu18, Just(xuu19), xuu20, bb, bc) 30.39/12.96 new_addToFM_C21(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, bb, bc) -> new_addToFM_C(xuu17, Just(xuu19), xuu20, bb, bc) 30.39/12.96 30.39/12.96 The TRS R consists of the following rules: 30.39/12.96 30.39/12.96 new_ltEs18(xuu3000, xuu3100, ty_Integer) -> new_ltEs17(xuu3000, xuu3100) 30.39/12.96 new_compare28(xuu30000, xuu31000, False, bgd, bge, bgf) -> new_compare16(xuu30000, xuu31000, new_ltEs6(xuu30000, xuu31000, bgd, bge, bgf), bgd, bge, bgf) 30.39/12.96 new_lt7(xuu30000, xuu31000) -> new_esEs10(new_compare17(xuu30000, xuu31000), LT) 30.39/12.96 new_esEs23(xuu30000, xuu31000, ty_Bool) -> new_esEs11(xuu30000, xuu31000) 30.39/12.96 new_esEs27(xuu40001, xuu3001, app(ty_Ratio, dcd)) -> new_esEs13(xuu40001, xuu3001, dcd) 30.39/12.96 new_primCmpInt(Neg(Succ(xuu3000)), Pos(xuu310)) -> LT 30.39/12.96 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 30.39/12.96 new_esEs27(xuu40001, xuu3001, ty_Int) -> new_esEs9(xuu40001, xuu3001) 30.39/12.96 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(ty_Ratio, hh)) -> new_esEs13(xuu40000, xuu3000, hh) 30.39/12.96 new_esEs23(xuu30000, xuu31000, app(ty_Maybe, baf)) -> new_esEs6(xuu30000, xuu31000, baf) 30.39/12.96 new_pePe(True, xuu167) -> True 30.39/12.96 new_ltEs19(xuu30002, xuu31002, app(app(app(ty_@3, cad), cae), caf)) -> new_ltEs6(xuu30002, xuu31002, cad, cae, caf) 30.39/12.96 new_ltEs20(xuu30001, xuu31001, ty_Ordering) -> new_ltEs15(xuu30001, xuu31001) 30.39/12.96 new_primCmpInt(Pos(Zero), Pos(Succ(xuu3100))) -> new_primCmpNat0(Zero, xuu3100) 30.39/12.96 new_ltEs6(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), ee, ef, eg) -> new_pePe(new_lt13(xuu30000, xuu31000, ee), new_asAs(new_esEs23(xuu30000, xuu31000, ee), new_pePe(new_lt12(xuu30001, xuu31001, ef), new_asAs(new_esEs24(xuu30001, xuu31001, ef), new_ltEs19(xuu30002, xuu31002, eg))))) 30.39/12.96 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(ty_[], bab)) -> new_esEs16(xuu40000, xuu3000, bab) 30.39/12.96 new_esEs5(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, fh), ga), gb), fg) -> new_esEs4(xuu40000, xuu3000, fh, ga, gb) 30.39/12.96 new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_Ratio, ge), fg) -> new_esEs13(xuu40000, xuu3000, ge) 30.39/12.96 new_esEs29(xuu4000, xuu300, ty_Char) -> new_esEs12(xuu4000, xuu300) 30.39/12.96 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Double) -> new_ltEs14(xuu30000, xuu31000) 30.39/12.96 new_lt20(xuu30000, xuu31000, ty_Bool) -> new_lt15(xuu30000, xuu31000) 30.39/12.96 new_compare(:(xuu30000, xuu30001), [], ed) -> GT 30.39/12.96 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 30.39/12.96 new_esEs27(xuu40001, xuu3001, app(ty_[], dcf)) -> new_esEs16(xuu40001, xuu3001, dcf) 30.39/12.96 new_esEs27(xuu40001, xuu3001, app(app(ty_Either, dcb), dcc)) -> new_esEs5(xuu40001, xuu3001, dcb, dcc) 30.39/12.96 new_primCmpInt(Pos(Zero), Neg(Succ(xuu3100))) -> GT 30.39/12.96 new_compare(:(xuu30000, xuu30001), :(xuu31000, xuu31001), ed) -> new_primCompAux0(xuu30000, xuu31000, new_compare(xuu30001, xuu31001, ed), ed) 30.39/12.96 new_esEs9(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) 30.39/12.96 new_esEs22(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) 30.39/12.96 new_esEs18(xuu40000, xuu3000, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs4(xuu40000, xuu3000, bbb, bbc, bbd) 30.39/12.96 new_ltEs19(xuu30002, xuu31002, app(ty_[], cac)) -> new_ltEs5(xuu30002, xuu31002, cac) 30.39/12.96 new_lt12(xuu30001, xuu31001, ty_Char) -> new_lt7(xuu30001, xuu31001) 30.39/12.96 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Char) -> new_ltEs9(xuu30000, xuu31000) 30.39/12.96 new_esEs26(xuu40000, xuu3000, app(app(ty_@2, dac), dad)) -> new_esEs7(xuu40000, xuu3000, dac, dad) 30.39/12.96 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Int) -> new_ltEs7(xuu30000, xuu31000) 30.39/12.96 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.39/12.96 new_lt13(xuu30000, xuu31000, app(ty_Ratio, bae)) -> new_lt5(xuu30000, xuu31000, bae) 30.39/12.96 new_esEs6(Just(xuu40000), Just(xuu3000), app(app(ty_Either, cfb), cfc)) -> new_esEs5(xuu40000, xuu3000, cfb, cfc) 30.39/12.96 new_ltEs15(EQ, LT) -> False 30.39/12.96 new_compare17(Char(xuu30000), Char(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) 30.39/12.96 new_ltEs8(xuu3000, xuu3100) -> new_fsEs(new_compare8(xuu3000, xuu3100)) 30.39/12.96 new_esEs28(xuu40002, xuu3002, app(app(app(ty_@3, dda), ddb), ddc)) -> new_esEs4(xuu40002, xuu3002, dda, ddb, ddc) 30.39/12.96 new_primCmpNat1(Succ(xuu30000), Succ(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) 30.39/12.96 new_esEs23(xuu30000, xuu31000, app(app(ty_Either, bac), bad)) -> new_esEs5(xuu30000, xuu31000, bac, bad) 30.39/12.96 new_ltEs19(xuu30002, xuu31002, ty_Ordering) -> new_ltEs15(xuu30002, xuu31002) 30.39/12.96 new_compare26(xuu30000, xuu31000, True) -> EQ 30.39/12.96 new_compare24(Nothing, Just(xuu3100), False, ec) -> LT 30.39/12.96 new_esEs18(xuu40000, xuu3000, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.39/12.96 new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False 30.39/12.96 new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False 30.39/12.96 new_ltEs4(Left(xuu30000), Left(xuu31000), app(app(ty_@2, ce), cf), be) -> new_ltEs13(xuu30000, xuu31000, ce, cf) 30.39/12.96 new_ltEs15(GT, LT) -> False 30.39/12.96 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.39/12.96 new_esEs24(xuu30001, xuu31001, ty_Double) -> new_esEs17(xuu30001, xuu31001) 30.39/12.96 new_compare25(xuu30000, xuu31000, False, bac, bad) -> new_compare11(xuu30000, xuu31000, new_ltEs4(xuu30000, xuu31000, bac, bad), bac, bad) 30.39/12.96 new_ltEs12(Just(xuu30000), Just(xuu31000), app(app(ty_Either, cdg), cdh)) -> new_ltEs4(xuu30000, xuu31000, cdg, cdh) 30.39/12.96 new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_Maybe, gf), fg) -> new_esEs6(xuu40000, xuu3000, gf) 30.39/12.96 new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.39/12.96 new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) 30.39/12.96 new_esEs30(xuu19, xuu14, ty_Char) -> new_esEs12(xuu19, xuu14) 30.39/12.96 new_esEs27(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) 30.39/12.96 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Char, fg) -> new_esEs12(xuu40000, xuu3000) 30.39/12.96 new_esEs10(GT, GT) -> True 30.39/12.96 new_ltEs4(Left(xuu30000), Left(xuu31000), app(ty_Maybe, cd), be) -> new_ltEs12(xuu30000, xuu31000, cd) 30.39/12.96 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.39/12.96 new_not(True) -> False 30.39/12.96 new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_[], gg), fg) -> new_esEs16(xuu40000, xuu3000, gg) 30.39/12.96 new_lt13(xuu30000, xuu31000, app(app(app(ty_@3, bgd), bge), bgf)) -> new_lt11(xuu30000, xuu31000, bgd, bge, bgf) 30.39/12.96 new_esEs28(xuu40002, xuu3002, ty_Bool) -> new_esEs11(xuu40002, xuu3002) 30.39/12.96 new_ltEs5(xuu3000, xuu3100, ed) -> new_fsEs(new_compare(xuu3000, xuu3100, ed)) 30.39/12.96 new_primCompAux00(xuu182, LT) -> LT 30.39/12.96 new_lt12(xuu30001, xuu31001, ty_Double) -> new_lt17(xuu30001, xuu31001) 30.39/12.96 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Float) -> new_ltEs16(xuu30000, xuu31000) 30.39/12.96 new_ltEs20(xuu30001, xuu31001, ty_Integer) -> new_ltEs17(xuu30001, xuu31001) 30.39/12.96 new_esEs25(xuu30000, xuu31000, ty_Ordering) -> new_esEs10(xuu30000, xuu31000) 30.39/12.96 new_esEs23(xuu30000, xuu31000, app(ty_Ratio, bae)) -> new_esEs13(xuu30000, xuu31000, bae) 30.39/12.96 new_esEs27(xuu40001, xuu3001, ty_Bool) -> new_esEs11(xuu40001, xuu3001) 30.39/12.96 new_esEs26(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.39/12.96 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.39/12.96 new_lt12(xuu30001, xuu31001, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_lt11(xuu30001, xuu31001, bhb, bhc, bhd) 30.39/12.96 new_esEs30(xuu19, xuu14, ty_Double) -> new_esEs17(xuu19, xuu14) 30.39/12.96 new_lt13(xuu30000, xuu31000, app(ty_Maybe, baf)) -> new_lt6(xuu30000, xuu31000, baf) 30.39/12.96 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.39/12.96 new_esEs19(xuu40000, xuu3000, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.39/12.96 new_esEs25(xuu30000, xuu31000, ty_Float) -> new_esEs8(xuu30000, xuu31000) 30.39/12.97 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Double, fg) -> new_esEs17(xuu40000, xuu3000) 30.39/12.97 new_lt19(xuu30000, xuu31000) -> new_esEs10(new_compare7(xuu30000, xuu31000), LT) 30.39/12.97 new_compare31(xuu30000, xuu31000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_compare29(xuu30000, xuu31000, cbf, cbg, cbh) 30.39/12.97 new_ltEs20(xuu30001, xuu31001, app(app(app(ty_@3, chb), chc), chd)) -> new_ltEs6(xuu30001, xuu31001, chb, chc, chd) 30.39/12.97 new_esEs5(Left(xuu40000), Left(xuu3000), app(app(ty_@2, fd), ff), fg) -> new_esEs7(xuu40000, xuu3000, fd, ff) 30.39/12.97 new_primEqNat0(Succ(xuu400000), Zero) -> False 30.39/12.97 new_primEqNat0(Zero, Succ(xuu30000)) -> False 30.39/12.97 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.39/12.97 new_esEs19(xuu40000, xuu3000, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.39/12.97 new_esEs14(@0, @0) -> True 30.39/12.97 new_lt12(xuu30001, xuu31001, app(app(ty_@2, caa), cab)) -> new_lt16(xuu30001, xuu31001, caa, cab) 30.39/12.97 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Bool, be) -> new_ltEs11(xuu30000, xuu31000) 30.39/12.97 new_esEs26(xuu40000, xuu3000, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.39/12.97 new_lt11(xuu30000, xuu31000, bgd, bge, bgf) -> new_esEs10(new_compare29(xuu30000, xuu31000, bgd, bge, bgf), LT) 30.39/12.97 new_esEs23(xuu30000, xuu31000, ty_Int) -> new_esEs9(xuu30000, xuu31000) 30.39/12.97 new_ltEs15(GT, EQ) -> False 30.39/12.97 new_lt20(xuu30000, xuu31000, app(ty_[], cfg)) -> new_lt14(xuu30000, xuu31000, cfg) 30.39/12.97 new_esEs26(xuu40000, xuu3000, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.39/12.97 new_lt20(xuu30000, xuu31000, ty_Integer) -> new_lt19(xuu30000, xuu31000) 30.39/12.97 new_primCompAux00(xuu182, GT) -> GT 30.39/12.97 new_primCmpInt(Neg(Zero), Neg(Succ(xuu3100))) -> new_primCmpNat2(xuu3100, Zero) 30.39/12.97 new_esEs10(EQ, EQ) -> True 30.39/12.97 new_esEs29(xuu4000, xuu300, ty_Double) -> new_esEs17(xuu4000, xuu300) 30.39/12.97 new_esEs6(Just(xuu40000), Just(xuu3000), app(ty_Ratio, cfd)) -> new_esEs13(xuu40000, xuu3000, cfd) 30.39/12.97 new_lt16(xuu30000, xuu31000, bgb, bgc) -> new_esEs10(new_compare15(xuu30000, xuu31000, bgb, bgc), LT) 30.39/12.97 new_esEs17(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs9(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) 30.39/12.97 new_esEs24(xuu30001, xuu31001, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_esEs4(xuu30001, xuu31001, bhb, bhc, bhd) 30.39/12.97 new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.39/12.97 new_esEs23(xuu30000, xuu31000, app(app(app(ty_@3, bgd), bge), bgf)) -> new_esEs4(xuu30000, xuu31000, bgd, bge, bgf) 30.39/12.97 new_esEs30(xuu19, xuu14, app(app(app(ty_@3, bcd), bce), bcf)) -> new_esEs4(xuu19, xuu14, bcd, bce, bcf) 30.39/12.97 new_compare14(xuu30000, xuu31000, True) -> LT 30.39/12.97 new_primCmpInt(Pos(Succ(xuu3000)), Neg(xuu310)) -> GT 30.39/12.97 new_lt13(xuu30000, xuu31000, ty_Integer) -> new_lt19(xuu30000, xuu31000) 30.39/12.97 new_ltEs18(xuu3000, xuu3100, ty_Bool) -> new_ltEs11(xuu3000, xuu3100) 30.39/12.97 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_@0) -> new_ltEs8(xuu30000, xuu31000) 30.39/12.97 new_esEs28(xuu40002, xuu3002, ty_Double) -> new_esEs17(xuu40002, xuu3002) 30.39/12.97 new_lt13(xuu30000, xuu31000, ty_Char) -> new_lt7(xuu30000, xuu31000) 30.39/12.97 new_compare110(xuu30000, xuu31000, True, bgb, bgc) -> LT 30.39/12.97 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(ty_Ratio, dg)) -> new_ltEs10(xuu30000, xuu31000, dg) 30.39/12.97 new_esEs23(xuu30000, xuu31000, ty_Double) -> new_esEs17(xuu30000, xuu31000) 30.39/12.97 new_lt20(xuu30000, xuu31000, app(app(ty_Either, cgc), cgd)) -> new_lt8(xuu30000, xuu31000, cgc, cgd) 30.39/12.97 new_lt13(xuu30000, xuu31000, ty_Double) -> new_lt17(xuu30000, xuu31000) 30.39/12.97 new_primPlusNat1(Succ(xuu25200), Succ(xuu9400)) -> Succ(Succ(new_primPlusNat1(xuu25200, xuu9400))) 30.39/12.97 new_primCompAux0(xuu30000, xuu31000, xuu168, ed) -> new_primCompAux00(xuu168, new_compare31(xuu30000, xuu31000, ed)) 30.39/12.97 new_esEs26(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.39/12.97 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Integer, be) -> new_ltEs17(xuu30000, xuu31000) 30.39/12.97 new_esEs10(LT, EQ) -> False 30.39/12.97 new_esEs10(EQ, LT) -> False 30.39/12.97 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.39/12.97 new_esEs20(xuu40001, xuu3001, ty_Ordering) -> new_esEs10(xuu40001, xuu3001) 30.39/12.97 new_esEs29(xuu4000, xuu300, app(app(app(ty_@3, ccg), cch), cda)) -> new_esEs4(xuu4000, xuu300, ccg, cch, cda) 30.39/12.97 new_compare13(xuu30000, xuu31000, baf) -> new_compare24(xuu30000, xuu31000, new_esEs6(xuu30000, xuu31000, baf), baf) 30.39/12.97 new_primCmpNat0(Succ(xuu3100), xuu3000) -> new_primCmpNat1(xuu3100, xuu3000) 30.39/12.97 new_compare210(xuu30000, xuu31000, True) -> EQ 30.39/12.97 new_esEs20(xuu40001, xuu3001, ty_Float) -> new_esEs8(xuu40001, xuu3001) 30.39/12.97 new_esEs28(xuu40002, xuu3002, ty_Char) -> new_esEs12(xuu40002, xuu3002) 30.39/12.97 new_lt9(xuu300, xuu310) -> new_esEs10(new_compare6(xuu300, xuu310), LT) 30.39/12.97 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Bool) -> new_ltEs11(xuu30000, xuu31000) 30.39/12.97 new_esEs28(xuu40002, xuu3002, app(ty_[], ddh)) -> new_esEs16(xuu40002, xuu3002, ddh) 30.39/12.97 new_esEs27(xuu40001, xuu3001, app(app(ty_@2, dbe), dbf)) -> new_esEs7(xuu40001, xuu3001, dbe, dbf) 30.39/12.97 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Char) -> new_ltEs9(xuu30000, xuu31000) 30.39/12.97 new_ltEs18(xuu3000, xuu3100, app(ty_Maybe, fa)) -> new_ltEs12(xuu3000, xuu3100, fa) 30.39/12.97 new_esEs19(xuu40000, xuu3000, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs4(xuu40000, xuu3000, bdh, bea, beb) 30.39/12.97 new_pePe(False, xuu167) -> xuu167 30.39/12.97 new_esEs27(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) 30.39/12.97 new_ltEs4(Left(xuu30000), Left(xuu31000), app(ty_Ratio, cc), be) -> new_ltEs10(xuu30000, xuu31000, cc) 30.39/12.97 new_ltEs18(xuu3000, xuu3100, app(app(app(ty_@3, ee), ef), eg)) -> new_ltEs6(xuu3000, xuu3100, ee, ef, eg) 30.39/12.97 new_esEs11(False, True) -> False 30.39/12.97 new_esEs11(True, False) -> False 30.39/12.97 new_compare25(xuu30000, xuu31000, True, bac, bad) -> EQ 30.39/12.97 new_ltEs4(Left(xuu30000), Left(xuu31000), app(app(app(ty_@3, bf), bg), bh), be) -> new_ltEs6(xuu30000, xuu31000, bf, bg, bh) 30.39/12.97 new_lt12(xuu30001, xuu31001, ty_Int) -> new_lt9(xuu30001, xuu31001) 30.39/12.97 new_compare26(xuu30000, xuu31000, False) -> new_compare111(xuu30000, xuu31000, new_ltEs11(xuu30000, xuu31000)) 30.39/12.97 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Double) -> new_ltEs14(xuu30000, xuu31000) 30.39/12.97 new_ltEs19(xuu30002, xuu31002, ty_Integer) -> new_ltEs17(xuu30002, xuu31002) 30.39/12.97 new_compare31(xuu30000, xuu31000, ty_Float) -> new_compare19(xuu30000, xuu31000) 30.39/12.97 new_lt6(xuu30000, xuu31000, baf) -> new_esEs10(new_compare13(xuu30000, xuu31000, baf), LT) 30.39/12.97 new_compare7(Integer(xuu30000), Integer(xuu31000)) -> new_primCmpInt(xuu30000, xuu31000) 30.39/12.97 new_compare10(xuu134, xuu135, False, dea) -> GT 30.39/12.97 new_compare11(xuu30000, xuu31000, False, bac, bad) -> GT 30.39/12.97 new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False 30.39/12.97 new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False 30.39/12.97 new_compare24(xuu300, xuu310, True, ec) -> EQ 30.39/12.97 new_esEs19(xuu40000, xuu3000, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.39/12.97 new_esEs19(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.39/12.97 new_compare24(Just(xuu3000), Just(xuu3100), False, ec) -> new_compare10(xuu3000, xuu3100, new_ltEs18(xuu3000, xuu3100, ec), ec) 30.39/12.97 new_esEs18(xuu40000, xuu3000, app(ty_Ratio, bbg)) -> new_esEs13(xuu40000, xuu3000, bbg) 30.39/12.97 new_compare31(xuu30000, xuu31000, ty_Int) -> new_compare6(xuu30000, xuu31000) 30.39/12.97 new_ltEs20(xuu30001, xuu31001, app(ty_Ratio, chg)) -> new_ltEs10(xuu30001, xuu31001, chg) 30.39/12.97 new_esEs6(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, ceg), ceh), cfa)) -> new_esEs4(xuu40000, xuu3000, ceg, ceh, cfa) 30.39/12.97 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.39/12.97 new_esEs26(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.39/12.97 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(app(ty_@2, ha), hb)) -> new_esEs7(xuu40000, xuu3000, ha, hb) 30.39/12.97 new_ltEs18(xuu3000, xuu3100, ty_Double) -> new_ltEs14(xuu3000, xuu3100) 30.39/12.97 new_esEs26(xuu40000, xuu3000, app(ty_[], dbd)) -> new_esEs16(xuu40000, xuu3000, dbd) 30.39/12.97 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Ordering, fg) -> new_esEs10(xuu40000, xuu3000) 30.39/12.97 new_esEs24(xuu30001, xuu31001, app(app(ty_Either, bhe), bhf)) -> new_esEs5(xuu30001, xuu31001, bhe, bhf) 30.39/12.97 new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) 30.39/12.97 new_primCmpInt(Neg(Zero), Pos(Succ(xuu3100))) -> LT 30.39/12.97 new_compare9(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Integer) -> new_compare7(new_sr0(xuu30000, xuu31001), new_sr0(xuu31000, xuu30001)) 30.39/12.97 new_compare19(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.39/12.97 new_primMulInt(Pos(xuu400000), Pos(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) 30.39/12.97 new_esEs29(xuu4000, xuu300, ty_Float) -> new_esEs8(xuu4000, xuu300) 30.39/12.97 new_esEs18(xuu40000, xuu3000, app(ty_[], bca)) -> new_esEs16(xuu40000, xuu3000, bca) 30.39/12.97 new_ltEs19(xuu30002, xuu31002, app(ty_Ratio, cba)) -> new_ltEs10(xuu30002, xuu31002, cba) 30.39/12.97 new_esEs24(xuu30001, xuu31001, ty_Ordering) -> new_esEs10(xuu30001, xuu31001) 30.39/12.97 new_ltEs14(xuu3000, xuu3100) -> new_fsEs(new_compare5(xuu3000, xuu3100)) 30.39/12.97 new_compare10(xuu134, xuu135, True, dea) -> LT 30.39/12.97 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(app(app(ty_@3, hc), hd), he)) -> new_esEs4(xuu40000, xuu3000, hc, hd, he) 30.39/12.97 new_esEs24(xuu30001, xuu31001, app(ty_Maybe, bhh)) -> new_esEs6(xuu30001, xuu31001, bhh) 30.39/12.97 new_primMulNat0(Succ(xuu4000000), Zero) -> Zero 30.39/12.97 new_primMulNat0(Zero, Succ(xuu300100)) -> Zero 30.39/12.97 new_ltEs11(False, False) -> True 30.39/12.97 new_compare31(xuu30000, xuu31000, ty_Bool) -> new_compare12(xuu30000, xuu31000) 30.39/12.97 new_esEs7(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bdd, bde) -> new_asAs(new_esEs19(xuu40000, xuu3000, bdd), new_esEs20(xuu40001, xuu3001, bde)) 30.39/12.97 new_esEs24(xuu30001, xuu31001, ty_Char) -> new_esEs12(xuu30001, xuu31001) 30.39/12.97 new_lt13(xuu30000, xuu31000, ty_Bool) -> new_lt15(xuu30000, xuu31000) 30.39/12.97 new_esEs30(xuu19, xuu14, ty_Float) -> new_esEs8(xuu19, xuu14) 30.39/12.97 new_compare9(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Int) -> new_compare6(new_sr(xuu30000, xuu31001), new_sr(xuu31000, xuu30001)) 30.39/12.97 new_esEs18(xuu40000, xuu3000, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.39/12.97 new_compare27(xuu30000, xuu31000, False, bgb, bgc) -> new_compare110(xuu30000, xuu31000, new_ltEs13(xuu30000, xuu31000, bgb, bgc), bgb, bgc) 30.39/12.97 new_ltEs17(xuu3000, xuu3100) -> new_fsEs(new_compare7(xuu3000, xuu3100)) 30.39/12.97 new_ltEs18(xuu3000, xuu3100, ty_@0) -> new_ltEs8(xuu3000, xuu3100) 30.39/12.97 new_lt20(xuu30000, xuu31000, app(app(app(ty_@3, cfh), cga), cgb)) -> new_lt11(xuu30000, xuu31000, cfh, cga, cgb) 30.39/12.97 new_compare24(Just(xuu3000), Nothing, False, ec) -> GT 30.39/12.97 new_esEs5(Left(xuu40000), Left(xuu3000), app(app(ty_Either, gc), gd), fg) -> new_esEs5(xuu40000, xuu3000, gc, gd) 30.39/12.97 new_compare19(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.39/12.97 new_primCmpNat0(Zero, xuu3000) -> LT 30.39/12.97 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(ty_Maybe, baa)) -> new_esEs6(xuu40000, xuu3000, baa) 30.39/12.97 new_esEs18(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.39/12.97 new_esEs22(xuu40001, xuu3001, ty_Int) -> new_esEs9(xuu40001, xuu3001) 30.39/12.97 new_lt8(xuu30000, xuu31000, bac, bad) -> new_esEs10(new_compare18(xuu30000, xuu31000, bac, bad), LT) 30.39/12.97 new_lt15(xuu30000, xuu31000) -> new_esEs10(new_compare12(xuu30000, xuu31000), LT) 30.39/12.97 new_compare111(xuu30000, xuu31000, True) -> LT 30.39/12.97 new_esEs27(xuu40001, xuu3001, ty_Float) -> new_esEs8(xuu40001, xuu3001) 30.39/12.97 new_lt14(xuu30000, xuu31000, bgh) -> new_esEs10(new_compare(xuu30000, xuu31000, bgh), LT) 30.39/12.97 new_compare31(xuu30000, xuu31000, app(ty_Ratio, ccc)) -> new_compare9(xuu30000, xuu31000, ccc) 30.39/12.97 new_lt13(xuu30000, xuu31000, ty_Float) -> new_lt10(xuu30000, xuu31000) 30.39/12.97 new_esEs20(xuu40001, xuu3001, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_esEs4(xuu40001, xuu3001, bfb, bfc, bfd) 30.39/12.97 new_ltEs11(True, True) -> True 30.39/12.97 new_ltEs16(xuu3000, xuu3100) -> new_fsEs(new_compare19(xuu3000, xuu3100)) 30.39/12.97 new_primPlusNat1(Succ(xuu25200), Zero) -> Succ(xuu25200) 30.39/12.97 new_primPlusNat1(Zero, Succ(xuu9400)) -> Succ(xuu9400) 30.39/12.97 new_esEs30(xuu19, xuu14, ty_@0) -> new_esEs14(xuu19, xuu14) 30.39/12.97 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Ordering) -> new_ltEs15(xuu30000, xuu31000) 30.39/12.97 new_lt13(xuu30000, xuu31000, ty_Ordering) -> new_lt18(xuu30000, xuu31000) 30.39/12.97 new_esEs16([], [], bag) -> True 30.39/12.97 new_ltEs12(Just(xuu30000), Just(xuu31000), app(app(app(ty_@3, cdd), cde), cdf)) -> new_ltEs6(xuu30000, xuu31000, cdd, cde, cdf) 30.39/12.97 new_ltEs20(xuu30001, xuu31001, ty_Double) -> new_ltEs14(xuu30001, xuu31001) 30.39/12.97 new_esEs23(xuu30000, xuu31000, ty_Ordering) -> new_esEs10(xuu30000, xuu31000) 30.39/12.97 new_lt12(xuu30001, xuu31001, ty_Float) -> new_lt10(xuu30001, xuu31001) 30.39/12.97 new_ltEs12(Just(xuu30000), Just(xuu31000), app(ty_Maybe, ceb)) -> new_ltEs12(xuu30000, xuu31000, ceb) 30.39/12.97 new_esEs29(xuu4000, xuu300, ty_@0) -> new_esEs14(xuu4000, xuu300) 30.39/12.97 new_primMulInt(Neg(xuu400000), Neg(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) 30.39/12.97 new_esEs20(xuu40001, xuu3001, ty_Double) -> new_esEs17(xuu40001, xuu3001) 30.39/12.97 new_esEs25(xuu30000, xuu31000, app(app(ty_@2, cgg), cgh)) -> new_esEs7(xuu30000, xuu31000, cgg, cgh) 30.39/12.97 new_esEs25(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) 30.39/12.97 new_lt20(xuu30000, xuu31000, app(ty_Ratio, cge)) -> new_lt5(xuu30000, xuu31000, cge) 30.39/12.97 new_compare([], :(xuu31000, xuu31001), ed) -> LT 30.39/12.97 new_esEs28(xuu40002, xuu3002, ty_Integer) -> new_esEs15(xuu40002, xuu3002) 30.39/12.97 new_ltEs19(xuu30002, xuu31002, app(app(ty_@2, cbc), cbd)) -> new_ltEs13(xuu30002, xuu31002, cbc, cbd) 30.39/12.97 new_esEs6(Just(xuu40000), Just(xuu3000), app(ty_Maybe, cfe)) -> new_esEs6(xuu40000, xuu3000, cfe) 30.39/12.97 new_esEs6(Nothing, Just(xuu3000), cdb) -> False 30.39/12.97 new_esEs6(Just(xuu40000), Nothing, cdb) -> False 30.39/12.97 new_ltEs11(False, True) -> True 30.39/12.97 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Float, be) -> new_ltEs16(xuu30000, xuu31000) 30.39/12.97 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_@0) -> new_ltEs8(xuu30000, xuu31000) 30.39/12.97 new_ltEs19(xuu30002, xuu31002, ty_@0) -> new_ltEs8(xuu30002, xuu31002) 30.39/12.97 new_ltEs15(EQ, GT) -> True 30.39/12.97 new_esEs24(xuu30001, xuu31001, ty_Bool) -> new_esEs11(xuu30001, xuu31001) 30.39/12.97 new_esEs6(Nothing, Nothing, cdb) -> True 30.39/12.97 new_ltEs18(xuu3000, xuu3100, ty_Char) -> new_ltEs9(xuu3000, xuu3100) 30.39/12.97 new_esEs11(False, False) -> True 30.39/12.97 new_esEs10(LT, LT) -> True 30.39/12.97 new_ltEs18(xuu3000, xuu3100, ty_Ordering) -> new_ltEs15(xuu3000, xuu3100) 30.39/12.97 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Int, be) -> new_ltEs7(xuu30000, xuu31000) 30.39/12.97 new_esEs21(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.39/12.97 new_ltEs20(xuu30001, xuu31001, app(app(ty_@2, daa), dab)) -> new_ltEs13(xuu30001, xuu31001, daa, dab) 30.39/12.97 new_primCmpNat2(xuu3000, Zero) -> GT 30.39/12.97 new_esEs28(xuu40002, xuu3002, ty_Float) -> new_esEs8(xuu40002, xuu3002) 30.39/12.97 new_lt4(xuu30000, xuu31000) -> new_esEs10(new_compare8(xuu30000, xuu31000), LT) 30.39/12.97 new_compare6(xuu30, xuu31) -> new_primCmpInt(xuu30, xuu31) 30.39/12.97 new_compare31(xuu30000, xuu31000, app(ty_Maybe, ccd)) -> new_compare13(xuu30000, xuu31000, ccd) 30.39/12.97 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.39/12.97 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Bool, fg) -> new_esEs11(xuu40000, xuu3000) 30.39/12.97 new_lt13(xuu30000, xuu31000, ty_Int) -> new_lt9(xuu30000, xuu31000) 30.39/12.97 new_esEs16(:(xuu40000, xuu40001), :(xuu3000, xuu3001), bag) -> new_asAs(new_esEs18(xuu40000, xuu3000, bag), new_esEs16(xuu40001, xuu3001, bag)) 30.39/12.97 new_compare30(xuu30000, xuu31000) -> new_compare210(xuu30000, xuu31000, new_esEs10(xuu30000, xuu31000)) 30.39/12.97 new_ltEs19(xuu30002, xuu31002, ty_Char) -> new_ltEs9(xuu30002, xuu31002) 30.39/12.97 new_lt12(xuu30001, xuu31001, ty_Bool) -> new_lt15(xuu30001, xuu31001) 30.39/12.97 new_compare31(xuu30000, xuu31000, ty_Integer) -> new_compare7(xuu30000, xuu31000) 30.39/12.97 new_ltEs12(Just(xuu30000), Just(xuu31000), app(ty_[], cdc)) -> new_ltEs5(xuu30000, xuu31000, cdc) 30.39/12.97 new_esEs26(xuu40000, xuu3000, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs4(xuu40000, xuu3000, dae, daf, dag) 30.39/12.97 new_primMulInt(Pos(xuu400000), Neg(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) 30.39/12.97 new_primMulInt(Neg(xuu400000), Pos(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) 30.39/12.97 new_esEs12(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) 30.39/12.97 new_esEs19(xuu40000, xuu3000, app(app(ty_Either, bec), bed)) -> new_esEs5(xuu40000, xuu3000, bec, bed) 30.39/12.97 new_lt17(xuu30000, xuu31000) -> new_esEs10(new_compare5(xuu30000, xuu31000), LT) 30.39/12.97 new_esEs26(xuu40000, xuu3000, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.39/12.97 new_esEs20(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) 30.39/12.97 new_ltEs20(xuu30001, xuu31001, ty_@0) -> new_ltEs8(xuu30001, xuu31001) 30.39/12.97 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(app(app(ty_@3, db), dc), dd)) -> new_ltEs6(xuu30000, xuu31000, db, dc, dd) 30.39/12.97 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(app(ty_Either, de), df)) -> new_ltEs4(xuu30000, xuu31000, de, df) 30.39/12.97 new_ltEs4(Left(xuu30000), Left(xuu31000), app(ty_[], bd), be) -> new_ltEs5(xuu30000, xuu31000, bd) 30.39/12.97 new_primCmpNat1(Succ(xuu30000), Zero) -> GT 30.39/12.97 new_esEs27(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) 30.39/12.97 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Integer) -> new_ltEs17(xuu30000, xuu31000) 30.39/12.97 new_compare14(xuu30000, xuu31000, False) -> GT 30.39/12.97 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Ordering) -> new_ltEs15(xuu30000, xuu31000) 30.39/12.97 new_ltEs19(xuu30002, xuu31002, ty_Double) -> new_ltEs14(xuu30002, xuu31002) 30.39/12.97 new_sr0(Integer(xuu300000), Integer(xuu310010)) -> Integer(new_primMulInt(xuu300000, xuu310010)) 30.39/12.97 new_ltEs9(xuu3000, xuu3100) -> new_fsEs(new_compare17(xuu3000, xuu3100)) 30.39/12.97 new_primCmpNat2(xuu3000, Succ(xuu3100)) -> new_primCmpNat1(xuu3000, xuu3100) 30.39/12.97 new_esEs28(xuu40002, xuu3002, ty_@0) -> new_esEs14(xuu40002, xuu3002) 30.39/12.97 new_ltEs15(LT, GT) -> True 30.39/12.97 new_ltEs20(xuu30001, xuu31001, app(app(ty_Either, che), chf)) -> new_ltEs4(xuu30001, xuu31001, che, chf) 30.39/12.97 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(ty_[], da)) -> new_ltEs5(xuu30000, xuu31000, da) 30.39/12.97 new_esEs29(xuu4000, xuu300, ty_Integer) -> new_esEs15(xuu4000, xuu300) 30.39/12.97 new_esEs20(xuu40001, xuu3001, app(ty_Ratio, bfg)) -> new_esEs13(xuu40001, xuu3001, bfg) 30.39/12.97 new_esEs30(xuu19, xuu14, ty_Integer) -> new_esEs15(xuu19, xuu14) 30.39/12.97 new_esEs20(xuu40001, xuu3001, ty_Int) -> new_esEs9(xuu40001, xuu3001) 30.39/12.97 new_esEs15(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) 30.39/12.97 new_esEs25(xuu30000, xuu31000, app(ty_Ratio, cge)) -> new_esEs13(xuu30000, xuu31000, cge) 30.39/12.97 new_esEs25(xuu30000, xuu31000, ty_Bool) -> new_esEs11(xuu30000, xuu31000) 30.39/12.97 new_compare31(xuu30000, xuu31000, app(ty_[], cbe)) -> new_compare(xuu30000, xuu31000, cbe) 30.39/12.97 new_esEs25(xuu30000, xuu31000, ty_Int) -> new_esEs9(xuu30000, xuu31000) 30.39/12.97 new_asAs(True, xuu141) -> xuu141 30.39/12.97 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.39/12.97 new_ltEs13(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), fb, fc) -> new_pePe(new_lt20(xuu30000, xuu31000, fb), new_asAs(new_esEs25(xuu30000, xuu31000, fb), new_ltEs20(xuu30001, xuu31001, fc))) 30.39/12.97 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Bool) -> new_ltEs11(xuu30000, xuu31000) 30.39/12.97 new_esEs18(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.39/12.97 new_esEs24(xuu30001, xuu31001, ty_@0) -> new_esEs14(xuu30001, xuu31001) 30.39/12.97 new_compare31(xuu30000, xuu31000, app(app(ty_@2, cce), ccf)) -> new_compare15(xuu30000, xuu31000, cce, ccf) 30.39/12.97 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Integer, fg) -> new_esEs15(xuu40000, xuu3000) 30.39/12.97 new_lt12(xuu30001, xuu31001, ty_Ordering) -> new_lt18(xuu30001, xuu31001) 30.39/12.97 new_compare18(xuu30000, xuu31000, bac, bad) -> new_compare25(xuu30000, xuu31000, new_esEs5(xuu30000, xuu31000, bac, bad), bac, bad) 30.39/12.97 new_lt13(xuu30000, xuu31000, app(app(ty_Either, bac), bad)) -> new_lt8(xuu30000, xuu31000, bac, bad) 30.39/12.97 new_esEs19(xuu40000, xuu3000, app(ty_Ratio, bee)) -> new_esEs13(xuu40000, xuu3000, bee) 30.39/12.97 new_ltEs20(xuu30001, xuu31001, ty_Char) -> new_ltEs9(xuu30001, xuu31001) 30.39/12.97 new_esEs24(xuu30001, xuu31001, ty_Integer) -> new_esEs15(xuu30001, xuu31001) 30.39/12.97 new_esEs19(xuu40000, xuu3000, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.39/12.97 new_esEs29(xuu4000, xuu300, app(ty_[], bag)) -> new_esEs16(xuu4000, xuu300, bag) 30.39/12.97 new_ltEs20(xuu30001, xuu31001, ty_Float) -> new_ltEs16(xuu30001, xuu31001) 30.39/12.97 new_lt13(xuu30000, xuu31000, ty_@0) -> new_lt4(xuu30000, xuu31000) 30.39/12.97 new_compare12(xuu30000, xuu31000) -> new_compare26(xuu30000, xuu31000, new_esEs11(xuu30000, xuu31000)) 30.39/12.97 new_esEs19(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.39/12.97 new_esEs18(xuu40000, xuu3000, app(app(ty_@2, bah), bba)) -> new_esEs7(xuu40000, xuu3000, bah, bba) 30.39/12.97 new_esEs24(xuu30001, xuu31001, app(app(ty_@2, caa), cab)) -> new_esEs7(xuu30001, xuu31001, caa, cab) 30.39/12.97 new_esEs30(xuu19, xuu14, app(app(ty_@2, bcb), bcc)) -> new_esEs7(xuu19, xuu14, bcb, bcc) 30.39/12.97 new_lt12(xuu30001, xuu31001, app(ty_[], bha)) -> new_lt14(xuu30001, xuu31001, bha) 30.39/12.97 new_esEs29(xuu4000, xuu300, app(app(ty_Either, gh), fg)) -> new_esEs5(xuu4000, xuu300, gh, fg) 30.39/12.97 new_ltEs18(xuu3000, xuu3100, app(app(ty_@2, fb), fc)) -> new_ltEs13(xuu3000, xuu3100, fb, fc) 30.39/12.97 new_lt20(xuu30000, xuu31000, ty_Char) -> new_lt7(xuu30000, xuu31000) 30.39/12.97 new_compare15(xuu30000, xuu31000, bgb, bgc) -> new_compare27(xuu30000, xuu31000, new_esEs7(xuu30000, xuu31000, bgb, bgc), bgb, bgc) 30.39/12.97 new_primCompAux00(xuu182, EQ) -> xuu182 30.39/12.97 new_sr(xuu40000, xuu3001) -> new_primMulInt(xuu40000, xuu3001) 30.39/12.97 new_lt12(xuu30001, xuu31001, app(ty_Maybe, bhh)) -> new_lt6(xuu30001, xuu31001, bhh) 30.39/12.97 new_esEs25(xuu30000, xuu31000, ty_Integer) -> new_esEs15(xuu30000, xuu31000) 30.39/12.97 new_primMulNat0(Zero, Zero) -> Zero 30.39/12.97 new_lt13(xuu30000, xuu31000, app(app(ty_@2, bgb), bgc)) -> new_lt16(xuu30000, xuu31000, bgb, bgc) 30.39/12.97 new_esEs30(xuu19, xuu14, app(ty_[], bdc)) -> new_esEs16(xuu19, xuu14, bdc) 30.39/12.97 new_esEs24(xuu30001, xuu31001, app(ty_[], bha)) -> new_esEs16(xuu30001, xuu31001, bha) 30.39/12.97 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Int, fg) -> new_esEs9(xuu40000, xuu3000) 30.39/12.97 new_esEs23(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) 30.39/12.97 new_compare111(xuu30000, xuu31000, False) -> GT 30.39/12.97 new_primCmpNat1(Zero, Zero) -> EQ 30.39/12.97 new_ltEs20(xuu30001, xuu31001, app(ty_Maybe, chh)) -> new_ltEs12(xuu30001, xuu31001, chh) 30.39/12.97 new_esEs30(xuu19, xuu14, ty_Int) -> new_esEs9(xuu19, xuu14) 30.39/12.97 new_esEs23(xuu30000, xuu31000, app(app(ty_@2, bgb), bgc)) -> new_esEs7(xuu30000, xuu31000, bgb, bgc) 30.39/12.97 new_compare28(xuu30000, xuu31000, True, bgd, bge, bgf) -> EQ 30.39/12.97 new_ltEs18(xuu3000, xuu3100, app(app(ty_Either, cg), be)) -> new_ltEs4(xuu3000, xuu3100, cg, be) 30.39/12.97 new_lt20(xuu30000, xuu31000, ty_Float) -> new_lt10(xuu30000, xuu31000) 30.39/12.97 new_esEs20(xuu40001, xuu3001, app(app(ty_Either, bfe), bff)) -> new_esEs5(xuu40001, xuu3001, bfe, bff) 30.39/12.97 new_ltEs11(True, False) -> False 30.39/12.97 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(app(ty_Either, hf), hg)) -> new_esEs5(xuu40000, xuu3000, hf, hg) 30.39/12.97 new_esEs19(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.39/12.97 new_ltEs15(EQ, EQ) -> True 30.39/12.97 new_esEs26(xuu40000, xuu3000, app(ty_Maybe, dbc)) -> new_esEs6(xuu40000, xuu3000, dbc) 30.39/12.97 new_fsEs(xuu151) -> new_not(new_esEs10(xuu151, GT)) 30.39/12.97 new_esEs30(xuu19, xuu14, app(ty_Ratio, bda)) -> new_esEs13(xuu19, xuu14, bda) 30.39/12.97 new_esEs26(xuu40000, xuu3000, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.39/12.97 new_esEs24(xuu30001, xuu31001, app(ty_Ratio, bhg)) -> new_esEs13(xuu30001, xuu31001, bhg) 30.39/12.97 new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.39/12.97 new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.39/12.97 new_ltEs18(xuu3000, xuu3100, app(ty_Ratio, eh)) -> new_ltEs10(xuu3000, xuu3100, eh) 30.39/12.97 new_lt12(xuu30001, xuu31001, ty_@0) -> new_lt4(xuu30001, xuu31001) 30.39/12.97 new_esEs6(Just(xuu40000), Just(xuu3000), app(app(ty_@2, cee), cef)) -> new_esEs7(xuu40000, xuu3000, cee, cef) 30.39/12.97 new_esEs18(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.39/12.97 new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False 30.39/12.97 new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False 30.39/12.97 new_esEs29(xuu4000, xuu300, app(ty_Ratio, bgg)) -> new_esEs13(xuu4000, xuu300, bgg) 30.39/12.97 new_esEs24(xuu30001, xuu31001, ty_Int) -> new_esEs9(xuu30001, xuu31001) 30.39/12.97 new_esEs25(xuu30000, xuu31000, app(ty_Maybe, cgf)) -> new_esEs6(xuu30000, xuu31000, cgf) 30.39/12.97 new_compare([], [], ed) -> EQ 30.39/12.97 new_ltEs15(LT, EQ) -> True 30.39/12.97 new_esEs20(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) 30.39/12.97 new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) 30.39/12.97 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.39/12.97 new_esEs20(xuu40001, xuu3001, app(ty_[], bga)) -> new_esEs16(xuu40001, xuu3001, bga) 30.39/12.97 new_esEs28(xuu40002, xuu3002, app(app(ty_@2, dcg), dch)) -> new_esEs7(xuu40002, xuu3002, dcg, dch) 30.39/12.97 new_ltEs4(Left(xuu30000), Left(xuu31000), app(app(ty_Either, ca), cb), be) -> new_ltEs4(xuu30000, xuu31000, ca, cb) 30.39/12.97 new_lt13(xuu30000, xuu31000, app(ty_[], bgh)) -> new_lt14(xuu30000, xuu31000, bgh) 30.39/12.97 new_esEs25(xuu30000, xuu31000, app(app(ty_Either, cgc), cgd)) -> new_esEs5(xuu30000, xuu31000, cgc, cgd) 30.39/12.97 new_esEs20(xuu40001, xuu3001, app(ty_Maybe, bfh)) -> new_esEs6(xuu40001, xuu3001, bfh) 30.39/12.97 new_ltEs19(xuu30002, xuu31002, app(ty_Maybe, cbb)) -> new_ltEs12(xuu30002, xuu31002, cbb) 30.39/12.97 new_esEs11(True, True) -> True 30.39/12.97 new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False 30.39/12.97 new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False 30.39/12.97 new_esEs19(xuu40000, xuu3000, app(ty_Maybe, bef)) -> new_esEs6(xuu40000, xuu3000, bef) 30.39/12.97 new_compare29(xuu30000, xuu31000, bgd, bge, bgf) -> new_compare28(xuu30000, xuu31000, new_esEs4(xuu30000, xuu31000, bgd, bge, bgf), bgd, bge, bgf) 30.39/12.97 new_compare31(xuu30000, xuu31000, ty_Double) -> new_compare5(xuu30000, xuu31000) 30.39/12.97 new_esEs25(xuu30000, xuu31000, app(ty_[], cfg)) -> new_esEs16(xuu30000, xuu31000, cfg) 30.39/12.97 new_esEs19(xuu40000, xuu3000, app(ty_[], beg)) -> new_esEs16(xuu40000, xuu3000, beg) 30.39/12.97 new_esEs29(xuu4000, xuu300, ty_Int) -> new_esEs9(xuu4000, xuu300) 30.39/12.97 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 30.39/12.97 new_ltEs15(GT, GT) -> True 30.39/12.97 new_esEs30(xuu19, xuu14, ty_Bool) -> new_esEs11(xuu19, xuu14) 30.39/12.97 new_esEs26(xuu40000, xuu3000, app(app(ty_Either, dah), dba)) -> new_esEs5(xuu40000, xuu3000, dah, dba) 30.39/12.97 new_esEs30(xuu19, xuu14, app(ty_Maybe, bdb)) -> new_esEs6(xuu19, xuu14, bdb) 30.39/12.97 new_esEs10(LT, GT) -> False 30.39/12.97 new_esEs10(GT, LT) -> False 30.39/12.97 new_esEs21(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.39/12.97 new_ltEs10(xuu3000, xuu3100, eh) -> new_fsEs(new_compare9(xuu3000, xuu3100, eh)) 30.39/12.97 new_esEs19(xuu40000, xuu3000, app(app(ty_@2, bdf), bdg)) -> new_esEs7(xuu40000, xuu3000, bdf, bdg) 30.39/12.97 new_ltEs7(xuu3000, xuu3100) -> new_fsEs(new_compare6(xuu3000, xuu3100)) 30.39/12.97 new_ltEs12(Just(xuu30000), Just(xuu31000), app(app(ty_@2, cec), ced)) -> new_ltEs13(xuu30000, xuu31000, cec, ced) 30.39/12.97 new_esEs27(xuu40001, xuu3001, app(app(app(ty_@3, dbg), dbh), dca)) -> new_esEs4(xuu40001, xuu3001, dbg, dbh, dca) 30.39/12.97 new_primPlusNat0(xuu104, xuu300100) -> new_primPlusNat1(xuu104, Succ(xuu300100)) 30.39/12.97 new_not(False) -> True 30.39/12.97 new_esEs28(xuu40002, xuu3002, ty_Int) -> new_esEs9(xuu40002, xuu3002) 30.39/12.97 new_compare31(xuu30000, xuu31000, ty_Char) -> new_compare17(xuu30000, xuu31000) 30.39/12.97 new_esEs18(xuu40000, xuu3000, app(app(ty_Either, bbe), bbf)) -> new_esEs5(xuu40000, xuu3000, bbe, bbf) 30.39/12.97 new_esEs28(xuu40002, xuu3002, app(ty_Ratio, ddf)) -> new_esEs13(xuu40002, xuu3002, ddf) 30.39/12.97 new_esEs29(xuu4000, xuu300, ty_Ordering) -> new_esEs10(xuu4000, xuu300) 30.39/12.97 new_lt20(xuu30000, xuu31000, ty_@0) -> new_lt4(xuu30000, xuu31000) 30.39/12.97 new_esEs25(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) 30.39/12.97 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.39/12.97 new_compare19(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.39/12.97 new_compare19(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.39/12.97 new_lt12(xuu30001, xuu31001, app(app(ty_Either, bhe), bhf)) -> new_lt8(xuu30001, xuu31001, bhe, bhf) 30.39/12.97 new_esEs25(xuu30000, xuu31000, ty_Double) -> new_esEs17(xuu30000, xuu31000) 30.39/12.97 new_esEs5(Left(xuu40000), Right(xuu3000), gh, fg) -> False 30.39/12.97 new_esEs5(Right(xuu40000), Left(xuu3000), gh, fg) -> False 30.39/12.97 new_primCmpInt(Pos(Succ(xuu3000)), Pos(xuu310)) -> new_primCmpNat2(xuu3000, xuu310) 30.39/12.97 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Int) -> new_ltEs7(xuu30000, xuu31000) 30.39/12.97 new_lt12(xuu30001, xuu31001, ty_Integer) -> new_lt19(xuu30001, xuu31001) 30.39/12.97 new_compare27(xuu30000, xuu31000, True, bgb, bgc) -> EQ 30.39/12.97 new_esEs29(xuu4000, xuu300, app(app(ty_@2, bdd), bde)) -> new_esEs7(xuu4000, xuu300, bdd, bde) 30.39/12.97 new_ltEs4(Left(xuu30000), Right(xuu31000), cg, be) -> True 30.39/12.97 new_esEs18(xuu40000, xuu3000, app(ty_Maybe, bbh)) -> new_esEs6(xuu40000, xuu3000, bbh) 30.39/12.97 new_esEs30(xuu19, xuu14, ty_Ordering) -> new_esEs10(xuu19, xuu14) 30.39/12.97 new_esEs27(xuu40001, xuu3001, ty_Ordering) -> new_esEs10(xuu40001, xuu3001) 30.39/12.97 new_ltEs18(xuu3000, xuu3100, app(ty_[], ed)) -> new_ltEs5(xuu3000, xuu3100, ed) 30.39/12.97 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(app(ty_@2, ea), eb)) -> new_ltEs13(xuu30000, xuu31000, ea, eb) 30.39/12.97 new_esEs30(xuu19, xuu14, app(app(ty_Either, bcg), bch)) -> new_esEs5(xuu19, xuu14, bcg, bch) 30.39/12.97 new_lt20(xuu30000, xuu31000, ty_Int) -> new_lt9(xuu30000, xuu31000) 30.39/12.97 new_lt5(xuu30000, xuu31000, bae) -> new_esEs10(new_compare9(xuu30000, xuu31000, bae), LT) 30.39/12.97 new_ltEs20(xuu30001, xuu31001, ty_Bool) -> new_ltEs11(xuu30001, xuu31001) 30.39/12.97 new_compare16(xuu30000, xuu31000, False, bgd, bge, bgf) -> GT 30.39/12.97 new_compare11(xuu30000, xuu31000, True, bac, bad) -> LT 30.39/12.97 new_ltEs19(xuu30002, xuu31002, ty_Int) -> new_ltEs7(xuu30002, xuu31002) 30.39/12.97 new_primCmpNat1(Zero, Succ(xuu31000)) -> LT 30.39/12.97 new_lt12(xuu30001, xuu31001, app(ty_Ratio, bhg)) -> new_lt5(xuu30001, xuu31001, bhg) 30.39/12.97 new_esEs29(xuu4000, xuu300, app(ty_Maybe, cdb)) -> new_esEs6(xuu4000, xuu300, cdb) 30.39/12.97 new_compare210(xuu30000, xuu31000, False) -> new_compare14(xuu30000, xuu31000, new_ltEs15(xuu30000, xuu31000)) 30.39/12.97 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 30.39/12.97 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 30.39/12.97 new_esEs25(xuu30000, xuu31000, app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs4(xuu30000, xuu31000, cfh, cga, cgb) 30.39/12.97 new_lt20(xuu30000, xuu31000, ty_Double) -> new_lt17(xuu30000, xuu31000) 30.39/12.97 new_lt18(xuu30000, xuu31000) -> new_esEs10(new_compare30(xuu30000, xuu31000), LT) 30.39/12.97 new_primPlusNat1(Zero, Zero) -> Zero 30.39/12.97 new_esEs18(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.39/12.97 new_compare31(xuu30000, xuu31000, ty_Ordering) -> new_compare30(xuu30000, xuu31000) 30.39/12.97 new_lt20(xuu30000, xuu31000, app(app(ty_@2, cgg), cgh)) -> new_lt16(xuu30000, xuu31000, cgg, cgh) 30.39/12.97 new_esEs20(xuu40001, xuu3001, ty_Bool) -> new_esEs11(xuu40001, xuu3001) 30.39/12.97 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Double, be) -> new_ltEs14(xuu30000, xuu31000) 30.39/12.97 new_ltEs19(xuu30002, xuu31002, ty_Bool) -> new_ltEs11(xuu30002, xuu31002) 30.39/12.97 new_ltEs20(xuu30001, xuu31001, ty_Int) -> new_ltEs7(xuu30001, xuu31001) 30.39/12.97 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Float, fg) -> new_esEs8(xuu40000, xuu3000) 30.39/12.97 new_ltEs12(Just(xuu30000), Just(xuu31000), app(ty_Ratio, cea)) -> new_ltEs10(xuu30000, xuu31000, cea) 30.39/12.97 new_esEs27(xuu40001, xuu3001, ty_Double) -> new_esEs17(xuu40001, xuu3001) 30.39/12.97 new_esEs24(xuu30001, xuu31001, ty_Float) -> new_esEs8(xuu30001, xuu31001) 30.39/12.97 new_ltEs15(LT, LT) -> True 30.39/12.97 new_ltEs12(Nothing, Just(xuu31000), fa) -> True 30.39/12.97 new_esEs10(EQ, GT) -> False 30.39/12.97 new_esEs10(GT, EQ) -> False 30.39/12.97 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Ordering, be) -> new_ltEs15(xuu30000, xuu31000) 30.39/12.97 new_esEs18(xuu40000, xuu3000, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.39/12.97 new_ltEs19(xuu30002, xuu31002, app(app(ty_Either, cag), cah)) -> new_ltEs4(xuu30002, xuu31002, cag, cah) 30.39/12.97 new_esEs28(xuu40002, xuu3002, app(ty_Maybe, ddg)) -> new_esEs6(xuu40002, xuu3002, ddg) 30.39/12.97 new_esEs8(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs9(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) 30.39/12.97 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 30.39/12.97 new_primMulNat0(Succ(xuu4000000), Succ(xuu300100)) -> new_primPlusNat0(new_primMulNat0(xuu4000000, Succ(xuu300100)), xuu300100) 30.39/12.97 new_lt20(xuu30000, xuu31000, ty_Ordering) -> new_lt18(xuu30000, xuu31000) 30.39/12.97 new_compare31(xuu30000, xuu31000, ty_@0) -> new_compare8(xuu30000, xuu31000) 30.39/12.97 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(ty_Maybe, dh)) -> new_ltEs12(xuu30000, xuu31000, dh) 30.39/12.97 new_compare16(xuu30000, xuu31000, True, bgd, bge, bgf) -> LT 30.39/12.97 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.39/12.97 new_esEs13(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), bgg) -> new_asAs(new_esEs21(xuu40000, xuu3000, bgg), new_esEs22(xuu40001, xuu3001, bgg)) 30.39/12.97 new_esEs27(xuu40001, xuu3001, app(ty_Maybe, dce)) -> new_esEs6(xuu40001, xuu3001, dce) 30.39/12.97 new_esEs6(Just(xuu40000), Just(xuu3000), app(ty_[], cff)) -> new_esEs16(xuu40000, xuu3000, cff) 30.39/12.97 new_esEs5(Left(xuu40000), Left(xuu3000), ty_@0, fg) -> new_esEs14(xuu40000, xuu3000) 30.39/12.97 new_ltEs12(Nothing, Nothing, fa) -> True 30.39/12.97 new_esEs16(:(xuu40000, xuu40001), [], bag) -> False 30.39/12.97 new_esEs16([], :(xuu3000, xuu3001), bag) -> False 30.39/12.97 new_ltEs19(xuu30002, xuu31002, ty_Float) -> new_ltEs16(xuu30002, xuu31002) 30.39/12.97 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_@0, be) -> new_ltEs8(xuu30000, xuu31000) 30.39/12.97 new_compare31(xuu30000, xuu31000, app(app(ty_Either, cca), ccb)) -> new_compare18(xuu30000, xuu31000, cca, ccb) 30.39/12.97 new_esEs23(xuu30000, xuu31000, app(ty_[], bgh)) -> new_esEs16(xuu30000, xuu31000, bgh) 30.39/12.97 new_ltEs12(Just(xuu30000), Nothing, fa) -> False 30.39/12.97 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 30.39/12.97 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 30.39/12.97 new_compare8(@0, @0) -> EQ 30.39/12.97 new_lt20(xuu30000, xuu31000, app(ty_Maybe, cgf)) -> new_lt6(xuu30000, xuu31000, cgf) 30.39/12.97 new_compare110(xuu30000, xuu31000, False, bgb, bgc) -> GT 30.39/12.97 new_esEs4(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), ccg, cch, cda) -> new_asAs(new_esEs26(xuu40000, xuu3000, ccg), new_asAs(new_esEs27(xuu40001, xuu3001, cch), new_esEs28(xuu40002, xuu3002, cda))) 30.39/12.97 new_esEs23(xuu30000, xuu31000, ty_Integer) -> new_esEs15(xuu30000, xuu31000) 30.39/12.97 new_esEs28(xuu40002, xuu3002, app(app(ty_Either, ddd), dde)) -> new_esEs5(xuu40002, xuu3002, ddd, dde) 30.39/12.97 new_primEqNat0(Zero, Zero) -> True 30.39/12.97 new_ltEs18(xuu3000, xuu3100, ty_Float) -> new_ltEs16(xuu3000, xuu3100) 30.39/12.97 new_esEs19(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.39/12.97 new_esEs18(xuu40000, xuu3000, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.39/12.97 new_ltEs20(xuu30001, xuu31001, app(ty_[], cha)) -> new_ltEs5(xuu30001, xuu31001, cha) 30.39/12.97 new_esEs28(xuu40002, xuu3002, ty_Ordering) -> new_esEs10(xuu40002, xuu3002) 30.39/12.97 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Float) -> new_ltEs16(xuu30000, xuu31000) 30.39/12.97 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Integer) -> new_ltEs17(xuu30000, xuu31000) 30.39/12.97 new_esEs6(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.39/12.97 new_esEs29(xuu4000, xuu300, ty_Bool) -> new_esEs11(xuu4000, xuu300) 30.39/12.97 new_asAs(False, xuu141) -> False 30.39/12.97 new_esEs23(xuu30000, xuu31000, ty_Float) -> new_esEs8(xuu30000, xuu31000) 30.39/12.97 new_compare24(Nothing, Nothing, False, ec) -> LT 30.39/12.97 new_esEs20(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) 30.39/12.97 new_esEs26(xuu40000, xuu3000, app(ty_Ratio, dbb)) -> new_esEs13(xuu40000, xuu3000, dbb) 30.39/12.97 new_lt10(xuu30000, xuu31000) -> new_esEs10(new_compare19(xuu30000, xuu31000), LT) 30.39/12.97 new_esEs26(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.39/12.97 new_esEs23(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) 30.39/12.97 new_ltEs4(Right(xuu30000), Left(xuu31000), cg, be) -> False 30.39/12.97 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.39/12.97 new_primCmpInt(Neg(Succ(xuu3000)), Neg(xuu310)) -> new_primCmpNat0(xuu310, xuu3000) 30.39/12.97 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.39/12.97 new_ltEs18(xuu3000, xuu3100, ty_Int) -> new_ltEs7(xuu3000, xuu3100) 30.39/12.97 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Char, be) -> new_ltEs9(xuu30000, xuu31000) 30.39/12.97 new_esEs20(xuu40001, xuu3001, app(app(ty_@2, beh), bfa)) -> new_esEs7(xuu40001, xuu3001, beh, bfa) 30.39/12.97 30.39/12.97 The set Q consists of the following terms: 30.39/12.97 30.39/12.97 new_primPlusNat1(Succ(x0), Succ(x1)) 30.39/12.97 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.97 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 30.39/12.97 new_esEs27(x0, x1, ty_Ordering) 30.39/12.97 new_esEs19(x0, x1, ty_Bool) 30.39/12.97 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 30.39/12.97 new_ltEs4(Left(x0), Left(x1), ty_Char, x2) 30.39/12.97 new_esEs24(x0, x1, app(ty_Maybe, x2)) 30.39/12.97 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.39/12.97 new_ltEs18(x0, x1, ty_Bool) 30.39/12.97 new_primCmpNat2(x0, Succ(x1)) 30.39/12.97 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.97 new_ltEs12(Nothing, Nothing, x0) 30.39/12.97 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.97 new_lt20(x0, x1, ty_Int) 30.39/12.97 new_lt20(x0, x1, app(ty_[], x2)) 30.39/12.97 new_sr0(Integer(x0), Integer(x1)) 30.39/12.97 new_ltEs17(x0, x1) 30.39/12.97 new_esEs23(x0, x1, ty_Char) 30.39/12.97 new_compare31(x0, x1, ty_Ordering) 30.39/12.97 new_compare110(x0, x1, False, x2, x3) 30.39/12.97 new_ltEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.39/12.97 new_lt20(x0, x1, ty_Ordering) 30.39/12.97 new_esEs28(x0, x1, app(ty_[], x2)) 30.39/12.97 new_primCmpNat1(Succ(x0), Zero) 30.39/12.97 new_primPlusNat1(Zero, Zero) 30.39/12.97 new_esEs27(x0, x1, ty_Double) 30.39/12.97 new_esEs19(x0, x1, app(ty_Maybe, x2)) 30.39/12.97 new_esEs28(x0, x1, ty_Char) 30.39/12.97 new_compare31(x0, x1, ty_Int) 30.39/12.97 new_esEs25(x0, x1, ty_Char) 30.39/12.97 new_primCmpNat1(Zero, Zero) 30.39/12.97 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 30.39/12.97 new_ltEs18(x0, x1, ty_@0) 30.39/12.97 new_compare26(x0, x1, True) 30.39/12.97 new_esEs10(EQ, EQ) 30.39/12.97 new_lt14(x0, x1, x2) 30.39/12.97 new_compare31(x0, x1, ty_Char) 30.39/12.97 new_lt20(x0, x1, ty_Double) 30.39/12.97 new_primEqInt(Pos(Zero), Pos(Zero)) 30.39/12.97 new_lt13(x0, x1, app(ty_Maybe, x2)) 30.39/12.97 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 30.39/12.97 new_ltEs4(Left(x0), Left(x1), ty_Int, x2) 30.39/12.97 new_ltEs4(Right(x0), Right(x1), x2, ty_Integer) 30.39/12.97 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.39/12.97 new_primCompAux00(x0, GT) 30.39/12.97 new_ltEs12(Just(x0), Nothing, x1) 30.39/12.97 new_esEs25(x0, x1, ty_Int) 30.39/12.97 new_lt13(x0, x1, ty_Integer) 30.39/12.97 new_esEs24(x0, x1, ty_Bool) 30.39/12.97 new_compare31(x0, x1, ty_Double) 30.39/12.97 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 30.39/12.97 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 30.39/12.97 new_ltEs12(Just(x0), Just(x1), ty_Ordering) 30.39/12.97 new_esEs19(x0, x1, ty_@0) 30.39/12.97 new_ltEs7(x0, x1) 30.39/12.97 new_esEs6(Nothing, Just(x0), x1) 30.39/12.97 new_esEs30(x0, x1, ty_Integer) 30.39/12.97 new_esEs25(x0, x1, ty_Ordering) 30.39/12.97 new_ltEs12(Just(x0), Just(x1), app(ty_[], x2)) 30.39/12.97 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.97 new_ltEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.39/12.97 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 30.39/12.97 new_compare([], :(x0, x1), x2) 30.39/12.97 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 30.39/12.97 new_lt18(x0, x1) 30.39/12.97 new_primEqInt(Neg(Zero), Neg(Zero)) 30.39/12.97 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.97 new_compare24(Nothing, Nothing, False, x0) 30.39/12.97 new_primCmpNat0(Succ(x0), x1) 30.39/12.97 new_ltEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.39/12.97 new_lt20(x0, x1, ty_Char) 30.39/12.97 new_ltEs12(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.39/12.97 new_esEs23(x0, x1, ty_Ordering) 30.39/12.97 new_compare210(x0, x1, True) 30.39/12.97 new_compare13(x0, x1, x2) 30.39/12.97 new_ltEs19(x0, x1, ty_Float) 30.39/12.97 new_esEs30(x0, x1, ty_@0) 30.39/12.97 new_lt13(x0, x1, app(ty_[], x2)) 30.39/12.97 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 30.39/12.97 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 30.39/12.97 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.97 new_ltEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 30.39/12.97 new_esEs25(x0, x1, ty_@0) 30.39/12.97 new_esEs25(x0, x1, ty_Double) 30.39/12.97 new_ltEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.39/12.97 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.39/12.97 new_esEs23(x0, x1, app(ty_[], x2)) 30.39/12.97 new_compare27(x0, x1, True, x2, x3) 30.39/12.97 new_compare(:(x0, x1), [], x2) 30.39/12.97 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 30.39/12.97 new_esEs20(x0, x1, app(ty_Ratio, x2)) 30.39/12.97 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.39/12.97 new_ltEs4(Right(x0), Right(x1), x2, ty_Bool) 30.39/12.97 new_compare28(x0, x1, False, x2, x3, x4) 30.39/12.97 new_ltEs4(Left(x0), Left(x1), ty_Bool, x2) 30.39/12.97 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.97 new_ltEs11(True, True) 30.39/12.97 new_esEs27(x0, x1, ty_Char) 30.39/12.97 new_esEs19(x0, x1, app(ty_Ratio, x2)) 30.39/12.97 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 30.39/12.97 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.97 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.97 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 30.39/12.97 new_compare14(x0, x1, True) 30.39/12.97 new_esEs18(x0, x1, app(ty_Ratio, x2)) 30.39/12.97 new_esEs24(x0, x1, app(ty_Ratio, x2)) 30.39/12.97 new_esEs24(x0, x1, ty_Char) 30.39/12.97 new_ltEs12(Just(x0), Just(x1), ty_Int) 30.39/12.97 new_ltEs4(Left(x0), Left(x1), ty_Ordering, x2) 30.39/12.97 new_compare27(x0, x1, False, x2, x3) 30.39/12.97 new_compare30(x0, x1) 30.39/12.97 new_ltEs18(x0, x1, ty_Integer) 30.39/12.97 new_primEqInt(Pos(Zero), Neg(Zero)) 30.39/12.97 new_primEqInt(Neg(Zero), Pos(Zero)) 30.39/12.97 new_ltEs9(x0, x1) 30.39/12.97 new_esEs27(x0, x1, ty_Int) 30.39/12.97 new_compare7(Integer(x0), Integer(x1)) 30.39/12.97 new_esEs27(x0, x1, app(ty_[], x2)) 30.39/12.97 new_esEs23(x0, x1, ty_Integer) 30.39/12.97 new_esEs26(x0, x1, ty_Ordering) 30.39/12.97 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.97 new_ltEs12(Just(x0), Just(x1), ty_Char) 30.39/12.97 new_compare8(@0, @0) 30.39/12.97 new_ltEs12(Just(x0), Just(x1), ty_Double) 30.39/12.97 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 30.39/12.97 new_esEs27(x0, x1, ty_@0) 30.39/12.97 new_primMulInt(Neg(x0), Neg(x1)) 30.39/12.97 new_compare5(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 30.39/12.97 new_compare5(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 30.39/12.97 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.39/12.97 new_ltEs4(Left(x0), Left(x1), ty_Integer, x2) 30.39/12.97 new_esEs24(x0, x1, ty_Int) 30.39/12.97 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 30.39/12.97 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 30.39/12.97 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 30.39/12.97 new_ltEs13(@2(x0, x1), @2(x2, x3), x4, x5) 30.39/12.97 new_esEs25(x0, x1, ty_Bool) 30.39/12.97 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 30.39/12.97 new_compare16(x0, x1, True, x2, x3, x4) 30.39/12.97 new_ltEs15(EQ, EQ) 30.39/12.97 new_esEs28(x0, x1, ty_Ordering) 30.39/12.97 new_lt12(x0, x1, ty_Integer) 30.39/12.97 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.39/12.97 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.97 new_esEs30(x0, x1, ty_Bool) 30.39/12.97 new_esEs24(x0, x1, ty_@0) 30.39/12.97 new_compare29(x0, x1, x2, x3, x4) 30.39/12.97 new_lt12(x0, x1, app(ty_Maybe, x2)) 30.39/12.97 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.97 new_esEs22(x0, x1, ty_Integer) 30.39/12.97 new_esEs18(x0, x1, ty_Ordering) 30.39/12.97 new_esEs30(x0, x1, ty_Char) 30.39/12.97 new_esEs20(x0, x1, ty_Integer) 30.39/12.97 new_ltEs18(x0, x1, ty_Float) 30.39/12.97 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.39/12.97 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.97 new_esEs27(x0, x1, ty_Bool) 30.39/12.97 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.97 new_compare([], [], x0) 30.39/12.97 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 30.39/12.97 new_esEs28(x0, x1, ty_Integer) 30.39/12.97 new_lt20(x0, x1, ty_Integer) 30.39/12.97 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.97 new_esEs19(x0, x1, ty_Double) 30.39/12.97 new_esEs6(Just(x0), Just(x1), ty_Float) 30.39/12.97 new_esEs16(:(x0, x1), [], x2) 30.39/12.97 new_esEs24(x0, x1, ty_Float) 30.39/12.97 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.97 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.97 new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.97 new_esEs18(x0, x1, ty_Double) 30.39/12.97 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.39/12.97 new_esEs30(x0, x1, ty_Int) 30.39/12.97 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 30.39/12.97 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 30.39/12.97 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 30.39/12.97 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.39/12.97 new_lt5(x0, x1, x2) 30.39/12.97 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 30.39/12.97 new_esEs24(x0, x1, ty_Double) 30.39/12.97 new_compare17(Char(x0), Char(x1)) 30.39/12.97 new_ltEs20(x0, x1, ty_Double) 30.39/12.97 new_ltEs18(x0, x1, app(ty_[], x2)) 30.39/12.97 new_primMulNat0(Zero, Succ(x0)) 30.39/12.97 new_ltEs15(GT, LT) 30.39/12.97 new_ltEs15(LT, GT) 30.39/12.97 new_esEs9(x0, x1) 30.39/12.97 new_ltEs12(Just(x0), Just(x1), ty_@0) 30.39/12.97 new_ltEs4(Right(x0), Right(x1), x2, ty_Char) 30.39/12.97 new_ltEs19(x0, x1, ty_Integer) 30.39/12.97 new_esEs28(x0, x1, ty_Bool) 30.39/12.97 new_ltEs18(x0, x1, ty_Int) 30.39/12.97 new_compare5(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 30.39/12.97 new_ltEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.39/12.97 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.97 new_ltEs5(x0, x1, x2) 30.39/12.97 new_esEs6(Nothing, Nothing, x0) 30.39/12.97 new_esEs6(Just(x0), Nothing, x1) 30.39/12.97 new_lt11(x0, x1, x2, x3, x4) 30.39/12.97 new_esEs6(Just(x0), Just(x1), ty_Int) 30.39/12.97 new_ltEs4(Right(x0), Right(x1), x2, ty_Int) 30.39/12.97 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 30.39/12.97 new_ltEs18(x0, x1, ty_Char) 30.39/12.97 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 30.39/12.97 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.97 new_esEs25(x0, x1, ty_Integer) 30.39/12.97 new_primCmpNat1(Zero, Succ(x0)) 30.39/12.97 new_lt12(x0, x1, ty_Bool) 30.39/12.97 new_compare10(x0, x1, True, x2) 30.39/12.97 new_primCompAux00(x0, EQ) 30.39/12.97 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 30.39/12.97 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 30.39/12.97 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 30.39/12.97 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.97 new_primCmpNat1(Succ(x0), Succ(x1)) 30.39/12.97 new_primEqNat0(Zero, Succ(x0)) 30.39/12.97 new_ltEs20(x0, x1, ty_Ordering) 30.39/12.97 new_esEs30(x0, x1, ty_Float) 30.39/12.97 new_esEs17(Double(x0, x1), Double(x2, x3)) 30.39/12.97 new_esEs29(x0, x1, ty_Integer) 30.39/12.97 new_esEs6(Just(x0), Just(x1), ty_Ordering) 30.39/12.97 new_pePe(True, x0) 30.39/12.97 new_compare28(x0, x1, True, x2, x3, x4) 30.39/12.97 new_primCmpInt(Neg(Zero), Neg(Zero)) 30.39/12.97 new_lt12(x0, x1, app(ty_Ratio, x2)) 30.39/12.97 new_ltEs4(Left(x0), Left(x1), ty_Double, x2) 30.39/12.97 new_compare19(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 30.39/12.97 new_esEs30(x0, x1, app(ty_Maybe, x2)) 30.39/12.97 new_esEs18(x0, x1, app(ty_[], x2)) 30.39/12.97 new_ltEs19(x0, x1, ty_Bool) 30.39/12.97 new_esEs12(Char(x0), Char(x1)) 30.39/12.97 new_compare24(x0, x1, True, x2) 30.39/12.97 new_compare24(Nothing, Just(x0), False, x1) 30.39/12.97 new_primCmpInt(Pos(Zero), Neg(Zero)) 30.39/12.97 new_primCmpInt(Neg(Zero), Pos(Zero)) 30.39/12.97 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.97 new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) 30.39/12.97 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 30.39/12.97 new_esEs29(x0, x1, ty_Ordering) 30.39/12.97 new_esEs23(x0, x1, ty_Bool) 30.39/12.97 new_lt12(x0, x1, ty_Char) 30.39/12.97 new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) 30.39/12.97 new_compare15(x0, x1, x2, x3) 30.39/12.97 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.97 new_esEs29(x0, x1, app(ty_Maybe, x2)) 30.39/12.97 new_lt20(x0, x1, app(ty_Maybe, x2)) 30.39/12.97 new_esEs11(False, False) 30.39/12.97 new_esEs10(LT, GT) 30.39/12.97 new_esEs10(GT, LT) 30.39/12.97 new_ltEs4(Right(x0), Right(x1), x2, ty_Float) 30.39/12.97 new_esEs23(x0, x1, ty_Float) 30.39/12.97 new_esEs20(x0, x1, ty_Float) 30.39/12.97 new_esEs26(x0, x1, app(ty_[], x2)) 30.39/12.97 new_compare11(x0, x1, False, x2, x3) 30.39/12.97 new_esEs6(Just(x0), Just(x1), ty_Char) 30.39/12.97 new_ltEs4(Left(x0), Left(x1), ty_@0, x2) 30.39/12.97 new_lt20(x0, x1, ty_@0) 30.39/12.97 new_esEs20(x0, x1, app(ty_[], x2)) 30.39/12.97 new_lt13(x0, x1, ty_@0) 30.39/12.97 new_esEs20(x0, x1, ty_Bool) 30.39/12.97 new_lt12(x0, x1, ty_Int) 30.39/12.97 new_esEs23(x0, x1, app(ty_Maybe, x2)) 30.39/12.97 new_compare31(x0, x1, app(ty_[], x2)) 30.39/12.97 new_ltEs12(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.39/12.97 new_primEqNat0(Succ(x0), Zero) 30.39/12.97 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.97 new_esEs27(x0, x1, ty_Integer) 30.39/12.97 new_lt4(x0, x1) 30.39/12.97 new_compare111(x0, x1, True) 30.39/12.97 new_lt10(x0, x1) 30.39/12.97 new_esEs18(x0, x1, ty_@0) 30.39/12.97 new_primMulNat0(Succ(x0), Succ(x1)) 30.39/12.97 new_esEs26(x0, x1, ty_Double) 30.39/12.97 new_esEs25(x0, x1, app(ty_Maybe, x2)) 30.39/12.97 new_esEs28(x0, x1, ty_Float) 30.39/12.97 new_compare31(x0, x1, ty_@0) 30.39/12.97 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.97 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 30.39/12.97 new_esEs20(x0, x1, ty_Int) 30.39/12.97 new_esEs6(Just(x0), Just(x1), ty_Bool) 30.39/12.97 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.39/12.97 new_esEs26(x0, x1, ty_@0) 30.39/12.97 new_esEs28(x0, x1, ty_Int) 30.39/12.97 new_ltEs11(False, True) 30.39/12.97 new_ltEs11(True, False) 30.39/12.97 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 30.39/12.97 new_esEs10(EQ, GT) 30.39/12.97 new_esEs10(GT, EQ) 30.39/12.97 new_esEs16([], :(x0, x1), x2) 30.39/12.97 new_lt13(x0, x1, ty_Double) 30.39/12.97 new_esEs23(x0, x1, ty_Int) 30.39/12.97 new_esEs20(x0, x1, ty_Char) 30.39/12.97 new_lt12(x0, x1, ty_Float) 30.39/12.97 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.97 new_ltEs12(Nothing, Just(x0), x1) 30.39/12.97 new_esEs26(x0, x1, app(ty_Ratio, x2)) 30.39/12.97 new_ltEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.39/12.97 new_lt13(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.97 new_esEs19(x0, x1, app(ty_[], x2)) 30.39/12.97 new_esEs27(x0, x1, ty_Float) 30.39/12.97 new_compare25(x0, x1, False, x2, x3) 30.39/12.97 new_compare12(x0, x1) 30.39/12.97 new_lt12(x0, x1, ty_Double) 30.39/12.97 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.97 new_lt20(x0, x1, app(ty_Ratio, x2)) 30.39/12.97 new_esEs29(x0, x1, ty_Char) 30.39/12.97 new_esEs16(:(x0, x1), :(x2, x3), x4) 30.39/12.97 new_primMulNat0(Zero, Zero) 30.39/12.97 new_compare31(x0, x1, app(ty_Maybe, x2)) 30.39/12.97 new_lt12(x0, x1, ty_Ordering) 30.39/12.97 new_esEs25(x0, x1, app(ty_Ratio, x2)) 30.39/12.97 new_primCompAux00(x0, LT) 30.39/12.97 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.39/12.97 new_ltEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.39/12.97 new_ltEs19(x0, x1, ty_Char) 30.39/12.97 new_esEs27(x0, x1, app(ty_Ratio, x2)) 30.39/12.97 new_sr(x0, x1) 30.39/12.97 new_primCompAux0(x0, x1, x2, x3) 30.39/12.97 new_asAs(False, x0) 30.39/12.97 new_ltEs19(x0, x1, ty_Int) 30.39/12.97 new_lt8(x0, x1, x2, x3) 30.39/12.97 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.97 new_ltEs14(x0, x1) 30.39/12.97 new_esEs28(x0, x1, app(ty_Maybe, x2)) 30.39/12.97 new_ltEs20(x0, x1, ty_Integer) 30.39/12.97 new_esEs8(Float(x0, x1), Float(x2, x3)) 30.39/12.97 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.39/12.97 new_esEs6(Just(x0), Just(x1), ty_Integer) 30.39/12.97 new_esEs29(x0, x1, ty_@0) 30.39/12.97 new_ltEs19(x0, x1, ty_Ordering) 30.39/12.97 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.39/12.97 new_ltEs4(Right(x0), Right(x1), x2, ty_Ordering) 30.39/12.97 new_ltEs19(x0, x1, ty_@0) 30.39/12.97 new_esEs22(x0, x1, ty_Int) 30.39/12.97 new_ltEs20(x0, x1, ty_@0) 30.39/12.97 new_ltEs12(Just(x0), Just(x1), ty_Integer) 30.39/12.97 new_esEs18(x0, x1, ty_Bool) 30.39/12.97 new_esEs21(x0, x1, ty_Int) 30.39/12.97 new_ltEs12(Just(x0), Just(x1), ty_Float) 30.39/12.97 new_esEs6(Just(x0), Just(x1), ty_@0) 30.39/12.97 new_esEs10(LT, LT) 30.39/12.97 new_esEs28(x0, x1, app(ty_Ratio, x2)) 30.39/12.97 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.39/12.97 new_esEs30(x0, x1, ty_Double) 30.39/12.97 new_not(True) 30.39/12.97 new_esEs29(x0, x1, ty_Bool) 30.39/12.97 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.97 new_compare210(x0, x1, False) 30.39/12.97 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 30.39/12.97 new_lt15(x0, x1) 30.39/12.97 new_pePe(False, x0) 30.39/12.97 new_esEs29(x0, x1, ty_Double) 30.39/12.97 new_esEs11(True, True) 30.39/12.97 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.97 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.97 new_ltEs10(x0, x1, x2) 30.39/12.97 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 30.39/12.97 new_compare31(x0, x1, app(ty_Ratio, x2)) 30.39/12.97 new_ltEs4(Right(x0), Right(x1), x2, ty_Double) 30.39/12.97 new_primCmpNat0(Zero, x0) 30.39/12.97 new_esEs15(Integer(x0), Integer(x1)) 30.39/12.97 new_lt12(x0, x1, app(ty_[], x2)) 30.39/12.97 new_esEs27(x0, x1, app(ty_Maybe, x2)) 30.39/12.97 new_ltEs15(GT, EQ) 30.39/12.97 new_ltEs15(EQ, GT) 30.39/12.97 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.97 new_primCmpNat2(x0, Zero) 30.39/12.97 new_compare19(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 30.39/12.97 new_esEs11(False, True) 30.39/12.97 new_esEs11(True, False) 30.39/12.97 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.39/12.97 new_esEs29(x0, x1, ty_Int) 30.39/12.97 new_esEs26(x0, x1, ty_Integer) 30.39/12.97 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.97 new_ltEs20(x0, x1, ty_Char) 30.39/12.97 new_lt13(x0, x1, ty_Ordering) 30.39/12.97 new_lt17(x0, x1) 30.39/12.97 new_lt13(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.97 new_ltEs12(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.39/12.97 new_esEs23(x0, x1, app(ty_Ratio, x2)) 30.39/12.97 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 30.39/12.97 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.97 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.97 new_ltEs12(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.39/12.97 new_ltEs12(Just(x0), Just(x1), ty_Bool) 30.39/12.97 new_primEqNat0(Succ(x0), Succ(x1)) 30.39/12.97 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.97 new_esEs18(x0, x1, ty_Integer) 30.39/12.97 new_esEs20(x0, x1, ty_Ordering) 30.39/12.97 new_ltEs20(x0, x1, ty_Bool) 30.39/12.97 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.97 new_primPlusNat1(Succ(x0), Zero) 30.39/12.97 new_ltEs4(Left(x0), Right(x1), x2, x3) 30.39/12.97 new_ltEs4(Right(x0), Left(x1), x2, x3) 30.39/12.97 new_esEs29(x0, x1, app(ty_[], x2)) 30.39/12.97 new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.97 new_primMulNat0(Succ(x0), Zero) 30.39/12.97 new_compare18(x0, x1, x2, x3) 30.39/12.97 new_primCmpInt(Pos(Zero), Pos(Zero)) 30.39/12.97 new_compare31(x0, x1, ty_Integer) 30.39/12.97 new_lt12(x0, x1, ty_@0) 30.39/12.97 new_esEs19(x0, x1, ty_Ordering) 30.39/12.97 new_esEs10(GT, GT) 30.39/12.97 new_esEs20(x0, x1, app(ty_Maybe, x2)) 30.39/12.97 new_lt16(x0, x1, x2, x3) 30.39/12.97 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 30.39/12.97 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 30.39/12.97 new_compare25(x0, x1, True, x2, x3) 30.39/12.97 new_primMulInt(Pos(x0), Pos(x1)) 30.39/12.97 new_compare16(x0, x1, False, x2, x3, x4) 30.39/12.97 new_esEs14(@0, @0) 30.39/12.97 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 30.39/12.97 new_primPlusNat1(Zero, Succ(x0)) 30.39/12.97 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.39/12.97 new_esEs30(x0, x1, app(ty_Ratio, x2)) 30.39/12.97 new_primPlusNat0(x0, x1) 30.39/12.97 new_ltEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.39/12.97 new_esEs10(LT, EQ) 30.39/12.97 new_esEs10(EQ, LT) 30.39/12.97 new_compare24(Just(x0), Nothing, False, x1) 30.39/12.97 new_compare26(x0, x1, False) 30.39/12.97 new_esEs18(x0, x1, app(ty_Maybe, x2)) 30.39/12.97 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 30.39/12.97 new_esEs18(x0, x1, ty_Int) 30.39/12.97 new_primMulInt(Pos(x0), Neg(x1)) 30.39/12.97 new_primMulInt(Neg(x0), Pos(x1)) 30.39/12.97 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 30.39/12.97 new_esEs19(x0, x1, ty_Float) 30.39/12.97 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.97 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.39/12.97 new_esEs5(Left(x0), Right(x1), x2, x3) 30.39/12.97 new_esEs5(Right(x0), Left(x1), x2, x3) 30.39/12.97 new_esEs29(x0, x1, app(ty_Ratio, x2)) 30.39/12.97 new_lt13(x0, x1, app(ty_Ratio, x2)) 30.39/12.97 new_esEs6(Just(x0), Just(x1), ty_Double) 30.39/12.97 new_compare110(x0, x1, True, x2, x3) 30.39/12.97 new_ltEs18(x0, x1, ty_Ordering) 30.39/12.97 new_compare6(x0, x1) 30.39/12.97 new_ltEs20(x0, x1, app(ty_[], x2)) 30.39/12.97 new_esEs26(x0, x1, ty_Bool) 30.39/12.97 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 30.39/12.97 new_lt20(x0, x1, ty_Bool) 30.39/12.97 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 30.39/12.97 new_ltEs15(EQ, LT) 30.39/12.97 new_ltEs15(LT, EQ) 30.39/12.97 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.97 new_ltEs20(x0, x1, ty_Float) 30.39/12.97 new_compare11(x0, x1, True, x2, x3) 30.39/12.97 new_esEs30(x0, x1, app(ty_[], x2)) 30.39/12.97 new_esEs30(x0, x1, ty_Ordering) 30.39/12.97 new_esEs19(x0, x1, ty_Char) 30.39/12.97 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.97 new_ltEs15(GT, GT) 30.39/12.97 new_compare5(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 30.39/12.97 new_ltEs20(x0, x1, ty_Int) 30.39/12.97 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.97 new_compare31(x0, x1, ty_Bool) 30.39/12.97 new_esEs16([], [], x0) 30.39/12.97 new_esEs29(x0, x1, ty_Float) 30.39/12.97 new_ltEs4(Right(x0), Right(x1), x2, ty_@0) 30.39/12.97 new_fsEs(x0) 30.39/12.97 new_lt9(x0, x1) 30.39/12.97 new_ltEs11(False, False) 30.39/12.97 new_esEs19(x0, x1, ty_Int) 30.39/12.97 new_ltEs18(x0, x1, ty_Double) 30.39/12.97 new_compare111(x0, x1, False) 30.39/12.97 new_lt13(x0, x1, ty_Bool) 30.39/12.97 new_esEs26(x0, x1, app(ty_Maybe, x2)) 30.39/12.97 new_esEs26(x0, x1, ty_Int) 30.39/12.97 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.97 new_primEqNat0(Zero, Zero) 30.39/12.97 new_compare24(Just(x0), Just(x1), False, x2) 30.39/12.97 new_ltEs4(Left(x0), Left(x1), ty_Float, x2) 30.39/12.97 new_compare19(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 30.39/12.97 new_compare19(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 30.39/12.97 new_lt13(x0, x1, ty_Float) 30.39/12.97 new_esEs25(x0, x1, ty_Float) 30.39/12.97 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.39/12.97 new_esEs20(x0, x1, ty_@0) 30.39/12.97 new_ltEs19(x0, x1, app(ty_[], x2)) 30.39/12.97 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.97 new_not(False) 30.39/12.97 new_esEs24(x0, x1, ty_Integer) 30.39/12.97 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 30.39/12.97 new_lt7(x0, x1) 30.39/12.97 new_esEs23(x0, x1, ty_Double) 30.39/12.97 new_compare31(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.97 new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.39/12.97 new_esEs18(x0, x1, ty_Char) 30.39/12.97 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 30.39/12.97 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.97 new_ltEs19(x0, x1, ty_Double) 30.39/12.97 new_esEs13(:%(x0, x1), :%(x2, x3), x4) 30.39/12.97 new_compare14(x0, x1, False) 30.39/12.97 new_ltEs8(x0, x1) 30.39/12.97 new_esEs28(x0, x1, ty_Double) 30.39/12.97 new_esEs19(x0, x1, ty_Integer) 30.39/12.97 new_esEs21(x0, x1, ty_Integer) 30.39/12.97 new_ltEs15(LT, LT) 30.39/12.97 new_ltEs12(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.39/12.97 new_esEs26(x0, x1, ty_Float) 30.39/12.97 new_esEs25(x0, x1, app(ty_[], x2)) 30.39/12.97 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.97 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.97 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.39/12.97 new_lt13(x0, x1, ty_Int) 30.39/12.97 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.97 new_compare(:(x0, x1), :(x2, x3), x4) 30.39/12.97 new_lt6(x0, x1, x2) 30.39/12.97 new_esEs26(x0, x1, ty_Char) 30.39/12.97 new_lt20(x0, x1, ty_Float) 30.39/12.97 new_lt19(x0, x1) 30.39/12.97 new_asAs(True, x0) 30.39/12.97 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.97 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.39/12.97 new_lt13(x0, x1, ty_Char) 30.39/12.97 new_esEs23(x0, x1, ty_@0) 30.39/12.97 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.97 new_ltEs16(x0, x1) 30.39/12.97 new_compare31(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.97 new_esEs20(x0, x1, ty_Double) 30.39/12.97 new_esEs18(x0, x1, ty_Float) 30.39/12.97 new_esEs28(x0, x1, ty_@0) 30.39/12.97 new_compare10(x0, x1, False, x2) 30.39/12.97 new_esEs24(x0, x1, app(ty_[], x2)) 30.39/12.97 new_compare31(x0, x1, ty_Float) 30.39/12.97 new_esEs24(x0, x1, ty_Ordering) 30.39/12.97 30.39/12.97 We have to consider all minimal (P,Q,R)-chains. 30.39/12.97 ---------------------------------------- 30.39/12.97 30.39/12.97 (27) TransformationProof (EQUIVALENT) 30.39/12.97 By rewriting [LPAR04] the rule new_addToFM_C(Branch(Nothing, xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs10(new_compare24(Just(xuu4000), Nothing, False, h), LT), h, ba) at position [6,0] we obtained the following new rules [LPAR04]: 30.39/12.97 30.39/12.97 (new_addToFM_C(Branch(Nothing, xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs10(GT, LT), h, ba),new_addToFM_C(Branch(Nothing, xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs10(GT, LT), h, ba)) 30.39/12.97 30.39/12.97 30.39/12.97 ---------------------------------------- 30.39/12.97 30.39/12.97 (28) 30.39/12.97 Obligation: 30.39/12.97 Q DP problem: 30.39/12.97 The TRS P consists of the following rules: 30.39/12.97 30.39/12.97 new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba) -> new_addToFM_C(xuu34, Just(xuu4000), xuu401, h, ba) 30.39/12.97 new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba) -> new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs10(new_compare24(Just(xuu4000), Nothing, False, h), GT), h, ba) 30.39/12.97 new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba) -> new_addToFM_C(xuu33, Just(xuu4000), xuu401, h, ba) 30.39/12.97 new_addToFM_C(Branch(Just(xuu300), xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C21(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs10(new_compare24(Just(xuu4000), Just(xuu300), new_esEs29(xuu4000, xuu300, h), h), LT), h, ba) 30.39/12.97 new_addToFM_C21(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, False, bb, bc) -> new_addToFM_C12(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, new_esEs10(new_compare24(Just(xuu19), Just(xuu14), new_esEs30(xuu19, xuu14, bb), bb), GT), bb, bc) 30.39/12.97 new_addToFM_C12(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, bb, bc) -> new_addToFM_C(xuu18, Just(xuu19), xuu20, bb, bc) 30.39/12.97 new_addToFM_C21(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, bb, bc) -> new_addToFM_C(xuu17, Just(xuu19), xuu20, bb, bc) 30.39/12.97 new_addToFM_C(Branch(Nothing, xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs10(GT, LT), h, ba) 30.39/12.97 30.39/12.97 The TRS R consists of the following rules: 30.39/12.97 30.39/12.97 new_ltEs18(xuu3000, xuu3100, ty_Integer) -> new_ltEs17(xuu3000, xuu3100) 30.39/12.97 new_compare28(xuu30000, xuu31000, False, bgd, bge, bgf) -> new_compare16(xuu30000, xuu31000, new_ltEs6(xuu30000, xuu31000, bgd, bge, bgf), bgd, bge, bgf) 30.39/12.97 new_lt7(xuu30000, xuu31000) -> new_esEs10(new_compare17(xuu30000, xuu31000), LT) 30.39/12.97 new_esEs23(xuu30000, xuu31000, ty_Bool) -> new_esEs11(xuu30000, xuu31000) 30.39/12.97 new_esEs27(xuu40001, xuu3001, app(ty_Ratio, dcd)) -> new_esEs13(xuu40001, xuu3001, dcd) 30.39/12.97 new_primCmpInt(Neg(Succ(xuu3000)), Pos(xuu310)) -> LT 30.39/12.97 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 30.39/12.97 new_esEs27(xuu40001, xuu3001, ty_Int) -> new_esEs9(xuu40001, xuu3001) 30.39/12.97 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(ty_Ratio, hh)) -> new_esEs13(xuu40000, xuu3000, hh) 30.39/12.97 new_esEs23(xuu30000, xuu31000, app(ty_Maybe, baf)) -> new_esEs6(xuu30000, xuu31000, baf) 30.39/12.97 new_pePe(True, xuu167) -> True 30.39/12.97 new_ltEs19(xuu30002, xuu31002, app(app(app(ty_@3, cad), cae), caf)) -> new_ltEs6(xuu30002, xuu31002, cad, cae, caf) 30.39/12.97 new_ltEs20(xuu30001, xuu31001, ty_Ordering) -> new_ltEs15(xuu30001, xuu31001) 30.39/12.97 new_primCmpInt(Pos(Zero), Pos(Succ(xuu3100))) -> new_primCmpNat0(Zero, xuu3100) 30.39/12.97 new_ltEs6(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), ee, ef, eg) -> new_pePe(new_lt13(xuu30000, xuu31000, ee), new_asAs(new_esEs23(xuu30000, xuu31000, ee), new_pePe(new_lt12(xuu30001, xuu31001, ef), new_asAs(new_esEs24(xuu30001, xuu31001, ef), new_ltEs19(xuu30002, xuu31002, eg))))) 30.39/12.97 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(ty_[], bab)) -> new_esEs16(xuu40000, xuu3000, bab) 30.39/12.97 new_esEs5(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, fh), ga), gb), fg) -> new_esEs4(xuu40000, xuu3000, fh, ga, gb) 30.39/12.97 new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_Ratio, ge), fg) -> new_esEs13(xuu40000, xuu3000, ge) 30.39/12.97 new_esEs29(xuu4000, xuu300, ty_Char) -> new_esEs12(xuu4000, xuu300) 30.39/12.97 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Double) -> new_ltEs14(xuu30000, xuu31000) 30.39/12.97 new_lt20(xuu30000, xuu31000, ty_Bool) -> new_lt15(xuu30000, xuu31000) 30.39/12.97 new_compare(:(xuu30000, xuu30001), [], ed) -> GT 30.39/12.97 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 30.39/12.97 new_esEs27(xuu40001, xuu3001, app(ty_[], dcf)) -> new_esEs16(xuu40001, xuu3001, dcf) 30.39/12.97 new_esEs27(xuu40001, xuu3001, app(app(ty_Either, dcb), dcc)) -> new_esEs5(xuu40001, xuu3001, dcb, dcc) 30.39/12.97 new_primCmpInt(Pos(Zero), Neg(Succ(xuu3100))) -> GT 30.39/12.97 new_compare(:(xuu30000, xuu30001), :(xuu31000, xuu31001), ed) -> new_primCompAux0(xuu30000, xuu31000, new_compare(xuu30001, xuu31001, ed), ed) 30.39/12.97 new_esEs9(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) 30.39/12.97 new_esEs22(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) 30.39/12.97 new_esEs18(xuu40000, xuu3000, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs4(xuu40000, xuu3000, bbb, bbc, bbd) 30.39/12.97 new_ltEs19(xuu30002, xuu31002, app(ty_[], cac)) -> new_ltEs5(xuu30002, xuu31002, cac) 30.39/12.97 new_lt12(xuu30001, xuu31001, ty_Char) -> new_lt7(xuu30001, xuu31001) 30.39/12.97 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Char) -> new_ltEs9(xuu30000, xuu31000) 30.39/12.97 new_esEs26(xuu40000, xuu3000, app(app(ty_@2, dac), dad)) -> new_esEs7(xuu40000, xuu3000, dac, dad) 30.39/12.97 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Int) -> new_ltEs7(xuu30000, xuu31000) 30.39/12.97 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.39/12.97 new_lt13(xuu30000, xuu31000, app(ty_Ratio, bae)) -> new_lt5(xuu30000, xuu31000, bae) 30.39/12.97 new_esEs6(Just(xuu40000), Just(xuu3000), app(app(ty_Either, cfb), cfc)) -> new_esEs5(xuu40000, xuu3000, cfb, cfc) 30.39/12.97 new_ltEs15(EQ, LT) -> False 30.39/12.97 new_compare17(Char(xuu30000), Char(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) 30.39/12.97 new_ltEs8(xuu3000, xuu3100) -> new_fsEs(new_compare8(xuu3000, xuu3100)) 30.39/12.97 new_esEs28(xuu40002, xuu3002, app(app(app(ty_@3, dda), ddb), ddc)) -> new_esEs4(xuu40002, xuu3002, dda, ddb, ddc) 30.39/12.97 new_primCmpNat1(Succ(xuu30000), Succ(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) 30.39/12.97 new_esEs23(xuu30000, xuu31000, app(app(ty_Either, bac), bad)) -> new_esEs5(xuu30000, xuu31000, bac, bad) 30.39/12.97 new_ltEs19(xuu30002, xuu31002, ty_Ordering) -> new_ltEs15(xuu30002, xuu31002) 30.39/12.97 new_compare26(xuu30000, xuu31000, True) -> EQ 30.39/12.97 new_compare24(Nothing, Just(xuu3100), False, ec) -> LT 30.39/12.97 new_esEs18(xuu40000, xuu3000, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.39/12.97 new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False 30.39/12.97 new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False 30.39/12.97 new_ltEs4(Left(xuu30000), Left(xuu31000), app(app(ty_@2, ce), cf), be) -> new_ltEs13(xuu30000, xuu31000, ce, cf) 30.39/12.97 new_ltEs15(GT, LT) -> False 30.39/12.97 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.39/12.97 new_esEs24(xuu30001, xuu31001, ty_Double) -> new_esEs17(xuu30001, xuu31001) 30.39/12.97 new_compare25(xuu30000, xuu31000, False, bac, bad) -> new_compare11(xuu30000, xuu31000, new_ltEs4(xuu30000, xuu31000, bac, bad), bac, bad) 30.39/12.97 new_ltEs12(Just(xuu30000), Just(xuu31000), app(app(ty_Either, cdg), cdh)) -> new_ltEs4(xuu30000, xuu31000, cdg, cdh) 30.39/12.97 new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_Maybe, gf), fg) -> new_esEs6(xuu40000, xuu3000, gf) 30.39/12.97 new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.39/12.97 new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) 30.39/12.97 new_esEs30(xuu19, xuu14, ty_Char) -> new_esEs12(xuu19, xuu14) 30.39/12.97 new_esEs27(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) 30.39/12.97 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Char, fg) -> new_esEs12(xuu40000, xuu3000) 30.39/12.97 new_esEs10(GT, GT) -> True 30.39/12.97 new_ltEs4(Left(xuu30000), Left(xuu31000), app(ty_Maybe, cd), be) -> new_ltEs12(xuu30000, xuu31000, cd) 30.39/12.97 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.39/12.97 new_not(True) -> False 30.39/12.97 new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_[], gg), fg) -> new_esEs16(xuu40000, xuu3000, gg) 30.39/12.97 new_lt13(xuu30000, xuu31000, app(app(app(ty_@3, bgd), bge), bgf)) -> new_lt11(xuu30000, xuu31000, bgd, bge, bgf) 30.39/12.97 new_esEs28(xuu40002, xuu3002, ty_Bool) -> new_esEs11(xuu40002, xuu3002) 30.39/12.97 new_ltEs5(xuu3000, xuu3100, ed) -> new_fsEs(new_compare(xuu3000, xuu3100, ed)) 30.39/12.97 new_primCompAux00(xuu182, LT) -> LT 30.39/12.97 new_lt12(xuu30001, xuu31001, ty_Double) -> new_lt17(xuu30001, xuu31001) 30.39/12.97 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Float) -> new_ltEs16(xuu30000, xuu31000) 30.39/12.97 new_ltEs20(xuu30001, xuu31001, ty_Integer) -> new_ltEs17(xuu30001, xuu31001) 30.39/12.97 new_esEs25(xuu30000, xuu31000, ty_Ordering) -> new_esEs10(xuu30000, xuu31000) 30.39/12.97 new_esEs23(xuu30000, xuu31000, app(ty_Ratio, bae)) -> new_esEs13(xuu30000, xuu31000, bae) 30.39/12.97 new_esEs27(xuu40001, xuu3001, ty_Bool) -> new_esEs11(xuu40001, xuu3001) 30.39/12.97 new_esEs26(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.39/12.97 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.39/12.97 new_lt12(xuu30001, xuu31001, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_lt11(xuu30001, xuu31001, bhb, bhc, bhd) 30.39/12.97 new_esEs30(xuu19, xuu14, ty_Double) -> new_esEs17(xuu19, xuu14) 30.39/12.97 new_lt13(xuu30000, xuu31000, app(ty_Maybe, baf)) -> new_lt6(xuu30000, xuu31000, baf) 30.39/12.97 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.39/12.97 new_esEs19(xuu40000, xuu3000, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.39/12.97 new_esEs25(xuu30000, xuu31000, ty_Float) -> new_esEs8(xuu30000, xuu31000) 30.39/12.97 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Double, fg) -> new_esEs17(xuu40000, xuu3000) 30.39/12.97 new_lt19(xuu30000, xuu31000) -> new_esEs10(new_compare7(xuu30000, xuu31000), LT) 30.39/12.97 new_compare31(xuu30000, xuu31000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_compare29(xuu30000, xuu31000, cbf, cbg, cbh) 30.39/12.97 new_ltEs20(xuu30001, xuu31001, app(app(app(ty_@3, chb), chc), chd)) -> new_ltEs6(xuu30001, xuu31001, chb, chc, chd) 30.39/12.97 new_esEs5(Left(xuu40000), Left(xuu3000), app(app(ty_@2, fd), ff), fg) -> new_esEs7(xuu40000, xuu3000, fd, ff) 30.39/12.97 new_primEqNat0(Succ(xuu400000), Zero) -> False 30.39/12.97 new_primEqNat0(Zero, Succ(xuu30000)) -> False 30.39/12.97 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.39/12.97 new_esEs19(xuu40000, xuu3000, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.39/12.97 new_esEs14(@0, @0) -> True 30.39/12.97 new_lt12(xuu30001, xuu31001, app(app(ty_@2, caa), cab)) -> new_lt16(xuu30001, xuu31001, caa, cab) 30.39/12.97 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Bool, be) -> new_ltEs11(xuu30000, xuu31000) 30.39/12.97 new_esEs26(xuu40000, xuu3000, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.39/12.97 new_lt11(xuu30000, xuu31000, bgd, bge, bgf) -> new_esEs10(new_compare29(xuu30000, xuu31000, bgd, bge, bgf), LT) 30.39/12.97 new_esEs23(xuu30000, xuu31000, ty_Int) -> new_esEs9(xuu30000, xuu31000) 30.39/12.97 new_ltEs15(GT, EQ) -> False 30.39/12.97 new_lt20(xuu30000, xuu31000, app(ty_[], cfg)) -> new_lt14(xuu30000, xuu31000, cfg) 30.39/12.97 new_esEs26(xuu40000, xuu3000, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.39/12.97 new_lt20(xuu30000, xuu31000, ty_Integer) -> new_lt19(xuu30000, xuu31000) 30.39/12.97 new_primCompAux00(xuu182, GT) -> GT 30.39/12.97 new_primCmpInt(Neg(Zero), Neg(Succ(xuu3100))) -> new_primCmpNat2(xuu3100, Zero) 30.39/12.97 new_esEs10(EQ, EQ) -> True 30.39/12.97 new_esEs29(xuu4000, xuu300, ty_Double) -> new_esEs17(xuu4000, xuu300) 30.39/12.97 new_esEs6(Just(xuu40000), Just(xuu3000), app(ty_Ratio, cfd)) -> new_esEs13(xuu40000, xuu3000, cfd) 30.39/12.97 new_lt16(xuu30000, xuu31000, bgb, bgc) -> new_esEs10(new_compare15(xuu30000, xuu31000, bgb, bgc), LT) 30.39/12.97 new_esEs17(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs9(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) 30.39/12.97 new_esEs24(xuu30001, xuu31001, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_esEs4(xuu30001, xuu31001, bhb, bhc, bhd) 30.39/12.97 new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.39/12.97 new_esEs23(xuu30000, xuu31000, app(app(app(ty_@3, bgd), bge), bgf)) -> new_esEs4(xuu30000, xuu31000, bgd, bge, bgf) 30.39/12.97 new_esEs30(xuu19, xuu14, app(app(app(ty_@3, bcd), bce), bcf)) -> new_esEs4(xuu19, xuu14, bcd, bce, bcf) 30.39/12.97 new_compare14(xuu30000, xuu31000, True) -> LT 30.39/12.97 new_primCmpInt(Pos(Succ(xuu3000)), Neg(xuu310)) -> GT 30.39/12.97 new_lt13(xuu30000, xuu31000, ty_Integer) -> new_lt19(xuu30000, xuu31000) 30.39/12.97 new_ltEs18(xuu3000, xuu3100, ty_Bool) -> new_ltEs11(xuu3000, xuu3100) 30.39/12.97 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_@0) -> new_ltEs8(xuu30000, xuu31000) 30.39/12.97 new_esEs28(xuu40002, xuu3002, ty_Double) -> new_esEs17(xuu40002, xuu3002) 30.39/12.97 new_lt13(xuu30000, xuu31000, ty_Char) -> new_lt7(xuu30000, xuu31000) 30.39/12.97 new_compare110(xuu30000, xuu31000, True, bgb, bgc) -> LT 30.39/12.97 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(ty_Ratio, dg)) -> new_ltEs10(xuu30000, xuu31000, dg) 30.39/12.97 new_esEs23(xuu30000, xuu31000, ty_Double) -> new_esEs17(xuu30000, xuu31000) 30.39/12.97 new_lt20(xuu30000, xuu31000, app(app(ty_Either, cgc), cgd)) -> new_lt8(xuu30000, xuu31000, cgc, cgd) 30.39/12.97 new_lt13(xuu30000, xuu31000, ty_Double) -> new_lt17(xuu30000, xuu31000) 30.39/12.97 new_primPlusNat1(Succ(xuu25200), Succ(xuu9400)) -> Succ(Succ(new_primPlusNat1(xuu25200, xuu9400))) 30.39/12.97 new_primCompAux0(xuu30000, xuu31000, xuu168, ed) -> new_primCompAux00(xuu168, new_compare31(xuu30000, xuu31000, ed)) 30.39/12.97 new_esEs26(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.39/12.97 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Integer, be) -> new_ltEs17(xuu30000, xuu31000) 30.39/12.97 new_esEs10(LT, EQ) -> False 30.39/12.97 new_esEs10(EQ, LT) -> False 30.39/12.97 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.39/12.97 new_esEs20(xuu40001, xuu3001, ty_Ordering) -> new_esEs10(xuu40001, xuu3001) 30.39/12.97 new_esEs29(xuu4000, xuu300, app(app(app(ty_@3, ccg), cch), cda)) -> new_esEs4(xuu4000, xuu300, ccg, cch, cda) 30.39/12.97 new_compare13(xuu30000, xuu31000, baf) -> new_compare24(xuu30000, xuu31000, new_esEs6(xuu30000, xuu31000, baf), baf) 30.39/12.97 new_primCmpNat0(Succ(xuu3100), xuu3000) -> new_primCmpNat1(xuu3100, xuu3000) 30.39/12.97 new_compare210(xuu30000, xuu31000, True) -> EQ 30.39/12.97 new_esEs20(xuu40001, xuu3001, ty_Float) -> new_esEs8(xuu40001, xuu3001) 30.39/12.97 new_esEs28(xuu40002, xuu3002, ty_Char) -> new_esEs12(xuu40002, xuu3002) 30.39/12.97 new_lt9(xuu300, xuu310) -> new_esEs10(new_compare6(xuu300, xuu310), LT) 30.39/12.97 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Bool) -> new_ltEs11(xuu30000, xuu31000) 30.39/12.97 new_esEs28(xuu40002, xuu3002, app(ty_[], ddh)) -> new_esEs16(xuu40002, xuu3002, ddh) 30.39/12.97 new_esEs27(xuu40001, xuu3001, app(app(ty_@2, dbe), dbf)) -> new_esEs7(xuu40001, xuu3001, dbe, dbf) 30.39/12.97 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Char) -> new_ltEs9(xuu30000, xuu31000) 30.39/12.97 new_ltEs18(xuu3000, xuu3100, app(ty_Maybe, fa)) -> new_ltEs12(xuu3000, xuu3100, fa) 30.39/12.97 new_esEs19(xuu40000, xuu3000, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs4(xuu40000, xuu3000, bdh, bea, beb) 30.39/12.97 new_pePe(False, xuu167) -> xuu167 30.39/12.97 new_esEs27(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) 30.39/12.97 new_ltEs4(Left(xuu30000), Left(xuu31000), app(ty_Ratio, cc), be) -> new_ltEs10(xuu30000, xuu31000, cc) 30.39/12.97 new_ltEs18(xuu3000, xuu3100, app(app(app(ty_@3, ee), ef), eg)) -> new_ltEs6(xuu3000, xuu3100, ee, ef, eg) 30.39/12.97 new_esEs11(False, True) -> False 30.39/12.97 new_esEs11(True, False) -> False 30.39/12.97 new_compare25(xuu30000, xuu31000, True, bac, bad) -> EQ 30.39/12.97 new_ltEs4(Left(xuu30000), Left(xuu31000), app(app(app(ty_@3, bf), bg), bh), be) -> new_ltEs6(xuu30000, xuu31000, bf, bg, bh) 30.39/12.97 new_lt12(xuu30001, xuu31001, ty_Int) -> new_lt9(xuu30001, xuu31001) 30.39/12.97 new_compare26(xuu30000, xuu31000, False) -> new_compare111(xuu30000, xuu31000, new_ltEs11(xuu30000, xuu31000)) 30.39/12.97 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Double) -> new_ltEs14(xuu30000, xuu31000) 30.39/12.97 new_ltEs19(xuu30002, xuu31002, ty_Integer) -> new_ltEs17(xuu30002, xuu31002) 30.39/12.97 new_compare31(xuu30000, xuu31000, ty_Float) -> new_compare19(xuu30000, xuu31000) 30.39/12.97 new_lt6(xuu30000, xuu31000, baf) -> new_esEs10(new_compare13(xuu30000, xuu31000, baf), LT) 30.39/12.97 new_compare7(Integer(xuu30000), Integer(xuu31000)) -> new_primCmpInt(xuu30000, xuu31000) 30.39/12.97 new_compare10(xuu134, xuu135, False, dea) -> GT 30.39/12.97 new_compare11(xuu30000, xuu31000, False, bac, bad) -> GT 30.39/12.97 new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False 30.39/12.97 new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False 30.39/12.97 new_compare24(xuu300, xuu310, True, ec) -> EQ 30.39/12.97 new_esEs19(xuu40000, xuu3000, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.39/12.97 new_esEs19(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.39/12.97 new_compare24(Just(xuu3000), Just(xuu3100), False, ec) -> new_compare10(xuu3000, xuu3100, new_ltEs18(xuu3000, xuu3100, ec), ec) 30.39/12.97 new_esEs18(xuu40000, xuu3000, app(ty_Ratio, bbg)) -> new_esEs13(xuu40000, xuu3000, bbg) 30.39/12.97 new_compare31(xuu30000, xuu31000, ty_Int) -> new_compare6(xuu30000, xuu31000) 30.39/12.97 new_ltEs20(xuu30001, xuu31001, app(ty_Ratio, chg)) -> new_ltEs10(xuu30001, xuu31001, chg) 30.39/12.97 new_esEs6(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, ceg), ceh), cfa)) -> new_esEs4(xuu40000, xuu3000, ceg, ceh, cfa) 30.39/12.97 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.39/12.97 new_esEs26(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.39/12.97 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(app(ty_@2, ha), hb)) -> new_esEs7(xuu40000, xuu3000, ha, hb) 30.39/12.97 new_ltEs18(xuu3000, xuu3100, ty_Double) -> new_ltEs14(xuu3000, xuu3100) 30.39/12.97 new_esEs26(xuu40000, xuu3000, app(ty_[], dbd)) -> new_esEs16(xuu40000, xuu3000, dbd) 30.39/12.97 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Ordering, fg) -> new_esEs10(xuu40000, xuu3000) 30.39/12.97 new_esEs24(xuu30001, xuu31001, app(app(ty_Either, bhe), bhf)) -> new_esEs5(xuu30001, xuu31001, bhe, bhf) 30.39/12.97 new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) 30.39/12.97 new_primCmpInt(Neg(Zero), Pos(Succ(xuu3100))) -> LT 30.39/12.97 new_compare9(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Integer) -> new_compare7(new_sr0(xuu30000, xuu31001), new_sr0(xuu31000, xuu30001)) 30.39/12.97 new_compare19(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.39/12.97 new_primMulInt(Pos(xuu400000), Pos(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) 30.39/12.97 new_esEs29(xuu4000, xuu300, ty_Float) -> new_esEs8(xuu4000, xuu300) 30.39/12.97 new_esEs18(xuu40000, xuu3000, app(ty_[], bca)) -> new_esEs16(xuu40000, xuu3000, bca) 30.39/12.97 new_ltEs19(xuu30002, xuu31002, app(ty_Ratio, cba)) -> new_ltEs10(xuu30002, xuu31002, cba) 30.39/12.97 new_esEs24(xuu30001, xuu31001, ty_Ordering) -> new_esEs10(xuu30001, xuu31001) 30.39/12.97 new_ltEs14(xuu3000, xuu3100) -> new_fsEs(new_compare5(xuu3000, xuu3100)) 30.39/12.97 new_compare10(xuu134, xuu135, True, dea) -> LT 30.39/12.97 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(app(app(ty_@3, hc), hd), he)) -> new_esEs4(xuu40000, xuu3000, hc, hd, he) 30.39/12.97 new_esEs24(xuu30001, xuu31001, app(ty_Maybe, bhh)) -> new_esEs6(xuu30001, xuu31001, bhh) 30.39/12.97 new_primMulNat0(Succ(xuu4000000), Zero) -> Zero 30.39/12.97 new_primMulNat0(Zero, Succ(xuu300100)) -> Zero 30.39/12.97 new_ltEs11(False, False) -> True 30.39/12.97 new_compare31(xuu30000, xuu31000, ty_Bool) -> new_compare12(xuu30000, xuu31000) 30.39/12.97 new_esEs7(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bdd, bde) -> new_asAs(new_esEs19(xuu40000, xuu3000, bdd), new_esEs20(xuu40001, xuu3001, bde)) 30.39/12.97 new_esEs24(xuu30001, xuu31001, ty_Char) -> new_esEs12(xuu30001, xuu31001) 30.39/12.97 new_lt13(xuu30000, xuu31000, ty_Bool) -> new_lt15(xuu30000, xuu31000) 30.39/12.97 new_esEs30(xuu19, xuu14, ty_Float) -> new_esEs8(xuu19, xuu14) 30.39/12.97 new_compare9(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Int) -> new_compare6(new_sr(xuu30000, xuu31001), new_sr(xuu31000, xuu30001)) 30.39/12.97 new_esEs18(xuu40000, xuu3000, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.39/12.97 new_compare27(xuu30000, xuu31000, False, bgb, bgc) -> new_compare110(xuu30000, xuu31000, new_ltEs13(xuu30000, xuu31000, bgb, bgc), bgb, bgc) 30.39/12.97 new_ltEs17(xuu3000, xuu3100) -> new_fsEs(new_compare7(xuu3000, xuu3100)) 30.39/12.97 new_ltEs18(xuu3000, xuu3100, ty_@0) -> new_ltEs8(xuu3000, xuu3100) 30.39/12.97 new_lt20(xuu30000, xuu31000, app(app(app(ty_@3, cfh), cga), cgb)) -> new_lt11(xuu30000, xuu31000, cfh, cga, cgb) 30.39/12.97 new_compare24(Just(xuu3000), Nothing, False, ec) -> GT 30.39/12.97 new_esEs5(Left(xuu40000), Left(xuu3000), app(app(ty_Either, gc), gd), fg) -> new_esEs5(xuu40000, xuu3000, gc, gd) 30.39/12.97 new_compare19(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.39/12.97 new_primCmpNat0(Zero, xuu3000) -> LT 30.39/12.97 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(ty_Maybe, baa)) -> new_esEs6(xuu40000, xuu3000, baa) 30.39/12.97 new_esEs18(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.39/12.97 new_esEs22(xuu40001, xuu3001, ty_Int) -> new_esEs9(xuu40001, xuu3001) 30.39/12.97 new_lt8(xuu30000, xuu31000, bac, bad) -> new_esEs10(new_compare18(xuu30000, xuu31000, bac, bad), LT) 30.39/12.97 new_lt15(xuu30000, xuu31000) -> new_esEs10(new_compare12(xuu30000, xuu31000), LT) 30.39/12.97 new_compare111(xuu30000, xuu31000, True) -> LT 30.39/12.97 new_esEs27(xuu40001, xuu3001, ty_Float) -> new_esEs8(xuu40001, xuu3001) 30.39/12.97 new_lt14(xuu30000, xuu31000, bgh) -> new_esEs10(new_compare(xuu30000, xuu31000, bgh), LT) 30.39/12.97 new_compare31(xuu30000, xuu31000, app(ty_Ratio, ccc)) -> new_compare9(xuu30000, xuu31000, ccc) 30.39/12.97 new_lt13(xuu30000, xuu31000, ty_Float) -> new_lt10(xuu30000, xuu31000) 30.39/12.97 new_esEs20(xuu40001, xuu3001, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_esEs4(xuu40001, xuu3001, bfb, bfc, bfd) 30.39/12.97 new_ltEs11(True, True) -> True 30.39/12.97 new_ltEs16(xuu3000, xuu3100) -> new_fsEs(new_compare19(xuu3000, xuu3100)) 30.39/12.97 new_primPlusNat1(Succ(xuu25200), Zero) -> Succ(xuu25200) 30.39/12.97 new_primPlusNat1(Zero, Succ(xuu9400)) -> Succ(xuu9400) 30.39/12.97 new_esEs30(xuu19, xuu14, ty_@0) -> new_esEs14(xuu19, xuu14) 30.39/12.97 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Ordering) -> new_ltEs15(xuu30000, xuu31000) 30.39/12.97 new_lt13(xuu30000, xuu31000, ty_Ordering) -> new_lt18(xuu30000, xuu31000) 30.39/12.97 new_esEs16([], [], bag) -> True 30.39/12.97 new_ltEs12(Just(xuu30000), Just(xuu31000), app(app(app(ty_@3, cdd), cde), cdf)) -> new_ltEs6(xuu30000, xuu31000, cdd, cde, cdf) 30.39/12.97 new_ltEs20(xuu30001, xuu31001, ty_Double) -> new_ltEs14(xuu30001, xuu31001) 30.39/12.97 new_esEs23(xuu30000, xuu31000, ty_Ordering) -> new_esEs10(xuu30000, xuu31000) 30.39/12.97 new_lt12(xuu30001, xuu31001, ty_Float) -> new_lt10(xuu30001, xuu31001) 30.39/12.97 new_ltEs12(Just(xuu30000), Just(xuu31000), app(ty_Maybe, ceb)) -> new_ltEs12(xuu30000, xuu31000, ceb) 30.39/12.97 new_esEs29(xuu4000, xuu300, ty_@0) -> new_esEs14(xuu4000, xuu300) 30.39/12.97 new_primMulInt(Neg(xuu400000), Neg(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) 30.39/12.97 new_esEs20(xuu40001, xuu3001, ty_Double) -> new_esEs17(xuu40001, xuu3001) 30.39/12.97 new_esEs25(xuu30000, xuu31000, app(app(ty_@2, cgg), cgh)) -> new_esEs7(xuu30000, xuu31000, cgg, cgh) 30.39/12.97 new_esEs25(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) 30.39/12.97 new_lt20(xuu30000, xuu31000, app(ty_Ratio, cge)) -> new_lt5(xuu30000, xuu31000, cge) 30.39/12.97 new_compare([], :(xuu31000, xuu31001), ed) -> LT 30.39/12.97 new_esEs28(xuu40002, xuu3002, ty_Integer) -> new_esEs15(xuu40002, xuu3002) 30.39/12.97 new_ltEs19(xuu30002, xuu31002, app(app(ty_@2, cbc), cbd)) -> new_ltEs13(xuu30002, xuu31002, cbc, cbd) 30.39/12.97 new_esEs6(Just(xuu40000), Just(xuu3000), app(ty_Maybe, cfe)) -> new_esEs6(xuu40000, xuu3000, cfe) 30.39/12.97 new_esEs6(Nothing, Just(xuu3000), cdb) -> False 30.39/12.97 new_esEs6(Just(xuu40000), Nothing, cdb) -> False 30.39/12.97 new_ltEs11(False, True) -> True 30.39/12.97 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Float, be) -> new_ltEs16(xuu30000, xuu31000) 30.39/12.97 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_@0) -> new_ltEs8(xuu30000, xuu31000) 30.39/12.97 new_ltEs19(xuu30002, xuu31002, ty_@0) -> new_ltEs8(xuu30002, xuu31002) 30.39/12.97 new_ltEs15(EQ, GT) -> True 30.39/12.97 new_esEs24(xuu30001, xuu31001, ty_Bool) -> new_esEs11(xuu30001, xuu31001) 30.39/12.97 new_esEs6(Nothing, Nothing, cdb) -> True 30.39/12.97 new_ltEs18(xuu3000, xuu3100, ty_Char) -> new_ltEs9(xuu3000, xuu3100) 30.39/12.97 new_esEs11(False, False) -> True 30.39/12.97 new_esEs10(LT, LT) -> True 30.39/12.97 new_ltEs18(xuu3000, xuu3100, ty_Ordering) -> new_ltEs15(xuu3000, xuu3100) 30.39/12.97 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Int, be) -> new_ltEs7(xuu30000, xuu31000) 30.39/12.97 new_esEs21(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.39/12.97 new_ltEs20(xuu30001, xuu31001, app(app(ty_@2, daa), dab)) -> new_ltEs13(xuu30001, xuu31001, daa, dab) 30.39/12.97 new_primCmpNat2(xuu3000, Zero) -> GT 30.39/12.97 new_esEs28(xuu40002, xuu3002, ty_Float) -> new_esEs8(xuu40002, xuu3002) 30.39/12.97 new_lt4(xuu30000, xuu31000) -> new_esEs10(new_compare8(xuu30000, xuu31000), LT) 30.39/12.97 new_compare6(xuu30, xuu31) -> new_primCmpInt(xuu30, xuu31) 30.39/12.97 new_compare31(xuu30000, xuu31000, app(ty_Maybe, ccd)) -> new_compare13(xuu30000, xuu31000, ccd) 30.39/12.97 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.39/12.97 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Bool, fg) -> new_esEs11(xuu40000, xuu3000) 30.39/12.97 new_lt13(xuu30000, xuu31000, ty_Int) -> new_lt9(xuu30000, xuu31000) 30.39/12.97 new_esEs16(:(xuu40000, xuu40001), :(xuu3000, xuu3001), bag) -> new_asAs(new_esEs18(xuu40000, xuu3000, bag), new_esEs16(xuu40001, xuu3001, bag)) 30.39/12.97 new_compare30(xuu30000, xuu31000) -> new_compare210(xuu30000, xuu31000, new_esEs10(xuu30000, xuu31000)) 30.39/12.97 new_ltEs19(xuu30002, xuu31002, ty_Char) -> new_ltEs9(xuu30002, xuu31002) 30.39/12.97 new_lt12(xuu30001, xuu31001, ty_Bool) -> new_lt15(xuu30001, xuu31001) 30.39/12.97 new_compare31(xuu30000, xuu31000, ty_Integer) -> new_compare7(xuu30000, xuu31000) 30.39/12.97 new_ltEs12(Just(xuu30000), Just(xuu31000), app(ty_[], cdc)) -> new_ltEs5(xuu30000, xuu31000, cdc) 30.39/12.97 new_esEs26(xuu40000, xuu3000, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs4(xuu40000, xuu3000, dae, daf, dag) 30.39/12.97 new_primMulInt(Pos(xuu400000), Neg(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) 30.39/12.97 new_primMulInt(Neg(xuu400000), Pos(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) 30.39/12.97 new_esEs12(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) 30.39/12.97 new_esEs19(xuu40000, xuu3000, app(app(ty_Either, bec), bed)) -> new_esEs5(xuu40000, xuu3000, bec, bed) 30.39/12.97 new_lt17(xuu30000, xuu31000) -> new_esEs10(new_compare5(xuu30000, xuu31000), LT) 30.39/12.97 new_esEs26(xuu40000, xuu3000, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.39/12.97 new_esEs20(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) 30.39/12.97 new_ltEs20(xuu30001, xuu31001, ty_@0) -> new_ltEs8(xuu30001, xuu31001) 30.39/12.97 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(app(app(ty_@3, db), dc), dd)) -> new_ltEs6(xuu30000, xuu31000, db, dc, dd) 30.39/12.97 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(app(ty_Either, de), df)) -> new_ltEs4(xuu30000, xuu31000, de, df) 30.39/12.97 new_ltEs4(Left(xuu30000), Left(xuu31000), app(ty_[], bd), be) -> new_ltEs5(xuu30000, xuu31000, bd) 30.39/12.97 new_primCmpNat1(Succ(xuu30000), Zero) -> GT 30.39/12.97 new_esEs27(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) 30.39/12.97 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Integer) -> new_ltEs17(xuu30000, xuu31000) 30.39/12.97 new_compare14(xuu30000, xuu31000, False) -> GT 30.39/12.97 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Ordering) -> new_ltEs15(xuu30000, xuu31000) 30.39/12.97 new_ltEs19(xuu30002, xuu31002, ty_Double) -> new_ltEs14(xuu30002, xuu31002) 30.39/12.97 new_sr0(Integer(xuu300000), Integer(xuu310010)) -> Integer(new_primMulInt(xuu300000, xuu310010)) 30.39/12.97 new_ltEs9(xuu3000, xuu3100) -> new_fsEs(new_compare17(xuu3000, xuu3100)) 30.39/12.97 new_primCmpNat2(xuu3000, Succ(xuu3100)) -> new_primCmpNat1(xuu3000, xuu3100) 30.39/12.97 new_esEs28(xuu40002, xuu3002, ty_@0) -> new_esEs14(xuu40002, xuu3002) 30.39/12.97 new_ltEs15(LT, GT) -> True 30.39/12.97 new_ltEs20(xuu30001, xuu31001, app(app(ty_Either, che), chf)) -> new_ltEs4(xuu30001, xuu31001, che, chf) 30.39/12.97 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(ty_[], da)) -> new_ltEs5(xuu30000, xuu31000, da) 30.39/12.97 new_esEs29(xuu4000, xuu300, ty_Integer) -> new_esEs15(xuu4000, xuu300) 30.39/12.97 new_esEs20(xuu40001, xuu3001, app(ty_Ratio, bfg)) -> new_esEs13(xuu40001, xuu3001, bfg) 30.39/12.97 new_esEs30(xuu19, xuu14, ty_Integer) -> new_esEs15(xuu19, xuu14) 30.39/12.97 new_esEs20(xuu40001, xuu3001, ty_Int) -> new_esEs9(xuu40001, xuu3001) 30.39/12.97 new_esEs15(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) 30.39/12.97 new_esEs25(xuu30000, xuu31000, app(ty_Ratio, cge)) -> new_esEs13(xuu30000, xuu31000, cge) 30.39/12.97 new_esEs25(xuu30000, xuu31000, ty_Bool) -> new_esEs11(xuu30000, xuu31000) 30.39/12.97 new_compare31(xuu30000, xuu31000, app(ty_[], cbe)) -> new_compare(xuu30000, xuu31000, cbe) 30.39/12.97 new_esEs25(xuu30000, xuu31000, ty_Int) -> new_esEs9(xuu30000, xuu31000) 30.39/12.97 new_asAs(True, xuu141) -> xuu141 30.39/12.97 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.39/12.97 new_ltEs13(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), fb, fc) -> new_pePe(new_lt20(xuu30000, xuu31000, fb), new_asAs(new_esEs25(xuu30000, xuu31000, fb), new_ltEs20(xuu30001, xuu31001, fc))) 30.39/12.97 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Bool) -> new_ltEs11(xuu30000, xuu31000) 30.39/12.97 new_esEs18(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.39/12.97 new_esEs24(xuu30001, xuu31001, ty_@0) -> new_esEs14(xuu30001, xuu31001) 30.39/12.97 new_compare31(xuu30000, xuu31000, app(app(ty_@2, cce), ccf)) -> new_compare15(xuu30000, xuu31000, cce, ccf) 30.39/12.97 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Integer, fg) -> new_esEs15(xuu40000, xuu3000) 30.39/12.97 new_lt12(xuu30001, xuu31001, ty_Ordering) -> new_lt18(xuu30001, xuu31001) 30.39/12.97 new_compare18(xuu30000, xuu31000, bac, bad) -> new_compare25(xuu30000, xuu31000, new_esEs5(xuu30000, xuu31000, bac, bad), bac, bad) 30.39/12.97 new_lt13(xuu30000, xuu31000, app(app(ty_Either, bac), bad)) -> new_lt8(xuu30000, xuu31000, bac, bad) 30.39/12.97 new_esEs19(xuu40000, xuu3000, app(ty_Ratio, bee)) -> new_esEs13(xuu40000, xuu3000, bee) 30.39/12.97 new_ltEs20(xuu30001, xuu31001, ty_Char) -> new_ltEs9(xuu30001, xuu31001) 30.39/12.97 new_esEs24(xuu30001, xuu31001, ty_Integer) -> new_esEs15(xuu30001, xuu31001) 30.39/12.97 new_esEs19(xuu40000, xuu3000, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.39/12.97 new_esEs29(xuu4000, xuu300, app(ty_[], bag)) -> new_esEs16(xuu4000, xuu300, bag) 30.39/12.97 new_ltEs20(xuu30001, xuu31001, ty_Float) -> new_ltEs16(xuu30001, xuu31001) 30.39/12.97 new_lt13(xuu30000, xuu31000, ty_@0) -> new_lt4(xuu30000, xuu31000) 30.39/12.97 new_compare12(xuu30000, xuu31000) -> new_compare26(xuu30000, xuu31000, new_esEs11(xuu30000, xuu31000)) 30.39/12.97 new_esEs19(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.39/12.97 new_esEs18(xuu40000, xuu3000, app(app(ty_@2, bah), bba)) -> new_esEs7(xuu40000, xuu3000, bah, bba) 30.39/12.97 new_esEs24(xuu30001, xuu31001, app(app(ty_@2, caa), cab)) -> new_esEs7(xuu30001, xuu31001, caa, cab) 30.39/12.97 new_esEs30(xuu19, xuu14, app(app(ty_@2, bcb), bcc)) -> new_esEs7(xuu19, xuu14, bcb, bcc) 30.39/12.97 new_lt12(xuu30001, xuu31001, app(ty_[], bha)) -> new_lt14(xuu30001, xuu31001, bha) 30.39/12.97 new_esEs29(xuu4000, xuu300, app(app(ty_Either, gh), fg)) -> new_esEs5(xuu4000, xuu300, gh, fg) 30.39/12.97 new_ltEs18(xuu3000, xuu3100, app(app(ty_@2, fb), fc)) -> new_ltEs13(xuu3000, xuu3100, fb, fc) 30.39/12.97 new_lt20(xuu30000, xuu31000, ty_Char) -> new_lt7(xuu30000, xuu31000) 30.39/12.97 new_compare15(xuu30000, xuu31000, bgb, bgc) -> new_compare27(xuu30000, xuu31000, new_esEs7(xuu30000, xuu31000, bgb, bgc), bgb, bgc) 30.39/12.97 new_primCompAux00(xuu182, EQ) -> xuu182 30.39/12.97 new_sr(xuu40000, xuu3001) -> new_primMulInt(xuu40000, xuu3001) 30.39/12.97 new_lt12(xuu30001, xuu31001, app(ty_Maybe, bhh)) -> new_lt6(xuu30001, xuu31001, bhh) 30.39/12.97 new_esEs25(xuu30000, xuu31000, ty_Integer) -> new_esEs15(xuu30000, xuu31000) 30.39/12.97 new_primMulNat0(Zero, Zero) -> Zero 30.39/12.97 new_lt13(xuu30000, xuu31000, app(app(ty_@2, bgb), bgc)) -> new_lt16(xuu30000, xuu31000, bgb, bgc) 30.39/12.97 new_esEs30(xuu19, xuu14, app(ty_[], bdc)) -> new_esEs16(xuu19, xuu14, bdc) 30.39/12.97 new_esEs24(xuu30001, xuu31001, app(ty_[], bha)) -> new_esEs16(xuu30001, xuu31001, bha) 30.39/12.97 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Int, fg) -> new_esEs9(xuu40000, xuu3000) 30.39/12.97 new_esEs23(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) 30.39/12.97 new_compare111(xuu30000, xuu31000, False) -> GT 30.39/12.97 new_primCmpNat1(Zero, Zero) -> EQ 30.39/12.97 new_ltEs20(xuu30001, xuu31001, app(ty_Maybe, chh)) -> new_ltEs12(xuu30001, xuu31001, chh) 30.39/12.97 new_esEs30(xuu19, xuu14, ty_Int) -> new_esEs9(xuu19, xuu14) 30.39/12.97 new_esEs23(xuu30000, xuu31000, app(app(ty_@2, bgb), bgc)) -> new_esEs7(xuu30000, xuu31000, bgb, bgc) 30.39/12.97 new_compare28(xuu30000, xuu31000, True, bgd, bge, bgf) -> EQ 30.39/12.97 new_ltEs18(xuu3000, xuu3100, app(app(ty_Either, cg), be)) -> new_ltEs4(xuu3000, xuu3100, cg, be) 30.39/12.97 new_lt20(xuu30000, xuu31000, ty_Float) -> new_lt10(xuu30000, xuu31000) 30.39/12.97 new_esEs20(xuu40001, xuu3001, app(app(ty_Either, bfe), bff)) -> new_esEs5(xuu40001, xuu3001, bfe, bff) 30.39/12.97 new_ltEs11(True, False) -> False 30.39/12.97 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(app(ty_Either, hf), hg)) -> new_esEs5(xuu40000, xuu3000, hf, hg) 30.39/12.97 new_esEs19(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.39/12.97 new_ltEs15(EQ, EQ) -> True 30.39/12.97 new_esEs26(xuu40000, xuu3000, app(ty_Maybe, dbc)) -> new_esEs6(xuu40000, xuu3000, dbc) 30.39/12.97 new_fsEs(xuu151) -> new_not(new_esEs10(xuu151, GT)) 30.39/12.97 new_esEs30(xuu19, xuu14, app(ty_Ratio, bda)) -> new_esEs13(xuu19, xuu14, bda) 30.39/12.97 new_esEs26(xuu40000, xuu3000, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.39/12.97 new_esEs24(xuu30001, xuu31001, app(ty_Ratio, bhg)) -> new_esEs13(xuu30001, xuu31001, bhg) 30.39/12.97 new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.39/12.97 new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.39/12.97 new_ltEs18(xuu3000, xuu3100, app(ty_Ratio, eh)) -> new_ltEs10(xuu3000, xuu3100, eh) 30.39/12.97 new_lt12(xuu30001, xuu31001, ty_@0) -> new_lt4(xuu30001, xuu31001) 30.39/12.97 new_esEs6(Just(xuu40000), Just(xuu3000), app(app(ty_@2, cee), cef)) -> new_esEs7(xuu40000, xuu3000, cee, cef) 30.39/12.97 new_esEs18(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.39/12.97 new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False 30.39/12.97 new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False 30.39/12.97 new_esEs29(xuu4000, xuu300, app(ty_Ratio, bgg)) -> new_esEs13(xuu4000, xuu300, bgg) 30.39/12.97 new_esEs24(xuu30001, xuu31001, ty_Int) -> new_esEs9(xuu30001, xuu31001) 30.39/12.97 new_esEs25(xuu30000, xuu31000, app(ty_Maybe, cgf)) -> new_esEs6(xuu30000, xuu31000, cgf) 30.39/12.97 new_compare([], [], ed) -> EQ 30.39/12.97 new_ltEs15(LT, EQ) -> True 30.39/12.97 new_esEs20(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) 30.39/12.97 new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) 30.39/12.97 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.39/12.97 new_esEs20(xuu40001, xuu3001, app(ty_[], bga)) -> new_esEs16(xuu40001, xuu3001, bga) 30.39/12.97 new_esEs28(xuu40002, xuu3002, app(app(ty_@2, dcg), dch)) -> new_esEs7(xuu40002, xuu3002, dcg, dch) 30.39/12.97 new_ltEs4(Left(xuu30000), Left(xuu31000), app(app(ty_Either, ca), cb), be) -> new_ltEs4(xuu30000, xuu31000, ca, cb) 30.39/12.97 new_lt13(xuu30000, xuu31000, app(ty_[], bgh)) -> new_lt14(xuu30000, xuu31000, bgh) 30.39/12.97 new_esEs25(xuu30000, xuu31000, app(app(ty_Either, cgc), cgd)) -> new_esEs5(xuu30000, xuu31000, cgc, cgd) 30.39/12.97 new_esEs20(xuu40001, xuu3001, app(ty_Maybe, bfh)) -> new_esEs6(xuu40001, xuu3001, bfh) 30.39/12.97 new_ltEs19(xuu30002, xuu31002, app(ty_Maybe, cbb)) -> new_ltEs12(xuu30002, xuu31002, cbb) 30.39/12.97 new_esEs11(True, True) -> True 30.39/12.97 new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False 30.39/12.97 new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False 30.39/12.97 new_esEs19(xuu40000, xuu3000, app(ty_Maybe, bef)) -> new_esEs6(xuu40000, xuu3000, bef) 30.39/12.97 new_compare29(xuu30000, xuu31000, bgd, bge, bgf) -> new_compare28(xuu30000, xuu31000, new_esEs4(xuu30000, xuu31000, bgd, bge, bgf), bgd, bge, bgf) 30.39/12.97 new_compare31(xuu30000, xuu31000, ty_Double) -> new_compare5(xuu30000, xuu31000) 30.39/12.97 new_esEs25(xuu30000, xuu31000, app(ty_[], cfg)) -> new_esEs16(xuu30000, xuu31000, cfg) 30.39/12.97 new_esEs19(xuu40000, xuu3000, app(ty_[], beg)) -> new_esEs16(xuu40000, xuu3000, beg) 30.39/12.97 new_esEs29(xuu4000, xuu300, ty_Int) -> new_esEs9(xuu4000, xuu300) 30.39/12.97 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 30.39/12.97 new_ltEs15(GT, GT) -> True 30.39/12.97 new_esEs30(xuu19, xuu14, ty_Bool) -> new_esEs11(xuu19, xuu14) 30.39/12.97 new_esEs26(xuu40000, xuu3000, app(app(ty_Either, dah), dba)) -> new_esEs5(xuu40000, xuu3000, dah, dba) 30.39/12.97 new_esEs30(xuu19, xuu14, app(ty_Maybe, bdb)) -> new_esEs6(xuu19, xuu14, bdb) 30.39/12.97 new_esEs10(LT, GT) -> False 30.39/12.97 new_esEs10(GT, LT) -> False 30.39/12.97 new_esEs21(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.39/12.97 new_ltEs10(xuu3000, xuu3100, eh) -> new_fsEs(new_compare9(xuu3000, xuu3100, eh)) 30.39/12.97 new_esEs19(xuu40000, xuu3000, app(app(ty_@2, bdf), bdg)) -> new_esEs7(xuu40000, xuu3000, bdf, bdg) 30.39/12.97 new_ltEs7(xuu3000, xuu3100) -> new_fsEs(new_compare6(xuu3000, xuu3100)) 30.39/12.97 new_ltEs12(Just(xuu30000), Just(xuu31000), app(app(ty_@2, cec), ced)) -> new_ltEs13(xuu30000, xuu31000, cec, ced) 30.39/12.97 new_esEs27(xuu40001, xuu3001, app(app(app(ty_@3, dbg), dbh), dca)) -> new_esEs4(xuu40001, xuu3001, dbg, dbh, dca) 30.39/12.97 new_primPlusNat0(xuu104, xuu300100) -> new_primPlusNat1(xuu104, Succ(xuu300100)) 30.39/12.97 new_not(False) -> True 30.39/12.97 new_esEs28(xuu40002, xuu3002, ty_Int) -> new_esEs9(xuu40002, xuu3002) 30.39/12.97 new_compare31(xuu30000, xuu31000, ty_Char) -> new_compare17(xuu30000, xuu31000) 30.39/12.97 new_esEs18(xuu40000, xuu3000, app(app(ty_Either, bbe), bbf)) -> new_esEs5(xuu40000, xuu3000, bbe, bbf) 30.39/12.97 new_esEs28(xuu40002, xuu3002, app(ty_Ratio, ddf)) -> new_esEs13(xuu40002, xuu3002, ddf) 30.39/12.97 new_esEs29(xuu4000, xuu300, ty_Ordering) -> new_esEs10(xuu4000, xuu300) 30.39/12.97 new_lt20(xuu30000, xuu31000, ty_@0) -> new_lt4(xuu30000, xuu31000) 30.39/12.97 new_esEs25(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) 30.39/12.97 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.39/12.97 new_compare19(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.39/12.97 new_compare19(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.39/12.97 new_lt12(xuu30001, xuu31001, app(app(ty_Either, bhe), bhf)) -> new_lt8(xuu30001, xuu31001, bhe, bhf) 30.39/12.97 new_esEs25(xuu30000, xuu31000, ty_Double) -> new_esEs17(xuu30000, xuu31000) 30.39/12.97 new_esEs5(Left(xuu40000), Right(xuu3000), gh, fg) -> False 30.39/12.97 new_esEs5(Right(xuu40000), Left(xuu3000), gh, fg) -> False 30.39/12.97 new_primCmpInt(Pos(Succ(xuu3000)), Pos(xuu310)) -> new_primCmpNat2(xuu3000, xuu310) 30.39/12.97 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Int) -> new_ltEs7(xuu30000, xuu31000) 30.39/12.97 new_lt12(xuu30001, xuu31001, ty_Integer) -> new_lt19(xuu30001, xuu31001) 30.39/12.97 new_compare27(xuu30000, xuu31000, True, bgb, bgc) -> EQ 30.39/12.97 new_esEs29(xuu4000, xuu300, app(app(ty_@2, bdd), bde)) -> new_esEs7(xuu4000, xuu300, bdd, bde) 30.39/12.97 new_ltEs4(Left(xuu30000), Right(xuu31000), cg, be) -> True 30.39/12.97 new_esEs18(xuu40000, xuu3000, app(ty_Maybe, bbh)) -> new_esEs6(xuu40000, xuu3000, bbh) 30.39/12.97 new_esEs30(xuu19, xuu14, ty_Ordering) -> new_esEs10(xuu19, xuu14) 30.39/12.97 new_esEs27(xuu40001, xuu3001, ty_Ordering) -> new_esEs10(xuu40001, xuu3001) 30.39/12.97 new_ltEs18(xuu3000, xuu3100, app(ty_[], ed)) -> new_ltEs5(xuu3000, xuu3100, ed) 30.39/12.97 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(app(ty_@2, ea), eb)) -> new_ltEs13(xuu30000, xuu31000, ea, eb) 30.39/12.97 new_esEs30(xuu19, xuu14, app(app(ty_Either, bcg), bch)) -> new_esEs5(xuu19, xuu14, bcg, bch) 30.39/12.97 new_lt20(xuu30000, xuu31000, ty_Int) -> new_lt9(xuu30000, xuu31000) 30.39/12.97 new_lt5(xuu30000, xuu31000, bae) -> new_esEs10(new_compare9(xuu30000, xuu31000, bae), LT) 30.39/12.97 new_ltEs20(xuu30001, xuu31001, ty_Bool) -> new_ltEs11(xuu30001, xuu31001) 30.39/12.97 new_compare16(xuu30000, xuu31000, False, bgd, bge, bgf) -> GT 30.39/12.97 new_compare11(xuu30000, xuu31000, True, bac, bad) -> LT 30.39/12.97 new_ltEs19(xuu30002, xuu31002, ty_Int) -> new_ltEs7(xuu30002, xuu31002) 30.39/12.97 new_primCmpNat1(Zero, Succ(xuu31000)) -> LT 30.39/12.97 new_lt12(xuu30001, xuu31001, app(ty_Ratio, bhg)) -> new_lt5(xuu30001, xuu31001, bhg) 30.39/12.97 new_esEs29(xuu4000, xuu300, app(ty_Maybe, cdb)) -> new_esEs6(xuu4000, xuu300, cdb) 30.39/12.97 new_compare210(xuu30000, xuu31000, False) -> new_compare14(xuu30000, xuu31000, new_ltEs15(xuu30000, xuu31000)) 30.39/12.97 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 30.39/12.97 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 30.39/12.97 new_esEs25(xuu30000, xuu31000, app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs4(xuu30000, xuu31000, cfh, cga, cgb) 30.39/12.97 new_lt20(xuu30000, xuu31000, ty_Double) -> new_lt17(xuu30000, xuu31000) 30.39/12.97 new_lt18(xuu30000, xuu31000) -> new_esEs10(new_compare30(xuu30000, xuu31000), LT) 30.39/12.97 new_primPlusNat1(Zero, Zero) -> Zero 30.39/12.97 new_esEs18(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.39/12.97 new_compare31(xuu30000, xuu31000, ty_Ordering) -> new_compare30(xuu30000, xuu31000) 30.39/12.97 new_lt20(xuu30000, xuu31000, app(app(ty_@2, cgg), cgh)) -> new_lt16(xuu30000, xuu31000, cgg, cgh) 30.39/12.97 new_esEs20(xuu40001, xuu3001, ty_Bool) -> new_esEs11(xuu40001, xuu3001) 30.39/12.97 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Double, be) -> new_ltEs14(xuu30000, xuu31000) 30.39/12.97 new_ltEs19(xuu30002, xuu31002, ty_Bool) -> new_ltEs11(xuu30002, xuu31002) 30.39/12.97 new_ltEs20(xuu30001, xuu31001, ty_Int) -> new_ltEs7(xuu30001, xuu31001) 30.39/12.97 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Float, fg) -> new_esEs8(xuu40000, xuu3000) 30.39/12.97 new_ltEs12(Just(xuu30000), Just(xuu31000), app(ty_Ratio, cea)) -> new_ltEs10(xuu30000, xuu31000, cea) 30.39/12.97 new_esEs27(xuu40001, xuu3001, ty_Double) -> new_esEs17(xuu40001, xuu3001) 30.39/12.97 new_esEs24(xuu30001, xuu31001, ty_Float) -> new_esEs8(xuu30001, xuu31001) 30.39/12.97 new_ltEs15(LT, LT) -> True 30.39/12.97 new_ltEs12(Nothing, Just(xuu31000), fa) -> True 30.39/12.97 new_esEs10(EQ, GT) -> False 30.39/12.97 new_esEs10(GT, EQ) -> False 30.39/12.97 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Ordering, be) -> new_ltEs15(xuu30000, xuu31000) 30.39/12.97 new_esEs18(xuu40000, xuu3000, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.39/12.97 new_ltEs19(xuu30002, xuu31002, app(app(ty_Either, cag), cah)) -> new_ltEs4(xuu30002, xuu31002, cag, cah) 30.39/12.97 new_esEs28(xuu40002, xuu3002, app(ty_Maybe, ddg)) -> new_esEs6(xuu40002, xuu3002, ddg) 30.39/12.97 new_esEs8(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs9(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) 30.39/12.97 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 30.39/12.97 new_primMulNat0(Succ(xuu4000000), Succ(xuu300100)) -> new_primPlusNat0(new_primMulNat0(xuu4000000, Succ(xuu300100)), xuu300100) 30.39/12.97 new_lt20(xuu30000, xuu31000, ty_Ordering) -> new_lt18(xuu30000, xuu31000) 30.39/12.97 new_compare31(xuu30000, xuu31000, ty_@0) -> new_compare8(xuu30000, xuu31000) 30.39/12.97 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(ty_Maybe, dh)) -> new_ltEs12(xuu30000, xuu31000, dh) 30.39/12.97 new_compare16(xuu30000, xuu31000, True, bgd, bge, bgf) -> LT 30.39/12.97 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.39/12.97 new_esEs13(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), bgg) -> new_asAs(new_esEs21(xuu40000, xuu3000, bgg), new_esEs22(xuu40001, xuu3001, bgg)) 30.39/12.97 new_esEs27(xuu40001, xuu3001, app(ty_Maybe, dce)) -> new_esEs6(xuu40001, xuu3001, dce) 30.39/12.97 new_esEs6(Just(xuu40000), Just(xuu3000), app(ty_[], cff)) -> new_esEs16(xuu40000, xuu3000, cff) 30.39/12.97 new_esEs5(Left(xuu40000), Left(xuu3000), ty_@0, fg) -> new_esEs14(xuu40000, xuu3000) 30.39/12.97 new_ltEs12(Nothing, Nothing, fa) -> True 30.39/12.97 new_esEs16(:(xuu40000, xuu40001), [], bag) -> False 30.39/12.97 new_esEs16([], :(xuu3000, xuu3001), bag) -> False 30.39/12.97 new_ltEs19(xuu30002, xuu31002, ty_Float) -> new_ltEs16(xuu30002, xuu31002) 30.39/12.97 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_@0, be) -> new_ltEs8(xuu30000, xuu31000) 30.39/12.97 new_compare31(xuu30000, xuu31000, app(app(ty_Either, cca), ccb)) -> new_compare18(xuu30000, xuu31000, cca, ccb) 30.39/12.97 new_esEs23(xuu30000, xuu31000, app(ty_[], bgh)) -> new_esEs16(xuu30000, xuu31000, bgh) 30.39/12.97 new_ltEs12(Just(xuu30000), Nothing, fa) -> False 30.39/12.97 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 30.39/12.97 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 30.39/12.97 new_compare8(@0, @0) -> EQ 30.39/12.97 new_lt20(xuu30000, xuu31000, app(ty_Maybe, cgf)) -> new_lt6(xuu30000, xuu31000, cgf) 30.39/12.97 new_compare110(xuu30000, xuu31000, False, bgb, bgc) -> GT 30.39/12.97 new_esEs4(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), ccg, cch, cda) -> new_asAs(new_esEs26(xuu40000, xuu3000, ccg), new_asAs(new_esEs27(xuu40001, xuu3001, cch), new_esEs28(xuu40002, xuu3002, cda))) 30.39/12.97 new_esEs23(xuu30000, xuu31000, ty_Integer) -> new_esEs15(xuu30000, xuu31000) 30.39/12.97 new_esEs28(xuu40002, xuu3002, app(app(ty_Either, ddd), dde)) -> new_esEs5(xuu40002, xuu3002, ddd, dde) 30.39/12.97 new_primEqNat0(Zero, Zero) -> True 30.39/12.97 new_ltEs18(xuu3000, xuu3100, ty_Float) -> new_ltEs16(xuu3000, xuu3100) 30.39/12.97 new_esEs19(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.39/12.97 new_esEs18(xuu40000, xuu3000, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.39/12.97 new_ltEs20(xuu30001, xuu31001, app(ty_[], cha)) -> new_ltEs5(xuu30001, xuu31001, cha) 30.39/12.97 new_esEs28(xuu40002, xuu3002, ty_Ordering) -> new_esEs10(xuu40002, xuu3002) 30.39/12.97 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Float) -> new_ltEs16(xuu30000, xuu31000) 30.39/12.97 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Integer) -> new_ltEs17(xuu30000, xuu31000) 30.39/12.97 new_esEs6(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.39/12.97 new_esEs29(xuu4000, xuu300, ty_Bool) -> new_esEs11(xuu4000, xuu300) 30.39/12.97 new_asAs(False, xuu141) -> False 30.39/12.97 new_esEs23(xuu30000, xuu31000, ty_Float) -> new_esEs8(xuu30000, xuu31000) 30.39/12.97 new_compare24(Nothing, Nothing, False, ec) -> LT 30.39/12.97 new_esEs20(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) 30.39/12.97 new_esEs26(xuu40000, xuu3000, app(ty_Ratio, dbb)) -> new_esEs13(xuu40000, xuu3000, dbb) 30.39/12.97 new_lt10(xuu30000, xuu31000) -> new_esEs10(new_compare19(xuu30000, xuu31000), LT) 30.39/12.97 new_esEs26(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.39/12.97 new_esEs23(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) 30.39/12.97 new_ltEs4(Right(xuu30000), Left(xuu31000), cg, be) -> False 30.39/12.97 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.39/12.97 new_primCmpInt(Neg(Succ(xuu3000)), Neg(xuu310)) -> new_primCmpNat0(xuu310, xuu3000) 30.39/12.97 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.39/12.97 new_ltEs18(xuu3000, xuu3100, ty_Int) -> new_ltEs7(xuu3000, xuu3100) 30.39/12.97 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Char, be) -> new_ltEs9(xuu30000, xuu31000) 30.39/12.97 new_esEs20(xuu40001, xuu3001, app(app(ty_@2, beh), bfa)) -> new_esEs7(xuu40001, xuu3001, beh, bfa) 30.39/12.97 30.39/12.97 The set Q consists of the following terms: 30.39/12.97 30.39/12.97 new_primPlusNat1(Succ(x0), Succ(x1)) 30.39/12.97 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.97 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 30.39/12.97 new_esEs27(x0, x1, ty_Ordering) 30.39/12.97 new_esEs19(x0, x1, ty_Bool) 30.39/12.97 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 30.39/12.97 new_ltEs4(Left(x0), Left(x1), ty_Char, x2) 30.39/12.97 new_esEs24(x0, x1, app(ty_Maybe, x2)) 30.39/12.97 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.39/12.97 new_ltEs18(x0, x1, ty_Bool) 30.39/12.97 new_primCmpNat2(x0, Succ(x1)) 30.39/12.97 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.97 new_ltEs12(Nothing, Nothing, x0) 30.39/12.97 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.97 new_lt20(x0, x1, ty_Int) 30.39/12.97 new_lt20(x0, x1, app(ty_[], x2)) 30.39/12.97 new_sr0(Integer(x0), Integer(x1)) 30.39/12.97 new_ltEs17(x0, x1) 30.39/12.97 new_esEs23(x0, x1, ty_Char) 30.39/12.97 new_compare31(x0, x1, ty_Ordering) 30.39/12.97 new_compare110(x0, x1, False, x2, x3) 30.39/12.97 new_ltEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.39/12.97 new_lt20(x0, x1, ty_Ordering) 30.39/12.97 new_esEs28(x0, x1, app(ty_[], x2)) 30.39/12.97 new_primCmpNat1(Succ(x0), Zero) 30.39/12.97 new_primPlusNat1(Zero, Zero) 30.39/12.97 new_esEs27(x0, x1, ty_Double) 30.39/12.97 new_esEs19(x0, x1, app(ty_Maybe, x2)) 30.39/12.97 new_esEs28(x0, x1, ty_Char) 30.39/12.97 new_compare31(x0, x1, ty_Int) 30.39/12.97 new_esEs25(x0, x1, ty_Char) 30.39/12.97 new_primCmpNat1(Zero, Zero) 30.39/12.97 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 30.39/12.97 new_ltEs18(x0, x1, ty_@0) 30.39/12.97 new_compare26(x0, x1, True) 30.39/12.97 new_esEs10(EQ, EQ) 30.39/12.97 new_lt14(x0, x1, x2) 30.39/12.97 new_compare31(x0, x1, ty_Char) 30.39/12.97 new_lt20(x0, x1, ty_Double) 30.39/12.97 new_primEqInt(Pos(Zero), Pos(Zero)) 30.39/12.97 new_lt13(x0, x1, app(ty_Maybe, x2)) 30.39/12.97 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 30.39/12.97 new_ltEs4(Left(x0), Left(x1), ty_Int, x2) 30.39/12.97 new_ltEs4(Right(x0), Right(x1), x2, ty_Integer) 30.39/12.97 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.39/12.97 new_primCompAux00(x0, GT) 30.39/12.97 new_ltEs12(Just(x0), Nothing, x1) 30.39/12.97 new_esEs25(x0, x1, ty_Int) 30.39/12.97 new_lt13(x0, x1, ty_Integer) 30.39/12.97 new_esEs24(x0, x1, ty_Bool) 30.39/12.97 new_compare31(x0, x1, ty_Double) 30.39/12.97 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 30.39/12.97 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 30.39/12.97 new_ltEs12(Just(x0), Just(x1), ty_Ordering) 30.39/12.97 new_esEs19(x0, x1, ty_@0) 30.39/12.97 new_ltEs7(x0, x1) 30.39/12.97 new_esEs6(Nothing, Just(x0), x1) 30.39/12.97 new_esEs30(x0, x1, ty_Integer) 30.39/12.97 new_esEs25(x0, x1, ty_Ordering) 30.39/12.97 new_ltEs12(Just(x0), Just(x1), app(ty_[], x2)) 30.39/12.97 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.97 new_ltEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.39/12.97 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 30.39/12.97 new_compare([], :(x0, x1), x2) 30.39/12.97 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 30.39/12.97 new_lt18(x0, x1) 30.39/12.97 new_primEqInt(Neg(Zero), Neg(Zero)) 30.39/12.97 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.97 new_compare24(Nothing, Nothing, False, x0) 30.39/12.97 new_primCmpNat0(Succ(x0), x1) 30.39/12.97 new_ltEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.39/12.97 new_lt20(x0, x1, ty_Char) 30.39/12.97 new_ltEs12(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.39/12.97 new_esEs23(x0, x1, ty_Ordering) 30.39/12.97 new_compare210(x0, x1, True) 30.39/12.97 new_compare13(x0, x1, x2) 30.39/12.97 new_ltEs19(x0, x1, ty_Float) 30.39/12.97 new_esEs30(x0, x1, ty_@0) 30.39/12.97 new_lt13(x0, x1, app(ty_[], x2)) 30.39/12.97 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 30.39/12.97 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 30.39/12.97 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.97 new_ltEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 30.39/12.97 new_esEs25(x0, x1, ty_@0) 30.39/12.97 new_esEs25(x0, x1, ty_Double) 30.39/12.97 new_ltEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.39/12.97 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.39/12.97 new_esEs23(x0, x1, app(ty_[], x2)) 30.39/12.97 new_compare27(x0, x1, True, x2, x3) 30.39/12.97 new_compare(:(x0, x1), [], x2) 30.39/12.97 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 30.39/12.97 new_esEs20(x0, x1, app(ty_Ratio, x2)) 30.39/12.97 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.39/12.97 new_ltEs4(Right(x0), Right(x1), x2, ty_Bool) 30.39/12.97 new_compare28(x0, x1, False, x2, x3, x4) 30.39/12.97 new_ltEs4(Left(x0), Left(x1), ty_Bool, x2) 30.39/12.97 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.97 new_ltEs11(True, True) 30.39/12.97 new_esEs27(x0, x1, ty_Char) 30.39/12.97 new_esEs19(x0, x1, app(ty_Ratio, x2)) 30.39/12.97 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 30.39/12.97 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.97 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.97 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 30.39/12.97 new_compare14(x0, x1, True) 30.39/12.97 new_esEs18(x0, x1, app(ty_Ratio, x2)) 30.39/12.97 new_esEs24(x0, x1, app(ty_Ratio, x2)) 30.39/12.97 new_esEs24(x0, x1, ty_Char) 30.39/12.97 new_ltEs12(Just(x0), Just(x1), ty_Int) 30.39/12.97 new_ltEs4(Left(x0), Left(x1), ty_Ordering, x2) 30.39/12.97 new_compare27(x0, x1, False, x2, x3) 30.39/12.97 new_compare30(x0, x1) 30.39/12.97 new_ltEs18(x0, x1, ty_Integer) 30.39/12.97 new_primEqInt(Pos(Zero), Neg(Zero)) 30.39/12.97 new_primEqInt(Neg(Zero), Pos(Zero)) 30.39/12.97 new_ltEs9(x0, x1) 30.39/12.97 new_esEs27(x0, x1, ty_Int) 30.39/12.97 new_compare7(Integer(x0), Integer(x1)) 30.39/12.97 new_esEs27(x0, x1, app(ty_[], x2)) 30.39/12.97 new_esEs23(x0, x1, ty_Integer) 30.39/12.97 new_esEs26(x0, x1, ty_Ordering) 30.39/12.97 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.97 new_ltEs12(Just(x0), Just(x1), ty_Char) 30.39/12.97 new_compare8(@0, @0) 30.39/12.97 new_ltEs12(Just(x0), Just(x1), ty_Double) 30.39/12.97 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 30.39/12.97 new_esEs27(x0, x1, ty_@0) 30.39/12.97 new_primMulInt(Neg(x0), Neg(x1)) 30.39/12.97 new_compare5(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 30.39/12.97 new_compare5(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 30.39/12.97 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.39/12.97 new_ltEs4(Left(x0), Left(x1), ty_Integer, x2) 30.39/12.97 new_esEs24(x0, x1, ty_Int) 30.39/12.97 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 30.39/12.97 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 30.39/12.97 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 30.39/12.97 new_ltEs13(@2(x0, x1), @2(x2, x3), x4, x5) 30.39/12.97 new_esEs25(x0, x1, ty_Bool) 30.39/12.97 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 30.39/12.97 new_compare16(x0, x1, True, x2, x3, x4) 30.39/12.97 new_ltEs15(EQ, EQ) 30.39/12.97 new_esEs28(x0, x1, ty_Ordering) 30.39/12.97 new_lt12(x0, x1, ty_Integer) 30.39/12.97 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.39/12.97 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.97 new_esEs30(x0, x1, ty_Bool) 30.39/12.97 new_esEs24(x0, x1, ty_@0) 30.39/12.97 new_compare29(x0, x1, x2, x3, x4) 30.39/12.97 new_lt12(x0, x1, app(ty_Maybe, x2)) 30.39/12.97 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.97 new_esEs22(x0, x1, ty_Integer) 30.39/12.97 new_esEs18(x0, x1, ty_Ordering) 30.39/12.97 new_esEs30(x0, x1, ty_Char) 30.39/12.97 new_esEs20(x0, x1, ty_Integer) 30.39/12.97 new_ltEs18(x0, x1, ty_Float) 30.39/12.97 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.39/12.97 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.97 new_esEs27(x0, x1, ty_Bool) 30.39/12.97 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.97 new_compare([], [], x0) 30.39/12.97 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 30.39/12.97 new_esEs28(x0, x1, ty_Integer) 30.39/12.97 new_lt20(x0, x1, ty_Integer) 30.39/12.97 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.97 new_esEs19(x0, x1, ty_Double) 30.39/12.97 new_esEs6(Just(x0), Just(x1), ty_Float) 30.39/12.97 new_esEs16(:(x0, x1), [], x2) 30.39/12.97 new_esEs24(x0, x1, ty_Float) 30.39/12.97 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.97 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.97 new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.97 new_esEs18(x0, x1, ty_Double) 30.39/12.97 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.39/12.97 new_esEs30(x0, x1, ty_Int) 30.39/12.97 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 30.39/12.97 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 30.39/12.97 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 30.39/12.97 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.39/12.97 new_lt5(x0, x1, x2) 30.39/12.97 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 30.39/12.97 new_esEs24(x0, x1, ty_Double) 30.39/12.97 new_compare17(Char(x0), Char(x1)) 30.39/12.97 new_ltEs20(x0, x1, ty_Double) 30.39/12.97 new_ltEs18(x0, x1, app(ty_[], x2)) 30.39/12.97 new_primMulNat0(Zero, Succ(x0)) 30.39/12.97 new_ltEs15(GT, LT) 30.39/12.97 new_ltEs15(LT, GT) 30.39/12.97 new_esEs9(x0, x1) 30.39/12.97 new_ltEs12(Just(x0), Just(x1), ty_@0) 30.39/12.97 new_ltEs4(Right(x0), Right(x1), x2, ty_Char) 30.39/12.97 new_ltEs19(x0, x1, ty_Integer) 30.39/12.97 new_esEs28(x0, x1, ty_Bool) 30.39/12.97 new_ltEs18(x0, x1, ty_Int) 30.39/12.97 new_compare5(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 30.39/12.97 new_ltEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.39/12.97 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.97 new_ltEs5(x0, x1, x2) 30.39/12.97 new_esEs6(Nothing, Nothing, x0) 30.39/12.97 new_esEs6(Just(x0), Nothing, x1) 30.39/12.97 new_lt11(x0, x1, x2, x3, x4) 30.39/12.97 new_esEs6(Just(x0), Just(x1), ty_Int) 30.39/12.97 new_ltEs4(Right(x0), Right(x1), x2, ty_Int) 30.39/12.97 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 30.39/12.97 new_ltEs18(x0, x1, ty_Char) 30.39/12.97 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 30.39/12.97 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.97 new_esEs25(x0, x1, ty_Integer) 30.39/12.97 new_primCmpNat1(Zero, Succ(x0)) 30.39/12.97 new_lt12(x0, x1, ty_Bool) 30.39/12.97 new_compare10(x0, x1, True, x2) 30.39/12.97 new_primCompAux00(x0, EQ) 30.39/12.97 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 30.39/12.97 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 30.39/12.97 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 30.39/12.97 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.97 new_primCmpNat1(Succ(x0), Succ(x1)) 30.39/12.97 new_primEqNat0(Zero, Succ(x0)) 30.39/12.97 new_ltEs20(x0, x1, ty_Ordering) 30.39/12.97 new_esEs30(x0, x1, ty_Float) 30.39/12.97 new_esEs17(Double(x0, x1), Double(x2, x3)) 30.39/12.97 new_esEs29(x0, x1, ty_Integer) 30.39/12.97 new_esEs6(Just(x0), Just(x1), ty_Ordering) 30.39/12.97 new_pePe(True, x0) 30.39/12.97 new_compare28(x0, x1, True, x2, x3, x4) 30.39/12.97 new_primCmpInt(Neg(Zero), Neg(Zero)) 30.39/12.97 new_lt12(x0, x1, app(ty_Ratio, x2)) 30.39/12.97 new_ltEs4(Left(x0), Left(x1), ty_Double, x2) 30.39/12.97 new_compare19(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 30.39/12.97 new_esEs30(x0, x1, app(ty_Maybe, x2)) 30.39/12.97 new_esEs18(x0, x1, app(ty_[], x2)) 30.39/12.97 new_ltEs19(x0, x1, ty_Bool) 30.39/12.97 new_esEs12(Char(x0), Char(x1)) 30.39/12.97 new_compare24(x0, x1, True, x2) 30.39/12.97 new_compare24(Nothing, Just(x0), False, x1) 30.39/12.97 new_primCmpInt(Pos(Zero), Neg(Zero)) 30.39/12.97 new_primCmpInt(Neg(Zero), Pos(Zero)) 30.39/12.97 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.97 new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) 30.39/12.97 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 30.39/12.97 new_esEs29(x0, x1, ty_Ordering) 30.39/12.97 new_esEs23(x0, x1, ty_Bool) 30.39/12.97 new_lt12(x0, x1, ty_Char) 30.39/12.97 new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) 30.39/12.97 new_compare15(x0, x1, x2, x3) 30.39/12.97 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.97 new_esEs29(x0, x1, app(ty_Maybe, x2)) 30.39/12.97 new_lt20(x0, x1, app(ty_Maybe, x2)) 30.39/12.97 new_esEs11(False, False) 30.39/12.97 new_esEs10(LT, GT) 30.39/12.97 new_esEs10(GT, LT) 30.39/12.97 new_ltEs4(Right(x0), Right(x1), x2, ty_Float) 30.39/12.97 new_esEs23(x0, x1, ty_Float) 30.39/12.97 new_esEs20(x0, x1, ty_Float) 30.39/12.97 new_esEs26(x0, x1, app(ty_[], x2)) 30.39/12.97 new_compare11(x0, x1, False, x2, x3) 30.39/12.97 new_esEs6(Just(x0), Just(x1), ty_Char) 30.39/12.97 new_ltEs4(Left(x0), Left(x1), ty_@0, x2) 30.39/12.97 new_lt20(x0, x1, ty_@0) 30.39/12.97 new_esEs20(x0, x1, app(ty_[], x2)) 30.39/12.97 new_lt13(x0, x1, ty_@0) 30.39/12.97 new_esEs20(x0, x1, ty_Bool) 30.39/12.97 new_lt12(x0, x1, ty_Int) 30.39/12.97 new_esEs23(x0, x1, app(ty_Maybe, x2)) 30.39/12.97 new_compare31(x0, x1, app(ty_[], x2)) 30.39/12.97 new_ltEs12(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.39/12.97 new_primEqNat0(Succ(x0), Zero) 30.39/12.97 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.97 new_esEs27(x0, x1, ty_Integer) 30.39/12.97 new_lt4(x0, x1) 30.39/12.97 new_compare111(x0, x1, True) 30.39/12.97 new_lt10(x0, x1) 30.39/12.97 new_esEs18(x0, x1, ty_@0) 30.39/12.97 new_primMulNat0(Succ(x0), Succ(x1)) 30.39/12.97 new_esEs26(x0, x1, ty_Double) 30.39/12.97 new_esEs25(x0, x1, app(ty_Maybe, x2)) 30.39/12.97 new_esEs28(x0, x1, ty_Float) 30.39/12.97 new_compare31(x0, x1, ty_@0) 30.39/12.97 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.97 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 30.39/12.97 new_esEs20(x0, x1, ty_Int) 30.39/12.97 new_esEs6(Just(x0), Just(x1), ty_Bool) 30.39/12.97 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.39/12.97 new_esEs26(x0, x1, ty_@0) 30.39/12.97 new_esEs28(x0, x1, ty_Int) 30.39/12.97 new_ltEs11(False, True) 30.39/12.97 new_ltEs11(True, False) 30.39/12.97 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 30.39/12.97 new_esEs10(EQ, GT) 30.39/12.97 new_esEs10(GT, EQ) 30.39/12.97 new_esEs16([], :(x0, x1), x2) 30.39/12.97 new_lt13(x0, x1, ty_Double) 30.39/12.97 new_esEs23(x0, x1, ty_Int) 30.39/12.97 new_esEs20(x0, x1, ty_Char) 30.39/12.97 new_lt12(x0, x1, ty_Float) 30.39/12.97 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.97 new_ltEs12(Nothing, Just(x0), x1) 30.39/12.97 new_esEs26(x0, x1, app(ty_Ratio, x2)) 30.39/12.97 new_ltEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.39/12.97 new_lt13(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.97 new_esEs19(x0, x1, app(ty_[], x2)) 30.39/12.97 new_esEs27(x0, x1, ty_Float) 30.39/12.97 new_compare25(x0, x1, False, x2, x3) 30.39/12.97 new_compare12(x0, x1) 30.39/12.97 new_lt12(x0, x1, ty_Double) 30.39/12.97 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.97 new_lt20(x0, x1, app(ty_Ratio, x2)) 30.39/12.97 new_esEs29(x0, x1, ty_Char) 30.39/12.97 new_esEs16(:(x0, x1), :(x2, x3), x4) 30.39/12.97 new_primMulNat0(Zero, Zero) 30.39/12.97 new_compare31(x0, x1, app(ty_Maybe, x2)) 30.39/12.97 new_lt12(x0, x1, ty_Ordering) 30.39/12.97 new_esEs25(x0, x1, app(ty_Ratio, x2)) 30.39/12.97 new_primCompAux00(x0, LT) 30.39/12.97 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.39/12.97 new_ltEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.39/12.97 new_ltEs19(x0, x1, ty_Char) 30.39/12.97 new_esEs27(x0, x1, app(ty_Ratio, x2)) 30.39/12.97 new_sr(x0, x1) 30.39/12.97 new_primCompAux0(x0, x1, x2, x3) 30.39/12.97 new_asAs(False, x0) 30.39/12.97 new_ltEs19(x0, x1, ty_Int) 30.39/12.97 new_lt8(x0, x1, x2, x3) 30.39/12.97 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.97 new_ltEs14(x0, x1) 30.39/12.97 new_esEs28(x0, x1, app(ty_Maybe, x2)) 30.39/12.97 new_ltEs20(x0, x1, ty_Integer) 30.39/12.97 new_esEs8(Float(x0, x1), Float(x2, x3)) 30.39/12.97 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.39/12.97 new_esEs6(Just(x0), Just(x1), ty_Integer) 30.39/12.97 new_esEs29(x0, x1, ty_@0) 30.39/12.97 new_ltEs19(x0, x1, ty_Ordering) 30.39/12.97 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.39/12.97 new_ltEs4(Right(x0), Right(x1), x2, ty_Ordering) 30.39/12.97 new_ltEs19(x0, x1, ty_@0) 30.39/12.97 new_esEs22(x0, x1, ty_Int) 30.39/12.97 new_ltEs20(x0, x1, ty_@0) 30.39/12.97 new_ltEs12(Just(x0), Just(x1), ty_Integer) 30.39/12.97 new_esEs18(x0, x1, ty_Bool) 30.39/12.97 new_esEs21(x0, x1, ty_Int) 30.39/12.97 new_ltEs12(Just(x0), Just(x1), ty_Float) 30.39/12.97 new_esEs6(Just(x0), Just(x1), ty_@0) 30.39/12.97 new_esEs10(LT, LT) 30.39/12.97 new_esEs28(x0, x1, app(ty_Ratio, x2)) 30.39/12.97 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.39/12.97 new_esEs30(x0, x1, ty_Double) 30.39/12.97 new_not(True) 30.39/12.97 new_esEs29(x0, x1, ty_Bool) 30.39/12.97 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.97 new_compare210(x0, x1, False) 30.39/12.97 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 30.39/12.97 new_lt15(x0, x1) 30.39/12.97 new_pePe(False, x0) 30.39/12.97 new_esEs29(x0, x1, ty_Double) 30.39/12.97 new_esEs11(True, True) 30.39/12.97 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.97 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.97 new_ltEs10(x0, x1, x2) 30.39/12.97 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 30.39/12.97 new_compare31(x0, x1, app(ty_Ratio, x2)) 30.39/12.97 new_ltEs4(Right(x0), Right(x1), x2, ty_Double) 30.39/12.97 new_primCmpNat0(Zero, x0) 30.39/12.97 new_esEs15(Integer(x0), Integer(x1)) 30.39/12.97 new_lt12(x0, x1, app(ty_[], x2)) 30.39/12.97 new_esEs27(x0, x1, app(ty_Maybe, x2)) 30.39/12.97 new_ltEs15(GT, EQ) 30.39/12.97 new_ltEs15(EQ, GT) 30.39/12.97 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.97 new_primCmpNat2(x0, Zero) 30.39/12.97 new_compare19(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 30.39/12.97 new_esEs11(False, True) 30.39/12.97 new_esEs11(True, False) 30.39/12.97 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.39/12.97 new_esEs29(x0, x1, ty_Int) 30.39/12.97 new_esEs26(x0, x1, ty_Integer) 30.39/12.97 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.97 new_ltEs20(x0, x1, ty_Char) 30.39/12.97 new_lt13(x0, x1, ty_Ordering) 30.39/12.97 new_lt17(x0, x1) 30.39/12.97 new_lt13(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.97 new_ltEs12(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.39/12.97 new_esEs23(x0, x1, app(ty_Ratio, x2)) 30.39/12.97 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 30.39/12.97 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.97 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.97 new_ltEs12(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.39/12.97 new_ltEs12(Just(x0), Just(x1), ty_Bool) 30.39/12.97 new_primEqNat0(Succ(x0), Succ(x1)) 30.39/12.97 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.97 new_esEs18(x0, x1, ty_Integer) 30.39/12.97 new_esEs20(x0, x1, ty_Ordering) 30.39/12.97 new_ltEs20(x0, x1, ty_Bool) 30.39/12.97 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.97 new_primPlusNat1(Succ(x0), Zero) 30.39/12.97 new_ltEs4(Left(x0), Right(x1), x2, x3) 30.39/12.97 new_ltEs4(Right(x0), Left(x1), x2, x3) 30.39/12.97 new_esEs29(x0, x1, app(ty_[], x2)) 30.39/12.97 new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.97 new_primMulNat0(Succ(x0), Zero) 30.39/12.97 new_compare18(x0, x1, x2, x3) 30.39/12.97 new_primCmpInt(Pos(Zero), Pos(Zero)) 30.39/12.97 new_compare31(x0, x1, ty_Integer) 30.39/12.97 new_lt12(x0, x1, ty_@0) 30.39/12.97 new_esEs19(x0, x1, ty_Ordering) 30.39/12.97 new_esEs10(GT, GT) 30.39/12.97 new_esEs20(x0, x1, app(ty_Maybe, x2)) 30.39/12.97 new_lt16(x0, x1, x2, x3) 30.39/12.97 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 30.39/12.97 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 30.39/12.97 new_compare25(x0, x1, True, x2, x3) 30.39/12.97 new_primMulInt(Pos(x0), Pos(x1)) 30.39/12.97 new_compare16(x0, x1, False, x2, x3, x4) 30.39/12.97 new_esEs14(@0, @0) 30.39/12.97 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 30.39/12.97 new_primPlusNat1(Zero, Succ(x0)) 30.39/12.97 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.39/12.97 new_esEs30(x0, x1, app(ty_Ratio, x2)) 30.39/12.97 new_primPlusNat0(x0, x1) 30.39/12.97 new_ltEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.39/12.97 new_esEs10(LT, EQ) 30.39/12.97 new_esEs10(EQ, LT) 30.39/12.97 new_compare24(Just(x0), Nothing, False, x1) 30.39/12.97 new_compare26(x0, x1, False) 30.39/12.97 new_esEs18(x0, x1, app(ty_Maybe, x2)) 30.39/12.97 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 30.39/12.97 new_esEs18(x0, x1, ty_Int) 30.39/12.97 new_primMulInt(Pos(x0), Neg(x1)) 30.39/12.97 new_primMulInt(Neg(x0), Pos(x1)) 30.39/12.97 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 30.39/12.97 new_esEs19(x0, x1, ty_Float) 30.39/12.97 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.97 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.39/12.97 new_esEs5(Left(x0), Right(x1), x2, x3) 30.39/12.97 new_esEs5(Right(x0), Left(x1), x2, x3) 30.39/12.97 new_esEs29(x0, x1, app(ty_Ratio, x2)) 30.39/12.97 new_lt13(x0, x1, app(ty_Ratio, x2)) 30.39/12.98 new_esEs6(Just(x0), Just(x1), ty_Double) 30.39/12.98 new_compare110(x0, x1, True, x2, x3) 30.39/12.98 new_ltEs18(x0, x1, ty_Ordering) 30.39/12.98 new_compare6(x0, x1) 30.39/12.98 new_ltEs20(x0, x1, app(ty_[], x2)) 30.39/12.98 new_esEs26(x0, x1, ty_Bool) 30.39/12.98 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 30.39/12.98 new_lt20(x0, x1, ty_Bool) 30.39/12.98 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 30.39/12.98 new_ltEs15(EQ, LT) 30.39/12.98 new_ltEs15(LT, EQ) 30.39/12.98 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.98 new_ltEs20(x0, x1, ty_Float) 30.39/12.98 new_compare11(x0, x1, True, x2, x3) 30.39/12.98 new_esEs30(x0, x1, app(ty_[], x2)) 30.39/12.98 new_esEs30(x0, x1, ty_Ordering) 30.39/12.98 new_esEs19(x0, x1, ty_Char) 30.39/12.98 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.98 new_ltEs15(GT, GT) 30.39/12.98 new_compare5(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 30.39/12.98 new_ltEs20(x0, x1, ty_Int) 30.39/12.98 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.98 new_compare31(x0, x1, ty_Bool) 30.39/12.98 new_esEs16([], [], x0) 30.39/12.98 new_esEs29(x0, x1, ty_Float) 30.39/12.98 new_ltEs4(Right(x0), Right(x1), x2, ty_@0) 30.39/12.98 new_fsEs(x0) 30.39/12.98 new_lt9(x0, x1) 30.39/12.98 new_ltEs11(False, False) 30.39/12.98 new_esEs19(x0, x1, ty_Int) 30.39/12.98 new_ltEs18(x0, x1, ty_Double) 30.39/12.98 new_compare111(x0, x1, False) 30.39/12.98 new_lt13(x0, x1, ty_Bool) 30.39/12.98 new_esEs26(x0, x1, app(ty_Maybe, x2)) 30.39/12.98 new_esEs26(x0, x1, ty_Int) 30.39/12.98 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.98 new_primEqNat0(Zero, Zero) 30.39/12.98 new_compare24(Just(x0), Just(x1), False, x2) 30.39/12.98 new_ltEs4(Left(x0), Left(x1), ty_Float, x2) 30.39/12.98 new_compare19(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 30.39/12.98 new_compare19(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 30.39/12.98 new_lt13(x0, x1, ty_Float) 30.39/12.98 new_esEs25(x0, x1, ty_Float) 30.39/12.98 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.39/12.98 new_esEs20(x0, x1, ty_@0) 30.39/12.98 new_ltEs19(x0, x1, app(ty_[], x2)) 30.39/12.98 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.98 new_not(False) 30.39/12.98 new_esEs24(x0, x1, ty_Integer) 30.39/12.98 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 30.39/12.98 new_lt7(x0, x1) 30.39/12.98 new_esEs23(x0, x1, ty_Double) 30.39/12.98 new_compare31(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.98 new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.39/12.98 new_esEs18(x0, x1, ty_Char) 30.39/12.98 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 30.39/12.98 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.98 new_ltEs19(x0, x1, ty_Double) 30.39/12.98 new_esEs13(:%(x0, x1), :%(x2, x3), x4) 30.39/12.98 new_compare14(x0, x1, False) 30.39/12.98 new_ltEs8(x0, x1) 30.39/12.98 new_esEs28(x0, x1, ty_Double) 30.39/12.98 new_esEs19(x0, x1, ty_Integer) 30.39/12.98 new_esEs21(x0, x1, ty_Integer) 30.39/12.98 new_ltEs15(LT, LT) 30.39/12.98 new_ltEs12(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.39/12.98 new_esEs26(x0, x1, ty_Float) 30.39/12.98 new_esEs25(x0, x1, app(ty_[], x2)) 30.39/12.98 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.98 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.98 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.39/12.98 new_lt13(x0, x1, ty_Int) 30.39/12.98 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.98 new_compare(:(x0, x1), :(x2, x3), x4) 30.39/12.98 new_lt6(x0, x1, x2) 30.39/12.98 new_esEs26(x0, x1, ty_Char) 30.39/12.98 new_lt20(x0, x1, ty_Float) 30.39/12.98 new_lt19(x0, x1) 30.39/12.98 new_asAs(True, x0) 30.39/12.98 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.98 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.39/12.98 new_lt13(x0, x1, ty_Char) 30.39/12.98 new_esEs23(x0, x1, ty_@0) 30.39/12.98 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.98 new_ltEs16(x0, x1) 30.39/12.98 new_compare31(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.98 new_esEs20(x0, x1, ty_Double) 30.39/12.98 new_esEs18(x0, x1, ty_Float) 30.39/12.98 new_esEs28(x0, x1, ty_@0) 30.39/12.98 new_compare10(x0, x1, False, x2) 30.39/12.98 new_esEs24(x0, x1, app(ty_[], x2)) 30.39/12.98 new_compare31(x0, x1, ty_Float) 30.39/12.98 new_esEs24(x0, x1, ty_Ordering) 30.39/12.98 30.39/12.98 We have to consider all minimal (P,Q,R)-chains. 30.39/12.98 ---------------------------------------- 30.39/12.98 30.39/12.98 (29) DependencyGraphProof (EQUIVALENT) 30.39/12.98 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 1 SCC with 1 less node. 30.39/12.98 ---------------------------------------- 30.39/12.98 30.39/12.98 (30) 30.39/12.98 Obligation: 30.39/12.98 Q DP problem: 30.39/12.98 The TRS P consists of the following rules: 30.39/12.98 30.39/12.98 new_addToFM_C(Branch(Just(xuu300), xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C21(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs10(new_compare24(Just(xuu4000), Just(xuu300), new_esEs29(xuu4000, xuu300, h), h), LT), h, ba) 30.39/12.98 new_addToFM_C21(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, False, bb, bc) -> new_addToFM_C12(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, new_esEs10(new_compare24(Just(xuu19), Just(xuu14), new_esEs30(xuu19, xuu14, bb), bb), GT), bb, bc) 30.39/12.98 new_addToFM_C12(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, bb, bc) -> new_addToFM_C(xuu18, Just(xuu19), xuu20, bb, bc) 30.39/12.98 new_addToFM_C(Branch(Nothing, xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs10(GT, LT), h, ba) 30.39/12.98 new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba) -> new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs10(new_compare24(Just(xuu4000), Nothing, False, h), GT), h, ba) 30.39/12.98 new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba) -> new_addToFM_C(xuu34, Just(xuu4000), xuu401, h, ba) 30.39/12.98 new_addToFM_C21(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, bb, bc) -> new_addToFM_C(xuu17, Just(xuu19), xuu20, bb, bc) 30.39/12.98 30.39/12.98 The TRS R consists of the following rules: 30.39/12.98 30.39/12.98 new_ltEs18(xuu3000, xuu3100, ty_Integer) -> new_ltEs17(xuu3000, xuu3100) 30.39/12.98 new_compare28(xuu30000, xuu31000, False, bgd, bge, bgf) -> new_compare16(xuu30000, xuu31000, new_ltEs6(xuu30000, xuu31000, bgd, bge, bgf), bgd, bge, bgf) 30.39/12.98 new_lt7(xuu30000, xuu31000) -> new_esEs10(new_compare17(xuu30000, xuu31000), LT) 30.39/12.98 new_esEs23(xuu30000, xuu31000, ty_Bool) -> new_esEs11(xuu30000, xuu31000) 30.39/12.98 new_esEs27(xuu40001, xuu3001, app(ty_Ratio, dcd)) -> new_esEs13(xuu40001, xuu3001, dcd) 30.39/12.98 new_primCmpInt(Neg(Succ(xuu3000)), Pos(xuu310)) -> LT 30.39/12.98 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 30.39/12.98 new_esEs27(xuu40001, xuu3001, ty_Int) -> new_esEs9(xuu40001, xuu3001) 30.39/12.98 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(ty_Ratio, hh)) -> new_esEs13(xuu40000, xuu3000, hh) 30.39/12.98 new_esEs23(xuu30000, xuu31000, app(ty_Maybe, baf)) -> new_esEs6(xuu30000, xuu31000, baf) 30.39/12.98 new_pePe(True, xuu167) -> True 30.39/12.98 new_ltEs19(xuu30002, xuu31002, app(app(app(ty_@3, cad), cae), caf)) -> new_ltEs6(xuu30002, xuu31002, cad, cae, caf) 30.39/12.98 new_ltEs20(xuu30001, xuu31001, ty_Ordering) -> new_ltEs15(xuu30001, xuu31001) 30.39/12.98 new_primCmpInt(Pos(Zero), Pos(Succ(xuu3100))) -> new_primCmpNat0(Zero, xuu3100) 30.39/12.98 new_ltEs6(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), ee, ef, eg) -> new_pePe(new_lt13(xuu30000, xuu31000, ee), new_asAs(new_esEs23(xuu30000, xuu31000, ee), new_pePe(new_lt12(xuu30001, xuu31001, ef), new_asAs(new_esEs24(xuu30001, xuu31001, ef), new_ltEs19(xuu30002, xuu31002, eg))))) 30.39/12.98 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(ty_[], bab)) -> new_esEs16(xuu40000, xuu3000, bab) 30.39/12.98 new_esEs5(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, fh), ga), gb), fg) -> new_esEs4(xuu40000, xuu3000, fh, ga, gb) 30.39/12.98 new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_Ratio, ge), fg) -> new_esEs13(xuu40000, xuu3000, ge) 30.39/12.98 new_esEs29(xuu4000, xuu300, ty_Char) -> new_esEs12(xuu4000, xuu300) 30.39/12.98 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Double) -> new_ltEs14(xuu30000, xuu31000) 30.39/12.98 new_lt20(xuu30000, xuu31000, ty_Bool) -> new_lt15(xuu30000, xuu31000) 30.39/12.98 new_compare(:(xuu30000, xuu30001), [], ed) -> GT 30.39/12.98 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 30.39/12.98 new_esEs27(xuu40001, xuu3001, app(ty_[], dcf)) -> new_esEs16(xuu40001, xuu3001, dcf) 30.39/12.98 new_esEs27(xuu40001, xuu3001, app(app(ty_Either, dcb), dcc)) -> new_esEs5(xuu40001, xuu3001, dcb, dcc) 30.39/12.98 new_primCmpInt(Pos(Zero), Neg(Succ(xuu3100))) -> GT 30.39/12.98 new_compare(:(xuu30000, xuu30001), :(xuu31000, xuu31001), ed) -> new_primCompAux0(xuu30000, xuu31000, new_compare(xuu30001, xuu31001, ed), ed) 30.39/12.98 new_esEs9(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) 30.39/12.98 new_esEs22(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) 30.39/12.98 new_esEs18(xuu40000, xuu3000, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs4(xuu40000, xuu3000, bbb, bbc, bbd) 30.39/12.98 new_ltEs19(xuu30002, xuu31002, app(ty_[], cac)) -> new_ltEs5(xuu30002, xuu31002, cac) 30.39/12.98 new_lt12(xuu30001, xuu31001, ty_Char) -> new_lt7(xuu30001, xuu31001) 30.39/12.98 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Char) -> new_ltEs9(xuu30000, xuu31000) 30.39/12.98 new_esEs26(xuu40000, xuu3000, app(app(ty_@2, dac), dad)) -> new_esEs7(xuu40000, xuu3000, dac, dad) 30.39/12.98 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Int) -> new_ltEs7(xuu30000, xuu31000) 30.39/12.98 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.39/12.98 new_lt13(xuu30000, xuu31000, app(ty_Ratio, bae)) -> new_lt5(xuu30000, xuu31000, bae) 30.39/12.98 new_esEs6(Just(xuu40000), Just(xuu3000), app(app(ty_Either, cfb), cfc)) -> new_esEs5(xuu40000, xuu3000, cfb, cfc) 30.39/12.98 new_ltEs15(EQ, LT) -> False 30.39/12.98 new_compare17(Char(xuu30000), Char(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) 30.39/12.98 new_ltEs8(xuu3000, xuu3100) -> new_fsEs(new_compare8(xuu3000, xuu3100)) 30.39/12.98 new_esEs28(xuu40002, xuu3002, app(app(app(ty_@3, dda), ddb), ddc)) -> new_esEs4(xuu40002, xuu3002, dda, ddb, ddc) 30.39/12.98 new_primCmpNat1(Succ(xuu30000), Succ(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) 30.39/12.98 new_esEs23(xuu30000, xuu31000, app(app(ty_Either, bac), bad)) -> new_esEs5(xuu30000, xuu31000, bac, bad) 30.39/12.98 new_ltEs19(xuu30002, xuu31002, ty_Ordering) -> new_ltEs15(xuu30002, xuu31002) 30.39/12.98 new_compare26(xuu30000, xuu31000, True) -> EQ 30.39/12.98 new_compare24(Nothing, Just(xuu3100), False, ec) -> LT 30.39/12.98 new_esEs18(xuu40000, xuu3000, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.39/12.98 new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False 30.39/12.98 new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False 30.39/12.98 new_ltEs4(Left(xuu30000), Left(xuu31000), app(app(ty_@2, ce), cf), be) -> new_ltEs13(xuu30000, xuu31000, ce, cf) 30.39/12.98 new_ltEs15(GT, LT) -> False 30.39/12.98 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.39/12.98 new_esEs24(xuu30001, xuu31001, ty_Double) -> new_esEs17(xuu30001, xuu31001) 30.39/12.98 new_compare25(xuu30000, xuu31000, False, bac, bad) -> new_compare11(xuu30000, xuu31000, new_ltEs4(xuu30000, xuu31000, bac, bad), bac, bad) 30.39/12.98 new_ltEs12(Just(xuu30000), Just(xuu31000), app(app(ty_Either, cdg), cdh)) -> new_ltEs4(xuu30000, xuu31000, cdg, cdh) 30.39/12.98 new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_Maybe, gf), fg) -> new_esEs6(xuu40000, xuu3000, gf) 30.39/12.98 new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.39/12.98 new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) 30.39/12.98 new_esEs30(xuu19, xuu14, ty_Char) -> new_esEs12(xuu19, xuu14) 30.39/12.98 new_esEs27(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) 30.39/12.98 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Char, fg) -> new_esEs12(xuu40000, xuu3000) 30.39/12.98 new_esEs10(GT, GT) -> True 30.39/12.98 new_ltEs4(Left(xuu30000), Left(xuu31000), app(ty_Maybe, cd), be) -> new_ltEs12(xuu30000, xuu31000, cd) 30.39/12.98 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.39/12.98 new_not(True) -> False 30.39/12.98 new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_[], gg), fg) -> new_esEs16(xuu40000, xuu3000, gg) 30.39/12.98 new_lt13(xuu30000, xuu31000, app(app(app(ty_@3, bgd), bge), bgf)) -> new_lt11(xuu30000, xuu31000, bgd, bge, bgf) 30.39/12.98 new_esEs28(xuu40002, xuu3002, ty_Bool) -> new_esEs11(xuu40002, xuu3002) 30.39/12.98 new_ltEs5(xuu3000, xuu3100, ed) -> new_fsEs(new_compare(xuu3000, xuu3100, ed)) 30.39/12.98 new_primCompAux00(xuu182, LT) -> LT 30.39/12.98 new_lt12(xuu30001, xuu31001, ty_Double) -> new_lt17(xuu30001, xuu31001) 30.39/12.98 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Float) -> new_ltEs16(xuu30000, xuu31000) 30.39/12.98 new_ltEs20(xuu30001, xuu31001, ty_Integer) -> new_ltEs17(xuu30001, xuu31001) 30.39/12.98 new_esEs25(xuu30000, xuu31000, ty_Ordering) -> new_esEs10(xuu30000, xuu31000) 30.39/12.98 new_esEs23(xuu30000, xuu31000, app(ty_Ratio, bae)) -> new_esEs13(xuu30000, xuu31000, bae) 30.39/12.98 new_esEs27(xuu40001, xuu3001, ty_Bool) -> new_esEs11(xuu40001, xuu3001) 30.39/12.98 new_esEs26(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.39/12.98 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.39/12.98 new_lt12(xuu30001, xuu31001, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_lt11(xuu30001, xuu31001, bhb, bhc, bhd) 30.39/12.98 new_esEs30(xuu19, xuu14, ty_Double) -> new_esEs17(xuu19, xuu14) 30.39/12.98 new_lt13(xuu30000, xuu31000, app(ty_Maybe, baf)) -> new_lt6(xuu30000, xuu31000, baf) 30.39/12.98 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.39/12.98 new_esEs19(xuu40000, xuu3000, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.39/12.98 new_esEs25(xuu30000, xuu31000, ty_Float) -> new_esEs8(xuu30000, xuu31000) 30.39/12.98 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Double, fg) -> new_esEs17(xuu40000, xuu3000) 30.39/12.98 new_lt19(xuu30000, xuu31000) -> new_esEs10(new_compare7(xuu30000, xuu31000), LT) 30.39/12.98 new_compare31(xuu30000, xuu31000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_compare29(xuu30000, xuu31000, cbf, cbg, cbh) 30.39/12.98 new_ltEs20(xuu30001, xuu31001, app(app(app(ty_@3, chb), chc), chd)) -> new_ltEs6(xuu30001, xuu31001, chb, chc, chd) 30.39/12.98 new_esEs5(Left(xuu40000), Left(xuu3000), app(app(ty_@2, fd), ff), fg) -> new_esEs7(xuu40000, xuu3000, fd, ff) 30.39/12.98 new_primEqNat0(Succ(xuu400000), Zero) -> False 30.39/12.98 new_primEqNat0(Zero, Succ(xuu30000)) -> False 30.39/12.98 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.39/12.98 new_esEs19(xuu40000, xuu3000, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.39/12.98 new_esEs14(@0, @0) -> True 30.39/12.98 new_lt12(xuu30001, xuu31001, app(app(ty_@2, caa), cab)) -> new_lt16(xuu30001, xuu31001, caa, cab) 30.39/12.98 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Bool, be) -> new_ltEs11(xuu30000, xuu31000) 30.39/12.98 new_esEs26(xuu40000, xuu3000, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.39/12.98 new_lt11(xuu30000, xuu31000, bgd, bge, bgf) -> new_esEs10(new_compare29(xuu30000, xuu31000, bgd, bge, bgf), LT) 30.39/12.98 new_esEs23(xuu30000, xuu31000, ty_Int) -> new_esEs9(xuu30000, xuu31000) 30.39/12.98 new_ltEs15(GT, EQ) -> False 30.39/12.98 new_lt20(xuu30000, xuu31000, app(ty_[], cfg)) -> new_lt14(xuu30000, xuu31000, cfg) 30.39/12.98 new_esEs26(xuu40000, xuu3000, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.39/12.98 new_lt20(xuu30000, xuu31000, ty_Integer) -> new_lt19(xuu30000, xuu31000) 30.39/12.98 new_primCompAux00(xuu182, GT) -> GT 30.39/12.98 new_primCmpInt(Neg(Zero), Neg(Succ(xuu3100))) -> new_primCmpNat2(xuu3100, Zero) 30.39/12.98 new_esEs10(EQ, EQ) -> True 30.39/12.98 new_esEs29(xuu4000, xuu300, ty_Double) -> new_esEs17(xuu4000, xuu300) 30.39/12.98 new_esEs6(Just(xuu40000), Just(xuu3000), app(ty_Ratio, cfd)) -> new_esEs13(xuu40000, xuu3000, cfd) 30.39/12.98 new_lt16(xuu30000, xuu31000, bgb, bgc) -> new_esEs10(new_compare15(xuu30000, xuu31000, bgb, bgc), LT) 30.39/12.98 new_esEs17(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs9(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) 30.39/12.98 new_esEs24(xuu30001, xuu31001, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_esEs4(xuu30001, xuu31001, bhb, bhc, bhd) 30.39/12.98 new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.39/12.98 new_esEs23(xuu30000, xuu31000, app(app(app(ty_@3, bgd), bge), bgf)) -> new_esEs4(xuu30000, xuu31000, bgd, bge, bgf) 30.39/12.98 new_esEs30(xuu19, xuu14, app(app(app(ty_@3, bcd), bce), bcf)) -> new_esEs4(xuu19, xuu14, bcd, bce, bcf) 30.39/12.98 new_compare14(xuu30000, xuu31000, True) -> LT 30.39/12.98 new_primCmpInt(Pos(Succ(xuu3000)), Neg(xuu310)) -> GT 30.39/12.98 new_lt13(xuu30000, xuu31000, ty_Integer) -> new_lt19(xuu30000, xuu31000) 30.39/12.98 new_ltEs18(xuu3000, xuu3100, ty_Bool) -> new_ltEs11(xuu3000, xuu3100) 30.39/12.98 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_@0) -> new_ltEs8(xuu30000, xuu31000) 30.39/12.98 new_esEs28(xuu40002, xuu3002, ty_Double) -> new_esEs17(xuu40002, xuu3002) 30.39/12.98 new_lt13(xuu30000, xuu31000, ty_Char) -> new_lt7(xuu30000, xuu31000) 30.39/12.98 new_compare110(xuu30000, xuu31000, True, bgb, bgc) -> LT 30.39/12.98 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(ty_Ratio, dg)) -> new_ltEs10(xuu30000, xuu31000, dg) 30.39/12.98 new_esEs23(xuu30000, xuu31000, ty_Double) -> new_esEs17(xuu30000, xuu31000) 30.39/12.98 new_lt20(xuu30000, xuu31000, app(app(ty_Either, cgc), cgd)) -> new_lt8(xuu30000, xuu31000, cgc, cgd) 30.39/12.98 new_lt13(xuu30000, xuu31000, ty_Double) -> new_lt17(xuu30000, xuu31000) 30.39/12.98 new_primPlusNat1(Succ(xuu25200), Succ(xuu9400)) -> Succ(Succ(new_primPlusNat1(xuu25200, xuu9400))) 30.39/12.98 new_primCompAux0(xuu30000, xuu31000, xuu168, ed) -> new_primCompAux00(xuu168, new_compare31(xuu30000, xuu31000, ed)) 30.39/12.98 new_esEs26(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.39/12.98 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Integer, be) -> new_ltEs17(xuu30000, xuu31000) 30.39/12.98 new_esEs10(LT, EQ) -> False 30.39/12.98 new_esEs10(EQ, LT) -> False 30.39/12.98 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.39/12.98 new_esEs20(xuu40001, xuu3001, ty_Ordering) -> new_esEs10(xuu40001, xuu3001) 30.39/12.98 new_esEs29(xuu4000, xuu300, app(app(app(ty_@3, ccg), cch), cda)) -> new_esEs4(xuu4000, xuu300, ccg, cch, cda) 30.39/12.98 new_compare13(xuu30000, xuu31000, baf) -> new_compare24(xuu30000, xuu31000, new_esEs6(xuu30000, xuu31000, baf), baf) 30.39/12.98 new_primCmpNat0(Succ(xuu3100), xuu3000) -> new_primCmpNat1(xuu3100, xuu3000) 30.39/12.98 new_compare210(xuu30000, xuu31000, True) -> EQ 30.39/12.98 new_esEs20(xuu40001, xuu3001, ty_Float) -> new_esEs8(xuu40001, xuu3001) 30.39/12.98 new_esEs28(xuu40002, xuu3002, ty_Char) -> new_esEs12(xuu40002, xuu3002) 30.39/12.98 new_lt9(xuu300, xuu310) -> new_esEs10(new_compare6(xuu300, xuu310), LT) 30.39/12.98 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Bool) -> new_ltEs11(xuu30000, xuu31000) 30.39/12.98 new_esEs28(xuu40002, xuu3002, app(ty_[], ddh)) -> new_esEs16(xuu40002, xuu3002, ddh) 30.39/12.98 new_esEs27(xuu40001, xuu3001, app(app(ty_@2, dbe), dbf)) -> new_esEs7(xuu40001, xuu3001, dbe, dbf) 30.39/12.98 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Char) -> new_ltEs9(xuu30000, xuu31000) 30.39/12.98 new_ltEs18(xuu3000, xuu3100, app(ty_Maybe, fa)) -> new_ltEs12(xuu3000, xuu3100, fa) 30.39/12.98 new_esEs19(xuu40000, xuu3000, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs4(xuu40000, xuu3000, bdh, bea, beb) 30.39/12.98 new_pePe(False, xuu167) -> xuu167 30.39/12.98 new_esEs27(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) 30.39/12.98 new_ltEs4(Left(xuu30000), Left(xuu31000), app(ty_Ratio, cc), be) -> new_ltEs10(xuu30000, xuu31000, cc) 30.39/12.98 new_ltEs18(xuu3000, xuu3100, app(app(app(ty_@3, ee), ef), eg)) -> new_ltEs6(xuu3000, xuu3100, ee, ef, eg) 30.39/12.98 new_esEs11(False, True) -> False 30.39/12.98 new_esEs11(True, False) -> False 30.39/12.98 new_compare25(xuu30000, xuu31000, True, bac, bad) -> EQ 30.39/12.98 new_ltEs4(Left(xuu30000), Left(xuu31000), app(app(app(ty_@3, bf), bg), bh), be) -> new_ltEs6(xuu30000, xuu31000, bf, bg, bh) 30.39/12.98 new_lt12(xuu30001, xuu31001, ty_Int) -> new_lt9(xuu30001, xuu31001) 30.39/12.98 new_compare26(xuu30000, xuu31000, False) -> new_compare111(xuu30000, xuu31000, new_ltEs11(xuu30000, xuu31000)) 30.39/12.98 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Double) -> new_ltEs14(xuu30000, xuu31000) 30.39/12.98 new_ltEs19(xuu30002, xuu31002, ty_Integer) -> new_ltEs17(xuu30002, xuu31002) 30.39/12.98 new_compare31(xuu30000, xuu31000, ty_Float) -> new_compare19(xuu30000, xuu31000) 30.39/12.98 new_lt6(xuu30000, xuu31000, baf) -> new_esEs10(new_compare13(xuu30000, xuu31000, baf), LT) 30.39/12.98 new_compare7(Integer(xuu30000), Integer(xuu31000)) -> new_primCmpInt(xuu30000, xuu31000) 30.39/12.98 new_compare10(xuu134, xuu135, False, dea) -> GT 30.39/12.98 new_compare11(xuu30000, xuu31000, False, bac, bad) -> GT 30.39/12.98 new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False 30.39/12.98 new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False 30.39/12.98 new_compare24(xuu300, xuu310, True, ec) -> EQ 30.39/12.98 new_esEs19(xuu40000, xuu3000, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.39/12.98 new_esEs19(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.39/12.98 new_compare24(Just(xuu3000), Just(xuu3100), False, ec) -> new_compare10(xuu3000, xuu3100, new_ltEs18(xuu3000, xuu3100, ec), ec) 30.39/12.98 new_esEs18(xuu40000, xuu3000, app(ty_Ratio, bbg)) -> new_esEs13(xuu40000, xuu3000, bbg) 30.39/12.98 new_compare31(xuu30000, xuu31000, ty_Int) -> new_compare6(xuu30000, xuu31000) 30.39/12.98 new_ltEs20(xuu30001, xuu31001, app(ty_Ratio, chg)) -> new_ltEs10(xuu30001, xuu31001, chg) 30.39/12.98 new_esEs6(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, ceg), ceh), cfa)) -> new_esEs4(xuu40000, xuu3000, ceg, ceh, cfa) 30.39/12.98 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.39/12.98 new_esEs26(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.39/12.98 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(app(ty_@2, ha), hb)) -> new_esEs7(xuu40000, xuu3000, ha, hb) 30.39/12.98 new_ltEs18(xuu3000, xuu3100, ty_Double) -> new_ltEs14(xuu3000, xuu3100) 30.39/12.98 new_esEs26(xuu40000, xuu3000, app(ty_[], dbd)) -> new_esEs16(xuu40000, xuu3000, dbd) 30.39/12.98 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Ordering, fg) -> new_esEs10(xuu40000, xuu3000) 30.39/12.98 new_esEs24(xuu30001, xuu31001, app(app(ty_Either, bhe), bhf)) -> new_esEs5(xuu30001, xuu31001, bhe, bhf) 30.39/12.98 new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) 30.39/12.98 new_primCmpInt(Neg(Zero), Pos(Succ(xuu3100))) -> LT 30.39/12.98 new_compare9(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Integer) -> new_compare7(new_sr0(xuu30000, xuu31001), new_sr0(xuu31000, xuu30001)) 30.39/12.98 new_compare19(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.39/12.98 new_primMulInt(Pos(xuu400000), Pos(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) 30.39/12.98 new_esEs29(xuu4000, xuu300, ty_Float) -> new_esEs8(xuu4000, xuu300) 30.39/12.98 new_esEs18(xuu40000, xuu3000, app(ty_[], bca)) -> new_esEs16(xuu40000, xuu3000, bca) 30.39/12.98 new_ltEs19(xuu30002, xuu31002, app(ty_Ratio, cba)) -> new_ltEs10(xuu30002, xuu31002, cba) 30.39/12.98 new_esEs24(xuu30001, xuu31001, ty_Ordering) -> new_esEs10(xuu30001, xuu31001) 30.39/12.98 new_ltEs14(xuu3000, xuu3100) -> new_fsEs(new_compare5(xuu3000, xuu3100)) 30.39/12.98 new_compare10(xuu134, xuu135, True, dea) -> LT 30.39/12.98 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(app(app(ty_@3, hc), hd), he)) -> new_esEs4(xuu40000, xuu3000, hc, hd, he) 30.39/12.98 new_esEs24(xuu30001, xuu31001, app(ty_Maybe, bhh)) -> new_esEs6(xuu30001, xuu31001, bhh) 30.39/12.98 new_primMulNat0(Succ(xuu4000000), Zero) -> Zero 30.39/12.98 new_primMulNat0(Zero, Succ(xuu300100)) -> Zero 30.39/12.98 new_ltEs11(False, False) -> True 30.39/12.98 new_compare31(xuu30000, xuu31000, ty_Bool) -> new_compare12(xuu30000, xuu31000) 30.39/12.98 new_esEs7(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bdd, bde) -> new_asAs(new_esEs19(xuu40000, xuu3000, bdd), new_esEs20(xuu40001, xuu3001, bde)) 30.39/12.98 new_esEs24(xuu30001, xuu31001, ty_Char) -> new_esEs12(xuu30001, xuu31001) 30.39/12.98 new_lt13(xuu30000, xuu31000, ty_Bool) -> new_lt15(xuu30000, xuu31000) 30.39/12.98 new_esEs30(xuu19, xuu14, ty_Float) -> new_esEs8(xuu19, xuu14) 30.39/12.98 new_compare9(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Int) -> new_compare6(new_sr(xuu30000, xuu31001), new_sr(xuu31000, xuu30001)) 30.39/12.98 new_esEs18(xuu40000, xuu3000, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.39/12.98 new_compare27(xuu30000, xuu31000, False, bgb, bgc) -> new_compare110(xuu30000, xuu31000, new_ltEs13(xuu30000, xuu31000, bgb, bgc), bgb, bgc) 30.39/12.98 new_ltEs17(xuu3000, xuu3100) -> new_fsEs(new_compare7(xuu3000, xuu3100)) 30.39/12.98 new_ltEs18(xuu3000, xuu3100, ty_@0) -> new_ltEs8(xuu3000, xuu3100) 30.39/12.98 new_lt20(xuu30000, xuu31000, app(app(app(ty_@3, cfh), cga), cgb)) -> new_lt11(xuu30000, xuu31000, cfh, cga, cgb) 30.39/12.98 new_compare24(Just(xuu3000), Nothing, False, ec) -> GT 30.39/12.98 new_esEs5(Left(xuu40000), Left(xuu3000), app(app(ty_Either, gc), gd), fg) -> new_esEs5(xuu40000, xuu3000, gc, gd) 30.39/12.98 new_compare19(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.39/12.98 new_primCmpNat0(Zero, xuu3000) -> LT 30.39/12.98 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(ty_Maybe, baa)) -> new_esEs6(xuu40000, xuu3000, baa) 30.39/12.98 new_esEs18(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.39/12.98 new_esEs22(xuu40001, xuu3001, ty_Int) -> new_esEs9(xuu40001, xuu3001) 30.39/12.98 new_lt8(xuu30000, xuu31000, bac, bad) -> new_esEs10(new_compare18(xuu30000, xuu31000, bac, bad), LT) 30.39/12.98 new_lt15(xuu30000, xuu31000) -> new_esEs10(new_compare12(xuu30000, xuu31000), LT) 30.39/12.98 new_compare111(xuu30000, xuu31000, True) -> LT 30.39/12.98 new_esEs27(xuu40001, xuu3001, ty_Float) -> new_esEs8(xuu40001, xuu3001) 30.39/12.98 new_lt14(xuu30000, xuu31000, bgh) -> new_esEs10(new_compare(xuu30000, xuu31000, bgh), LT) 30.39/12.98 new_compare31(xuu30000, xuu31000, app(ty_Ratio, ccc)) -> new_compare9(xuu30000, xuu31000, ccc) 30.39/12.98 new_lt13(xuu30000, xuu31000, ty_Float) -> new_lt10(xuu30000, xuu31000) 30.39/12.98 new_esEs20(xuu40001, xuu3001, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_esEs4(xuu40001, xuu3001, bfb, bfc, bfd) 30.39/12.98 new_ltEs11(True, True) -> True 30.39/12.98 new_ltEs16(xuu3000, xuu3100) -> new_fsEs(new_compare19(xuu3000, xuu3100)) 30.39/12.98 new_primPlusNat1(Succ(xuu25200), Zero) -> Succ(xuu25200) 30.39/12.98 new_primPlusNat1(Zero, Succ(xuu9400)) -> Succ(xuu9400) 30.39/12.98 new_esEs30(xuu19, xuu14, ty_@0) -> new_esEs14(xuu19, xuu14) 30.39/12.98 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Ordering) -> new_ltEs15(xuu30000, xuu31000) 30.39/12.98 new_lt13(xuu30000, xuu31000, ty_Ordering) -> new_lt18(xuu30000, xuu31000) 30.39/12.98 new_esEs16([], [], bag) -> True 30.39/12.98 new_ltEs12(Just(xuu30000), Just(xuu31000), app(app(app(ty_@3, cdd), cde), cdf)) -> new_ltEs6(xuu30000, xuu31000, cdd, cde, cdf) 30.39/12.98 new_ltEs20(xuu30001, xuu31001, ty_Double) -> new_ltEs14(xuu30001, xuu31001) 30.39/12.98 new_esEs23(xuu30000, xuu31000, ty_Ordering) -> new_esEs10(xuu30000, xuu31000) 30.39/12.98 new_lt12(xuu30001, xuu31001, ty_Float) -> new_lt10(xuu30001, xuu31001) 30.39/12.98 new_ltEs12(Just(xuu30000), Just(xuu31000), app(ty_Maybe, ceb)) -> new_ltEs12(xuu30000, xuu31000, ceb) 30.39/12.98 new_esEs29(xuu4000, xuu300, ty_@0) -> new_esEs14(xuu4000, xuu300) 30.39/12.98 new_primMulInt(Neg(xuu400000), Neg(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) 30.39/12.98 new_esEs20(xuu40001, xuu3001, ty_Double) -> new_esEs17(xuu40001, xuu3001) 30.39/12.98 new_esEs25(xuu30000, xuu31000, app(app(ty_@2, cgg), cgh)) -> new_esEs7(xuu30000, xuu31000, cgg, cgh) 30.39/12.98 new_esEs25(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) 30.39/12.98 new_lt20(xuu30000, xuu31000, app(ty_Ratio, cge)) -> new_lt5(xuu30000, xuu31000, cge) 30.39/12.98 new_compare([], :(xuu31000, xuu31001), ed) -> LT 30.39/12.98 new_esEs28(xuu40002, xuu3002, ty_Integer) -> new_esEs15(xuu40002, xuu3002) 30.39/12.98 new_ltEs19(xuu30002, xuu31002, app(app(ty_@2, cbc), cbd)) -> new_ltEs13(xuu30002, xuu31002, cbc, cbd) 30.39/12.98 new_esEs6(Just(xuu40000), Just(xuu3000), app(ty_Maybe, cfe)) -> new_esEs6(xuu40000, xuu3000, cfe) 30.39/12.98 new_esEs6(Nothing, Just(xuu3000), cdb) -> False 30.39/12.98 new_esEs6(Just(xuu40000), Nothing, cdb) -> False 30.39/12.98 new_ltEs11(False, True) -> True 30.39/12.98 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Float, be) -> new_ltEs16(xuu30000, xuu31000) 30.39/12.98 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_@0) -> new_ltEs8(xuu30000, xuu31000) 30.39/12.98 new_ltEs19(xuu30002, xuu31002, ty_@0) -> new_ltEs8(xuu30002, xuu31002) 30.39/12.98 new_ltEs15(EQ, GT) -> True 30.39/12.98 new_esEs24(xuu30001, xuu31001, ty_Bool) -> new_esEs11(xuu30001, xuu31001) 30.39/12.98 new_esEs6(Nothing, Nothing, cdb) -> True 30.39/12.98 new_ltEs18(xuu3000, xuu3100, ty_Char) -> new_ltEs9(xuu3000, xuu3100) 30.39/12.98 new_esEs11(False, False) -> True 30.39/12.98 new_esEs10(LT, LT) -> True 30.39/12.98 new_ltEs18(xuu3000, xuu3100, ty_Ordering) -> new_ltEs15(xuu3000, xuu3100) 30.39/12.98 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Int, be) -> new_ltEs7(xuu30000, xuu31000) 30.39/12.98 new_esEs21(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.39/12.98 new_ltEs20(xuu30001, xuu31001, app(app(ty_@2, daa), dab)) -> new_ltEs13(xuu30001, xuu31001, daa, dab) 30.39/12.98 new_primCmpNat2(xuu3000, Zero) -> GT 30.39/12.98 new_esEs28(xuu40002, xuu3002, ty_Float) -> new_esEs8(xuu40002, xuu3002) 30.39/12.98 new_lt4(xuu30000, xuu31000) -> new_esEs10(new_compare8(xuu30000, xuu31000), LT) 30.39/12.98 new_compare6(xuu30, xuu31) -> new_primCmpInt(xuu30, xuu31) 30.39/12.98 new_compare31(xuu30000, xuu31000, app(ty_Maybe, ccd)) -> new_compare13(xuu30000, xuu31000, ccd) 30.39/12.98 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.39/12.98 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Bool, fg) -> new_esEs11(xuu40000, xuu3000) 30.39/12.98 new_lt13(xuu30000, xuu31000, ty_Int) -> new_lt9(xuu30000, xuu31000) 30.39/12.98 new_esEs16(:(xuu40000, xuu40001), :(xuu3000, xuu3001), bag) -> new_asAs(new_esEs18(xuu40000, xuu3000, bag), new_esEs16(xuu40001, xuu3001, bag)) 30.39/12.98 new_compare30(xuu30000, xuu31000) -> new_compare210(xuu30000, xuu31000, new_esEs10(xuu30000, xuu31000)) 30.39/12.98 new_ltEs19(xuu30002, xuu31002, ty_Char) -> new_ltEs9(xuu30002, xuu31002) 30.39/12.98 new_lt12(xuu30001, xuu31001, ty_Bool) -> new_lt15(xuu30001, xuu31001) 30.39/12.98 new_compare31(xuu30000, xuu31000, ty_Integer) -> new_compare7(xuu30000, xuu31000) 30.39/12.98 new_ltEs12(Just(xuu30000), Just(xuu31000), app(ty_[], cdc)) -> new_ltEs5(xuu30000, xuu31000, cdc) 30.39/12.98 new_esEs26(xuu40000, xuu3000, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs4(xuu40000, xuu3000, dae, daf, dag) 30.39/12.98 new_primMulInt(Pos(xuu400000), Neg(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) 30.39/12.98 new_primMulInt(Neg(xuu400000), Pos(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) 30.39/12.98 new_esEs12(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) 30.39/12.98 new_esEs19(xuu40000, xuu3000, app(app(ty_Either, bec), bed)) -> new_esEs5(xuu40000, xuu3000, bec, bed) 30.39/12.98 new_lt17(xuu30000, xuu31000) -> new_esEs10(new_compare5(xuu30000, xuu31000), LT) 30.39/12.98 new_esEs26(xuu40000, xuu3000, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.39/12.98 new_esEs20(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) 30.39/12.98 new_ltEs20(xuu30001, xuu31001, ty_@0) -> new_ltEs8(xuu30001, xuu31001) 30.39/12.98 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(app(app(ty_@3, db), dc), dd)) -> new_ltEs6(xuu30000, xuu31000, db, dc, dd) 30.39/12.98 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(app(ty_Either, de), df)) -> new_ltEs4(xuu30000, xuu31000, de, df) 30.39/12.98 new_ltEs4(Left(xuu30000), Left(xuu31000), app(ty_[], bd), be) -> new_ltEs5(xuu30000, xuu31000, bd) 30.39/12.98 new_primCmpNat1(Succ(xuu30000), Zero) -> GT 30.39/12.98 new_esEs27(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) 30.39/12.98 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Integer) -> new_ltEs17(xuu30000, xuu31000) 30.39/12.98 new_compare14(xuu30000, xuu31000, False) -> GT 30.39/12.98 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Ordering) -> new_ltEs15(xuu30000, xuu31000) 30.39/12.98 new_ltEs19(xuu30002, xuu31002, ty_Double) -> new_ltEs14(xuu30002, xuu31002) 30.39/12.98 new_sr0(Integer(xuu300000), Integer(xuu310010)) -> Integer(new_primMulInt(xuu300000, xuu310010)) 30.39/12.98 new_ltEs9(xuu3000, xuu3100) -> new_fsEs(new_compare17(xuu3000, xuu3100)) 30.39/12.98 new_primCmpNat2(xuu3000, Succ(xuu3100)) -> new_primCmpNat1(xuu3000, xuu3100) 30.39/12.98 new_esEs28(xuu40002, xuu3002, ty_@0) -> new_esEs14(xuu40002, xuu3002) 30.39/12.98 new_ltEs15(LT, GT) -> True 30.39/12.98 new_ltEs20(xuu30001, xuu31001, app(app(ty_Either, che), chf)) -> new_ltEs4(xuu30001, xuu31001, che, chf) 30.39/12.98 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(ty_[], da)) -> new_ltEs5(xuu30000, xuu31000, da) 30.39/12.98 new_esEs29(xuu4000, xuu300, ty_Integer) -> new_esEs15(xuu4000, xuu300) 30.39/12.98 new_esEs20(xuu40001, xuu3001, app(ty_Ratio, bfg)) -> new_esEs13(xuu40001, xuu3001, bfg) 30.39/12.98 new_esEs30(xuu19, xuu14, ty_Integer) -> new_esEs15(xuu19, xuu14) 30.39/12.98 new_esEs20(xuu40001, xuu3001, ty_Int) -> new_esEs9(xuu40001, xuu3001) 30.39/12.98 new_esEs15(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) 30.39/12.98 new_esEs25(xuu30000, xuu31000, app(ty_Ratio, cge)) -> new_esEs13(xuu30000, xuu31000, cge) 30.39/12.98 new_esEs25(xuu30000, xuu31000, ty_Bool) -> new_esEs11(xuu30000, xuu31000) 30.39/12.98 new_compare31(xuu30000, xuu31000, app(ty_[], cbe)) -> new_compare(xuu30000, xuu31000, cbe) 30.39/12.98 new_esEs25(xuu30000, xuu31000, ty_Int) -> new_esEs9(xuu30000, xuu31000) 30.39/12.98 new_asAs(True, xuu141) -> xuu141 30.39/12.98 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.39/12.98 new_ltEs13(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), fb, fc) -> new_pePe(new_lt20(xuu30000, xuu31000, fb), new_asAs(new_esEs25(xuu30000, xuu31000, fb), new_ltEs20(xuu30001, xuu31001, fc))) 30.39/12.98 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Bool) -> new_ltEs11(xuu30000, xuu31000) 30.39/12.98 new_esEs18(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.39/12.98 new_esEs24(xuu30001, xuu31001, ty_@0) -> new_esEs14(xuu30001, xuu31001) 30.39/12.98 new_compare31(xuu30000, xuu31000, app(app(ty_@2, cce), ccf)) -> new_compare15(xuu30000, xuu31000, cce, ccf) 30.39/12.98 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Integer, fg) -> new_esEs15(xuu40000, xuu3000) 30.39/12.98 new_lt12(xuu30001, xuu31001, ty_Ordering) -> new_lt18(xuu30001, xuu31001) 30.39/12.98 new_compare18(xuu30000, xuu31000, bac, bad) -> new_compare25(xuu30000, xuu31000, new_esEs5(xuu30000, xuu31000, bac, bad), bac, bad) 30.39/12.98 new_lt13(xuu30000, xuu31000, app(app(ty_Either, bac), bad)) -> new_lt8(xuu30000, xuu31000, bac, bad) 30.39/12.98 new_esEs19(xuu40000, xuu3000, app(ty_Ratio, bee)) -> new_esEs13(xuu40000, xuu3000, bee) 30.39/12.98 new_ltEs20(xuu30001, xuu31001, ty_Char) -> new_ltEs9(xuu30001, xuu31001) 30.39/12.98 new_esEs24(xuu30001, xuu31001, ty_Integer) -> new_esEs15(xuu30001, xuu31001) 30.39/12.98 new_esEs19(xuu40000, xuu3000, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.39/12.98 new_esEs29(xuu4000, xuu300, app(ty_[], bag)) -> new_esEs16(xuu4000, xuu300, bag) 30.39/12.98 new_ltEs20(xuu30001, xuu31001, ty_Float) -> new_ltEs16(xuu30001, xuu31001) 30.39/12.98 new_lt13(xuu30000, xuu31000, ty_@0) -> new_lt4(xuu30000, xuu31000) 30.39/12.98 new_compare12(xuu30000, xuu31000) -> new_compare26(xuu30000, xuu31000, new_esEs11(xuu30000, xuu31000)) 30.39/12.98 new_esEs19(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.39/12.98 new_esEs18(xuu40000, xuu3000, app(app(ty_@2, bah), bba)) -> new_esEs7(xuu40000, xuu3000, bah, bba) 30.39/12.98 new_esEs24(xuu30001, xuu31001, app(app(ty_@2, caa), cab)) -> new_esEs7(xuu30001, xuu31001, caa, cab) 30.39/12.98 new_esEs30(xuu19, xuu14, app(app(ty_@2, bcb), bcc)) -> new_esEs7(xuu19, xuu14, bcb, bcc) 30.39/12.98 new_lt12(xuu30001, xuu31001, app(ty_[], bha)) -> new_lt14(xuu30001, xuu31001, bha) 30.39/12.98 new_esEs29(xuu4000, xuu300, app(app(ty_Either, gh), fg)) -> new_esEs5(xuu4000, xuu300, gh, fg) 30.39/12.98 new_ltEs18(xuu3000, xuu3100, app(app(ty_@2, fb), fc)) -> new_ltEs13(xuu3000, xuu3100, fb, fc) 30.39/12.98 new_lt20(xuu30000, xuu31000, ty_Char) -> new_lt7(xuu30000, xuu31000) 30.39/12.98 new_compare15(xuu30000, xuu31000, bgb, bgc) -> new_compare27(xuu30000, xuu31000, new_esEs7(xuu30000, xuu31000, bgb, bgc), bgb, bgc) 30.39/12.98 new_primCompAux00(xuu182, EQ) -> xuu182 30.39/12.98 new_sr(xuu40000, xuu3001) -> new_primMulInt(xuu40000, xuu3001) 30.39/12.98 new_lt12(xuu30001, xuu31001, app(ty_Maybe, bhh)) -> new_lt6(xuu30001, xuu31001, bhh) 30.39/12.98 new_esEs25(xuu30000, xuu31000, ty_Integer) -> new_esEs15(xuu30000, xuu31000) 30.39/12.98 new_primMulNat0(Zero, Zero) -> Zero 30.39/12.98 new_lt13(xuu30000, xuu31000, app(app(ty_@2, bgb), bgc)) -> new_lt16(xuu30000, xuu31000, bgb, bgc) 30.39/12.98 new_esEs30(xuu19, xuu14, app(ty_[], bdc)) -> new_esEs16(xuu19, xuu14, bdc) 30.39/12.98 new_esEs24(xuu30001, xuu31001, app(ty_[], bha)) -> new_esEs16(xuu30001, xuu31001, bha) 30.39/12.98 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Int, fg) -> new_esEs9(xuu40000, xuu3000) 30.39/12.98 new_esEs23(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) 30.39/12.98 new_compare111(xuu30000, xuu31000, False) -> GT 30.39/12.98 new_primCmpNat1(Zero, Zero) -> EQ 30.39/12.98 new_ltEs20(xuu30001, xuu31001, app(ty_Maybe, chh)) -> new_ltEs12(xuu30001, xuu31001, chh) 30.39/12.98 new_esEs30(xuu19, xuu14, ty_Int) -> new_esEs9(xuu19, xuu14) 30.39/12.98 new_esEs23(xuu30000, xuu31000, app(app(ty_@2, bgb), bgc)) -> new_esEs7(xuu30000, xuu31000, bgb, bgc) 30.39/12.98 new_compare28(xuu30000, xuu31000, True, bgd, bge, bgf) -> EQ 30.39/12.98 new_ltEs18(xuu3000, xuu3100, app(app(ty_Either, cg), be)) -> new_ltEs4(xuu3000, xuu3100, cg, be) 30.39/12.98 new_lt20(xuu30000, xuu31000, ty_Float) -> new_lt10(xuu30000, xuu31000) 30.39/12.98 new_esEs20(xuu40001, xuu3001, app(app(ty_Either, bfe), bff)) -> new_esEs5(xuu40001, xuu3001, bfe, bff) 30.39/12.98 new_ltEs11(True, False) -> False 30.39/12.98 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(app(ty_Either, hf), hg)) -> new_esEs5(xuu40000, xuu3000, hf, hg) 30.39/12.98 new_esEs19(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.39/12.98 new_ltEs15(EQ, EQ) -> True 30.39/12.98 new_esEs26(xuu40000, xuu3000, app(ty_Maybe, dbc)) -> new_esEs6(xuu40000, xuu3000, dbc) 30.39/12.98 new_fsEs(xuu151) -> new_not(new_esEs10(xuu151, GT)) 30.39/12.98 new_esEs30(xuu19, xuu14, app(ty_Ratio, bda)) -> new_esEs13(xuu19, xuu14, bda) 30.39/12.98 new_esEs26(xuu40000, xuu3000, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.39/12.98 new_esEs24(xuu30001, xuu31001, app(ty_Ratio, bhg)) -> new_esEs13(xuu30001, xuu31001, bhg) 30.39/12.98 new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.39/12.98 new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.39/12.98 new_ltEs18(xuu3000, xuu3100, app(ty_Ratio, eh)) -> new_ltEs10(xuu3000, xuu3100, eh) 30.39/12.98 new_lt12(xuu30001, xuu31001, ty_@0) -> new_lt4(xuu30001, xuu31001) 30.39/12.98 new_esEs6(Just(xuu40000), Just(xuu3000), app(app(ty_@2, cee), cef)) -> new_esEs7(xuu40000, xuu3000, cee, cef) 30.39/12.98 new_esEs18(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.39/12.98 new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False 30.39/12.98 new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False 30.39/12.98 new_esEs29(xuu4000, xuu300, app(ty_Ratio, bgg)) -> new_esEs13(xuu4000, xuu300, bgg) 30.39/12.98 new_esEs24(xuu30001, xuu31001, ty_Int) -> new_esEs9(xuu30001, xuu31001) 30.39/12.98 new_esEs25(xuu30000, xuu31000, app(ty_Maybe, cgf)) -> new_esEs6(xuu30000, xuu31000, cgf) 30.39/12.98 new_compare([], [], ed) -> EQ 30.39/12.98 new_ltEs15(LT, EQ) -> True 30.39/12.98 new_esEs20(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) 30.39/12.98 new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) 30.39/12.98 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.39/12.98 new_esEs20(xuu40001, xuu3001, app(ty_[], bga)) -> new_esEs16(xuu40001, xuu3001, bga) 30.39/12.98 new_esEs28(xuu40002, xuu3002, app(app(ty_@2, dcg), dch)) -> new_esEs7(xuu40002, xuu3002, dcg, dch) 30.39/12.98 new_ltEs4(Left(xuu30000), Left(xuu31000), app(app(ty_Either, ca), cb), be) -> new_ltEs4(xuu30000, xuu31000, ca, cb) 30.39/12.98 new_lt13(xuu30000, xuu31000, app(ty_[], bgh)) -> new_lt14(xuu30000, xuu31000, bgh) 30.39/12.98 new_esEs25(xuu30000, xuu31000, app(app(ty_Either, cgc), cgd)) -> new_esEs5(xuu30000, xuu31000, cgc, cgd) 30.39/12.98 new_esEs20(xuu40001, xuu3001, app(ty_Maybe, bfh)) -> new_esEs6(xuu40001, xuu3001, bfh) 30.39/12.98 new_ltEs19(xuu30002, xuu31002, app(ty_Maybe, cbb)) -> new_ltEs12(xuu30002, xuu31002, cbb) 30.39/12.98 new_esEs11(True, True) -> True 30.39/12.98 new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False 30.39/12.98 new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False 30.39/12.98 new_esEs19(xuu40000, xuu3000, app(ty_Maybe, bef)) -> new_esEs6(xuu40000, xuu3000, bef) 30.39/12.98 new_compare29(xuu30000, xuu31000, bgd, bge, bgf) -> new_compare28(xuu30000, xuu31000, new_esEs4(xuu30000, xuu31000, bgd, bge, bgf), bgd, bge, bgf) 30.39/12.98 new_compare31(xuu30000, xuu31000, ty_Double) -> new_compare5(xuu30000, xuu31000) 30.39/12.98 new_esEs25(xuu30000, xuu31000, app(ty_[], cfg)) -> new_esEs16(xuu30000, xuu31000, cfg) 30.39/12.98 new_esEs19(xuu40000, xuu3000, app(ty_[], beg)) -> new_esEs16(xuu40000, xuu3000, beg) 30.39/12.98 new_esEs29(xuu4000, xuu300, ty_Int) -> new_esEs9(xuu4000, xuu300) 30.39/12.98 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 30.39/12.98 new_ltEs15(GT, GT) -> True 30.39/12.98 new_esEs30(xuu19, xuu14, ty_Bool) -> new_esEs11(xuu19, xuu14) 30.39/12.98 new_esEs26(xuu40000, xuu3000, app(app(ty_Either, dah), dba)) -> new_esEs5(xuu40000, xuu3000, dah, dba) 30.39/12.98 new_esEs30(xuu19, xuu14, app(ty_Maybe, bdb)) -> new_esEs6(xuu19, xuu14, bdb) 30.39/12.98 new_esEs10(LT, GT) -> False 30.39/12.98 new_esEs10(GT, LT) -> False 30.39/12.98 new_esEs21(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.39/12.98 new_ltEs10(xuu3000, xuu3100, eh) -> new_fsEs(new_compare9(xuu3000, xuu3100, eh)) 30.39/12.98 new_esEs19(xuu40000, xuu3000, app(app(ty_@2, bdf), bdg)) -> new_esEs7(xuu40000, xuu3000, bdf, bdg) 30.39/12.98 new_ltEs7(xuu3000, xuu3100) -> new_fsEs(new_compare6(xuu3000, xuu3100)) 30.39/12.98 new_ltEs12(Just(xuu30000), Just(xuu31000), app(app(ty_@2, cec), ced)) -> new_ltEs13(xuu30000, xuu31000, cec, ced) 30.39/12.98 new_esEs27(xuu40001, xuu3001, app(app(app(ty_@3, dbg), dbh), dca)) -> new_esEs4(xuu40001, xuu3001, dbg, dbh, dca) 30.39/12.98 new_primPlusNat0(xuu104, xuu300100) -> new_primPlusNat1(xuu104, Succ(xuu300100)) 30.39/12.98 new_not(False) -> True 30.39/12.98 new_esEs28(xuu40002, xuu3002, ty_Int) -> new_esEs9(xuu40002, xuu3002) 30.39/12.98 new_compare31(xuu30000, xuu31000, ty_Char) -> new_compare17(xuu30000, xuu31000) 30.39/12.98 new_esEs18(xuu40000, xuu3000, app(app(ty_Either, bbe), bbf)) -> new_esEs5(xuu40000, xuu3000, bbe, bbf) 30.39/12.98 new_esEs28(xuu40002, xuu3002, app(ty_Ratio, ddf)) -> new_esEs13(xuu40002, xuu3002, ddf) 30.39/12.98 new_esEs29(xuu4000, xuu300, ty_Ordering) -> new_esEs10(xuu4000, xuu300) 30.39/12.98 new_lt20(xuu30000, xuu31000, ty_@0) -> new_lt4(xuu30000, xuu31000) 30.39/12.98 new_esEs25(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) 30.39/12.98 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.39/12.98 new_compare19(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.39/12.98 new_compare19(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.39/12.98 new_lt12(xuu30001, xuu31001, app(app(ty_Either, bhe), bhf)) -> new_lt8(xuu30001, xuu31001, bhe, bhf) 30.39/12.98 new_esEs25(xuu30000, xuu31000, ty_Double) -> new_esEs17(xuu30000, xuu31000) 30.39/12.98 new_esEs5(Left(xuu40000), Right(xuu3000), gh, fg) -> False 30.39/12.98 new_esEs5(Right(xuu40000), Left(xuu3000), gh, fg) -> False 30.39/12.98 new_primCmpInt(Pos(Succ(xuu3000)), Pos(xuu310)) -> new_primCmpNat2(xuu3000, xuu310) 30.39/12.98 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Int) -> new_ltEs7(xuu30000, xuu31000) 30.39/12.98 new_lt12(xuu30001, xuu31001, ty_Integer) -> new_lt19(xuu30001, xuu31001) 30.39/12.98 new_compare27(xuu30000, xuu31000, True, bgb, bgc) -> EQ 30.39/12.98 new_esEs29(xuu4000, xuu300, app(app(ty_@2, bdd), bde)) -> new_esEs7(xuu4000, xuu300, bdd, bde) 30.39/12.98 new_ltEs4(Left(xuu30000), Right(xuu31000), cg, be) -> True 30.39/12.98 new_esEs18(xuu40000, xuu3000, app(ty_Maybe, bbh)) -> new_esEs6(xuu40000, xuu3000, bbh) 30.39/12.98 new_esEs30(xuu19, xuu14, ty_Ordering) -> new_esEs10(xuu19, xuu14) 30.39/12.98 new_esEs27(xuu40001, xuu3001, ty_Ordering) -> new_esEs10(xuu40001, xuu3001) 30.39/12.98 new_ltEs18(xuu3000, xuu3100, app(ty_[], ed)) -> new_ltEs5(xuu3000, xuu3100, ed) 30.39/12.98 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(app(ty_@2, ea), eb)) -> new_ltEs13(xuu30000, xuu31000, ea, eb) 30.39/12.98 new_esEs30(xuu19, xuu14, app(app(ty_Either, bcg), bch)) -> new_esEs5(xuu19, xuu14, bcg, bch) 30.39/12.98 new_lt20(xuu30000, xuu31000, ty_Int) -> new_lt9(xuu30000, xuu31000) 30.39/12.98 new_lt5(xuu30000, xuu31000, bae) -> new_esEs10(new_compare9(xuu30000, xuu31000, bae), LT) 30.39/12.98 new_ltEs20(xuu30001, xuu31001, ty_Bool) -> new_ltEs11(xuu30001, xuu31001) 30.39/12.98 new_compare16(xuu30000, xuu31000, False, bgd, bge, bgf) -> GT 30.39/12.98 new_compare11(xuu30000, xuu31000, True, bac, bad) -> LT 30.39/12.98 new_ltEs19(xuu30002, xuu31002, ty_Int) -> new_ltEs7(xuu30002, xuu31002) 30.39/12.98 new_primCmpNat1(Zero, Succ(xuu31000)) -> LT 30.39/12.98 new_lt12(xuu30001, xuu31001, app(ty_Ratio, bhg)) -> new_lt5(xuu30001, xuu31001, bhg) 30.39/12.98 new_esEs29(xuu4000, xuu300, app(ty_Maybe, cdb)) -> new_esEs6(xuu4000, xuu300, cdb) 30.39/12.98 new_compare210(xuu30000, xuu31000, False) -> new_compare14(xuu30000, xuu31000, new_ltEs15(xuu30000, xuu31000)) 30.39/12.98 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 30.39/12.98 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 30.39/12.98 new_esEs25(xuu30000, xuu31000, app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs4(xuu30000, xuu31000, cfh, cga, cgb) 30.39/12.98 new_lt20(xuu30000, xuu31000, ty_Double) -> new_lt17(xuu30000, xuu31000) 30.39/12.98 new_lt18(xuu30000, xuu31000) -> new_esEs10(new_compare30(xuu30000, xuu31000), LT) 30.39/12.98 new_primPlusNat1(Zero, Zero) -> Zero 30.39/12.98 new_esEs18(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.39/12.98 new_compare31(xuu30000, xuu31000, ty_Ordering) -> new_compare30(xuu30000, xuu31000) 30.39/12.98 new_lt20(xuu30000, xuu31000, app(app(ty_@2, cgg), cgh)) -> new_lt16(xuu30000, xuu31000, cgg, cgh) 30.39/12.98 new_esEs20(xuu40001, xuu3001, ty_Bool) -> new_esEs11(xuu40001, xuu3001) 30.39/12.98 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Double, be) -> new_ltEs14(xuu30000, xuu31000) 30.39/12.98 new_ltEs19(xuu30002, xuu31002, ty_Bool) -> new_ltEs11(xuu30002, xuu31002) 30.39/12.98 new_ltEs20(xuu30001, xuu31001, ty_Int) -> new_ltEs7(xuu30001, xuu31001) 30.39/12.98 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Float, fg) -> new_esEs8(xuu40000, xuu3000) 30.39/12.98 new_ltEs12(Just(xuu30000), Just(xuu31000), app(ty_Ratio, cea)) -> new_ltEs10(xuu30000, xuu31000, cea) 30.39/12.98 new_esEs27(xuu40001, xuu3001, ty_Double) -> new_esEs17(xuu40001, xuu3001) 30.39/12.98 new_esEs24(xuu30001, xuu31001, ty_Float) -> new_esEs8(xuu30001, xuu31001) 30.39/12.98 new_ltEs15(LT, LT) -> True 30.39/12.98 new_ltEs12(Nothing, Just(xuu31000), fa) -> True 30.39/12.98 new_esEs10(EQ, GT) -> False 30.39/12.98 new_esEs10(GT, EQ) -> False 30.39/12.98 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Ordering, be) -> new_ltEs15(xuu30000, xuu31000) 30.39/12.98 new_esEs18(xuu40000, xuu3000, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.39/12.98 new_ltEs19(xuu30002, xuu31002, app(app(ty_Either, cag), cah)) -> new_ltEs4(xuu30002, xuu31002, cag, cah) 30.39/12.98 new_esEs28(xuu40002, xuu3002, app(ty_Maybe, ddg)) -> new_esEs6(xuu40002, xuu3002, ddg) 30.39/12.98 new_esEs8(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs9(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) 30.39/12.98 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 30.39/12.98 new_primMulNat0(Succ(xuu4000000), Succ(xuu300100)) -> new_primPlusNat0(new_primMulNat0(xuu4000000, Succ(xuu300100)), xuu300100) 30.39/12.98 new_lt20(xuu30000, xuu31000, ty_Ordering) -> new_lt18(xuu30000, xuu31000) 30.39/12.98 new_compare31(xuu30000, xuu31000, ty_@0) -> new_compare8(xuu30000, xuu31000) 30.39/12.98 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(ty_Maybe, dh)) -> new_ltEs12(xuu30000, xuu31000, dh) 30.39/12.98 new_compare16(xuu30000, xuu31000, True, bgd, bge, bgf) -> LT 30.39/12.98 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.39/12.98 new_esEs13(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), bgg) -> new_asAs(new_esEs21(xuu40000, xuu3000, bgg), new_esEs22(xuu40001, xuu3001, bgg)) 30.39/12.98 new_esEs27(xuu40001, xuu3001, app(ty_Maybe, dce)) -> new_esEs6(xuu40001, xuu3001, dce) 30.39/12.98 new_esEs6(Just(xuu40000), Just(xuu3000), app(ty_[], cff)) -> new_esEs16(xuu40000, xuu3000, cff) 30.39/12.98 new_esEs5(Left(xuu40000), Left(xuu3000), ty_@0, fg) -> new_esEs14(xuu40000, xuu3000) 30.39/12.98 new_ltEs12(Nothing, Nothing, fa) -> True 30.39/12.98 new_esEs16(:(xuu40000, xuu40001), [], bag) -> False 30.39/12.98 new_esEs16([], :(xuu3000, xuu3001), bag) -> False 30.39/12.98 new_ltEs19(xuu30002, xuu31002, ty_Float) -> new_ltEs16(xuu30002, xuu31002) 30.39/12.98 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_@0, be) -> new_ltEs8(xuu30000, xuu31000) 30.39/12.98 new_compare31(xuu30000, xuu31000, app(app(ty_Either, cca), ccb)) -> new_compare18(xuu30000, xuu31000, cca, ccb) 30.39/12.98 new_esEs23(xuu30000, xuu31000, app(ty_[], bgh)) -> new_esEs16(xuu30000, xuu31000, bgh) 30.39/12.98 new_ltEs12(Just(xuu30000), Nothing, fa) -> False 30.39/12.98 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 30.39/12.98 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 30.39/12.98 new_compare8(@0, @0) -> EQ 30.39/12.98 new_lt20(xuu30000, xuu31000, app(ty_Maybe, cgf)) -> new_lt6(xuu30000, xuu31000, cgf) 30.39/12.98 new_compare110(xuu30000, xuu31000, False, bgb, bgc) -> GT 30.39/12.98 new_esEs4(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), ccg, cch, cda) -> new_asAs(new_esEs26(xuu40000, xuu3000, ccg), new_asAs(new_esEs27(xuu40001, xuu3001, cch), new_esEs28(xuu40002, xuu3002, cda))) 30.39/12.98 new_esEs23(xuu30000, xuu31000, ty_Integer) -> new_esEs15(xuu30000, xuu31000) 30.39/12.98 new_esEs28(xuu40002, xuu3002, app(app(ty_Either, ddd), dde)) -> new_esEs5(xuu40002, xuu3002, ddd, dde) 30.39/12.98 new_primEqNat0(Zero, Zero) -> True 30.39/12.98 new_ltEs18(xuu3000, xuu3100, ty_Float) -> new_ltEs16(xuu3000, xuu3100) 30.39/12.98 new_esEs19(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.39/12.98 new_esEs18(xuu40000, xuu3000, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.39/12.98 new_ltEs20(xuu30001, xuu31001, app(ty_[], cha)) -> new_ltEs5(xuu30001, xuu31001, cha) 30.39/12.98 new_esEs28(xuu40002, xuu3002, ty_Ordering) -> new_esEs10(xuu40002, xuu3002) 30.39/12.98 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Float) -> new_ltEs16(xuu30000, xuu31000) 30.39/12.98 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Integer) -> new_ltEs17(xuu30000, xuu31000) 30.39/12.98 new_esEs6(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.39/12.98 new_esEs29(xuu4000, xuu300, ty_Bool) -> new_esEs11(xuu4000, xuu300) 30.39/12.98 new_asAs(False, xuu141) -> False 30.39/12.98 new_esEs23(xuu30000, xuu31000, ty_Float) -> new_esEs8(xuu30000, xuu31000) 30.39/12.98 new_compare24(Nothing, Nothing, False, ec) -> LT 30.39/12.98 new_esEs20(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) 30.39/12.98 new_esEs26(xuu40000, xuu3000, app(ty_Ratio, dbb)) -> new_esEs13(xuu40000, xuu3000, dbb) 30.39/12.98 new_lt10(xuu30000, xuu31000) -> new_esEs10(new_compare19(xuu30000, xuu31000), LT) 30.39/12.98 new_esEs26(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.39/12.98 new_esEs23(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) 30.39/12.98 new_ltEs4(Right(xuu30000), Left(xuu31000), cg, be) -> False 30.39/12.98 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.39/12.98 new_primCmpInt(Neg(Succ(xuu3000)), Neg(xuu310)) -> new_primCmpNat0(xuu310, xuu3000) 30.39/12.98 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.39/12.98 new_ltEs18(xuu3000, xuu3100, ty_Int) -> new_ltEs7(xuu3000, xuu3100) 30.39/12.98 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Char, be) -> new_ltEs9(xuu30000, xuu31000) 30.39/12.98 new_esEs20(xuu40001, xuu3001, app(app(ty_@2, beh), bfa)) -> new_esEs7(xuu40001, xuu3001, beh, bfa) 30.39/12.98 30.39/12.98 The set Q consists of the following terms: 30.39/12.98 30.39/12.98 new_primPlusNat1(Succ(x0), Succ(x1)) 30.39/12.98 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.98 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 30.39/12.98 new_esEs27(x0, x1, ty_Ordering) 30.39/12.98 new_esEs19(x0, x1, ty_Bool) 30.39/12.98 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 30.39/12.98 new_ltEs4(Left(x0), Left(x1), ty_Char, x2) 30.39/12.98 new_esEs24(x0, x1, app(ty_Maybe, x2)) 30.39/12.98 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.39/12.98 new_ltEs18(x0, x1, ty_Bool) 30.39/12.98 new_primCmpNat2(x0, Succ(x1)) 30.39/12.98 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.98 new_ltEs12(Nothing, Nothing, x0) 30.39/12.98 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.98 new_lt20(x0, x1, ty_Int) 30.39/12.98 new_lt20(x0, x1, app(ty_[], x2)) 30.39/12.98 new_sr0(Integer(x0), Integer(x1)) 30.39/12.98 new_ltEs17(x0, x1) 30.39/12.98 new_esEs23(x0, x1, ty_Char) 30.39/12.98 new_compare31(x0, x1, ty_Ordering) 30.39/12.98 new_compare110(x0, x1, False, x2, x3) 30.39/12.98 new_ltEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.39/12.98 new_lt20(x0, x1, ty_Ordering) 30.39/12.98 new_esEs28(x0, x1, app(ty_[], x2)) 30.39/12.98 new_primCmpNat1(Succ(x0), Zero) 30.39/12.98 new_primPlusNat1(Zero, Zero) 30.39/12.98 new_esEs27(x0, x1, ty_Double) 30.39/12.98 new_esEs19(x0, x1, app(ty_Maybe, x2)) 30.39/12.98 new_esEs28(x0, x1, ty_Char) 30.39/12.98 new_compare31(x0, x1, ty_Int) 30.39/12.98 new_esEs25(x0, x1, ty_Char) 30.39/12.98 new_primCmpNat1(Zero, Zero) 30.39/12.98 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 30.39/12.98 new_ltEs18(x0, x1, ty_@0) 30.39/12.98 new_compare26(x0, x1, True) 30.39/12.98 new_esEs10(EQ, EQ) 30.39/12.98 new_lt14(x0, x1, x2) 30.39/12.98 new_compare31(x0, x1, ty_Char) 30.39/12.98 new_lt20(x0, x1, ty_Double) 30.39/12.98 new_primEqInt(Pos(Zero), Pos(Zero)) 30.39/12.98 new_lt13(x0, x1, app(ty_Maybe, x2)) 30.39/12.98 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 30.39/12.98 new_ltEs4(Left(x0), Left(x1), ty_Int, x2) 30.39/12.98 new_ltEs4(Right(x0), Right(x1), x2, ty_Integer) 30.39/12.98 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.39/12.98 new_primCompAux00(x0, GT) 30.39/12.98 new_ltEs12(Just(x0), Nothing, x1) 30.39/12.98 new_esEs25(x0, x1, ty_Int) 30.39/12.98 new_lt13(x0, x1, ty_Integer) 30.39/12.98 new_esEs24(x0, x1, ty_Bool) 30.39/12.98 new_compare31(x0, x1, ty_Double) 30.39/12.98 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 30.39/12.98 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 30.39/12.98 new_ltEs12(Just(x0), Just(x1), ty_Ordering) 30.39/12.98 new_esEs19(x0, x1, ty_@0) 30.39/12.98 new_ltEs7(x0, x1) 30.39/12.98 new_esEs6(Nothing, Just(x0), x1) 30.39/12.98 new_esEs30(x0, x1, ty_Integer) 30.39/12.98 new_esEs25(x0, x1, ty_Ordering) 30.39/12.98 new_ltEs12(Just(x0), Just(x1), app(ty_[], x2)) 30.39/12.98 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.98 new_ltEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.39/12.98 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 30.39/12.98 new_compare([], :(x0, x1), x2) 30.39/12.98 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 30.39/12.98 new_lt18(x0, x1) 30.39/12.98 new_primEqInt(Neg(Zero), Neg(Zero)) 30.39/12.98 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.98 new_compare24(Nothing, Nothing, False, x0) 30.39/12.98 new_primCmpNat0(Succ(x0), x1) 30.39/12.98 new_ltEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.39/12.98 new_lt20(x0, x1, ty_Char) 30.39/12.98 new_ltEs12(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.39/12.98 new_esEs23(x0, x1, ty_Ordering) 30.39/12.98 new_compare210(x0, x1, True) 30.39/12.98 new_compare13(x0, x1, x2) 30.39/12.98 new_ltEs19(x0, x1, ty_Float) 30.39/12.98 new_esEs30(x0, x1, ty_@0) 30.39/12.98 new_lt13(x0, x1, app(ty_[], x2)) 30.39/12.98 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 30.39/12.98 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 30.39/12.98 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.98 new_ltEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 30.39/12.98 new_esEs25(x0, x1, ty_@0) 30.39/12.98 new_esEs25(x0, x1, ty_Double) 30.39/12.98 new_ltEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.39/12.98 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.39/12.98 new_esEs23(x0, x1, app(ty_[], x2)) 30.39/12.98 new_compare27(x0, x1, True, x2, x3) 30.39/12.98 new_compare(:(x0, x1), [], x2) 30.39/12.98 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 30.39/12.98 new_esEs20(x0, x1, app(ty_Ratio, x2)) 30.39/12.98 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.39/12.98 new_ltEs4(Right(x0), Right(x1), x2, ty_Bool) 30.39/12.98 new_compare28(x0, x1, False, x2, x3, x4) 30.39/12.98 new_ltEs4(Left(x0), Left(x1), ty_Bool, x2) 30.39/12.98 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.98 new_ltEs11(True, True) 30.39/12.98 new_esEs27(x0, x1, ty_Char) 30.39/12.98 new_esEs19(x0, x1, app(ty_Ratio, x2)) 30.39/12.98 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 30.39/12.98 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.98 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.98 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 30.39/12.98 new_compare14(x0, x1, True) 30.39/12.98 new_esEs18(x0, x1, app(ty_Ratio, x2)) 30.39/12.98 new_esEs24(x0, x1, app(ty_Ratio, x2)) 30.39/12.98 new_esEs24(x0, x1, ty_Char) 30.39/12.98 new_ltEs12(Just(x0), Just(x1), ty_Int) 30.39/12.98 new_ltEs4(Left(x0), Left(x1), ty_Ordering, x2) 30.39/12.98 new_compare27(x0, x1, False, x2, x3) 30.39/12.98 new_compare30(x0, x1) 30.39/12.98 new_ltEs18(x0, x1, ty_Integer) 30.39/12.98 new_primEqInt(Pos(Zero), Neg(Zero)) 30.39/12.98 new_primEqInt(Neg(Zero), Pos(Zero)) 30.39/12.98 new_ltEs9(x0, x1) 30.39/12.98 new_esEs27(x0, x1, ty_Int) 30.39/12.98 new_compare7(Integer(x0), Integer(x1)) 30.39/12.98 new_esEs27(x0, x1, app(ty_[], x2)) 30.39/12.98 new_esEs23(x0, x1, ty_Integer) 30.39/12.98 new_esEs26(x0, x1, ty_Ordering) 30.39/12.98 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.98 new_ltEs12(Just(x0), Just(x1), ty_Char) 30.39/12.98 new_compare8(@0, @0) 30.39/12.98 new_ltEs12(Just(x0), Just(x1), ty_Double) 30.39/12.98 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 30.39/12.98 new_esEs27(x0, x1, ty_@0) 30.39/12.98 new_primMulInt(Neg(x0), Neg(x1)) 30.39/12.98 new_compare5(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 30.39/12.98 new_compare5(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 30.39/12.98 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.39/12.98 new_ltEs4(Left(x0), Left(x1), ty_Integer, x2) 30.39/12.98 new_esEs24(x0, x1, ty_Int) 30.39/12.98 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 30.39/12.98 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 30.39/12.98 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 30.39/12.98 new_ltEs13(@2(x0, x1), @2(x2, x3), x4, x5) 30.39/12.98 new_esEs25(x0, x1, ty_Bool) 30.39/12.98 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 30.39/12.98 new_compare16(x0, x1, True, x2, x3, x4) 30.39/12.98 new_ltEs15(EQ, EQ) 30.39/12.98 new_esEs28(x0, x1, ty_Ordering) 30.39/12.98 new_lt12(x0, x1, ty_Integer) 30.39/12.98 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.39/12.98 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.98 new_esEs30(x0, x1, ty_Bool) 30.39/12.98 new_esEs24(x0, x1, ty_@0) 30.39/12.98 new_compare29(x0, x1, x2, x3, x4) 30.39/12.98 new_lt12(x0, x1, app(ty_Maybe, x2)) 30.39/12.98 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.98 new_esEs22(x0, x1, ty_Integer) 30.39/12.98 new_esEs18(x0, x1, ty_Ordering) 30.39/12.98 new_esEs30(x0, x1, ty_Char) 30.39/12.98 new_esEs20(x0, x1, ty_Integer) 30.39/12.98 new_ltEs18(x0, x1, ty_Float) 30.39/12.98 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.39/12.98 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.98 new_esEs27(x0, x1, ty_Bool) 30.39/12.98 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.98 new_compare([], [], x0) 30.39/12.98 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 30.39/12.98 new_esEs28(x0, x1, ty_Integer) 30.39/12.98 new_lt20(x0, x1, ty_Integer) 30.39/12.98 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.98 new_esEs19(x0, x1, ty_Double) 30.39/12.98 new_esEs6(Just(x0), Just(x1), ty_Float) 30.39/12.98 new_esEs16(:(x0, x1), [], x2) 30.39/12.98 new_esEs24(x0, x1, ty_Float) 30.39/12.98 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.98 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.98 new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.98 new_esEs18(x0, x1, ty_Double) 30.39/12.98 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.39/12.98 new_esEs30(x0, x1, ty_Int) 30.39/12.98 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 30.39/12.98 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 30.39/12.98 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 30.39/12.98 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.39/12.98 new_lt5(x0, x1, x2) 30.39/12.98 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 30.39/12.98 new_esEs24(x0, x1, ty_Double) 30.39/12.98 new_compare17(Char(x0), Char(x1)) 30.39/12.98 new_ltEs20(x0, x1, ty_Double) 30.39/12.98 new_ltEs18(x0, x1, app(ty_[], x2)) 30.39/12.98 new_primMulNat0(Zero, Succ(x0)) 30.39/12.98 new_ltEs15(GT, LT) 30.39/12.98 new_ltEs15(LT, GT) 30.39/12.98 new_esEs9(x0, x1) 30.39/12.98 new_ltEs12(Just(x0), Just(x1), ty_@0) 30.39/12.98 new_ltEs4(Right(x0), Right(x1), x2, ty_Char) 30.39/12.98 new_ltEs19(x0, x1, ty_Integer) 30.39/12.98 new_esEs28(x0, x1, ty_Bool) 30.39/12.98 new_ltEs18(x0, x1, ty_Int) 30.39/12.98 new_compare5(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 30.39/12.98 new_ltEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.39/12.98 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.98 new_ltEs5(x0, x1, x2) 30.39/12.98 new_esEs6(Nothing, Nothing, x0) 30.39/12.98 new_esEs6(Just(x0), Nothing, x1) 30.39/12.98 new_lt11(x0, x1, x2, x3, x4) 30.39/12.98 new_esEs6(Just(x0), Just(x1), ty_Int) 30.39/12.98 new_ltEs4(Right(x0), Right(x1), x2, ty_Int) 30.39/12.98 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 30.39/12.98 new_ltEs18(x0, x1, ty_Char) 30.39/12.98 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 30.39/12.98 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.98 new_esEs25(x0, x1, ty_Integer) 30.39/12.98 new_primCmpNat1(Zero, Succ(x0)) 30.39/12.98 new_lt12(x0, x1, ty_Bool) 30.39/12.98 new_compare10(x0, x1, True, x2) 30.39/12.98 new_primCompAux00(x0, EQ) 30.39/12.98 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 30.39/12.98 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 30.39/12.98 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 30.39/12.98 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.98 new_primCmpNat1(Succ(x0), Succ(x1)) 30.39/12.98 new_primEqNat0(Zero, Succ(x0)) 30.39/12.98 new_ltEs20(x0, x1, ty_Ordering) 30.39/12.98 new_esEs30(x0, x1, ty_Float) 30.39/12.98 new_esEs17(Double(x0, x1), Double(x2, x3)) 30.39/12.98 new_esEs29(x0, x1, ty_Integer) 30.39/12.98 new_esEs6(Just(x0), Just(x1), ty_Ordering) 30.39/12.98 new_pePe(True, x0) 30.39/12.98 new_compare28(x0, x1, True, x2, x3, x4) 30.39/12.98 new_primCmpInt(Neg(Zero), Neg(Zero)) 30.39/12.98 new_lt12(x0, x1, app(ty_Ratio, x2)) 30.39/12.98 new_ltEs4(Left(x0), Left(x1), ty_Double, x2) 30.39/12.98 new_compare19(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 30.39/12.98 new_esEs30(x0, x1, app(ty_Maybe, x2)) 30.39/12.98 new_esEs18(x0, x1, app(ty_[], x2)) 30.39/12.98 new_ltEs19(x0, x1, ty_Bool) 30.39/12.98 new_esEs12(Char(x0), Char(x1)) 30.39/12.98 new_compare24(x0, x1, True, x2) 30.39/12.98 new_compare24(Nothing, Just(x0), False, x1) 30.39/12.98 new_primCmpInt(Pos(Zero), Neg(Zero)) 30.39/12.98 new_primCmpInt(Neg(Zero), Pos(Zero)) 30.39/12.98 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.98 new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) 30.39/12.98 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 30.39/12.98 new_esEs29(x0, x1, ty_Ordering) 30.39/12.98 new_esEs23(x0, x1, ty_Bool) 30.39/12.98 new_lt12(x0, x1, ty_Char) 30.39/12.98 new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) 30.39/12.98 new_compare15(x0, x1, x2, x3) 30.39/12.98 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.98 new_esEs29(x0, x1, app(ty_Maybe, x2)) 30.39/12.98 new_lt20(x0, x1, app(ty_Maybe, x2)) 30.39/12.98 new_esEs11(False, False) 30.39/12.98 new_esEs10(LT, GT) 30.39/12.98 new_esEs10(GT, LT) 30.39/12.98 new_ltEs4(Right(x0), Right(x1), x2, ty_Float) 30.39/12.98 new_esEs23(x0, x1, ty_Float) 30.39/12.98 new_esEs20(x0, x1, ty_Float) 30.39/12.98 new_esEs26(x0, x1, app(ty_[], x2)) 30.39/12.98 new_compare11(x0, x1, False, x2, x3) 30.39/12.98 new_esEs6(Just(x0), Just(x1), ty_Char) 30.39/12.98 new_ltEs4(Left(x0), Left(x1), ty_@0, x2) 30.39/12.98 new_lt20(x0, x1, ty_@0) 30.39/12.98 new_esEs20(x0, x1, app(ty_[], x2)) 30.39/12.98 new_lt13(x0, x1, ty_@0) 30.39/12.98 new_esEs20(x0, x1, ty_Bool) 30.39/12.98 new_lt12(x0, x1, ty_Int) 30.39/12.98 new_esEs23(x0, x1, app(ty_Maybe, x2)) 30.39/12.98 new_compare31(x0, x1, app(ty_[], x2)) 30.39/12.98 new_ltEs12(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.39/12.98 new_primEqNat0(Succ(x0), Zero) 30.39/12.98 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.98 new_esEs27(x0, x1, ty_Integer) 30.39/12.98 new_lt4(x0, x1) 30.39/12.98 new_compare111(x0, x1, True) 30.39/12.98 new_lt10(x0, x1) 30.39/12.98 new_esEs18(x0, x1, ty_@0) 30.39/12.98 new_primMulNat0(Succ(x0), Succ(x1)) 30.39/12.98 new_esEs26(x0, x1, ty_Double) 30.39/12.98 new_esEs25(x0, x1, app(ty_Maybe, x2)) 30.39/12.98 new_esEs28(x0, x1, ty_Float) 30.39/12.98 new_compare31(x0, x1, ty_@0) 30.39/12.98 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.98 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 30.39/12.98 new_esEs20(x0, x1, ty_Int) 30.39/12.98 new_esEs6(Just(x0), Just(x1), ty_Bool) 30.39/12.98 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.39/12.98 new_esEs26(x0, x1, ty_@0) 30.39/12.98 new_esEs28(x0, x1, ty_Int) 30.39/12.98 new_ltEs11(False, True) 30.39/12.98 new_ltEs11(True, False) 30.39/12.98 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 30.39/12.98 new_esEs10(EQ, GT) 30.39/12.98 new_esEs10(GT, EQ) 30.39/12.98 new_esEs16([], :(x0, x1), x2) 30.39/12.98 new_lt13(x0, x1, ty_Double) 30.39/12.98 new_esEs23(x0, x1, ty_Int) 30.39/12.98 new_esEs20(x0, x1, ty_Char) 30.39/12.98 new_lt12(x0, x1, ty_Float) 30.39/12.98 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.98 new_ltEs12(Nothing, Just(x0), x1) 30.39/12.98 new_esEs26(x0, x1, app(ty_Ratio, x2)) 30.39/12.98 new_ltEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.39/12.98 new_lt13(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.98 new_esEs19(x0, x1, app(ty_[], x2)) 30.39/12.98 new_esEs27(x0, x1, ty_Float) 30.39/12.98 new_compare25(x0, x1, False, x2, x3) 30.39/12.98 new_compare12(x0, x1) 30.39/12.98 new_lt12(x0, x1, ty_Double) 30.39/12.98 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.98 new_lt20(x0, x1, app(ty_Ratio, x2)) 30.39/12.98 new_esEs29(x0, x1, ty_Char) 30.39/12.98 new_esEs16(:(x0, x1), :(x2, x3), x4) 30.39/12.98 new_primMulNat0(Zero, Zero) 30.39/12.98 new_compare31(x0, x1, app(ty_Maybe, x2)) 30.39/12.98 new_lt12(x0, x1, ty_Ordering) 30.39/12.98 new_esEs25(x0, x1, app(ty_Ratio, x2)) 30.39/12.98 new_primCompAux00(x0, LT) 30.39/12.98 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.39/12.98 new_ltEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.39/12.98 new_ltEs19(x0, x1, ty_Char) 30.39/12.98 new_esEs27(x0, x1, app(ty_Ratio, x2)) 30.39/12.98 new_sr(x0, x1) 30.39/12.98 new_primCompAux0(x0, x1, x2, x3) 30.39/12.98 new_asAs(False, x0) 30.39/12.98 new_ltEs19(x0, x1, ty_Int) 30.39/12.98 new_lt8(x0, x1, x2, x3) 30.39/12.98 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.98 new_ltEs14(x0, x1) 30.39/12.98 new_esEs28(x0, x1, app(ty_Maybe, x2)) 30.39/12.98 new_ltEs20(x0, x1, ty_Integer) 30.39/12.98 new_esEs8(Float(x0, x1), Float(x2, x3)) 30.39/12.98 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.39/12.98 new_esEs6(Just(x0), Just(x1), ty_Integer) 30.39/12.98 new_esEs29(x0, x1, ty_@0) 30.39/12.98 new_ltEs19(x0, x1, ty_Ordering) 30.39/12.98 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.39/12.98 new_ltEs4(Right(x0), Right(x1), x2, ty_Ordering) 30.39/12.98 new_ltEs19(x0, x1, ty_@0) 30.39/12.98 new_esEs22(x0, x1, ty_Int) 30.39/12.98 new_ltEs20(x0, x1, ty_@0) 30.39/12.98 new_ltEs12(Just(x0), Just(x1), ty_Integer) 30.39/12.98 new_esEs18(x0, x1, ty_Bool) 30.39/12.98 new_esEs21(x0, x1, ty_Int) 30.39/12.98 new_ltEs12(Just(x0), Just(x1), ty_Float) 30.39/12.98 new_esEs6(Just(x0), Just(x1), ty_@0) 30.39/12.98 new_esEs10(LT, LT) 30.39/12.98 new_esEs28(x0, x1, app(ty_Ratio, x2)) 30.39/12.98 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.39/12.98 new_esEs30(x0, x1, ty_Double) 30.39/12.98 new_not(True) 30.39/12.98 new_esEs29(x0, x1, ty_Bool) 30.39/12.98 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.98 new_compare210(x0, x1, False) 30.39/12.98 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 30.39/12.98 new_lt15(x0, x1) 30.39/12.98 new_pePe(False, x0) 30.39/12.98 new_esEs29(x0, x1, ty_Double) 30.39/12.98 new_esEs11(True, True) 30.39/12.98 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.98 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.98 new_ltEs10(x0, x1, x2) 30.39/12.98 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 30.39/12.98 new_compare31(x0, x1, app(ty_Ratio, x2)) 30.39/12.98 new_ltEs4(Right(x0), Right(x1), x2, ty_Double) 30.39/12.98 new_primCmpNat0(Zero, x0) 30.39/12.98 new_esEs15(Integer(x0), Integer(x1)) 30.39/12.98 new_lt12(x0, x1, app(ty_[], x2)) 30.39/12.98 new_esEs27(x0, x1, app(ty_Maybe, x2)) 30.39/12.98 new_ltEs15(GT, EQ) 30.39/12.98 new_ltEs15(EQ, GT) 30.39/12.98 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.98 new_primCmpNat2(x0, Zero) 30.39/12.98 new_compare19(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 30.39/12.98 new_esEs11(False, True) 30.39/12.98 new_esEs11(True, False) 30.39/12.98 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.39/12.98 new_esEs29(x0, x1, ty_Int) 30.39/12.98 new_esEs26(x0, x1, ty_Integer) 30.39/12.98 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.98 new_ltEs20(x0, x1, ty_Char) 30.39/12.98 new_lt13(x0, x1, ty_Ordering) 30.39/12.98 new_lt17(x0, x1) 30.39/12.98 new_lt13(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.98 new_ltEs12(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.39/12.98 new_esEs23(x0, x1, app(ty_Ratio, x2)) 30.39/12.98 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 30.39/12.98 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.98 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.98 new_ltEs12(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.39/12.98 new_ltEs12(Just(x0), Just(x1), ty_Bool) 30.39/12.98 new_primEqNat0(Succ(x0), Succ(x1)) 30.39/12.98 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.98 new_esEs18(x0, x1, ty_Integer) 30.39/12.98 new_esEs20(x0, x1, ty_Ordering) 30.39/12.98 new_ltEs20(x0, x1, ty_Bool) 30.39/12.98 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.98 new_primPlusNat1(Succ(x0), Zero) 30.39/12.98 new_ltEs4(Left(x0), Right(x1), x2, x3) 30.39/12.98 new_ltEs4(Right(x0), Left(x1), x2, x3) 30.39/12.98 new_esEs29(x0, x1, app(ty_[], x2)) 30.39/12.98 new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.98 new_primMulNat0(Succ(x0), Zero) 30.39/12.98 new_compare18(x0, x1, x2, x3) 30.39/12.98 new_primCmpInt(Pos(Zero), Pos(Zero)) 30.39/12.98 new_compare31(x0, x1, ty_Integer) 30.39/12.98 new_lt12(x0, x1, ty_@0) 30.39/12.98 new_esEs19(x0, x1, ty_Ordering) 30.39/12.98 new_esEs10(GT, GT) 30.39/12.98 new_esEs20(x0, x1, app(ty_Maybe, x2)) 30.39/12.98 new_lt16(x0, x1, x2, x3) 30.39/12.98 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 30.39/12.98 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 30.39/12.98 new_compare25(x0, x1, True, x2, x3) 30.39/12.98 new_primMulInt(Pos(x0), Pos(x1)) 30.39/12.98 new_compare16(x0, x1, False, x2, x3, x4) 30.39/12.98 new_esEs14(@0, @0) 30.39/12.98 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 30.39/12.98 new_primPlusNat1(Zero, Succ(x0)) 30.39/12.98 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.39/12.98 new_esEs30(x0, x1, app(ty_Ratio, x2)) 30.39/12.98 new_primPlusNat0(x0, x1) 30.39/12.98 new_ltEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.39/12.98 new_esEs10(LT, EQ) 30.39/12.98 new_esEs10(EQ, LT) 30.39/12.98 new_compare24(Just(x0), Nothing, False, x1) 30.39/12.98 new_compare26(x0, x1, False) 30.39/12.98 new_esEs18(x0, x1, app(ty_Maybe, x2)) 30.39/12.98 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 30.39/12.98 new_esEs18(x0, x1, ty_Int) 30.39/12.98 new_primMulInt(Pos(x0), Neg(x1)) 30.39/12.98 new_primMulInt(Neg(x0), Pos(x1)) 30.39/12.98 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 30.39/12.98 new_esEs19(x0, x1, ty_Float) 30.39/12.98 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.98 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.39/12.98 new_esEs5(Left(x0), Right(x1), x2, x3) 30.39/12.98 new_esEs5(Right(x0), Left(x1), x2, x3) 30.39/12.98 new_esEs29(x0, x1, app(ty_Ratio, x2)) 30.39/12.98 new_lt13(x0, x1, app(ty_Ratio, x2)) 30.39/12.98 new_esEs6(Just(x0), Just(x1), ty_Double) 30.39/12.98 new_compare110(x0, x1, True, x2, x3) 30.39/12.98 new_ltEs18(x0, x1, ty_Ordering) 30.39/12.98 new_compare6(x0, x1) 30.39/12.98 new_ltEs20(x0, x1, app(ty_[], x2)) 30.39/12.98 new_esEs26(x0, x1, ty_Bool) 30.39/12.98 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 30.39/12.98 new_lt20(x0, x1, ty_Bool) 30.39/12.98 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 30.39/12.98 new_ltEs15(EQ, LT) 30.39/12.98 new_ltEs15(LT, EQ) 30.39/12.98 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.98 new_ltEs20(x0, x1, ty_Float) 30.39/12.98 new_compare11(x0, x1, True, x2, x3) 30.39/12.98 new_esEs30(x0, x1, app(ty_[], x2)) 30.39/12.98 new_esEs30(x0, x1, ty_Ordering) 30.39/12.98 new_esEs19(x0, x1, ty_Char) 30.39/12.98 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.98 new_ltEs15(GT, GT) 30.39/12.98 new_compare5(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 30.39/12.98 new_ltEs20(x0, x1, ty_Int) 30.39/12.98 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.98 new_compare31(x0, x1, ty_Bool) 30.39/12.98 new_esEs16([], [], x0) 30.39/12.98 new_esEs29(x0, x1, ty_Float) 30.39/12.98 new_ltEs4(Right(x0), Right(x1), x2, ty_@0) 30.39/12.98 new_fsEs(x0) 30.39/12.98 new_lt9(x0, x1) 30.39/12.98 new_ltEs11(False, False) 30.39/12.98 new_esEs19(x0, x1, ty_Int) 30.39/12.98 new_ltEs18(x0, x1, ty_Double) 30.39/12.98 new_compare111(x0, x1, False) 30.39/12.98 new_lt13(x0, x1, ty_Bool) 30.39/12.98 new_esEs26(x0, x1, app(ty_Maybe, x2)) 30.39/12.98 new_esEs26(x0, x1, ty_Int) 30.39/12.98 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.98 new_primEqNat0(Zero, Zero) 30.39/12.98 new_compare24(Just(x0), Just(x1), False, x2) 30.39/12.98 new_ltEs4(Left(x0), Left(x1), ty_Float, x2) 30.39/12.98 new_compare19(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 30.39/12.98 new_compare19(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 30.39/12.98 new_lt13(x0, x1, ty_Float) 30.39/12.98 new_esEs25(x0, x1, ty_Float) 30.39/12.98 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.39/12.98 new_esEs20(x0, x1, ty_@0) 30.39/12.98 new_ltEs19(x0, x1, app(ty_[], x2)) 30.39/12.98 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.98 new_not(False) 30.39/12.98 new_esEs24(x0, x1, ty_Integer) 30.39/12.98 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 30.39/12.98 new_lt7(x0, x1) 30.39/12.98 new_esEs23(x0, x1, ty_Double) 30.39/12.98 new_compare31(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.98 new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.39/12.98 new_esEs18(x0, x1, ty_Char) 30.39/12.98 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 30.39/12.98 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.98 new_ltEs19(x0, x1, ty_Double) 30.39/12.98 new_esEs13(:%(x0, x1), :%(x2, x3), x4) 30.39/12.98 new_compare14(x0, x1, False) 30.39/12.98 new_ltEs8(x0, x1) 30.39/12.98 new_esEs28(x0, x1, ty_Double) 30.39/12.98 new_esEs19(x0, x1, ty_Integer) 30.39/12.98 new_esEs21(x0, x1, ty_Integer) 30.39/12.98 new_ltEs15(LT, LT) 30.39/12.98 new_ltEs12(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.39/12.98 new_esEs26(x0, x1, ty_Float) 30.39/12.98 new_esEs25(x0, x1, app(ty_[], x2)) 30.39/12.98 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.98 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.98 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.39/12.98 new_lt13(x0, x1, ty_Int) 30.39/12.98 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.98 new_compare(:(x0, x1), :(x2, x3), x4) 30.39/12.98 new_lt6(x0, x1, x2) 30.39/12.98 new_esEs26(x0, x1, ty_Char) 30.39/12.98 new_lt20(x0, x1, ty_Float) 30.39/12.98 new_lt19(x0, x1) 30.39/12.98 new_asAs(True, x0) 30.39/12.98 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.98 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.39/12.98 new_lt13(x0, x1, ty_Char) 30.39/12.98 new_esEs23(x0, x1, ty_@0) 30.39/12.98 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.98 new_ltEs16(x0, x1) 30.39/12.98 new_compare31(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.98 new_esEs20(x0, x1, ty_Double) 30.39/12.98 new_esEs18(x0, x1, ty_Float) 30.39/12.98 new_esEs28(x0, x1, ty_@0) 30.39/12.98 new_compare10(x0, x1, False, x2) 30.39/12.98 new_esEs24(x0, x1, app(ty_[], x2)) 30.39/12.98 new_compare31(x0, x1, ty_Float) 30.39/12.98 new_esEs24(x0, x1, ty_Ordering) 30.39/12.98 30.39/12.98 We have to consider all minimal (P,Q,R)-chains. 30.39/12.98 ---------------------------------------- 30.39/12.98 30.39/12.98 (31) TransformationProof (EQUIVALENT) 30.39/12.98 By rewriting [LPAR04] the rule new_addToFM_C(Branch(Nothing, xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs10(GT, LT), h, ba) at position [6] we obtained the following new rules [LPAR04]: 30.39/12.98 30.39/12.98 (new_addToFM_C(Branch(Nothing, xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba),new_addToFM_C(Branch(Nothing, xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba)) 30.39/12.98 30.39/12.98 30.39/12.98 ---------------------------------------- 30.39/12.98 30.39/12.98 (32) 30.39/12.98 Obligation: 30.39/12.98 Q DP problem: 30.39/12.98 The TRS P consists of the following rules: 30.39/12.98 30.39/12.98 new_addToFM_C(Branch(Just(xuu300), xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C21(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs10(new_compare24(Just(xuu4000), Just(xuu300), new_esEs29(xuu4000, xuu300, h), h), LT), h, ba) 30.39/12.98 new_addToFM_C21(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, False, bb, bc) -> new_addToFM_C12(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, new_esEs10(new_compare24(Just(xuu19), Just(xuu14), new_esEs30(xuu19, xuu14, bb), bb), GT), bb, bc) 30.39/12.98 new_addToFM_C12(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, bb, bc) -> new_addToFM_C(xuu18, Just(xuu19), xuu20, bb, bc) 30.39/12.98 new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba) -> new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs10(new_compare24(Just(xuu4000), Nothing, False, h), GT), h, ba) 30.39/12.98 new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba) -> new_addToFM_C(xuu34, Just(xuu4000), xuu401, h, ba) 30.39/12.98 new_addToFM_C21(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, bb, bc) -> new_addToFM_C(xuu17, Just(xuu19), xuu20, bb, bc) 30.39/12.98 new_addToFM_C(Branch(Nothing, xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba) 30.39/12.98 30.39/12.98 The TRS R consists of the following rules: 30.39/12.98 30.39/12.98 new_ltEs18(xuu3000, xuu3100, ty_Integer) -> new_ltEs17(xuu3000, xuu3100) 30.39/12.98 new_compare28(xuu30000, xuu31000, False, bgd, bge, bgf) -> new_compare16(xuu30000, xuu31000, new_ltEs6(xuu30000, xuu31000, bgd, bge, bgf), bgd, bge, bgf) 30.39/12.98 new_lt7(xuu30000, xuu31000) -> new_esEs10(new_compare17(xuu30000, xuu31000), LT) 30.39/12.98 new_esEs23(xuu30000, xuu31000, ty_Bool) -> new_esEs11(xuu30000, xuu31000) 30.39/12.98 new_esEs27(xuu40001, xuu3001, app(ty_Ratio, dcd)) -> new_esEs13(xuu40001, xuu3001, dcd) 30.39/12.98 new_primCmpInt(Neg(Succ(xuu3000)), Pos(xuu310)) -> LT 30.39/12.98 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 30.39/12.98 new_esEs27(xuu40001, xuu3001, ty_Int) -> new_esEs9(xuu40001, xuu3001) 30.39/12.98 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(ty_Ratio, hh)) -> new_esEs13(xuu40000, xuu3000, hh) 30.39/12.98 new_esEs23(xuu30000, xuu31000, app(ty_Maybe, baf)) -> new_esEs6(xuu30000, xuu31000, baf) 30.39/12.98 new_pePe(True, xuu167) -> True 30.39/12.98 new_ltEs19(xuu30002, xuu31002, app(app(app(ty_@3, cad), cae), caf)) -> new_ltEs6(xuu30002, xuu31002, cad, cae, caf) 30.39/12.98 new_ltEs20(xuu30001, xuu31001, ty_Ordering) -> new_ltEs15(xuu30001, xuu31001) 30.39/12.98 new_primCmpInt(Pos(Zero), Pos(Succ(xuu3100))) -> new_primCmpNat0(Zero, xuu3100) 30.39/12.98 new_ltEs6(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), ee, ef, eg) -> new_pePe(new_lt13(xuu30000, xuu31000, ee), new_asAs(new_esEs23(xuu30000, xuu31000, ee), new_pePe(new_lt12(xuu30001, xuu31001, ef), new_asAs(new_esEs24(xuu30001, xuu31001, ef), new_ltEs19(xuu30002, xuu31002, eg))))) 30.39/12.98 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(ty_[], bab)) -> new_esEs16(xuu40000, xuu3000, bab) 30.39/12.98 new_esEs5(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, fh), ga), gb), fg) -> new_esEs4(xuu40000, xuu3000, fh, ga, gb) 30.39/12.98 new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_Ratio, ge), fg) -> new_esEs13(xuu40000, xuu3000, ge) 30.39/12.98 new_esEs29(xuu4000, xuu300, ty_Char) -> new_esEs12(xuu4000, xuu300) 30.39/12.98 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Double) -> new_ltEs14(xuu30000, xuu31000) 30.39/12.98 new_lt20(xuu30000, xuu31000, ty_Bool) -> new_lt15(xuu30000, xuu31000) 30.39/12.98 new_compare(:(xuu30000, xuu30001), [], ed) -> GT 30.39/12.98 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 30.39/12.98 new_esEs27(xuu40001, xuu3001, app(ty_[], dcf)) -> new_esEs16(xuu40001, xuu3001, dcf) 30.39/12.98 new_esEs27(xuu40001, xuu3001, app(app(ty_Either, dcb), dcc)) -> new_esEs5(xuu40001, xuu3001, dcb, dcc) 30.39/12.98 new_primCmpInt(Pos(Zero), Neg(Succ(xuu3100))) -> GT 30.39/12.98 new_compare(:(xuu30000, xuu30001), :(xuu31000, xuu31001), ed) -> new_primCompAux0(xuu30000, xuu31000, new_compare(xuu30001, xuu31001, ed), ed) 30.39/12.98 new_esEs9(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) 30.39/12.98 new_esEs22(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) 30.39/12.98 new_esEs18(xuu40000, xuu3000, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs4(xuu40000, xuu3000, bbb, bbc, bbd) 30.39/12.98 new_ltEs19(xuu30002, xuu31002, app(ty_[], cac)) -> new_ltEs5(xuu30002, xuu31002, cac) 30.39/12.98 new_lt12(xuu30001, xuu31001, ty_Char) -> new_lt7(xuu30001, xuu31001) 30.39/12.98 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Char) -> new_ltEs9(xuu30000, xuu31000) 30.39/12.98 new_esEs26(xuu40000, xuu3000, app(app(ty_@2, dac), dad)) -> new_esEs7(xuu40000, xuu3000, dac, dad) 30.39/12.98 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Int) -> new_ltEs7(xuu30000, xuu31000) 30.39/12.98 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.39/12.98 new_lt13(xuu30000, xuu31000, app(ty_Ratio, bae)) -> new_lt5(xuu30000, xuu31000, bae) 30.39/12.98 new_esEs6(Just(xuu40000), Just(xuu3000), app(app(ty_Either, cfb), cfc)) -> new_esEs5(xuu40000, xuu3000, cfb, cfc) 30.39/12.98 new_ltEs15(EQ, LT) -> False 30.39/12.98 new_compare17(Char(xuu30000), Char(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) 30.39/12.98 new_ltEs8(xuu3000, xuu3100) -> new_fsEs(new_compare8(xuu3000, xuu3100)) 30.39/12.98 new_esEs28(xuu40002, xuu3002, app(app(app(ty_@3, dda), ddb), ddc)) -> new_esEs4(xuu40002, xuu3002, dda, ddb, ddc) 30.39/12.98 new_primCmpNat1(Succ(xuu30000), Succ(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) 30.39/12.98 new_esEs23(xuu30000, xuu31000, app(app(ty_Either, bac), bad)) -> new_esEs5(xuu30000, xuu31000, bac, bad) 30.39/12.98 new_ltEs19(xuu30002, xuu31002, ty_Ordering) -> new_ltEs15(xuu30002, xuu31002) 30.39/12.98 new_compare26(xuu30000, xuu31000, True) -> EQ 30.39/12.98 new_compare24(Nothing, Just(xuu3100), False, ec) -> LT 30.39/12.98 new_esEs18(xuu40000, xuu3000, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.39/12.98 new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False 30.39/12.98 new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False 30.39/12.98 new_ltEs4(Left(xuu30000), Left(xuu31000), app(app(ty_@2, ce), cf), be) -> new_ltEs13(xuu30000, xuu31000, ce, cf) 30.39/12.98 new_ltEs15(GT, LT) -> False 30.39/12.98 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.39/12.98 new_esEs24(xuu30001, xuu31001, ty_Double) -> new_esEs17(xuu30001, xuu31001) 30.39/12.98 new_compare25(xuu30000, xuu31000, False, bac, bad) -> new_compare11(xuu30000, xuu31000, new_ltEs4(xuu30000, xuu31000, bac, bad), bac, bad) 30.39/12.98 new_ltEs12(Just(xuu30000), Just(xuu31000), app(app(ty_Either, cdg), cdh)) -> new_ltEs4(xuu30000, xuu31000, cdg, cdh) 30.39/12.98 new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_Maybe, gf), fg) -> new_esEs6(xuu40000, xuu3000, gf) 30.39/12.98 new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.39/12.98 new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) 30.39/12.98 new_esEs30(xuu19, xuu14, ty_Char) -> new_esEs12(xuu19, xuu14) 30.39/12.98 new_esEs27(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) 30.39/12.98 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Char, fg) -> new_esEs12(xuu40000, xuu3000) 30.39/12.98 new_esEs10(GT, GT) -> True 30.39/12.98 new_ltEs4(Left(xuu30000), Left(xuu31000), app(ty_Maybe, cd), be) -> new_ltEs12(xuu30000, xuu31000, cd) 30.39/12.98 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.39/12.98 new_not(True) -> False 30.39/12.98 new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_[], gg), fg) -> new_esEs16(xuu40000, xuu3000, gg) 30.39/12.98 new_lt13(xuu30000, xuu31000, app(app(app(ty_@3, bgd), bge), bgf)) -> new_lt11(xuu30000, xuu31000, bgd, bge, bgf) 30.39/12.98 new_esEs28(xuu40002, xuu3002, ty_Bool) -> new_esEs11(xuu40002, xuu3002) 30.39/12.98 new_ltEs5(xuu3000, xuu3100, ed) -> new_fsEs(new_compare(xuu3000, xuu3100, ed)) 30.39/12.98 new_primCompAux00(xuu182, LT) -> LT 30.39/12.98 new_lt12(xuu30001, xuu31001, ty_Double) -> new_lt17(xuu30001, xuu31001) 30.39/12.98 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Float) -> new_ltEs16(xuu30000, xuu31000) 30.39/12.98 new_ltEs20(xuu30001, xuu31001, ty_Integer) -> new_ltEs17(xuu30001, xuu31001) 30.39/12.98 new_esEs25(xuu30000, xuu31000, ty_Ordering) -> new_esEs10(xuu30000, xuu31000) 30.39/12.98 new_esEs23(xuu30000, xuu31000, app(ty_Ratio, bae)) -> new_esEs13(xuu30000, xuu31000, bae) 30.39/12.98 new_esEs27(xuu40001, xuu3001, ty_Bool) -> new_esEs11(xuu40001, xuu3001) 30.39/12.98 new_esEs26(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.39/12.98 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.39/12.98 new_lt12(xuu30001, xuu31001, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_lt11(xuu30001, xuu31001, bhb, bhc, bhd) 30.39/12.98 new_esEs30(xuu19, xuu14, ty_Double) -> new_esEs17(xuu19, xuu14) 30.39/12.98 new_lt13(xuu30000, xuu31000, app(ty_Maybe, baf)) -> new_lt6(xuu30000, xuu31000, baf) 30.39/12.98 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.39/12.98 new_esEs19(xuu40000, xuu3000, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.39/12.98 new_esEs25(xuu30000, xuu31000, ty_Float) -> new_esEs8(xuu30000, xuu31000) 30.39/12.98 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Double, fg) -> new_esEs17(xuu40000, xuu3000) 30.39/12.98 new_lt19(xuu30000, xuu31000) -> new_esEs10(new_compare7(xuu30000, xuu31000), LT) 30.39/12.98 new_compare31(xuu30000, xuu31000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_compare29(xuu30000, xuu31000, cbf, cbg, cbh) 30.39/12.98 new_ltEs20(xuu30001, xuu31001, app(app(app(ty_@3, chb), chc), chd)) -> new_ltEs6(xuu30001, xuu31001, chb, chc, chd) 30.39/12.98 new_esEs5(Left(xuu40000), Left(xuu3000), app(app(ty_@2, fd), ff), fg) -> new_esEs7(xuu40000, xuu3000, fd, ff) 30.39/12.98 new_primEqNat0(Succ(xuu400000), Zero) -> False 30.39/12.98 new_primEqNat0(Zero, Succ(xuu30000)) -> False 30.39/12.98 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.39/12.98 new_esEs19(xuu40000, xuu3000, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.39/12.98 new_esEs14(@0, @0) -> True 30.39/12.98 new_lt12(xuu30001, xuu31001, app(app(ty_@2, caa), cab)) -> new_lt16(xuu30001, xuu31001, caa, cab) 30.39/12.98 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Bool, be) -> new_ltEs11(xuu30000, xuu31000) 30.39/12.98 new_esEs26(xuu40000, xuu3000, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.39/12.98 new_lt11(xuu30000, xuu31000, bgd, bge, bgf) -> new_esEs10(new_compare29(xuu30000, xuu31000, bgd, bge, bgf), LT) 30.39/12.98 new_esEs23(xuu30000, xuu31000, ty_Int) -> new_esEs9(xuu30000, xuu31000) 30.39/12.98 new_ltEs15(GT, EQ) -> False 30.39/12.98 new_lt20(xuu30000, xuu31000, app(ty_[], cfg)) -> new_lt14(xuu30000, xuu31000, cfg) 30.39/12.98 new_esEs26(xuu40000, xuu3000, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.39/12.98 new_lt20(xuu30000, xuu31000, ty_Integer) -> new_lt19(xuu30000, xuu31000) 30.39/12.98 new_primCompAux00(xuu182, GT) -> GT 30.39/12.98 new_primCmpInt(Neg(Zero), Neg(Succ(xuu3100))) -> new_primCmpNat2(xuu3100, Zero) 30.39/12.98 new_esEs10(EQ, EQ) -> True 30.39/12.98 new_esEs29(xuu4000, xuu300, ty_Double) -> new_esEs17(xuu4000, xuu300) 30.39/12.98 new_esEs6(Just(xuu40000), Just(xuu3000), app(ty_Ratio, cfd)) -> new_esEs13(xuu40000, xuu3000, cfd) 30.39/12.98 new_lt16(xuu30000, xuu31000, bgb, bgc) -> new_esEs10(new_compare15(xuu30000, xuu31000, bgb, bgc), LT) 30.39/12.98 new_esEs17(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs9(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) 30.39/12.98 new_esEs24(xuu30001, xuu31001, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_esEs4(xuu30001, xuu31001, bhb, bhc, bhd) 30.39/12.98 new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.39/12.98 new_esEs23(xuu30000, xuu31000, app(app(app(ty_@3, bgd), bge), bgf)) -> new_esEs4(xuu30000, xuu31000, bgd, bge, bgf) 30.39/12.98 new_esEs30(xuu19, xuu14, app(app(app(ty_@3, bcd), bce), bcf)) -> new_esEs4(xuu19, xuu14, bcd, bce, bcf) 30.39/12.98 new_compare14(xuu30000, xuu31000, True) -> LT 30.39/12.98 new_primCmpInt(Pos(Succ(xuu3000)), Neg(xuu310)) -> GT 30.39/12.98 new_lt13(xuu30000, xuu31000, ty_Integer) -> new_lt19(xuu30000, xuu31000) 30.39/12.98 new_ltEs18(xuu3000, xuu3100, ty_Bool) -> new_ltEs11(xuu3000, xuu3100) 30.39/12.98 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_@0) -> new_ltEs8(xuu30000, xuu31000) 30.39/12.98 new_esEs28(xuu40002, xuu3002, ty_Double) -> new_esEs17(xuu40002, xuu3002) 30.39/12.98 new_lt13(xuu30000, xuu31000, ty_Char) -> new_lt7(xuu30000, xuu31000) 30.39/12.98 new_compare110(xuu30000, xuu31000, True, bgb, bgc) -> LT 30.39/12.98 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(ty_Ratio, dg)) -> new_ltEs10(xuu30000, xuu31000, dg) 30.39/12.98 new_esEs23(xuu30000, xuu31000, ty_Double) -> new_esEs17(xuu30000, xuu31000) 30.39/12.98 new_lt20(xuu30000, xuu31000, app(app(ty_Either, cgc), cgd)) -> new_lt8(xuu30000, xuu31000, cgc, cgd) 30.39/12.98 new_lt13(xuu30000, xuu31000, ty_Double) -> new_lt17(xuu30000, xuu31000) 30.39/12.98 new_primPlusNat1(Succ(xuu25200), Succ(xuu9400)) -> Succ(Succ(new_primPlusNat1(xuu25200, xuu9400))) 30.39/12.98 new_primCompAux0(xuu30000, xuu31000, xuu168, ed) -> new_primCompAux00(xuu168, new_compare31(xuu30000, xuu31000, ed)) 30.39/12.98 new_esEs26(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.39/12.98 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Integer, be) -> new_ltEs17(xuu30000, xuu31000) 30.39/12.98 new_esEs10(LT, EQ) -> False 30.39/12.98 new_esEs10(EQ, LT) -> False 30.39/12.98 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.39/12.98 new_esEs20(xuu40001, xuu3001, ty_Ordering) -> new_esEs10(xuu40001, xuu3001) 30.39/12.98 new_esEs29(xuu4000, xuu300, app(app(app(ty_@3, ccg), cch), cda)) -> new_esEs4(xuu4000, xuu300, ccg, cch, cda) 30.39/12.98 new_compare13(xuu30000, xuu31000, baf) -> new_compare24(xuu30000, xuu31000, new_esEs6(xuu30000, xuu31000, baf), baf) 30.39/12.98 new_primCmpNat0(Succ(xuu3100), xuu3000) -> new_primCmpNat1(xuu3100, xuu3000) 30.39/12.98 new_compare210(xuu30000, xuu31000, True) -> EQ 30.39/12.98 new_esEs20(xuu40001, xuu3001, ty_Float) -> new_esEs8(xuu40001, xuu3001) 30.39/12.98 new_esEs28(xuu40002, xuu3002, ty_Char) -> new_esEs12(xuu40002, xuu3002) 30.39/12.98 new_lt9(xuu300, xuu310) -> new_esEs10(new_compare6(xuu300, xuu310), LT) 30.39/12.98 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Bool) -> new_ltEs11(xuu30000, xuu31000) 30.39/12.98 new_esEs28(xuu40002, xuu3002, app(ty_[], ddh)) -> new_esEs16(xuu40002, xuu3002, ddh) 30.39/12.98 new_esEs27(xuu40001, xuu3001, app(app(ty_@2, dbe), dbf)) -> new_esEs7(xuu40001, xuu3001, dbe, dbf) 30.39/12.98 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Char) -> new_ltEs9(xuu30000, xuu31000) 30.39/12.98 new_ltEs18(xuu3000, xuu3100, app(ty_Maybe, fa)) -> new_ltEs12(xuu3000, xuu3100, fa) 30.39/12.98 new_esEs19(xuu40000, xuu3000, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs4(xuu40000, xuu3000, bdh, bea, beb) 30.39/12.98 new_pePe(False, xuu167) -> xuu167 30.39/12.98 new_esEs27(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) 30.39/12.98 new_ltEs4(Left(xuu30000), Left(xuu31000), app(ty_Ratio, cc), be) -> new_ltEs10(xuu30000, xuu31000, cc) 30.39/12.98 new_ltEs18(xuu3000, xuu3100, app(app(app(ty_@3, ee), ef), eg)) -> new_ltEs6(xuu3000, xuu3100, ee, ef, eg) 30.39/12.98 new_esEs11(False, True) -> False 30.39/12.98 new_esEs11(True, False) -> False 30.39/12.98 new_compare25(xuu30000, xuu31000, True, bac, bad) -> EQ 30.39/12.98 new_ltEs4(Left(xuu30000), Left(xuu31000), app(app(app(ty_@3, bf), bg), bh), be) -> new_ltEs6(xuu30000, xuu31000, bf, bg, bh) 30.39/12.98 new_lt12(xuu30001, xuu31001, ty_Int) -> new_lt9(xuu30001, xuu31001) 30.39/12.98 new_compare26(xuu30000, xuu31000, False) -> new_compare111(xuu30000, xuu31000, new_ltEs11(xuu30000, xuu31000)) 30.39/12.98 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Double) -> new_ltEs14(xuu30000, xuu31000) 30.39/12.98 new_ltEs19(xuu30002, xuu31002, ty_Integer) -> new_ltEs17(xuu30002, xuu31002) 30.39/12.98 new_compare31(xuu30000, xuu31000, ty_Float) -> new_compare19(xuu30000, xuu31000) 30.39/12.98 new_lt6(xuu30000, xuu31000, baf) -> new_esEs10(new_compare13(xuu30000, xuu31000, baf), LT) 30.39/12.98 new_compare7(Integer(xuu30000), Integer(xuu31000)) -> new_primCmpInt(xuu30000, xuu31000) 30.39/12.98 new_compare10(xuu134, xuu135, False, dea) -> GT 30.39/12.98 new_compare11(xuu30000, xuu31000, False, bac, bad) -> GT 30.39/12.98 new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False 30.39/12.98 new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False 30.39/12.98 new_compare24(xuu300, xuu310, True, ec) -> EQ 30.39/12.98 new_esEs19(xuu40000, xuu3000, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.39/12.98 new_esEs19(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.39/12.98 new_compare24(Just(xuu3000), Just(xuu3100), False, ec) -> new_compare10(xuu3000, xuu3100, new_ltEs18(xuu3000, xuu3100, ec), ec) 30.39/12.98 new_esEs18(xuu40000, xuu3000, app(ty_Ratio, bbg)) -> new_esEs13(xuu40000, xuu3000, bbg) 30.39/12.98 new_compare31(xuu30000, xuu31000, ty_Int) -> new_compare6(xuu30000, xuu31000) 30.39/12.98 new_ltEs20(xuu30001, xuu31001, app(ty_Ratio, chg)) -> new_ltEs10(xuu30001, xuu31001, chg) 30.39/12.98 new_esEs6(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, ceg), ceh), cfa)) -> new_esEs4(xuu40000, xuu3000, ceg, ceh, cfa) 30.39/12.98 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.39/12.98 new_esEs26(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.39/12.98 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(app(ty_@2, ha), hb)) -> new_esEs7(xuu40000, xuu3000, ha, hb) 30.39/12.98 new_ltEs18(xuu3000, xuu3100, ty_Double) -> new_ltEs14(xuu3000, xuu3100) 30.39/12.98 new_esEs26(xuu40000, xuu3000, app(ty_[], dbd)) -> new_esEs16(xuu40000, xuu3000, dbd) 30.39/12.98 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Ordering, fg) -> new_esEs10(xuu40000, xuu3000) 30.39/12.98 new_esEs24(xuu30001, xuu31001, app(app(ty_Either, bhe), bhf)) -> new_esEs5(xuu30001, xuu31001, bhe, bhf) 30.39/12.98 new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) 30.39/12.98 new_primCmpInt(Neg(Zero), Pos(Succ(xuu3100))) -> LT 30.39/12.98 new_compare9(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Integer) -> new_compare7(new_sr0(xuu30000, xuu31001), new_sr0(xuu31000, xuu30001)) 30.39/12.98 new_compare19(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.39/12.98 new_primMulInt(Pos(xuu400000), Pos(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) 30.39/12.98 new_esEs29(xuu4000, xuu300, ty_Float) -> new_esEs8(xuu4000, xuu300) 30.39/12.98 new_esEs18(xuu40000, xuu3000, app(ty_[], bca)) -> new_esEs16(xuu40000, xuu3000, bca) 30.39/12.98 new_ltEs19(xuu30002, xuu31002, app(ty_Ratio, cba)) -> new_ltEs10(xuu30002, xuu31002, cba) 30.39/12.98 new_esEs24(xuu30001, xuu31001, ty_Ordering) -> new_esEs10(xuu30001, xuu31001) 30.39/12.98 new_ltEs14(xuu3000, xuu3100) -> new_fsEs(new_compare5(xuu3000, xuu3100)) 30.39/12.98 new_compare10(xuu134, xuu135, True, dea) -> LT 30.39/12.98 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(app(app(ty_@3, hc), hd), he)) -> new_esEs4(xuu40000, xuu3000, hc, hd, he) 30.39/12.98 new_esEs24(xuu30001, xuu31001, app(ty_Maybe, bhh)) -> new_esEs6(xuu30001, xuu31001, bhh) 30.39/12.98 new_primMulNat0(Succ(xuu4000000), Zero) -> Zero 30.39/12.98 new_primMulNat0(Zero, Succ(xuu300100)) -> Zero 30.39/12.98 new_ltEs11(False, False) -> True 30.39/12.98 new_compare31(xuu30000, xuu31000, ty_Bool) -> new_compare12(xuu30000, xuu31000) 30.39/12.98 new_esEs7(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bdd, bde) -> new_asAs(new_esEs19(xuu40000, xuu3000, bdd), new_esEs20(xuu40001, xuu3001, bde)) 30.39/12.98 new_esEs24(xuu30001, xuu31001, ty_Char) -> new_esEs12(xuu30001, xuu31001) 30.39/12.98 new_lt13(xuu30000, xuu31000, ty_Bool) -> new_lt15(xuu30000, xuu31000) 30.39/12.98 new_esEs30(xuu19, xuu14, ty_Float) -> new_esEs8(xuu19, xuu14) 30.39/12.98 new_compare9(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Int) -> new_compare6(new_sr(xuu30000, xuu31001), new_sr(xuu31000, xuu30001)) 30.39/12.98 new_esEs18(xuu40000, xuu3000, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.39/12.98 new_compare27(xuu30000, xuu31000, False, bgb, bgc) -> new_compare110(xuu30000, xuu31000, new_ltEs13(xuu30000, xuu31000, bgb, bgc), bgb, bgc) 30.39/12.98 new_ltEs17(xuu3000, xuu3100) -> new_fsEs(new_compare7(xuu3000, xuu3100)) 30.39/12.98 new_ltEs18(xuu3000, xuu3100, ty_@0) -> new_ltEs8(xuu3000, xuu3100) 30.39/12.98 new_lt20(xuu30000, xuu31000, app(app(app(ty_@3, cfh), cga), cgb)) -> new_lt11(xuu30000, xuu31000, cfh, cga, cgb) 30.39/12.98 new_compare24(Just(xuu3000), Nothing, False, ec) -> GT 30.39/12.98 new_esEs5(Left(xuu40000), Left(xuu3000), app(app(ty_Either, gc), gd), fg) -> new_esEs5(xuu40000, xuu3000, gc, gd) 30.39/12.98 new_compare19(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.39/12.98 new_primCmpNat0(Zero, xuu3000) -> LT 30.39/12.98 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(ty_Maybe, baa)) -> new_esEs6(xuu40000, xuu3000, baa) 30.39/12.98 new_esEs18(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.39/12.98 new_esEs22(xuu40001, xuu3001, ty_Int) -> new_esEs9(xuu40001, xuu3001) 30.39/12.98 new_lt8(xuu30000, xuu31000, bac, bad) -> new_esEs10(new_compare18(xuu30000, xuu31000, bac, bad), LT) 30.39/12.98 new_lt15(xuu30000, xuu31000) -> new_esEs10(new_compare12(xuu30000, xuu31000), LT) 30.39/12.98 new_compare111(xuu30000, xuu31000, True) -> LT 30.39/12.98 new_esEs27(xuu40001, xuu3001, ty_Float) -> new_esEs8(xuu40001, xuu3001) 30.39/12.98 new_lt14(xuu30000, xuu31000, bgh) -> new_esEs10(new_compare(xuu30000, xuu31000, bgh), LT) 30.39/12.98 new_compare31(xuu30000, xuu31000, app(ty_Ratio, ccc)) -> new_compare9(xuu30000, xuu31000, ccc) 30.39/12.98 new_lt13(xuu30000, xuu31000, ty_Float) -> new_lt10(xuu30000, xuu31000) 30.39/12.98 new_esEs20(xuu40001, xuu3001, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_esEs4(xuu40001, xuu3001, bfb, bfc, bfd) 30.39/12.98 new_ltEs11(True, True) -> True 30.39/12.98 new_ltEs16(xuu3000, xuu3100) -> new_fsEs(new_compare19(xuu3000, xuu3100)) 30.39/12.98 new_primPlusNat1(Succ(xuu25200), Zero) -> Succ(xuu25200) 30.39/12.98 new_primPlusNat1(Zero, Succ(xuu9400)) -> Succ(xuu9400) 30.39/12.98 new_esEs30(xuu19, xuu14, ty_@0) -> new_esEs14(xuu19, xuu14) 30.39/12.98 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Ordering) -> new_ltEs15(xuu30000, xuu31000) 30.39/12.98 new_lt13(xuu30000, xuu31000, ty_Ordering) -> new_lt18(xuu30000, xuu31000) 30.39/12.98 new_esEs16([], [], bag) -> True 30.39/12.98 new_ltEs12(Just(xuu30000), Just(xuu31000), app(app(app(ty_@3, cdd), cde), cdf)) -> new_ltEs6(xuu30000, xuu31000, cdd, cde, cdf) 30.39/12.98 new_ltEs20(xuu30001, xuu31001, ty_Double) -> new_ltEs14(xuu30001, xuu31001) 30.39/12.98 new_esEs23(xuu30000, xuu31000, ty_Ordering) -> new_esEs10(xuu30000, xuu31000) 30.39/12.98 new_lt12(xuu30001, xuu31001, ty_Float) -> new_lt10(xuu30001, xuu31001) 30.39/12.98 new_ltEs12(Just(xuu30000), Just(xuu31000), app(ty_Maybe, ceb)) -> new_ltEs12(xuu30000, xuu31000, ceb) 30.39/12.98 new_esEs29(xuu4000, xuu300, ty_@0) -> new_esEs14(xuu4000, xuu300) 30.39/12.98 new_primMulInt(Neg(xuu400000), Neg(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) 30.39/12.98 new_esEs20(xuu40001, xuu3001, ty_Double) -> new_esEs17(xuu40001, xuu3001) 30.39/12.98 new_esEs25(xuu30000, xuu31000, app(app(ty_@2, cgg), cgh)) -> new_esEs7(xuu30000, xuu31000, cgg, cgh) 30.39/12.98 new_esEs25(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) 30.39/12.98 new_lt20(xuu30000, xuu31000, app(ty_Ratio, cge)) -> new_lt5(xuu30000, xuu31000, cge) 30.39/12.98 new_compare([], :(xuu31000, xuu31001), ed) -> LT 30.39/12.98 new_esEs28(xuu40002, xuu3002, ty_Integer) -> new_esEs15(xuu40002, xuu3002) 30.39/12.98 new_ltEs19(xuu30002, xuu31002, app(app(ty_@2, cbc), cbd)) -> new_ltEs13(xuu30002, xuu31002, cbc, cbd) 30.39/12.98 new_esEs6(Just(xuu40000), Just(xuu3000), app(ty_Maybe, cfe)) -> new_esEs6(xuu40000, xuu3000, cfe) 30.39/12.98 new_esEs6(Nothing, Just(xuu3000), cdb) -> False 30.39/12.98 new_esEs6(Just(xuu40000), Nothing, cdb) -> False 30.39/12.98 new_ltEs11(False, True) -> True 30.39/12.98 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Float, be) -> new_ltEs16(xuu30000, xuu31000) 30.39/12.98 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_@0) -> new_ltEs8(xuu30000, xuu31000) 30.39/12.98 new_ltEs19(xuu30002, xuu31002, ty_@0) -> new_ltEs8(xuu30002, xuu31002) 30.39/12.98 new_ltEs15(EQ, GT) -> True 30.39/12.98 new_esEs24(xuu30001, xuu31001, ty_Bool) -> new_esEs11(xuu30001, xuu31001) 30.39/12.98 new_esEs6(Nothing, Nothing, cdb) -> True 30.39/12.98 new_ltEs18(xuu3000, xuu3100, ty_Char) -> new_ltEs9(xuu3000, xuu3100) 30.39/12.98 new_esEs11(False, False) -> True 30.39/12.98 new_esEs10(LT, LT) -> True 30.39/12.98 new_ltEs18(xuu3000, xuu3100, ty_Ordering) -> new_ltEs15(xuu3000, xuu3100) 30.39/12.98 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Int, be) -> new_ltEs7(xuu30000, xuu31000) 30.39/12.98 new_esEs21(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.39/12.98 new_ltEs20(xuu30001, xuu31001, app(app(ty_@2, daa), dab)) -> new_ltEs13(xuu30001, xuu31001, daa, dab) 30.39/12.98 new_primCmpNat2(xuu3000, Zero) -> GT 30.39/12.98 new_esEs28(xuu40002, xuu3002, ty_Float) -> new_esEs8(xuu40002, xuu3002) 30.39/12.98 new_lt4(xuu30000, xuu31000) -> new_esEs10(new_compare8(xuu30000, xuu31000), LT) 30.39/12.98 new_compare6(xuu30, xuu31) -> new_primCmpInt(xuu30, xuu31) 30.39/12.98 new_compare31(xuu30000, xuu31000, app(ty_Maybe, ccd)) -> new_compare13(xuu30000, xuu31000, ccd) 30.39/12.98 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.39/12.98 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Bool, fg) -> new_esEs11(xuu40000, xuu3000) 30.39/12.98 new_lt13(xuu30000, xuu31000, ty_Int) -> new_lt9(xuu30000, xuu31000) 30.39/12.98 new_esEs16(:(xuu40000, xuu40001), :(xuu3000, xuu3001), bag) -> new_asAs(new_esEs18(xuu40000, xuu3000, bag), new_esEs16(xuu40001, xuu3001, bag)) 30.39/12.98 new_compare30(xuu30000, xuu31000) -> new_compare210(xuu30000, xuu31000, new_esEs10(xuu30000, xuu31000)) 30.39/12.98 new_ltEs19(xuu30002, xuu31002, ty_Char) -> new_ltEs9(xuu30002, xuu31002) 30.39/12.98 new_lt12(xuu30001, xuu31001, ty_Bool) -> new_lt15(xuu30001, xuu31001) 30.39/12.98 new_compare31(xuu30000, xuu31000, ty_Integer) -> new_compare7(xuu30000, xuu31000) 30.39/12.98 new_ltEs12(Just(xuu30000), Just(xuu31000), app(ty_[], cdc)) -> new_ltEs5(xuu30000, xuu31000, cdc) 30.39/12.98 new_esEs26(xuu40000, xuu3000, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs4(xuu40000, xuu3000, dae, daf, dag) 30.39/12.98 new_primMulInt(Pos(xuu400000), Neg(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) 30.39/12.98 new_primMulInt(Neg(xuu400000), Pos(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) 30.39/12.98 new_esEs12(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) 30.39/12.98 new_esEs19(xuu40000, xuu3000, app(app(ty_Either, bec), bed)) -> new_esEs5(xuu40000, xuu3000, bec, bed) 30.39/12.98 new_lt17(xuu30000, xuu31000) -> new_esEs10(new_compare5(xuu30000, xuu31000), LT) 30.39/12.98 new_esEs26(xuu40000, xuu3000, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.39/12.98 new_esEs20(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) 30.39/12.98 new_ltEs20(xuu30001, xuu31001, ty_@0) -> new_ltEs8(xuu30001, xuu31001) 30.39/12.98 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(app(app(ty_@3, db), dc), dd)) -> new_ltEs6(xuu30000, xuu31000, db, dc, dd) 30.39/12.98 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(app(ty_Either, de), df)) -> new_ltEs4(xuu30000, xuu31000, de, df) 30.39/12.98 new_ltEs4(Left(xuu30000), Left(xuu31000), app(ty_[], bd), be) -> new_ltEs5(xuu30000, xuu31000, bd) 30.39/12.98 new_primCmpNat1(Succ(xuu30000), Zero) -> GT 30.39/12.98 new_esEs27(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) 30.39/12.98 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Integer) -> new_ltEs17(xuu30000, xuu31000) 30.39/12.98 new_compare14(xuu30000, xuu31000, False) -> GT 30.39/12.98 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Ordering) -> new_ltEs15(xuu30000, xuu31000) 30.39/12.98 new_ltEs19(xuu30002, xuu31002, ty_Double) -> new_ltEs14(xuu30002, xuu31002) 30.39/12.98 new_sr0(Integer(xuu300000), Integer(xuu310010)) -> Integer(new_primMulInt(xuu300000, xuu310010)) 30.39/12.98 new_ltEs9(xuu3000, xuu3100) -> new_fsEs(new_compare17(xuu3000, xuu3100)) 30.39/12.98 new_primCmpNat2(xuu3000, Succ(xuu3100)) -> new_primCmpNat1(xuu3000, xuu3100) 30.39/12.98 new_esEs28(xuu40002, xuu3002, ty_@0) -> new_esEs14(xuu40002, xuu3002) 30.39/12.98 new_ltEs15(LT, GT) -> True 30.39/12.98 new_ltEs20(xuu30001, xuu31001, app(app(ty_Either, che), chf)) -> new_ltEs4(xuu30001, xuu31001, che, chf) 30.39/12.98 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(ty_[], da)) -> new_ltEs5(xuu30000, xuu31000, da) 30.39/12.98 new_esEs29(xuu4000, xuu300, ty_Integer) -> new_esEs15(xuu4000, xuu300) 30.39/12.98 new_esEs20(xuu40001, xuu3001, app(ty_Ratio, bfg)) -> new_esEs13(xuu40001, xuu3001, bfg) 30.39/12.98 new_esEs30(xuu19, xuu14, ty_Integer) -> new_esEs15(xuu19, xuu14) 30.39/12.98 new_esEs20(xuu40001, xuu3001, ty_Int) -> new_esEs9(xuu40001, xuu3001) 30.39/12.98 new_esEs15(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) 30.39/12.98 new_esEs25(xuu30000, xuu31000, app(ty_Ratio, cge)) -> new_esEs13(xuu30000, xuu31000, cge) 30.39/12.98 new_esEs25(xuu30000, xuu31000, ty_Bool) -> new_esEs11(xuu30000, xuu31000) 30.39/12.98 new_compare31(xuu30000, xuu31000, app(ty_[], cbe)) -> new_compare(xuu30000, xuu31000, cbe) 30.39/12.98 new_esEs25(xuu30000, xuu31000, ty_Int) -> new_esEs9(xuu30000, xuu31000) 30.39/12.98 new_asAs(True, xuu141) -> xuu141 30.39/12.98 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.39/12.98 new_ltEs13(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), fb, fc) -> new_pePe(new_lt20(xuu30000, xuu31000, fb), new_asAs(new_esEs25(xuu30000, xuu31000, fb), new_ltEs20(xuu30001, xuu31001, fc))) 30.39/12.98 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Bool) -> new_ltEs11(xuu30000, xuu31000) 30.39/12.98 new_esEs18(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.39/12.98 new_esEs24(xuu30001, xuu31001, ty_@0) -> new_esEs14(xuu30001, xuu31001) 30.39/12.98 new_compare31(xuu30000, xuu31000, app(app(ty_@2, cce), ccf)) -> new_compare15(xuu30000, xuu31000, cce, ccf) 30.39/12.98 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Integer, fg) -> new_esEs15(xuu40000, xuu3000) 30.39/12.98 new_lt12(xuu30001, xuu31001, ty_Ordering) -> new_lt18(xuu30001, xuu31001) 30.39/12.98 new_compare18(xuu30000, xuu31000, bac, bad) -> new_compare25(xuu30000, xuu31000, new_esEs5(xuu30000, xuu31000, bac, bad), bac, bad) 30.39/12.98 new_lt13(xuu30000, xuu31000, app(app(ty_Either, bac), bad)) -> new_lt8(xuu30000, xuu31000, bac, bad) 30.39/12.98 new_esEs19(xuu40000, xuu3000, app(ty_Ratio, bee)) -> new_esEs13(xuu40000, xuu3000, bee) 30.39/12.98 new_ltEs20(xuu30001, xuu31001, ty_Char) -> new_ltEs9(xuu30001, xuu31001) 30.39/12.98 new_esEs24(xuu30001, xuu31001, ty_Integer) -> new_esEs15(xuu30001, xuu31001) 30.39/12.98 new_esEs19(xuu40000, xuu3000, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.39/12.98 new_esEs29(xuu4000, xuu300, app(ty_[], bag)) -> new_esEs16(xuu4000, xuu300, bag) 30.39/12.98 new_ltEs20(xuu30001, xuu31001, ty_Float) -> new_ltEs16(xuu30001, xuu31001) 30.39/12.98 new_lt13(xuu30000, xuu31000, ty_@0) -> new_lt4(xuu30000, xuu31000) 30.39/12.98 new_compare12(xuu30000, xuu31000) -> new_compare26(xuu30000, xuu31000, new_esEs11(xuu30000, xuu31000)) 30.39/12.98 new_esEs19(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.39/12.98 new_esEs18(xuu40000, xuu3000, app(app(ty_@2, bah), bba)) -> new_esEs7(xuu40000, xuu3000, bah, bba) 30.39/12.98 new_esEs24(xuu30001, xuu31001, app(app(ty_@2, caa), cab)) -> new_esEs7(xuu30001, xuu31001, caa, cab) 30.39/12.98 new_esEs30(xuu19, xuu14, app(app(ty_@2, bcb), bcc)) -> new_esEs7(xuu19, xuu14, bcb, bcc) 30.39/12.98 new_lt12(xuu30001, xuu31001, app(ty_[], bha)) -> new_lt14(xuu30001, xuu31001, bha) 30.39/12.98 new_esEs29(xuu4000, xuu300, app(app(ty_Either, gh), fg)) -> new_esEs5(xuu4000, xuu300, gh, fg) 30.39/12.98 new_ltEs18(xuu3000, xuu3100, app(app(ty_@2, fb), fc)) -> new_ltEs13(xuu3000, xuu3100, fb, fc) 30.39/12.98 new_lt20(xuu30000, xuu31000, ty_Char) -> new_lt7(xuu30000, xuu31000) 30.39/12.98 new_compare15(xuu30000, xuu31000, bgb, bgc) -> new_compare27(xuu30000, xuu31000, new_esEs7(xuu30000, xuu31000, bgb, bgc), bgb, bgc) 30.39/12.98 new_primCompAux00(xuu182, EQ) -> xuu182 30.39/12.98 new_sr(xuu40000, xuu3001) -> new_primMulInt(xuu40000, xuu3001) 30.39/12.98 new_lt12(xuu30001, xuu31001, app(ty_Maybe, bhh)) -> new_lt6(xuu30001, xuu31001, bhh) 30.39/12.98 new_esEs25(xuu30000, xuu31000, ty_Integer) -> new_esEs15(xuu30000, xuu31000) 30.39/12.98 new_primMulNat0(Zero, Zero) -> Zero 30.39/12.98 new_lt13(xuu30000, xuu31000, app(app(ty_@2, bgb), bgc)) -> new_lt16(xuu30000, xuu31000, bgb, bgc) 30.39/12.98 new_esEs30(xuu19, xuu14, app(ty_[], bdc)) -> new_esEs16(xuu19, xuu14, bdc) 30.39/12.98 new_esEs24(xuu30001, xuu31001, app(ty_[], bha)) -> new_esEs16(xuu30001, xuu31001, bha) 30.39/12.98 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Int, fg) -> new_esEs9(xuu40000, xuu3000) 30.39/12.98 new_esEs23(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) 30.39/12.98 new_compare111(xuu30000, xuu31000, False) -> GT 30.39/12.98 new_primCmpNat1(Zero, Zero) -> EQ 30.39/12.98 new_ltEs20(xuu30001, xuu31001, app(ty_Maybe, chh)) -> new_ltEs12(xuu30001, xuu31001, chh) 30.39/12.98 new_esEs30(xuu19, xuu14, ty_Int) -> new_esEs9(xuu19, xuu14) 30.39/12.98 new_esEs23(xuu30000, xuu31000, app(app(ty_@2, bgb), bgc)) -> new_esEs7(xuu30000, xuu31000, bgb, bgc) 30.39/12.98 new_compare28(xuu30000, xuu31000, True, bgd, bge, bgf) -> EQ 30.39/12.98 new_ltEs18(xuu3000, xuu3100, app(app(ty_Either, cg), be)) -> new_ltEs4(xuu3000, xuu3100, cg, be) 30.39/12.98 new_lt20(xuu30000, xuu31000, ty_Float) -> new_lt10(xuu30000, xuu31000) 30.39/12.98 new_esEs20(xuu40001, xuu3001, app(app(ty_Either, bfe), bff)) -> new_esEs5(xuu40001, xuu3001, bfe, bff) 30.39/12.98 new_ltEs11(True, False) -> False 30.39/12.98 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(app(ty_Either, hf), hg)) -> new_esEs5(xuu40000, xuu3000, hf, hg) 30.39/12.98 new_esEs19(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.39/12.98 new_ltEs15(EQ, EQ) -> True 30.39/12.98 new_esEs26(xuu40000, xuu3000, app(ty_Maybe, dbc)) -> new_esEs6(xuu40000, xuu3000, dbc) 30.39/12.98 new_fsEs(xuu151) -> new_not(new_esEs10(xuu151, GT)) 30.39/12.98 new_esEs30(xuu19, xuu14, app(ty_Ratio, bda)) -> new_esEs13(xuu19, xuu14, bda) 30.39/12.98 new_esEs26(xuu40000, xuu3000, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.39/12.98 new_esEs24(xuu30001, xuu31001, app(ty_Ratio, bhg)) -> new_esEs13(xuu30001, xuu31001, bhg) 30.39/12.98 new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.39/12.98 new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.39/12.98 new_ltEs18(xuu3000, xuu3100, app(ty_Ratio, eh)) -> new_ltEs10(xuu3000, xuu3100, eh) 30.39/12.98 new_lt12(xuu30001, xuu31001, ty_@0) -> new_lt4(xuu30001, xuu31001) 30.39/12.98 new_esEs6(Just(xuu40000), Just(xuu3000), app(app(ty_@2, cee), cef)) -> new_esEs7(xuu40000, xuu3000, cee, cef) 30.39/12.98 new_esEs18(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.39/12.98 new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False 30.39/12.98 new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False 30.39/12.98 new_esEs29(xuu4000, xuu300, app(ty_Ratio, bgg)) -> new_esEs13(xuu4000, xuu300, bgg) 30.39/12.98 new_esEs24(xuu30001, xuu31001, ty_Int) -> new_esEs9(xuu30001, xuu31001) 30.39/12.98 new_esEs25(xuu30000, xuu31000, app(ty_Maybe, cgf)) -> new_esEs6(xuu30000, xuu31000, cgf) 30.39/12.98 new_compare([], [], ed) -> EQ 30.39/12.98 new_ltEs15(LT, EQ) -> True 30.39/12.98 new_esEs20(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) 30.39/12.98 new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) 30.39/12.98 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.39/12.98 new_esEs20(xuu40001, xuu3001, app(ty_[], bga)) -> new_esEs16(xuu40001, xuu3001, bga) 30.39/12.98 new_esEs28(xuu40002, xuu3002, app(app(ty_@2, dcg), dch)) -> new_esEs7(xuu40002, xuu3002, dcg, dch) 30.39/12.98 new_ltEs4(Left(xuu30000), Left(xuu31000), app(app(ty_Either, ca), cb), be) -> new_ltEs4(xuu30000, xuu31000, ca, cb) 30.39/12.98 new_lt13(xuu30000, xuu31000, app(ty_[], bgh)) -> new_lt14(xuu30000, xuu31000, bgh) 30.39/12.98 new_esEs25(xuu30000, xuu31000, app(app(ty_Either, cgc), cgd)) -> new_esEs5(xuu30000, xuu31000, cgc, cgd) 30.39/12.98 new_esEs20(xuu40001, xuu3001, app(ty_Maybe, bfh)) -> new_esEs6(xuu40001, xuu3001, bfh) 30.39/12.98 new_ltEs19(xuu30002, xuu31002, app(ty_Maybe, cbb)) -> new_ltEs12(xuu30002, xuu31002, cbb) 30.39/12.98 new_esEs11(True, True) -> True 30.39/12.98 new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False 30.39/12.98 new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False 30.39/12.98 new_esEs19(xuu40000, xuu3000, app(ty_Maybe, bef)) -> new_esEs6(xuu40000, xuu3000, bef) 30.39/12.98 new_compare29(xuu30000, xuu31000, bgd, bge, bgf) -> new_compare28(xuu30000, xuu31000, new_esEs4(xuu30000, xuu31000, bgd, bge, bgf), bgd, bge, bgf) 30.39/12.98 new_compare31(xuu30000, xuu31000, ty_Double) -> new_compare5(xuu30000, xuu31000) 30.39/12.98 new_esEs25(xuu30000, xuu31000, app(ty_[], cfg)) -> new_esEs16(xuu30000, xuu31000, cfg) 30.39/12.98 new_esEs19(xuu40000, xuu3000, app(ty_[], beg)) -> new_esEs16(xuu40000, xuu3000, beg) 30.39/12.98 new_esEs29(xuu4000, xuu300, ty_Int) -> new_esEs9(xuu4000, xuu300) 30.39/12.98 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 30.39/12.98 new_ltEs15(GT, GT) -> True 30.39/12.98 new_esEs30(xuu19, xuu14, ty_Bool) -> new_esEs11(xuu19, xuu14) 30.39/12.98 new_esEs26(xuu40000, xuu3000, app(app(ty_Either, dah), dba)) -> new_esEs5(xuu40000, xuu3000, dah, dba) 30.39/12.98 new_esEs30(xuu19, xuu14, app(ty_Maybe, bdb)) -> new_esEs6(xuu19, xuu14, bdb) 30.39/12.98 new_esEs10(LT, GT) -> False 30.39/12.98 new_esEs10(GT, LT) -> False 30.39/12.98 new_esEs21(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.39/12.98 new_ltEs10(xuu3000, xuu3100, eh) -> new_fsEs(new_compare9(xuu3000, xuu3100, eh)) 30.39/12.98 new_esEs19(xuu40000, xuu3000, app(app(ty_@2, bdf), bdg)) -> new_esEs7(xuu40000, xuu3000, bdf, bdg) 30.39/12.98 new_ltEs7(xuu3000, xuu3100) -> new_fsEs(new_compare6(xuu3000, xuu3100)) 30.39/12.98 new_ltEs12(Just(xuu30000), Just(xuu31000), app(app(ty_@2, cec), ced)) -> new_ltEs13(xuu30000, xuu31000, cec, ced) 30.39/12.98 new_esEs27(xuu40001, xuu3001, app(app(app(ty_@3, dbg), dbh), dca)) -> new_esEs4(xuu40001, xuu3001, dbg, dbh, dca) 30.39/12.98 new_primPlusNat0(xuu104, xuu300100) -> new_primPlusNat1(xuu104, Succ(xuu300100)) 30.39/12.98 new_not(False) -> True 30.39/12.98 new_esEs28(xuu40002, xuu3002, ty_Int) -> new_esEs9(xuu40002, xuu3002) 30.39/12.98 new_compare31(xuu30000, xuu31000, ty_Char) -> new_compare17(xuu30000, xuu31000) 30.39/12.98 new_esEs18(xuu40000, xuu3000, app(app(ty_Either, bbe), bbf)) -> new_esEs5(xuu40000, xuu3000, bbe, bbf) 30.39/12.98 new_esEs28(xuu40002, xuu3002, app(ty_Ratio, ddf)) -> new_esEs13(xuu40002, xuu3002, ddf) 30.39/12.98 new_esEs29(xuu4000, xuu300, ty_Ordering) -> new_esEs10(xuu4000, xuu300) 30.39/12.98 new_lt20(xuu30000, xuu31000, ty_@0) -> new_lt4(xuu30000, xuu31000) 30.39/12.98 new_esEs25(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) 30.39/12.98 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.39/12.98 new_compare19(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.39/12.98 new_compare19(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.39/12.98 new_lt12(xuu30001, xuu31001, app(app(ty_Either, bhe), bhf)) -> new_lt8(xuu30001, xuu31001, bhe, bhf) 30.39/12.98 new_esEs25(xuu30000, xuu31000, ty_Double) -> new_esEs17(xuu30000, xuu31000) 30.39/12.98 new_esEs5(Left(xuu40000), Right(xuu3000), gh, fg) -> False 30.39/12.98 new_esEs5(Right(xuu40000), Left(xuu3000), gh, fg) -> False 30.39/12.98 new_primCmpInt(Pos(Succ(xuu3000)), Pos(xuu310)) -> new_primCmpNat2(xuu3000, xuu310) 30.39/12.98 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Int) -> new_ltEs7(xuu30000, xuu31000) 30.39/12.98 new_lt12(xuu30001, xuu31001, ty_Integer) -> new_lt19(xuu30001, xuu31001) 30.39/12.98 new_compare27(xuu30000, xuu31000, True, bgb, bgc) -> EQ 30.39/12.98 new_esEs29(xuu4000, xuu300, app(app(ty_@2, bdd), bde)) -> new_esEs7(xuu4000, xuu300, bdd, bde) 30.39/12.98 new_ltEs4(Left(xuu30000), Right(xuu31000), cg, be) -> True 30.39/12.98 new_esEs18(xuu40000, xuu3000, app(ty_Maybe, bbh)) -> new_esEs6(xuu40000, xuu3000, bbh) 30.39/12.98 new_esEs30(xuu19, xuu14, ty_Ordering) -> new_esEs10(xuu19, xuu14) 30.39/12.98 new_esEs27(xuu40001, xuu3001, ty_Ordering) -> new_esEs10(xuu40001, xuu3001) 30.39/12.98 new_ltEs18(xuu3000, xuu3100, app(ty_[], ed)) -> new_ltEs5(xuu3000, xuu3100, ed) 30.39/12.98 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(app(ty_@2, ea), eb)) -> new_ltEs13(xuu30000, xuu31000, ea, eb) 30.39/12.98 new_esEs30(xuu19, xuu14, app(app(ty_Either, bcg), bch)) -> new_esEs5(xuu19, xuu14, bcg, bch) 30.39/12.98 new_lt20(xuu30000, xuu31000, ty_Int) -> new_lt9(xuu30000, xuu31000) 30.39/12.98 new_lt5(xuu30000, xuu31000, bae) -> new_esEs10(new_compare9(xuu30000, xuu31000, bae), LT) 30.39/12.98 new_ltEs20(xuu30001, xuu31001, ty_Bool) -> new_ltEs11(xuu30001, xuu31001) 30.39/12.98 new_compare16(xuu30000, xuu31000, False, bgd, bge, bgf) -> GT 30.39/12.98 new_compare11(xuu30000, xuu31000, True, bac, bad) -> LT 30.39/12.98 new_ltEs19(xuu30002, xuu31002, ty_Int) -> new_ltEs7(xuu30002, xuu31002) 30.39/12.98 new_primCmpNat1(Zero, Succ(xuu31000)) -> LT 30.39/12.98 new_lt12(xuu30001, xuu31001, app(ty_Ratio, bhg)) -> new_lt5(xuu30001, xuu31001, bhg) 30.39/12.98 new_esEs29(xuu4000, xuu300, app(ty_Maybe, cdb)) -> new_esEs6(xuu4000, xuu300, cdb) 30.39/12.98 new_compare210(xuu30000, xuu31000, False) -> new_compare14(xuu30000, xuu31000, new_ltEs15(xuu30000, xuu31000)) 30.39/12.98 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 30.39/12.98 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 30.39/12.98 new_esEs25(xuu30000, xuu31000, app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs4(xuu30000, xuu31000, cfh, cga, cgb) 30.39/12.98 new_lt20(xuu30000, xuu31000, ty_Double) -> new_lt17(xuu30000, xuu31000) 30.39/12.98 new_lt18(xuu30000, xuu31000) -> new_esEs10(new_compare30(xuu30000, xuu31000), LT) 30.39/12.98 new_primPlusNat1(Zero, Zero) -> Zero 30.39/12.98 new_esEs18(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.39/12.98 new_compare31(xuu30000, xuu31000, ty_Ordering) -> new_compare30(xuu30000, xuu31000) 30.39/12.98 new_lt20(xuu30000, xuu31000, app(app(ty_@2, cgg), cgh)) -> new_lt16(xuu30000, xuu31000, cgg, cgh) 30.39/12.98 new_esEs20(xuu40001, xuu3001, ty_Bool) -> new_esEs11(xuu40001, xuu3001) 30.39/12.98 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Double, be) -> new_ltEs14(xuu30000, xuu31000) 30.39/12.98 new_ltEs19(xuu30002, xuu31002, ty_Bool) -> new_ltEs11(xuu30002, xuu31002) 30.39/12.98 new_ltEs20(xuu30001, xuu31001, ty_Int) -> new_ltEs7(xuu30001, xuu31001) 30.39/12.98 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Float, fg) -> new_esEs8(xuu40000, xuu3000) 30.39/12.98 new_ltEs12(Just(xuu30000), Just(xuu31000), app(ty_Ratio, cea)) -> new_ltEs10(xuu30000, xuu31000, cea) 30.39/12.98 new_esEs27(xuu40001, xuu3001, ty_Double) -> new_esEs17(xuu40001, xuu3001) 30.39/12.98 new_esEs24(xuu30001, xuu31001, ty_Float) -> new_esEs8(xuu30001, xuu31001) 30.39/12.98 new_ltEs15(LT, LT) -> True 30.39/12.98 new_ltEs12(Nothing, Just(xuu31000), fa) -> True 30.39/12.98 new_esEs10(EQ, GT) -> False 30.39/12.98 new_esEs10(GT, EQ) -> False 30.39/12.98 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Ordering, be) -> new_ltEs15(xuu30000, xuu31000) 30.39/12.98 new_esEs18(xuu40000, xuu3000, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.39/12.98 new_ltEs19(xuu30002, xuu31002, app(app(ty_Either, cag), cah)) -> new_ltEs4(xuu30002, xuu31002, cag, cah) 30.39/12.98 new_esEs28(xuu40002, xuu3002, app(ty_Maybe, ddg)) -> new_esEs6(xuu40002, xuu3002, ddg) 30.39/12.98 new_esEs8(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs9(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) 30.39/12.98 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 30.39/12.98 new_primMulNat0(Succ(xuu4000000), Succ(xuu300100)) -> new_primPlusNat0(new_primMulNat0(xuu4000000, Succ(xuu300100)), xuu300100) 30.39/12.98 new_lt20(xuu30000, xuu31000, ty_Ordering) -> new_lt18(xuu30000, xuu31000) 30.39/12.98 new_compare31(xuu30000, xuu31000, ty_@0) -> new_compare8(xuu30000, xuu31000) 30.39/12.98 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(ty_Maybe, dh)) -> new_ltEs12(xuu30000, xuu31000, dh) 30.39/12.98 new_compare16(xuu30000, xuu31000, True, bgd, bge, bgf) -> LT 30.39/12.98 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.39/12.98 new_esEs13(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), bgg) -> new_asAs(new_esEs21(xuu40000, xuu3000, bgg), new_esEs22(xuu40001, xuu3001, bgg)) 30.39/12.98 new_esEs27(xuu40001, xuu3001, app(ty_Maybe, dce)) -> new_esEs6(xuu40001, xuu3001, dce) 30.39/12.98 new_esEs6(Just(xuu40000), Just(xuu3000), app(ty_[], cff)) -> new_esEs16(xuu40000, xuu3000, cff) 30.39/12.98 new_esEs5(Left(xuu40000), Left(xuu3000), ty_@0, fg) -> new_esEs14(xuu40000, xuu3000) 30.39/12.98 new_ltEs12(Nothing, Nothing, fa) -> True 30.39/12.98 new_esEs16(:(xuu40000, xuu40001), [], bag) -> False 30.39/12.98 new_esEs16([], :(xuu3000, xuu3001), bag) -> False 30.39/12.98 new_ltEs19(xuu30002, xuu31002, ty_Float) -> new_ltEs16(xuu30002, xuu31002) 30.39/12.98 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_@0, be) -> new_ltEs8(xuu30000, xuu31000) 30.39/12.98 new_compare31(xuu30000, xuu31000, app(app(ty_Either, cca), ccb)) -> new_compare18(xuu30000, xuu31000, cca, ccb) 30.39/12.98 new_esEs23(xuu30000, xuu31000, app(ty_[], bgh)) -> new_esEs16(xuu30000, xuu31000, bgh) 30.39/12.98 new_ltEs12(Just(xuu30000), Nothing, fa) -> False 30.39/12.98 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 30.39/12.98 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 30.39/12.98 new_compare8(@0, @0) -> EQ 30.39/12.98 new_lt20(xuu30000, xuu31000, app(ty_Maybe, cgf)) -> new_lt6(xuu30000, xuu31000, cgf) 30.39/12.98 new_compare110(xuu30000, xuu31000, False, bgb, bgc) -> GT 30.39/12.98 new_esEs4(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), ccg, cch, cda) -> new_asAs(new_esEs26(xuu40000, xuu3000, ccg), new_asAs(new_esEs27(xuu40001, xuu3001, cch), new_esEs28(xuu40002, xuu3002, cda))) 30.39/12.98 new_esEs23(xuu30000, xuu31000, ty_Integer) -> new_esEs15(xuu30000, xuu31000) 30.39/12.98 new_esEs28(xuu40002, xuu3002, app(app(ty_Either, ddd), dde)) -> new_esEs5(xuu40002, xuu3002, ddd, dde) 30.39/12.98 new_primEqNat0(Zero, Zero) -> True 30.39/12.98 new_ltEs18(xuu3000, xuu3100, ty_Float) -> new_ltEs16(xuu3000, xuu3100) 30.39/12.98 new_esEs19(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.39/12.98 new_esEs18(xuu40000, xuu3000, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.39/12.98 new_ltEs20(xuu30001, xuu31001, app(ty_[], cha)) -> new_ltEs5(xuu30001, xuu31001, cha) 30.39/12.98 new_esEs28(xuu40002, xuu3002, ty_Ordering) -> new_esEs10(xuu40002, xuu3002) 30.39/12.98 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Float) -> new_ltEs16(xuu30000, xuu31000) 30.39/12.98 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Integer) -> new_ltEs17(xuu30000, xuu31000) 30.39/12.98 new_esEs6(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.39/12.98 new_esEs29(xuu4000, xuu300, ty_Bool) -> new_esEs11(xuu4000, xuu300) 30.39/12.98 new_asAs(False, xuu141) -> False 30.39/12.98 new_esEs23(xuu30000, xuu31000, ty_Float) -> new_esEs8(xuu30000, xuu31000) 30.39/12.98 new_compare24(Nothing, Nothing, False, ec) -> LT 30.39/12.98 new_esEs20(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) 30.39/12.98 new_esEs26(xuu40000, xuu3000, app(ty_Ratio, dbb)) -> new_esEs13(xuu40000, xuu3000, dbb) 30.39/12.98 new_lt10(xuu30000, xuu31000) -> new_esEs10(new_compare19(xuu30000, xuu31000), LT) 30.39/12.98 new_esEs26(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.39/12.98 new_esEs23(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) 30.39/12.98 new_ltEs4(Right(xuu30000), Left(xuu31000), cg, be) -> False 30.39/12.98 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.39/12.98 new_primCmpInt(Neg(Succ(xuu3000)), Neg(xuu310)) -> new_primCmpNat0(xuu310, xuu3000) 30.39/12.98 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.39/12.98 new_ltEs18(xuu3000, xuu3100, ty_Int) -> new_ltEs7(xuu3000, xuu3100) 30.39/12.98 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Char, be) -> new_ltEs9(xuu30000, xuu31000) 30.39/12.98 new_esEs20(xuu40001, xuu3001, app(app(ty_@2, beh), bfa)) -> new_esEs7(xuu40001, xuu3001, beh, bfa) 30.39/12.98 30.39/12.98 The set Q consists of the following terms: 30.39/12.98 30.39/12.98 new_primPlusNat1(Succ(x0), Succ(x1)) 30.39/12.98 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.98 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 30.39/12.98 new_esEs27(x0, x1, ty_Ordering) 30.39/12.98 new_esEs19(x0, x1, ty_Bool) 30.39/12.98 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 30.39/12.98 new_ltEs4(Left(x0), Left(x1), ty_Char, x2) 30.39/12.98 new_esEs24(x0, x1, app(ty_Maybe, x2)) 30.39/12.98 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.39/12.98 new_ltEs18(x0, x1, ty_Bool) 30.39/12.98 new_primCmpNat2(x0, Succ(x1)) 30.39/12.98 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.98 new_ltEs12(Nothing, Nothing, x0) 30.39/12.98 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.98 new_lt20(x0, x1, ty_Int) 30.39/12.98 new_lt20(x0, x1, app(ty_[], x2)) 30.39/12.98 new_sr0(Integer(x0), Integer(x1)) 30.39/12.98 new_ltEs17(x0, x1) 30.39/12.98 new_esEs23(x0, x1, ty_Char) 30.39/12.98 new_compare31(x0, x1, ty_Ordering) 30.39/12.98 new_compare110(x0, x1, False, x2, x3) 30.39/12.98 new_ltEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.39/12.98 new_lt20(x0, x1, ty_Ordering) 30.39/12.98 new_esEs28(x0, x1, app(ty_[], x2)) 30.39/12.98 new_primCmpNat1(Succ(x0), Zero) 30.39/12.98 new_primPlusNat1(Zero, Zero) 30.39/12.98 new_esEs27(x0, x1, ty_Double) 30.39/12.98 new_esEs19(x0, x1, app(ty_Maybe, x2)) 30.39/12.98 new_esEs28(x0, x1, ty_Char) 30.39/12.98 new_compare31(x0, x1, ty_Int) 30.39/12.98 new_esEs25(x0, x1, ty_Char) 30.39/12.98 new_primCmpNat1(Zero, Zero) 30.39/12.98 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 30.39/12.98 new_ltEs18(x0, x1, ty_@0) 30.39/12.98 new_compare26(x0, x1, True) 30.39/12.98 new_esEs10(EQ, EQ) 30.39/12.98 new_lt14(x0, x1, x2) 30.39/12.98 new_compare31(x0, x1, ty_Char) 30.39/12.98 new_lt20(x0, x1, ty_Double) 30.39/12.98 new_primEqInt(Pos(Zero), Pos(Zero)) 30.39/12.98 new_lt13(x0, x1, app(ty_Maybe, x2)) 30.39/12.98 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 30.39/12.98 new_ltEs4(Left(x0), Left(x1), ty_Int, x2) 30.39/12.98 new_ltEs4(Right(x0), Right(x1), x2, ty_Integer) 30.39/12.98 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.39/12.98 new_primCompAux00(x0, GT) 30.39/12.98 new_ltEs12(Just(x0), Nothing, x1) 30.39/12.98 new_esEs25(x0, x1, ty_Int) 30.39/12.98 new_lt13(x0, x1, ty_Integer) 30.39/12.98 new_esEs24(x0, x1, ty_Bool) 30.39/12.98 new_compare31(x0, x1, ty_Double) 30.39/12.98 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 30.39/12.98 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 30.39/12.98 new_ltEs12(Just(x0), Just(x1), ty_Ordering) 30.39/12.98 new_esEs19(x0, x1, ty_@0) 30.39/12.98 new_ltEs7(x0, x1) 30.39/12.98 new_esEs6(Nothing, Just(x0), x1) 30.39/12.98 new_esEs30(x0, x1, ty_Integer) 30.39/12.98 new_esEs25(x0, x1, ty_Ordering) 30.39/12.98 new_ltEs12(Just(x0), Just(x1), app(ty_[], x2)) 30.39/12.98 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.98 new_ltEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.39/12.98 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 30.39/12.98 new_compare([], :(x0, x1), x2) 30.39/12.98 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 30.39/12.98 new_lt18(x0, x1) 30.39/12.98 new_primEqInt(Neg(Zero), Neg(Zero)) 30.39/12.98 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.98 new_compare24(Nothing, Nothing, False, x0) 30.39/12.98 new_primCmpNat0(Succ(x0), x1) 30.39/12.98 new_ltEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.39/12.98 new_lt20(x0, x1, ty_Char) 30.39/12.98 new_ltEs12(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.39/12.98 new_esEs23(x0, x1, ty_Ordering) 30.39/12.98 new_compare210(x0, x1, True) 30.39/12.98 new_compare13(x0, x1, x2) 30.39/12.98 new_ltEs19(x0, x1, ty_Float) 30.39/12.98 new_esEs30(x0, x1, ty_@0) 30.39/12.98 new_lt13(x0, x1, app(ty_[], x2)) 30.39/12.98 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 30.39/12.98 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 30.39/12.98 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.98 new_ltEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 30.39/12.98 new_esEs25(x0, x1, ty_@0) 30.39/12.98 new_esEs25(x0, x1, ty_Double) 30.39/12.98 new_ltEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.39/12.98 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.39/12.98 new_esEs23(x0, x1, app(ty_[], x2)) 30.39/12.98 new_compare27(x0, x1, True, x2, x3) 30.39/12.98 new_compare(:(x0, x1), [], x2) 30.39/12.98 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 30.39/12.98 new_esEs20(x0, x1, app(ty_Ratio, x2)) 30.39/12.98 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.39/12.98 new_ltEs4(Right(x0), Right(x1), x2, ty_Bool) 30.39/12.98 new_compare28(x0, x1, False, x2, x3, x4) 30.39/12.98 new_ltEs4(Left(x0), Left(x1), ty_Bool, x2) 30.39/12.98 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.98 new_ltEs11(True, True) 30.39/12.98 new_esEs27(x0, x1, ty_Char) 30.39/12.98 new_esEs19(x0, x1, app(ty_Ratio, x2)) 30.39/12.98 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 30.39/12.98 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.98 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.98 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 30.39/12.98 new_compare14(x0, x1, True) 30.39/12.98 new_esEs18(x0, x1, app(ty_Ratio, x2)) 30.39/12.98 new_esEs24(x0, x1, app(ty_Ratio, x2)) 30.39/12.98 new_esEs24(x0, x1, ty_Char) 30.39/12.98 new_ltEs12(Just(x0), Just(x1), ty_Int) 30.39/12.98 new_ltEs4(Left(x0), Left(x1), ty_Ordering, x2) 30.39/12.98 new_compare27(x0, x1, False, x2, x3) 30.39/12.98 new_compare30(x0, x1) 30.39/12.98 new_ltEs18(x0, x1, ty_Integer) 30.39/12.98 new_primEqInt(Pos(Zero), Neg(Zero)) 30.39/12.98 new_primEqInt(Neg(Zero), Pos(Zero)) 30.39/12.98 new_ltEs9(x0, x1) 30.39/12.98 new_esEs27(x0, x1, ty_Int) 30.39/12.98 new_compare7(Integer(x0), Integer(x1)) 30.39/12.98 new_esEs27(x0, x1, app(ty_[], x2)) 30.39/12.98 new_esEs23(x0, x1, ty_Integer) 30.39/12.98 new_esEs26(x0, x1, ty_Ordering) 30.39/12.98 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.98 new_ltEs12(Just(x0), Just(x1), ty_Char) 30.39/12.98 new_compare8(@0, @0) 30.39/12.98 new_ltEs12(Just(x0), Just(x1), ty_Double) 30.39/12.98 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 30.39/12.98 new_esEs27(x0, x1, ty_@0) 30.39/12.98 new_primMulInt(Neg(x0), Neg(x1)) 30.39/12.98 new_compare5(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 30.39/12.98 new_compare5(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 30.39/12.98 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.39/12.98 new_ltEs4(Left(x0), Left(x1), ty_Integer, x2) 30.39/12.98 new_esEs24(x0, x1, ty_Int) 30.39/12.98 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 30.39/12.98 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 30.39/12.98 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 30.39/12.98 new_ltEs13(@2(x0, x1), @2(x2, x3), x4, x5) 30.39/12.98 new_esEs25(x0, x1, ty_Bool) 30.39/12.98 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 30.39/12.98 new_compare16(x0, x1, True, x2, x3, x4) 30.39/12.98 new_ltEs15(EQ, EQ) 30.39/12.98 new_esEs28(x0, x1, ty_Ordering) 30.39/12.98 new_lt12(x0, x1, ty_Integer) 30.39/12.98 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.39/12.98 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.98 new_esEs30(x0, x1, ty_Bool) 30.39/12.98 new_esEs24(x0, x1, ty_@0) 30.39/12.98 new_compare29(x0, x1, x2, x3, x4) 30.39/12.98 new_lt12(x0, x1, app(ty_Maybe, x2)) 30.39/12.98 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.98 new_esEs22(x0, x1, ty_Integer) 30.39/12.98 new_esEs18(x0, x1, ty_Ordering) 30.39/12.98 new_esEs30(x0, x1, ty_Char) 30.39/12.98 new_esEs20(x0, x1, ty_Integer) 30.39/12.98 new_ltEs18(x0, x1, ty_Float) 30.39/12.98 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.39/12.98 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.98 new_esEs27(x0, x1, ty_Bool) 30.39/12.98 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.98 new_compare([], [], x0) 30.39/12.98 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 30.39/12.98 new_esEs28(x0, x1, ty_Integer) 30.39/12.98 new_lt20(x0, x1, ty_Integer) 30.39/12.98 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.98 new_esEs19(x0, x1, ty_Double) 30.39/12.98 new_esEs6(Just(x0), Just(x1), ty_Float) 30.39/12.98 new_esEs16(:(x0, x1), [], x2) 30.39/12.98 new_esEs24(x0, x1, ty_Float) 30.39/12.98 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.98 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.98 new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.98 new_esEs18(x0, x1, ty_Double) 30.39/12.98 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.39/12.98 new_esEs30(x0, x1, ty_Int) 30.39/12.98 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 30.39/12.98 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 30.39/12.98 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 30.39/12.98 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.39/12.98 new_lt5(x0, x1, x2) 30.39/12.98 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 30.39/12.98 new_esEs24(x0, x1, ty_Double) 30.39/12.98 new_compare17(Char(x0), Char(x1)) 30.39/12.98 new_ltEs20(x0, x1, ty_Double) 30.39/12.98 new_ltEs18(x0, x1, app(ty_[], x2)) 30.39/12.98 new_primMulNat0(Zero, Succ(x0)) 30.39/12.98 new_ltEs15(GT, LT) 30.39/12.98 new_ltEs15(LT, GT) 30.39/12.98 new_esEs9(x0, x1) 30.39/12.98 new_ltEs12(Just(x0), Just(x1), ty_@0) 30.39/12.98 new_ltEs4(Right(x0), Right(x1), x2, ty_Char) 30.39/12.98 new_ltEs19(x0, x1, ty_Integer) 30.39/12.98 new_esEs28(x0, x1, ty_Bool) 30.39/12.98 new_ltEs18(x0, x1, ty_Int) 30.39/12.98 new_compare5(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 30.39/12.98 new_ltEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.39/12.98 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.98 new_ltEs5(x0, x1, x2) 30.39/12.98 new_esEs6(Nothing, Nothing, x0) 30.39/12.98 new_esEs6(Just(x0), Nothing, x1) 30.39/12.98 new_lt11(x0, x1, x2, x3, x4) 30.39/12.98 new_esEs6(Just(x0), Just(x1), ty_Int) 30.39/12.98 new_ltEs4(Right(x0), Right(x1), x2, ty_Int) 30.39/12.98 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 30.39/12.98 new_ltEs18(x0, x1, ty_Char) 30.39/12.98 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 30.39/12.98 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.98 new_esEs25(x0, x1, ty_Integer) 30.39/12.98 new_primCmpNat1(Zero, Succ(x0)) 30.39/12.98 new_lt12(x0, x1, ty_Bool) 30.39/12.98 new_compare10(x0, x1, True, x2) 30.39/12.98 new_primCompAux00(x0, EQ) 30.39/12.98 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 30.39/12.98 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 30.39/12.98 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 30.39/12.98 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.98 new_primCmpNat1(Succ(x0), Succ(x1)) 30.39/12.98 new_primEqNat0(Zero, Succ(x0)) 30.39/12.98 new_ltEs20(x0, x1, ty_Ordering) 30.39/12.98 new_esEs30(x0, x1, ty_Float) 30.39/12.98 new_esEs17(Double(x0, x1), Double(x2, x3)) 30.39/12.99 new_esEs29(x0, x1, ty_Integer) 30.39/12.99 new_esEs6(Just(x0), Just(x1), ty_Ordering) 30.39/12.99 new_pePe(True, x0) 30.39/12.99 new_compare28(x0, x1, True, x2, x3, x4) 30.39/12.99 new_primCmpInt(Neg(Zero), Neg(Zero)) 30.39/12.99 new_lt12(x0, x1, app(ty_Ratio, x2)) 30.39/12.99 new_ltEs4(Left(x0), Left(x1), ty_Double, x2) 30.39/12.99 new_compare19(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 30.39/12.99 new_esEs30(x0, x1, app(ty_Maybe, x2)) 30.39/12.99 new_esEs18(x0, x1, app(ty_[], x2)) 30.39/12.99 new_ltEs19(x0, x1, ty_Bool) 30.39/12.99 new_esEs12(Char(x0), Char(x1)) 30.39/12.99 new_compare24(x0, x1, True, x2) 30.39/12.99 new_compare24(Nothing, Just(x0), False, x1) 30.39/12.99 new_primCmpInt(Pos(Zero), Neg(Zero)) 30.39/12.99 new_primCmpInt(Neg(Zero), Pos(Zero)) 30.39/12.99 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.99 new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) 30.39/12.99 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 30.39/12.99 new_esEs29(x0, x1, ty_Ordering) 30.39/12.99 new_esEs23(x0, x1, ty_Bool) 30.39/12.99 new_lt12(x0, x1, ty_Char) 30.39/12.99 new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) 30.39/12.99 new_compare15(x0, x1, x2, x3) 30.39/12.99 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.99 new_esEs29(x0, x1, app(ty_Maybe, x2)) 30.39/12.99 new_lt20(x0, x1, app(ty_Maybe, x2)) 30.39/12.99 new_esEs11(False, False) 30.39/12.99 new_esEs10(LT, GT) 30.39/12.99 new_esEs10(GT, LT) 30.39/12.99 new_ltEs4(Right(x0), Right(x1), x2, ty_Float) 30.39/12.99 new_esEs23(x0, x1, ty_Float) 30.39/12.99 new_esEs20(x0, x1, ty_Float) 30.39/12.99 new_esEs26(x0, x1, app(ty_[], x2)) 30.39/12.99 new_compare11(x0, x1, False, x2, x3) 30.39/12.99 new_esEs6(Just(x0), Just(x1), ty_Char) 30.39/12.99 new_ltEs4(Left(x0), Left(x1), ty_@0, x2) 30.39/12.99 new_lt20(x0, x1, ty_@0) 30.39/12.99 new_esEs20(x0, x1, app(ty_[], x2)) 30.39/12.99 new_lt13(x0, x1, ty_@0) 30.39/12.99 new_esEs20(x0, x1, ty_Bool) 30.39/12.99 new_lt12(x0, x1, ty_Int) 30.39/12.99 new_esEs23(x0, x1, app(ty_Maybe, x2)) 30.39/12.99 new_compare31(x0, x1, app(ty_[], x2)) 30.39/12.99 new_ltEs12(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.39/12.99 new_primEqNat0(Succ(x0), Zero) 30.39/12.99 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.99 new_esEs27(x0, x1, ty_Integer) 30.39/12.99 new_lt4(x0, x1) 30.39/12.99 new_compare111(x0, x1, True) 30.39/12.99 new_lt10(x0, x1) 30.39/12.99 new_esEs18(x0, x1, ty_@0) 30.39/12.99 new_primMulNat0(Succ(x0), Succ(x1)) 30.39/12.99 new_esEs26(x0, x1, ty_Double) 30.39/12.99 new_esEs25(x0, x1, app(ty_Maybe, x2)) 30.39/12.99 new_esEs28(x0, x1, ty_Float) 30.39/12.99 new_compare31(x0, x1, ty_@0) 30.39/12.99 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.99 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 30.39/12.99 new_esEs20(x0, x1, ty_Int) 30.39/12.99 new_esEs6(Just(x0), Just(x1), ty_Bool) 30.39/12.99 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.39/12.99 new_esEs26(x0, x1, ty_@0) 30.39/12.99 new_esEs28(x0, x1, ty_Int) 30.39/12.99 new_ltEs11(False, True) 30.39/12.99 new_ltEs11(True, False) 30.39/12.99 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 30.39/12.99 new_esEs10(EQ, GT) 30.39/12.99 new_esEs10(GT, EQ) 30.39/12.99 new_esEs16([], :(x0, x1), x2) 30.39/12.99 new_lt13(x0, x1, ty_Double) 30.39/12.99 new_esEs23(x0, x1, ty_Int) 30.39/12.99 new_esEs20(x0, x1, ty_Char) 30.39/12.99 new_lt12(x0, x1, ty_Float) 30.39/12.99 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.99 new_ltEs12(Nothing, Just(x0), x1) 30.39/12.99 new_esEs26(x0, x1, app(ty_Ratio, x2)) 30.39/12.99 new_ltEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.39/12.99 new_lt13(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.99 new_esEs19(x0, x1, app(ty_[], x2)) 30.39/12.99 new_esEs27(x0, x1, ty_Float) 30.39/12.99 new_compare25(x0, x1, False, x2, x3) 30.39/12.99 new_compare12(x0, x1) 30.39/12.99 new_lt12(x0, x1, ty_Double) 30.39/12.99 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.99 new_lt20(x0, x1, app(ty_Ratio, x2)) 30.39/12.99 new_esEs29(x0, x1, ty_Char) 30.39/12.99 new_esEs16(:(x0, x1), :(x2, x3), x4) 30.39/12.99 new_primMulNat0(Zero, Zero) 30.39/12.99 new_compare31(x0, x1, app(ty_Maybe, x2)) 30.39/12.99 new_lt12(x0, x1, ty_Ordering) 30.39/12.99 new_esEs25(x0, x1, app(ty_Ratio, x2)) 30.39/12.99 new_primCompAux00(x0, LT) 30.39/12.99 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.39/12.99 new_ltEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.39/12.99 new_ltEs19(x0, x1, ty_Char) 30.39/12.99 new_esEs27(x0, x1, app(ty_Ratio, x2)) 30.39/12.99 new_sr(x0, x1) 30.39/12.99 new_primCompAux0(x0, x1, x2, x3) 30.39/12.99 new_asAs(False, x0) 30.39/12.99 new_ltEs19(x0, x1, ty_Int) 30.39/12.99 new_lt8(x0, x1, x2, x3) 30.39/12.99 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.99 new_ltEs14(x0, x1) 30.39/12.99 new_esEs28(x0, x1, app(ty_Maybe, x2)) 30.39/12.99 new_ltEs20(x0, x1, ty_Integer) 30.39/12.99 new_esEs8(Float(x0, x1), Float(x2, x3)) 30.39/12.99 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.39/12.99 new_esEs6(Just(x0), Just(x1), ty_Integer) 30.39/12.99 new_esEs29(x0, x1, ty_@0) 30.39/12.99 new_ltEs19(x0, x1, ty_Ordering) 30.39/12.99 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.39/12.99 new_ltEs4(Right(x0), Right(x1), x2, ty_Ordering) 30.39/12.99 new_ltEs19(x0, x1, ty_@0) 30.39/12.99 new_esEs22(x0, x1, ty_Int) 30.39/12.99 new_ltEs20(x0, x1, ty_@0) 30.39/12.99 new_ltEs12(Just(x0), Just(x1), ty_Integer) 30.39/12.99 new_esEs18(x0, x1, ty_Bool) 30.39/12.99 new_esEs21(x0, x1, ty_Int) 30.39/12.99 new_ltEs12(Just(x0), Just(x1), ty_Float) 30.39/12.99 new_esEs6(Just(x0), Just(x1), ty_@0) 30.39/12.99 new_esEs10(LT, LT) 30.39/12.99 new_esEs28(x0, x1, app(ty_Ratio, x2)) 30.39/12.99 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.39/12.99 new_esEs30(x0, x1, ty_Double) 30.39/12.99 new_not(True) 30.39/12.99 new_esEs29(x0, x1, ty_Bool) 30.39/12.99 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.99 new_compare210(x0, x1, False) 30.39/12.99 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 30.39/12.99 new_lt15(x0, x1) 30.39/12.99 new_pePe(False, x0) 30.39/12.99 new_esEs29(x0, x1, ty_Double) 30.39/12.99 new_esEs11(True, True) 30.39/12.99 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.99 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.99 new_ltEs10(x0, x1, x2) 30.39/12.99 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 30.39/12.99 new_compare31(x0, x1, app(ty_Ratio, x2)) 30.39/12.99 new_ltEs4(Right(x0), Right(x1), x2, ty_Double) 30.39/12.99 new_primCmpNat0(Zero, x0) 30.39/12.99 new_esEs15(Integer(x0), Integer(x1)) 30.39/12.99 new_lt12(x0, x1, app(ty_[], x2)) 30.39/12.99 new_esEs27(x0, x1, app(ty_Maybe, x2)) 30.39/12.99 new_ltEs15(GT, EQ) 30.39/12.99 new_ltEs15(EQ, GT) 30.39/12.99 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.99 new_primCmpNat2(x0, Zero) 30.39/12.99 new_compare19(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 30.39/12.99 new_esEs11(False, True) 30.39/12.99 new_esEs11(True, False) 30.39/12.99 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.39/12.99 new_esEs29(x0, x1, ty_Int) 30.39/12.99 new_esEs26(x0, x1, ty_Integer) 30.39/12.99 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.99 new_ltEs20(x0, x1, ty_Char) 30.39/12.99 new_lt13(x0, x1, ty_Ordering) 30.39/12.99 new_lt17(x0, x1) 30.39/12.99 new_lt13(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.99 new_ltEs12(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.39/12.99 new_esEs23(x0, x1, app(ty_Ratio, x2)) 30.39/12.99 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 30.39/12.99 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.99 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.99 new_ltEs12(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.39/12.99 new_ltEs12(Just(x0), Just(x1), ty_Bool) 30.39/12.99 new_primEqNat0(Succ(x0), Succ(x1)) 30.39/12.99 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.99 new_esEs18(x0, x1, ty_Integer) 30.39/12.99 new_esEs20(x0, x1, ty_Ordering) 30.39/12.99 new_ltEs20(x0, x1, ty_Bool) 30.39/12.99 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.99 new_primPlusNat1(Succ(x0), Zero) 30.39/12.99 new_ltEs4(Left(x0), Right(x1), x2, x3) 30.39/12.99 new_ltEs4(Right(x0), Left(x1), x2, x3) 30.39/12.99 new_esEs29(x0, x1, app(ty_[], x2)) 30.39/12.99 new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.99 new_primMulNat0(Succ(x0), Zero) 30.39/12.99 new_compare18(x0, x1, x2, x3) 30.39/12.99 new_primCmpInt(Pos(Zero), Pos(Zero)) 30.39/12.99 new_compare31(x0, x1, ty_Integer) 30.39/12.99 new_lt12(x0, x1, ty_@0) 30.39/12.99 new_esEs19(x0, x1, ty_Ordering) 30.39/12.99 new_esEs10(GT, GT) 30.39/12.99 new_esEs20(x0, x1, app(ty_Maybe, x2)) 30.39/12.99 new_lt16(x0, x1, x2, x3) 30.39/12.99 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 30.39/12.99 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 30.39/12.99 new_compare25(x0, x1, True, x2, x3) 30.39/12.99 new_primMulInt(Pos(x0), Pos(x1)) 30.39/12.99 new_compare16(x0, x1, False, x2, x3, x4) 30.39/12.99 new_esEs14(@0, @0) 30.39/12.99 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 30.39/12.99 new_primPlusNat1(Zero, Succ(x0)) 30.39/12.99 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.39/12.99 new_esEs30(x0, x1, app(ty_Ratio, x2)) 30.39/12.99 new_primPlusNat0(x0, x1) 30.39/12.99 new_ltEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.39/12.99 new_esEs10(LT, EQ) 30.39/12.99 new_esEs10(EQ, LT) 30.39/12.99 new_compare24(Just(x0), Nothing, False, x1) 30.39/12.99 new_compare26(x0, x1, False) 30.39/12.99 new_esEs18(x0, x1, app(ty_Maybe, x2)) 30.39/12.99 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 30.39/12.99 new_esEs18(x0, x1, ty_Int) 30.39/12.99 new_primMulInt(Pos(x0), Neg(x1)) 30.39/12.99 new_primMulInt(Neg(x0), Pos(x1)) 30.39/12.99 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 30.39/12.99 new_esEs19(x0, x1, ty_Float) 30.39/12.99 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.99 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.39/12.99 new_esEs5(Left(x0), Right(x1), x2, x3) 30.39/12.99 new_esEs5(Right(x0), Left(x1), x2, x3) 30.39/12.99 new_esEs29(x0, x1, app(ty_Ratio, x2)) 30.39/12.99 new_lt13(x0, x1, app(ty_Ratio, x2)) 30.39/12.99 new_esEs6(Just(x0), Just(x1), ty_Double) 30.39/12.99 new_compare110(x0, x1, True, x2, x3) 30.39/12.99 new_ltEs18(x0, x1, ty_Ordering) 30.39/12.99 new_compare6(x0, x1) 30.39/12.99 new_ltEs20(x0, x1, app(ty_[], x2)) 30.39/12.99 new_esEs26(x0, x1, ty_Bool) 30.39/12.99 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 30.39/12.99 new_lt20(x0, x1, ty_Bool) 30.39/12.99 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 30.39/12.99 new_ltEs15(EQ, LT) 30.39/12.99 new_ltEs15(LT, EQ) 30.39/12.99 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.99 new_ltEs20(x0, x1, ty_Float) 30.39/12.99 new_compare11(x0, x1, True, x2, x3) 30.39/12.99 new_esEs30(x0, x1, app(ty_[], x2)) 30.39/12.99 new_esEs30(x0, x1, ty_Ordering) 30.39/12.99 new_esEs19(x0, x1, ty_Char) 30.39/12.99 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.99 new_ltEs15(GT, GT) 30.39/12.99 new_compare5(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 30.39/12.99 new_ltEs20(x0, x1, ty_Int) 30.39/12.99 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.99 new_compare31(x0, x1, ty_Bool) 30.39/12.99 new_esEs16([], [], x0) 30.39/12.99 new_esEs29(x0, x1, ty_Float) 30.39/12.99 new_ltEs4(Right(x0), Right(x1), x2, ty_@0) 30.39/12.99 new_fsEs(x0) 30.39/12.99 new_lt9(x0, x1) 30.39/12.99 new_ltEs11(False, False) 30.39/12.99 new_esEs19(x0, x1, ty_Int) 30.39/12.99 new_ltEs18(x0, x1, ty_Double) 30.39/12.99 new_compare111(x0, x1, False) 30.39/12.99 new_lt13(x0, x1, ty_Bool) 30.39/12.99 new_esEs26(x0, x1, app(ty_Maybe, x2)) 30.39/12.99 new_esEs26(x0, x1, ty_Int) 30.39/12.99 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.99 new_primEqNat0(Zero, Zero) 30.39/12.99 new_compare24(Just(x0), Just(x1), False, x2) 30.39/12.99 new_ltEs4(Left(x0), Left(x1), ty_Float, x2) 30.39/12.99 new_compare19(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 30.39/12.99 new_compare19(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 30.39/12.99 new_lt13(x0, x1, ty_Float) 30.39/12.99 new_esEs25(x0, x1, ty_Float) 30.39/12.99 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.39/12.99 new_esEs20(x0, x1, ty_@0) 30.39/12.99 new_ltEs19(x0, x1, app(ty_[], x2)) 30.39/12.99 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.99 new_not(False) 30.39/12.99 new_esEs24(x0, x1, ty_Integer) 30.39/12.99 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 30.39/12.99 new_lt7(x0, x1) 30.39/12.99 new_esEs23(x0, x1, ty_Double) 30.39/12.99 new_compare31(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.99 new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.39/12.99 new_esEs18(x0, x1, ty_Char) 30.39/12.99 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 30.39/12.99 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.99 new_ltEs19(x0, x1, ty_Double) 30.39/12.99 new_esEs13(:%(x0, x1), :%(x2, x3), x4) 30.39/12.99 new_compare14(x0, x1, False) 30.39/12.99 new_ltEs8(x0, x1) 30.39/12.99 new_esEs28(x0, x1, ty_Double) 30.39/12.99 new_esEs19(x0, x1, ty_Integer) 30.39/12.99 new_esEs21(x0, x1, ty_Integer) 30.39/12.99 new_ltEs15(LT, LT) 30.39/12.99 new_ltEs12(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.39/12.99 new_esEs26(x0, x1, ty_Float) 30.39/12.99 new_esEs25(x0, x1, app(ty_[], x2)) 30.39/12.99 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.99 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.99 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.39/12.99 new_lt13(x0, x1, ty_Int) 30.39/12.99 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.99 new_compare(:(x0, x1), :(x2, x3), x4) 30.39/12.99 new_lt6(x0, x1, x2) 30.39/12.99 new_esEs26(x0, x1, ty_Char) 30.39/12.99 new_lt20(x0, x1, ty_Float) 30.39/12.99 new_lt19(x0, x1) 30.39/12.99 new_asAs(True, x0) 30.39/12.99 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 30.39/12.99 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.39/12.99 new_lt13(x0, x1, ty_Char) 30.39/12.99 new_esEs23(x0, x1, ty_@0) 30.39/12.99 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.39/12.99 new_ltEs16(x0, x1) 30.39/12.99 new_compare31(x0, x1, app(app(ty_@2, x2), x3)) 30.39/12.99 new_esEs20(x0, x1, ty_Double) 30.39/12.99 new_esEs18(x0, x1, ty_Float) 30.39/12.99 new_esEs28(x0, x1, ty_@0) 30.39/12.99 new_compare10(x0, x1, False, x2) 30.39/12.99 new_esEs24(x0, x1, app(ty_[], x2)) 30.39/12.99 new_compare31(x0, x1, ty_Float) 30.39/12.99 new_esEs24(x0, x1, ty_Ordering) 30.39/12.99 30.39/12.99 We have to consider all minimal (P,Q,R)-chains. 30.39/12.99 ---------------------------------------- 30.39/12.99 30.39/12.99 (33) TransformationProof (EQUIVALENT) 30.39/12.99 By rewriting [LPAR04] the rule new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba) -> new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs10(new_compare24(Just(xuu4000), Nothing, False, h), GT), h, ba) at position [6,0] we obtained the following new rules [LPAR04]: 30.39/12.99 30.39/12.99 (new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba) -> new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs10(GT, GT), h, ba),new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba) -> new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs10(GT, GT), h, ba)) 30.39/12.99 30.39/12.99 30.39/12.99 ---------------------------------------- 30.39/12.99 30.39/12.99 (34) 30.39/12.99 Obligation: 30.39/12.99 Q DP problem: 30.39/12.99 The TRS P consists of the following rules: 30.39/12.99 30.39/12.99 new_addToFM_C(Branch(Just(xuu300), xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C21(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs10(new_compare24(Just(xuu4000), Just(xuu300), new_esEs29(xuu4000, xuu300, h), h), LT), h, ba) 30.39/12.99 new_addToFM_C21(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, False, bb, bc) -> new_addToFM_C12(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, new_esEs10(new_compare24(Just(xuu19), Just(xuu14), new_esEs30(xuu19, xuu14, bb), bb), GT), bb, bc) 30.39/12.99 new_addToFM_C12(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, bb, bc) -> new_addToFM_C(xuu18, Just(xuu19), xuu20, bb, bc) 30.39/12.99 new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba) -> new_addToFM_C(xuu34, Just(xuu4000), xuu401, h, ba) 30.39/12.99 new_addToFM_C21(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, bb, bc) -> new_addToFM_C(xuu17, Just(xuu19), xuu20, bb, bc) 30.39/12.99 new_addToFM_C(Branch(Nothing, xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba) 30.39/12.99 new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba) -> new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs10(GT, GT), h, ba) 30.39/12.99 30.39/12.99 The TRS R consists of the following rules: 30.39/12.99 30.39/12.99 new_ltEs18(xuu3000, xuu3100, ty_Integer) -> new_ltEs17(xuu3000, xuu3100) 30.39/12.99 new_compare28(xuu30000, xuu31000, False, bgd, bge, bgf) -> new_compare16(xuu30000, xuu31000, new_ltEs6(xuu30000, xuu31000, bgd, bge, bgf), bgd, bge, bgf) 30.39/12.99 new_lt7(xuu30000, xuu31000) -> new_esEs10(new_compare17(xuu30000, xuu31000), LT) 30.39/12.99 new_esEs23(xuu30000, xuu31000, ty_Bool) -> new_esEs11(xuu30000, xuu31000) 30.39/12.99 new_esEs27(xuu40001, xuu3001, app(ty_Ratio, dcd)) -> new_esEs13(xuu40001, xuu3001, dcd) 30.39/12.99 new_primCmpInt(Neg(Succ(xuu3000)), Pos(xuu310)) -> LT 30.39/12.99 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 30.39/12.99 new_esEs27(xuu40001, xuu3001, ty_Int) -> new_esEs9(xuu40001, xuu3001) 30.39/12.99 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(ty_Ratio, hh)) -> new_esEs13(xuu40000, xuu3000, hh) 30.39/12.99 new_esEs23(xuu30000, xuu31000, app(ty_Maybe, baf)) -> new_esEs6(xuu30000, xuu31000, baf) 30.39/12.99 new_pePe(True, xuu167) -> True 30.39/12.99 new_ltEs19(xuu30002, xuu31002, app(app(app(ty_@3, cad), cae), caf)) -> new_ltEs6(xuu30002, xuu31002, cad, cae, caf) 30.39/12.99 new_ltEs20(xuu30001, xuu31001, ty_Ordering) -> new_ltEs15(xuu30001, xuu31001) 30.39/12.99 new_primCmpInt(Pos(Zero), Pos(Succ(xuu3100))) -> new_primCmpNat0(Zero, xuu3100) 30.39/12.99 new_ltEs6(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), ee, ef, eg) -> new_pePe(new_lt13(xuu30000, xuu31000, ee), new_asAs(new_esEs23(xuu30000, xuu31000, ee), new_pePe(new_lt12(xuu30001, xuu31001, ef), new_asAs(new_esEs24(xuu30001, xuu31001, ef), new_ltEs19(xuu30002, xuu31002, eg))))) 30.39/12.99 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(ty_[], bab)) -> new_esEs16(xuu40000, xuu3000, bab) 30.39/12.99 new_esEs5(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, fh), ga), gb), fg) -> new_esEs4(xuu40000, xuu3000, fh, ga, gb) 30.39/12.99 new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_Ratio, ge), fg) -> new_esEs13(xuu40000, xuu3000, ge) 30.39/12.99 new_esEs29(xuu4000, xuu300, ty_Char) -> new_esEs12(xuu4000, xuu300) 30.39/12.99 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Double) -> new_ltEs14(xuu30000, xuu31000) 30.39/12.99 new_lt20(xuu30000, xuu31000, ty_Bool) -> new_lt15(xuu30000, xuu31000) 30.39/12.99 new_compare(:(xuu30000, xuu30001), [], ed) -> GT 30.39/12.99 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 30.39/12.99 new_esEs27(xuu40001, xuu3001, app(ty_[], dcf)) -> new_esEs16(xuu40001, xuu3001, dcf) 30.39/12.99 new_esEs27(xuu40001, xuu3001, app(app(ty_Either, dcb), dcc)) -> new_esEs5(xuu40001, xuu3001, dcb, dcc) 30.39/12.99 new_primCmpInt(Pos(Zero), Neg(Succ(xuu3100))) -> GT 30.39/12.99 new_compare(:(xuu30000, xuu30001), :(xuu31000, xuu31001), ed) -> new_primCompAux0(xuu30000, xuu31000, new_compare(xuu30001, xuu31001, ed), ed) 30.39/12.99 new_esEs9(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) 30.39/12.99 new_esEs22(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) 30.39/12.99 new_esEs18(xuu40000, xuu3000, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs4(xuu40000, xuu3000, bbb, bbc, bbd) 30.39/12.99 new_ltEs19(xuu30002, xuu31002, app(ty_[], cac)) -> new_ltEs5(xuu30002, xuu31002, cac) 30.39/12.99 new_lt12(xuu30001, xuu31001, ty_Char) -> new_lt7(xuu30001, xuu31001) 30.39/12.99 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Char) -> new_ltEs9(xuu30000, xuu31000) 30.39/12.99 new_esEs26(xuu40000, xuu3000, app(app(ty_@2, dac), dad)) -> new_esEs7(xuu40000, xuu3000, dac, dad) 30.39/12.99 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Int) -> new_ltEs7(xuu30000, xuu31000) 30.39/12.99 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.39/12.99 new_lt13(xuu30000, xuu31000, app(ty_Ratio, bae)) -> new_lt5(xuu30000, xuu31000, bae) 30.39/12.99 new_esEs6(Just(xuu40000), Just(xuu3000), app(app(ty_Either, cfb), cfc)) -> new_esEs5(xuu40000, xuu3000, cfb, cfc) 30.39/12.99 new_ltEs15(EQ, LT) -> False 30.39/12.99 new_compare17(Char(xuu30000), Char(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) 30.39/12.99 new_ltEs8(xuu3000, xuu3100) -> new_fsEs(new_compare8(xuu3000, xuu3100)) 30.39/12.99 new_esEs28(xuu40002, xuu3002, app(app(app(ty_@3, dda), ddb), ddc)) -> new_esEs4(xuu40002, xuu3002, dda, ddb, ddc) 30.39/12.99 new_primCmpNat1(Succ(xuu30000), Succ(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) 30.39/12.99 new_esEs23(xuu30000, xuu31000, app(app(ty_Either, bac), bad)) -> new_esEs5(xuu30000, xuu31000, bac, bad) 30.39/12.99 new_ltEs19(xuu30002, xuu31002, ty_Ordering) -> new_ltEs15(xuu30002, xuu31002) 30.39/12.99 new_compare26(xuu30000, xuu31000, True) -> EQ 30.39/12.99 new_compare24(Nothing, Just(xuu3100), False, ec) -> LT 30.39/12.99 new_esEs18(xuu40000, xuu3000, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.39/12.99 new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False 30.39/12.99 new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False 30.39/12.99 new_ltEs4(Left(xuu30000), Left(xuu31000), app(app(ty_@2, ce), cf), be) -> new_ltEs13(xuu30000, xuu31000, ce, cf) 30.39/12.99 new_ltEs15(GT, LT) -> False 30.39/12.99 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.39/12.99 new_esEs24(xuu30001, xuu31001, ty_Double) -> new_esEs17(xuu30001, xuu31001) 30.39/12.99 new_compare25(xuu30000, xuu31000, False, bac, bad) -> new_compare11(xuu30000, xuu31000, new_ltEs4(xuu30000, xuu31000, bac, bad), bac, bad) 30.39/12.99 new_ltEs12(Just(xuu30000), Just(xuu31000), app(app(ty_Either, cdg), cdh)) -> new_ltEs4(xuu30000, xuu31000, cdg, cdh) 30.39/12.99 new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_Maybe, gf), fg) -> new_esEs6(xuu40000, xuu3000, gf) 30.39/12.99 new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.39/12.99 new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) 30.39/12.99 new_esEs30(xuu19, xuu14, ty_Char) -> new_esEs12(xuu19, xuu14) 30.39/12.99 new_esEs27(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) 30.39/12.99 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Char, fg) -> new_esEs12(xuu40000, xuu3000) 30.39/12.99 new_esEs10(GT, GT) -> True 30.39/12.99 new_ltEs4(Left(xuu30000), Left(xuu31000), app(ty_Maybe, cd), be) -> new_ltEs12(xuu30000, xuu31000, cd) 30.39/12.99 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.39/12.99 new_not(True) -> False 30.39/12.99 new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_[], gg), fg) -> new_esEs16(xuu40000, xuu3000, gg) 30.39/12.99 new_lt13(xuu30000, xuu31000, app(app(app(ty_@3, bgd), bge), bgf)) -> new_lt11(xuu30000, xuu31000, bgd, bge, bgf) 30.39/12.99 new_esEs28(xuu40002, xuu3002, ty_Bool) -> new_esEs11(xuu40002, xuu3002) 30.39/12.99 new_ltEs5(xuu3000, xuu3100, ed) -> new_fsEs(new_compare(xuu3000, xuu3100, ed)) 30.39/12.99 new_primCompAux00(xuu182, LT) -> LT 30.39/12.99 new_lt12(xuu30001, xuu31001, ty_Double) -> new_lt17(xuu30001, xuu31001) 30.39/12.99 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Float) -> new_ltEs16(xuu30000, xuu31000) 30.39/12.99 new_ltEs20(xuu30001, xuu31001, ty_Integer) -> new_ltEs17(xuu30001, xuu31001) 30.39/12.99 new_esEs25(xuu30000, xuu31000, ty_Ordering) -> new_esEs10(xuu30000, xuu31000) 30.44/12.99 new_esEs23(xuu30000, xuu31000, app(ty_Ratio, bae)) -> new_esEs13(xuu30000, xuu31000, bae) 30.44/12.99 new_esEs27(xuu40001, xuu3001, ty_Bool) -> new_esEs11(xuu40001, xuu3001) 30.44/12.99 new_esEs26(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.44/12.99 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.44/12.99 new_lt12(xuu30001, xuu31001, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_lt11(xuu30001, xuu31001, bhb, bhc, bhd) 30.44/12.99 new_esEs30(xuu19, xuu14, ty_Double) -> new_esEs17(xuu19, xuu14) 30.44/12.99 new_lt13(xuu30000, xuu31000, app(ty_Maybe, baf)) -> new_lt6(xuu30000, xuu31000, baf) 30.44/12.99 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.44/12.99 new_esEs19(xuu40000, xuu3000, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.44/12.99 new_esEs25(xuu30000, xuu31000, ty_Float) -> new_esEs8(xuu30000, xuu31000) 30.44/12.99 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Double, fg) -> new_esEs17(xuu40000, xuu3000) 30.44/12.99 new_lt19(xuu30000, xuu31000) -> new_esEs10(new_compare7(xuu30000, xuu31000), LT) 30.44/12.99 new_compare31(xuu30000, xuu31000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_compare29(xuu30000, xuu31000, cbf, cbg, cbh) 30.44/12.99 new_ltEs20(xuu30001, xuu31001, app(app(app(ty_@3, chb), chc), chd)) -> new_ltEs6(xuu30001, xuu31001, chb, chc, chd) 30.44/12.99 new_esEs5(Left(xuu40000), Left(xuu3000), app(app(ty_@2, fd), ff), fg) -> new_esEs7(xuu40000, xuu3000, fd, ff) 30.44/12.99 new_primEqNat0(Succ(xuu400000), Zero) -> False 30.44/12.99 new_primEqNat0(Zero, Succ(xuu30000)) -> False 30.44/12.99 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.44/12.99 new_esEs19(xuu40000, xuu3000, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.44/12.99 new_esEs14(@0, @0) -> True 30.44/12.99 new_lt12(xuu30001, xuu31001, app(app(ty_@2, caa), cab)) -> new_lt16(xuu30001, xuu31001, caa, cab) 30.44/12.99 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Bool, be) -> new_ltEs11(xuu30000, xuu31000) 30.44/12.99 new_esEs26(xuu40000, xuu3000, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.44/12.99 new_lt11(xuu30000, xuu31000, bgd, bge, bgf) -> new_esEs10(new_compare29(xuu30000, xuu31000, bgd, bge, bgf), LT) 30.44/12.99 new_esEs23(xuu30000, xuu31000, ty_Int) -> new_esEs9(xuu30000, xuu31000) 30.44/12.99 new_ltEs15(GT, EQ) -> False 30.44/12.99 new_lt20(xuu30000, xuu31000, app(ty_[], cfg)) -> new_lt14(xuu30000, xuu31000, cfg) 30.44/12.99 new_esEs26(xuu40000, xuu3000, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.44/12.99 new_lt20(xuu30000, xuu31000, ty_Integer) -> new_lt19(xuu30000, xuu31000) 30.44/12.99 new_primCompAux00(xuu182, GT) -> GT 30.44/12.99 new_primCmpInt(Neg(Zero), Neg(Succ(xuu3100))) -> new_primCmpNat2(xuu3100, Zero) 30.44/12.99 new_esEs10(EQ, EQ) -> True 30.44/12.99 new_esEs29(xuu4000, xuu300, ty_Double) -> new_esEs17(xuu4000, xuu300) 30.44/12.99 new_esEs6(Just(xuu40000), Just(xuu3000), app(ty_Ratio, cfd)) -> new_esEs13(xuu40000, xuu3000, cfd) 30.44/12.99 new_lt16(xuu30000, xuu31000, bgb, bgc) -> new_esEs10(new_compare15(xuu30000, xuu31000, bgb, bgc), LT) 30.44/12.99 new_esEs17(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs9(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) 30.44/12.99 new_esEs24(xuu30001, xuu31001, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_esEs4(xuu30001, xuu31001, bhb, bhc, bhd) 30.44/12.99 new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.44/12.99 new_esEs23(xuu30000, xuu31000, app(app(app(ty_@3, bgd), bge), bgf)) -> new_esEs4(xuu30000, xuu31000, bgd, bge, bgf) 30.44/12.99 new_esEs30(xuu19, xuu14, app(app(app(ty_@3, bcd), bce), bcf)) -> new_esEs4(xuu19, xuu14, bcd, bce, bcf) 30.44/12.99 new_compare14(xuu30000, xuu31000, True) -> LT 30.44/12.99 new_primCmpInt(Pos(Succ(xuu3000)), Neg(xuu310)) -> GT 30.44/12.99 new_lt13(xuu30000, xuu31000, ty_Integer) -> new_lt19(xuu30000, xuu31000) 30.44/12.99 new_ltEs18(xuu3000, xuu3100, ty_Bool) -> new_ltEs11(xuu3000, xuu3100) 30.44/12.99 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_@0) -> new_ltEs8(xuu30000, xuu31000) 30.44/12.99 new_esEs28(xuu40002, xuu3002, ty_Double) -> new_esEs17(xuu40002, xuu3002) 30.44/12.99 new_lt13(xuu30000, xuu31000, ty_Char) -> new_lt7(xuu30000, xuu31000) 30.44/12.99 new_compare110(xuu30000, xuu31000, True, bgb, bgc) -> LT 30.44/12.99 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(ty_Ratio, dg)) -> new_ltEs10(xuu30000, xuu31000, dg) 30.44/12.99 new_esEs23(xuu30000, xuu31000, ty_Double) -> new_esEs17(xuu30000, xuu31000) 30.44/12.99 new_lt20(xuu30000, xuu31000, app(app(ty_Either, cgc), cgd)) -> new_lt8(xuu30000, xuu31000, cgc, cgd) 30.44/12.99 new_lt13(xuu30000, xuu31000, ty_Double) -> new_lt17(xuu30000, xuu31000) 30.44/12.99 new_primPlusNat1(Succ(xuu25200), Succ(xuu9400)) -> Succ(Succ(new_primPlusNat1(xuu25200, xuu9400))) 30.44/12.99 new_primCompAux0(xuu30000, xuu31000, xuu168, ed) -> new_primCompAux00(xuu168, new_compare31(xuu30000, xuu31000, ed)) 30.44/12.99 new_esEs26(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.44/12.99 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Integer, be) -> new_ltEs17(xuu30000, xuu31000) 30.44/12.99 new_esEs10(LT, EQ) -> False 30.44/12.99 new_esEs10(EQ, LT) -> False 30.44/12.99 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.44/12.99 new_esEs20(xuu40001, xuu3001, ty_Ordering) -> new_esEs10(xuu40001, xuu3001) 30.44/12.99 new_esEs29(xuu4000, xuu300, app(app(app(ty_@3, ccg), cch), cda)) -> new_esEs4(xuu4000, xuu300, ccg, cch, cda) 30.44/12.99 new_compare13(xuu30000, xuu31000, baf) -> new_compare24(xuu30000, xuu31000, new_esEs6(xuu30000, xuu31000, baf), baf) 30.44/12.99 new_primCmpNat0(Succ(xuu3100), xuu3000) -> new_primCmpNat1(xuu3100, xuu3000) 30.44/12.99 new_compare210(xuu30000, xuu31000, True) -> EQ 30.44/12.99 new_esEs20(xuu40001, xuu3001, ty_Float) -> new_esEs8(xuu40001, xuu3001) 30.44/12.99 new_esEs28(xuu40002, xuu3002, ty_Char) -> new_esEs12(xuu40002, xuu3002) 30.44/12.99 new_lt9(xuu300, xuu310) -> new_esEs10(new_compare6(xuu300, xuu310), LT) 30.44/12.99 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Bool) -> new_ltEs11(xuu30000, xuu31000) 30.44/12.99 new_esEs28(xuu40002, xuu3002, app(ty_[], ddh)) -> new_esEs16(xuu40002, xuu3002, ddh) 30.44/12.99 new_esEs27(xuu40001, xuu3001, app(app(ty_@2, dbe), dbf)) -> new_esEs7(xuu40001, xuu3001, dbe, dbf) 30.44/12.99 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Char) -> new_ltEs9(xuu30000, xuu31000) 30.44/12.99 new_ltEs18(xuu3000, xuu3100, app(ty_Maybe, fa)) -> new_ltEs12(xuu3000, xuu3100, fa) 30.44/12.99 new_esEs19(xuu40000, xuu3000, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs4(xuu40000, xuu3000, bdh, bea, beb) 30.44/12.99 new_pePe(False, xuu167) -> xuu167 30.44/12.99 new_esEs27(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) 30.44/12.99 new_ltEs4(Left(xuu30000), Left(xuu31000), app(ty_Ratio, cc), be) -> new_ltEs10(xuu30000, xuu31000, cc) 30.44/12.99 new_ltEs18(xuu3000, xuu3100, app(app(app(ty_@3, ee), ef), eg)) -> new_ltEs6(xuu3000, xuu3100, ee, ef, eg) 30.44/12.99 new_esEs11(False, True) -> False 30.44/12.99 new_esEs11(True, False) -> False 30.44/12.99 new_compare25(xuu30000, xuu31000, True, bac, bad) -> EQ 30.44/12.99 new_ltEs4(Left(xuu30000), Left(xuu31000), app(app(app(ty_@3, bf), bg), bh), be) -> new_ltEs6(xuu30000, xuu31000, bf, bg, bh) 30.44/12.99 new_lt12(xuu30001, xuu31001, ty_Int) -> new_lt9(xuu30001, xuu31001) 30.44/12.99 new_compare26(xuu30000, xuu31000, False) -> new_compare111(xuu30000, xuu31000, new_ltEs11(xuu30000, xuu31000)) 30.44/12.99 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Double) -> new_ltEs14(xuu30000, xuu31000) 30.44/12.99 new_ltEs19(xuu30002, xuu31002, ty_Integer) -> new_ltEs17(xuu30002, xuu31002) 30.44/12.99 new_compare31(xuu30000, xuu31000, ty_Float) -> new_compare19(xuu30000, xuu31000) 30.44/12.99 new_lt6(xuu30000, xuu31000, baf) -> new_esEs10(new_compare13(xuu30000, xuu31000, baf), LT) 30.44/12.99 new_compare7(Integer(xuu30000), Integer(xuu31000)) -> new_primCmpInt(xuu30000, xuu31000) 30.44/12.99 new_compare10(xuu134, xuu135, False, dea) -> GT 30.44/12.99 new_compare11(xuu30000, xuu31000, False, bac, bad) -> GT 30.44/12.99 new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False 30.44/12.99 new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False 30.44/12.99 new_compare24(xuu300, xuu310, True, ec) -> EQ 30.44/12.99 new_esEs19(xuu40000, xuu3000, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.44/12.99 new_esEs19(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.44/12.99 new_compare24(Just(xuu3000), Just(xuu3100), False, ec) -> new_compare10(xuu3000, xuu3100, new_ltEs18(xuu3000, xuu3100, ec), ec) 30.44/12.99 new_esEs18(xuu40000, xuu3000, app(ty_Ratio, bbg)) -> new_esEs13(xuu40000, xuu3000, bbg) 30.44/12.99 new_compare31(xuu30000, xuu31000, ty_Int) -> new_compare6(xuu30000, xuu31000) 30.44/12.99 new_ltEs20(xuu30001, xuu31001, app(ty_Ratio, chg)) -> new_ltEs10(xuu30001, xuu31001, chg) 30.44/12.99 new_esEs6(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, ceg), ceh), cfa)) -> new_esEs4(xuu40000, xuu3000, ceg, ceh, cfa) 30.44/12.99 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.44/12.99 new_esEs26(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.44/12.99 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(app(ty_@2, ha), hb)) -> new_esEs7(xuu40000, xuu3000, ha, hb) 30.44/12.99 new_ltEs18(xuu3000, xuu3100, ty_Double) -> new_ltEs14(xuu3000, xuu3100) 30.44/12.99 new_esEs26(xuu40000, xuu3000, app(ty_[], dbd)) -> new_esEs16(xuu40000, xuu3000, dbd) 30.44/12.99 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Ordering, fg) -> new_esEs10(xuu40000, xuu3000) 30.44/12.99 new_esEs24(xuu30001, xuu31001, app(app(ty_Either, bhe), bhf)) -> new_esEs5(xuu30001, xuu31001, bhe, bhf) 30.44/12.99 new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) 30.44/12.99 new_primCmpInt(Neg(Zero), Pos(Succ(xuu3100))) -> LT 30.44/12.99 new_compare9(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Integer) -> new_compare7(new_sr0(xuu30000, xuu31001), new_sr0(xuu31000, xuu30001)) 30.44/12.99 new_compare19(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.44/12.99 new_primMulInt(Pos(xuu400000), Pos(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) 30.44/12.99 new_esEs29(xuu4000, xuu300, ty_Float) -> new_esEs8(xuu4000, xuu300) 30.44/12.99 new_esEs18(xuu40000, xuu3000, app(ty_[], bca)) -> new_esEs16(xuu40000, xuu3000, bca) 30.44/12.99 new_ltEs19(xuu30002, xuu31002, app(ty_Ratio, cba)) -> new_ltEs10(xuu30002, xuu31002, cba) 30.44/12.99 new_esEs24(xuu30001, xuu31001, ty_Ordering) -> new_esEs10(xuu30001, xuu31001) 30.44/12.99 new_ltEs14(xuu3000, xuu3100) -> new_fsEs(new_compare5(xuu3000, xuu3100)) 30.44/12.99 new_compare10(xuu134, xuu135, True, dea) -> LT 30.44/12.99 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(app(app(ty_@3, hc), hd), he)) -> new_esEs4(xuu40000, xuu3000, hc, hd, he) 30.44/12.99 new_esEs24(xuu30001, xuu31001, app(ty_Maybe, bhh)) -> new_esEs6(xuu30001, xuu31001, bhh) 30.44/12.99 new_primMulNat0(Succ(xuu4000000), Zero) -> Zero 30.44/12.99 new_primMulNat0(Zero, Succ(xuu300100)) -> Zero 30.44/12.99 new_ltEs11(False, False) -> True 30.44/12.99 new_compare31(xuu30000, xuu31000, ty_Bool) -> new_compare12(xuu30000, xuu31000) 30.44/12.99 new_esEs7(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bdd, bde) -> new_asAs(new_esEs19(xuu40000, xuu3000, bdd), new_esEs20(xuu40001, xuu3001, bde)) 30.44/12.99 new_esEs24(xuu30001, xuu31001, ty_Char) -> new_esEs12(xuu30001, xuu31001) 30.44/12.99 new_lt13(xuu30000, xuu31000, ty_Bool) -> new_lt15(xuu30000, xuu31000) 30.44/12.99 new_esEs30(xuu19, xuu14, ty_Float) -> new_esEs8(xuu19, xuu14) 30.44/12.99 new_compare9(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Int) -> new_compare6(new_sr(xuu30000, xuu31001), new_sr(xuu31000, xuu30001)) 30.44/12.99 new_esEs18(xuu40000, xuu3000, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.44/12.99 new_compare27(xuu30000, xuu31000, False, bgb, bgc) -> new_compare110(xuu30000, xuu31000, new_ltEs13(xuu30000, xuu31000, bgb, bgc), bgb, bgc) 30.44/12.99 new_ltEs17(xuu3000, xuu3100) -> new_fsEs(new_compare7(xuu3000, xuu3100)) 30.44/12.99 new_ltEs18(xuu3000, xuu3100, ty_@0) -> new_ltEs8(xuu3000, xuu3100) 30.44/12.99 new_lt20(xuu30000, xuu31000, app(app(app(ty_@3, cfh), cga), cgb)) -> new_lt11(xuu30000, xuu31000, cfh, cga, cgb) 30.44/12.99 new_compare24(Just(xuu3000), Nothing, False, ec) -> GT 30.44/12.99 new_esEs5(Left(xuu40000), Left(xuu3000), app(app(ty_Either, gc), gd), fg) -> new_esEs5(xuu40000, xuu3000, gc, gd) 30.44/12.99 new_compare19(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.44/12.99 new_primCmpNat0(Zero, xuu3000) -> LT 30.44/12.99 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(ty_Maybe, baa)) -> new_esEs6(xuu40000, xuu3000, baa) 30.44/12.99 new_esEs18(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.44/12.99 new_esEs22(xuu40001, xuu3001, ty_Int) -> new_esEs9(xuu40001, xuu3001) 30.44/12.99 new_lt8(xuu30000, xuu31000, bac, bad) -> new_esEs10(new_compare18(xuu30000, xuu31000, bac, bad), LT) 30.44/12.99 new_lt15(xuu30000, xuu31000) -> new_esEs10(new_compare12(xuu30000, xuu31000), LT) 30.44/12.99 new_compare111(xuu30000, xuu31000, True) -> LT 30.44/12.99 new_esEs27(xuu40001, xuu3001, ty_Float) -> new_esEs8(xuu40001, xuu3001) 30.44/12.99 new_lt14(xuu30000, xuu31000, bgh) -> new_esEs10(new_compare(xuu30000, xuu31000, bgh), LT) 30.44/12.99 new_compare31(xuu30000, xuu31000, app(ty_Ratio, ccc)) -> new_compare9(xuu30000, xuu31000, ccc) 30.44/12.99 new_lt13(xuu30000, xuu31000, ty_Float) -> new_lt10(xuu30000, xuu31000) 30.44/12.99 new_esEs20(xuu40001, xuu3001, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_esEs4(xuu40001, xuu3001, bfb, bfc, bfd) 30.44/12.99 new_ltEs11(True, True) -> True 30.44/12.99 new_ltEs16(xuu3000, xuu3100) -> new_fsEs(new_compare19(xuu3000, xuu3100)) 30.44/12.99 new_primPlusNat1(Succ(xuu25200), Zero) -> Succ(xuu25200) 30.44/12.99 new_primPlusNat1(Zero, Succ(xuu9400)) -> Succ(xuu9400) 30.44/12.99 new_esEs30(xuu19, xuu14, ty_@0) -> new_esEs14(xuu19, xuu14) 30.44/12.99 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Ordering) -> new_ltEs15(xuu30000, xuu31000) 30.44/12.99 new_lt13(xuu30000, xuu31000, ty_Ordering) -> new_lt18(xuu30000, xuu31000) 30.44/12.99 new_esEs16([], [], bag) -> True 30.44/12.99 new_ltEs12(Just(xuu30000), Just(xuu31000), app(app(app(ty_@3, cdd), cde), cdf)) -> new_ltEs6(xuu30000, xuu31000, cdd, cde, cdf) 30.44/12.99 new_ltEs20(xuu30001, xuu31001, ty_Double) -> new_ltEs14(xuu30001, xuu31001) 30.44/12.99 new_esEs23(xuu30000, xuu31000, ty_Ordering) -> new_esEs10(xuu30000, xuu31000) 30.44/12.99 new_lt12(xuu30001, xuu31001, ty_Float) -> new_lt10(xuu30001, xuu31001) 30.44/12.99 new_ltEs12(Just(xuu30000), Just(xuu31000), app(ty_Maybe, ceb)) -> new_ltEs12(xuu30000, xuu31000, ceb) 30.44/12.99 new_esEs29(xuu4000, xuu300, ty_@0) -> new_esEs14(xuu4000, xuu300) 30.44/12.99 new_primMulInt(Neg(xuu400000), Neg(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) 30.44/12.99 new_esEs20(xuu40001, xuu3001, ty_Double) -> new_esEs17(xuu40001, xuu3001) 30.44/12.99 new_esEs25(xuu30000, xuu31000, app(app(ty_@2, cgg), cgh)) -> new_esEs7(xuu30000, xuu31000, cgg, cgh) 30.44/12.99 new_esEs25(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) 30.44/12.99 new_lt20(xuu30000, xuu31000, app(ty_Ratio, cge)) -> new_lt5(xuu30000, xuu31000, cge) 30.44/12.99 new_compare([], :(xuu31000, xuu31001), ed) -> LT 30.44/12.99 new_esEs28(xuu40002, xuu3002, ty_Integer) -> new_esEs15(xuu40002, xuu3002) 30.44/12.99 new_ltEs19(xuu30002, xuu31002, app(app(ty_@2, cbc), cbd)) -> new_ltEs13(xuu30002, xuu31002, cbc, cbd) 30.44/12.99 new_esEs6(Just(xuu40000), Just(xuu3000), app(ty_Maybe, cfe)) -> new_esEs6(xuu40000, xuu3000, cfe) 30.44/12.99 new_esEs6(Nothing, Just(xuu3000), cdb) -> False 30.44/12.99 new_esEs6(Just(xuu40000), Nothing, cdb) -> False 30.44/12.99 new_ltEs11(False, True) -> True 30.44/12.99 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Float, be) -> new_ltEs16(xuu30000, xuu31000) 30.44/12.99 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_@0) -> new_ltEs8(xuu30000, xuu31000) 30.44/12.99 new_ltEs19(xuu30002, xuu31002, ty_@0) -> new_ltEs8(xuu30002, xuu31002) 30.44/12.99 new_ltEs15(EQ, GT) -> True 30.44/12.99 new_esEs24(xuu30001, xuu31001, ty_Bool) -> new_esEs11(xuu30001, xuu31001) 30.44/12.99 new_esEs6(Nothing, Nothing, cdb) -> True 30.44/12.99 new_ltEs18(xuu3000, xuu3100, ty_Char) -> new_ltEs9(xuu3000, xuu3100) 30.44/12.99 new_esEs11(False, False) -> True 30.44/12.99 new_esEs10(LT, LT) -> True 30.44/12.99 new_ltEs18(xuu3000, xuu3100, ty_Ordering) -> new_ltEs15(xuu3000, xuu3100) 30.44/12.99 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Int, be) -> new_ltEs7(xuu30000, xuu31000) 30.44/12.99 new_esEs21(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.44/12.99 new_ltEs20(xuu30001, xuu31001, app(app(ty_@2, daa), dab)) -> new_ltEs13(xuu30001, xuu31001, daa, dab) 30.44/12.99 new_primCmpNat2(xuu3000, Zero) -> GT 30.44/12.99 new_esEs28(xuu40002, xuu3002, ty_Float) -> new_esEs8(xuu40002, xuu3002) 30.44/12.99 new_lt4(xuu30000, xuu31000) -> new_esEs10(new_compare8(xuu30000, xuu31000), LT) 30.44/12.99 new_compare6(xuu30, xuu31) -> new_primCmpInt(xuu30, xuu31) 30.44/12.99 new_compare31(xuu30000, xuu31000, app(ty_Maybe, ccd)) -> new_compare13(xuu30000, xuu31000, ccd) 30.44/12.99 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.44/12.99 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Bool, fg) -> new_esEs11(xuu40000, xuu3000) 30.44/12.99 new_lt13(xuu30000, xuu31000, ty_Int) -> new_lt9(xuu30000, xuu31000) 30.44/12.99 new_esEs16(:(xuu40000, xuu40001), :(xuu3000, xuu3001), bag) -> new_asAs(new_esEs18(xuu40000, xuu3000, bag), new_esEs16(xuu40001, xuu3001, bag)) 30.44/12.99 new_compare30(xuu30000, xuu31000) -> new_compare210(xuu30000, xuu31000, new_esEs10(xuu30000, xuu31000)) 30.44/12.99 new_ltEs19(xuu30002, xuu31002, ty_Char) -> new_ltEs9(xuu30002, xuu31002) 30.44/12.99 new_lt12(xuu30001, xuu31001, ty_Bool) -> new_lt15(xuu30001, xuu31001) 30.44/12.99 new_compare31(xuu30000, xuu31000, ty_Integer) -> new_compare7(xuu30000, xuu31000) 30.44/12.99 new_ltEs12(Just(xuu30000), Just(xuu31000), app(ty_[], cdc)) -> new_ltEs5(xuu30000, xuu31000, cdc) 30.44/12.99 new_esEs26(xuu40000, xuu3000, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs4(xuu40000, xuu3000, dae, daf, dag) 30.44/12.99 new_primMulInt(Pos(xuu400000), Neg(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) 30.44/12.99 new_primMulInt(Neg(xuu400000), Pos(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) 30.44/12.99 new_esEs12(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) 30.44/12.99 new_esEs19(xuu40000, xuu3000, app(app(ty_Either, bec), bed)) -> new_esEs5(xuu40000, xuu3000, bec, bed) 30.44/12.99 new_lt17(xuu30000, xuu31000) -> new_esEs10(new_compare5(xuu30000, xuu31000), LT) 30.44/12.99 new_esEs26(xuu40000, xuu3000, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.44/12.99 new_esEs20(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) 30.44/12.99 new_ltEs20(xuu30001, xuu31001, ty_@0) -> new_ltEs8(xuu30001, xuu31001) 30.44/12.99 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(app(app(ty_@3, db), dc), dd)) -> new_ltEs6(xuu30000, xuu31000, db, dc, dd) 30.44/12.99 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(app(ty_Either, de), df)) -> new_ltEs4(xuu30000, xuu31000, de, df) 30.44/12.99 new_ltEs4(Left(xuu30000), Left(xuu31000), app(ty_[], bd), be) -> new_ltEs5(xuu30000, xuu31000, bd) 30.44/12.99 new_primCmpNat1(Succ(xuu30000), Zero) -> GT 30.44/12.99 new_esEs27(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) 30.44/12.99 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Integer) -> new_ltEs17(xuu30000, xuu31000) 30.44/12.99 new_compare14(xuu30000, xuu31000, False) -> GT 30.44/12.99 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Ordering) -> new_ltEs15(xuu30000, xuu31000) 30.44/12.99 new_ltEs19(xuu30002, xuu31002, ty_Double) -> new_ltEs14(xuu30002, xuu31002) 30.44/12.99 new_sr0(Integer(xuu300000), Integer(xuu310010)) -> Integer(new_primMulInt(xuu300000, xuu310010)) 30.44/12.99 new_ltEs9(xuu3000, xuu3100) -> new_fsEs(new_compare17(xuu3000, xuu3100)) 30.44/12.99 new_primCmpNat2(xuu3000, Succ(xuu3100)) -> new_primCmpNat1(xuu3000, xuu3100) 30.44/12.99 new_esEs28(xuu40002, xuu3002, ty_@0) -> new_esEs14(xuu40002, xuu3002) 30.44/12.99 new_ltEs15(LT, GT) -> True 30.44/12.99 new_ltEs20(xuu30001, xuu31001, app(app(ty_Either, che), chf)) -> new_ltEs4(xuu30001, xuu31001, che, chf) 30.44/12.99 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(ty_[], da)) -> new_ltEs5(xuu30000, xuu31000, da) 30.44/12.99 new_esEs29(xuu4000, xuu300, ty_Integer) -> new_esEs15(xuu4000, xuu300) 30.44/12.99 new_esEs20(xuu40001, xuu3001, app(ty_Ratio, bfg)) -> new_esEs13(xuu40001, xuu3001, bfg) 30.44/12.99 new_esEs30(xuu19, xuu14, ty_Integer) -> new_esEs15(xuu19, xuu14) 30.44/12.99 new_esEs20(xuu40001, xuu3001, ty_Int) -> new_esEs9(xuu40001, xuu3001) 30.44/12.99 new_esEs15(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) 30.44/12.99 new_esEs25(xuu30000, xuu31000, app(ty_Ratio, cge)) -> new_esEs13(xuu30000, xuu31000, cge) 30.44/12.99 new_esEs25(xuu30000, xuu31000, ty_Bool) -> new_esEs11(xuu30000, xuu31000) 30.44/12.99 new_compare31(xuu30000, xuu31000, app(ty_[], cbe)) -> new_compare(xuu30000, xuu31000, cbe) 30.44/12.99 new_esEs25(xuu30000, xuu31000, ty_Int) -> new_esEs9(xuu30000, xuu31000) 30.44/12.99 new_asAs(True, xuu141) -> xuu141 30.44/12.99 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.44/12.99 new_ltEs13(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), fb, fc) -> new_pePe(new_lt20(xuu30000, xuu31000, fb), new_asAs(new_esEs25(xuu30000, xuu31000, fb), new_ltEs20(xuu30001, xuu31001, fc))) 30.44/12.99 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Bool) -> new_ltEs11(xuu30000, xuu31000) 30.44/12.99 new_esEs18(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.44/12.99 new_esEs24(xuu30001, xuu31001, ty_@0) -> new_esEs14(xuu30001, xuu31001) 30.44/12.99 new_compare31(xuu30000, xuu31000, app(app(ty_@2, cce), ccf)) -> new_compare15(xuu30000, xuu31000, cce, ccf) 30.44/12.99 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Integer, fg) -> new_esEs15(xuu40000, xuu3000) 30.44/12.99 new_lt12(xuu30001, xuu31001, ty_Ordering) -> new_lt18(xuu30001, xuu31001) 30.44/12.99 new_compare18(xuu30000, xuu31000, bac, bad) -> new_compare25(xuu30000, xuu31000, new_esEs5(xuu30000, xuu31000, bac, bad), bac, bad) 30.44/12.99 new_lt13(xuu30000, xuu31000, app(app(ty_Either, bac), bad)) -> new_lt8(xuu30000, xuu31000, bac, bad) 30.44/12.99 new_esEs19(xuu40000, xuu3000, app(ty_Ratio, bee)) -> new_esEs13(xuu40000, xuu3000, bee) 30.44/12.99 new_ltEs20(xuu30001, xuu31001, ty_Char) -> new_ltEs9(xuu30001, xuu31001) 30.44/12.99 new_esEs24(xuu30001, xuu31001, ty_Integer) -> new_esEs15(xuu30001, xuu31001) 30.44/12.99 new_esEs19(xuu40000, xuu3000, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.44/12.99 new_esEs29(xuu4000, xuu300, app(ty_[], bag)) -> new_esEs16(xuu4000, xuu300, bag) 30.44/12.99 new_ltEs20(xuu30001, xuu31001, ty_Float) -> new_ltEs16(xuu30001, xuu31001) 30.44/12.99 new_lt13(xuu30000, xuu31000, ty_@0) -> new_lt4(xuu30000, xuu31000) 30.44/12.99 new_compare12(xuu30000, xuu31000) -> new_compare26(xuu30000, xuu31000, new_esEs11(xuu30000, xuu31000)) 30.44/12.99 new_esEs19(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.44/12.99 new_esEs18(xuu40000, xuu3000, app(app(ty_@2, bah), bba)) -> new_esEs7(xuu40000, xuu3000, bah, bba) 30.44/12.99 new_esEs24(xuu30001, xuu31001, app(app(ty_@2, caa), cab)) -> new_esEs7(xuu30001, xuu31001, caa, cab) 30.44/12.99 new_esEs30(xuu19, xuu14, app(app(ty_@2, bcb), bcc)) -> new_esEs7(xuu19, xuu14, bcb, bcc) 30.44/12.99 new_lt12(xuu30001, xuu31001, app(ty_[], bha)) -> new_lt14(xuu30001, xuu31001, bha) 30.44/12.99 new_esEs29(xuu4000, xuu300, app(app(ty_Either, gh), fg)) -> new_esEs5(xuu4000, xuu300, gh, fg) 30.44/12.99 new_ltEs18(xuu3000, xuu3100, app(app(ty_@2, fb), fc)) -> new_ltEs13(xuu3000, xuu3100, fb, fc) 30.44/12.99 new_lt20(xuu30000, xuu31000, ty_Char) -> new_lt7(xuu30000, xuu31000) 30.44/12.99 new_compare15(xuu30000, xuu31000, bgb, bgc) -> new_compare27(xuu30000, xuu31000, new_esEs7(xuu30000, xuu31000, bgb, bgc), bgb, bgc) 30.44/12.99 new_primCompAux00(xuu182, EQ) -> xuu182 30.44/12.99 new_sr(xuu40000, xuu3001) -> new_primMulInt(xuu40000, xuu3001) 30.44/12.99 new_lt12(xuu30001, xuu31001, app(ty_Maybe, bhh)) -> new_lt6(xuu30001, xuu31001, bhh) 30.44/12.99 new_esEs25(xuu30000, xuu31000, ty_Integer) -> new_esEs15(xuu30000, xuu31000) 30.44/12.99 new_primMulNat0(Zero, Zero) -> Zero 30.44/12.99 new_lt13(xuu30000, xuu31000, app(app(ty_@2, bgb), bgc)) -> new_lt16(xuu30000, xuu31000, bgb, bgc) 30.44/12.99 new_esEs30(xuu19, xuu14, app(ty_[], bdc)) -> new_esEs16(xuu19, xuu14, bdc) 30.44/12.99 new_esEs24(xuu30001, xuu31001, app(ty_[], bha)) -> new_esEs16(xuu30001, xuu31001, bha) 30.44/12.99 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Int, fg) -> new_esEs9(xuu40000, xuu3000) 30.44/12.99 new_esEs23(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) 30.44/12.99 new_compare111(xuu30000, xuu31000, False) -> GT 30.44/12.99 new_primCmpNat1(Zero, Zero) -> EQ 30.44/12.99 new_ltEs20(xuu30001, xuu31001, app(ty_Maybe, chh)) -> new_ltEs12(xuu30001, xuu31001, chh) 30.44/12.99 new_esEs30(xuu19, xuu14, ty_Int) -> new_esEs9(xuu19, xuu14) 30.44/12.99 new_esEs23(xuu30000, xuu31000, app(app(ty_@2, bgb), bgc)) -> new_esEs7(xuu30000, xuu31000, bgb, bgc) 30.44/12.99 new_compare28(xuu30000, xuu31000, True, bgd, bge, bgf) -> EQ 30.44/12.99 new_ltEs18(xuu3000, xuu3100, app(app(ty_Either, cg), be)) -> new_ltEs4(xuu3000, xuu3100, cg, be) 30.44/12.99 new_lt20(xuu30000, xuu31000, ty_Float) -> new_lt10(xuu30000, xuu31000) 30.44/12.99 new_esEs20(xuu40001, xuu3001, app(app(ty_Either, bfe), bff)) -> new_esEs5(xuu40001, xuu3001, bfe, bff) 30.44/12.99 new_ltEs11(True, False) -> False 30.44/12.99 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(app(ty_Either, hf), hg)) -> new_esEs5(xuu40000, xuu3000, hf, hg) 30.44/12.99 new_esEs19(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.44/12.99 new_ltEs15(EQ, EQ) -> True 30.44/12.99 new_esEs26(xuu40000, xuu3000, app(ty_Maybe, dbc)) -> new_esEs6(xuu40000, xuu3000, dbc) 30.44/12.99 new_fsEs(xuu151) -> new_not(new_esEs10(xuu151, GT)) 30.44/12.99 new_esEs30(xuu19, xuu14, app(ty_Ratio, bda)) -> new_esEs13(xuu19, xuu14, bda) 30.44/12.99 new_esEs26(xuu40000, xuu3000, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.44/12.99 new_esEs24(xuu30001, xuu31001, app(ty_Ratio, bhg)) -> new_esEs13(xuu30001, xuu31001, bhg) 30.44/12.99 new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.44/12.99 new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.44/12.99 new_ltEs18(xuu3000, xuu3100, app(ty_Ratio, eh)) -> new_ltEs10(xuu3000, xuu3100, eh) 30.44/12.99 new_lt12(xuu30001, xuu31001, ty_@0) -> new_lt4(xuu30001, xuu31001) 30.44/12.99 new_esEs6(Just(xuu40000), Just(xuu3000), app(app(ty_@2, cee), cef)) -> new_esEs7(xuu40000, xuu3000, cee, cef) 30.44/12.99 new_esEs18(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.44/12.99 new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False 30.44/12.99 new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False 30.44/12.99 new_esEs29(xuu4000, xuu300, app(ty_Ratio, bgg)) -> new_esEs13(xuu4000, xuu300, bgg) 30.44/12.99 new_esEs24(xuu30001, xuu31001, ty_Int) -> new_esEs9(xuu30001, xuu31001) 30.44/12.99 new_esEs25(xuu30000, xuu31000, app(ty_Maybe, cgf)) -> new_esEs6(xuu30000, xuu31000, cgf) 30.44/12.99 new_compare([], [], ed) -> EQ 30.44/12.99 new_ltEs15(LT, EQ) -> True 30.44/12.99 new_esEs20(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) 30.44/12.99 new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) 30.44/12.99 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.44/12.99 new_esEs20(xuu40001, xuu3001, app(ty_[], bga)) -> new_esEs16(xuu40001, xuu3001, bga) 30.44/12.99 new_esEs28(xuu40002, xuu3002, app(app(ty_@2, dcg), dch)) -> new_esEs7(xuu40002, xuu3002, dcg, dch) 30.44/12.99 new_ltEs4(Left(xuu30000), Left(xuu31000), app(app(ty_Either, ca), cb), be) -> new_ltEs4(xuu30000, xuu31000, ca, cb) 30.44/12.99 new_lt13(xuu30000, xuu31000, app(ty_[], bgh)) -> new_lt14(xuu30000, xuu31000, bgh) 30.44/12.99 new_esEs25(xuu30000, xuu31000, app(app(ty_Either, cgc), cgd)) -> new_esEs5(xuu30000, xuu31000, cgc, cgd) 30.44/12.99 new_esEs20(xuu40001, xuu3001, app(ty_Maybe, bfh)) -> new_esEs6(xuu40001, xuu3001, bfh) 30.44/12.99 new_ltEs19(xuu30002, xuu31002, app(ty_Maybe, cbb)) -> new_ltEs12(xuu30002, xuu31002, cbb) 30.44/12.99 new_esEs11(True, True) -> True 30.44/12.99 new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False 30.44/12.99 new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False 30.44/12.99 new_esEs19(xuu40000, xuu3000, app(ty_Maybe, bef)) -> new_esEs6(xuu40000, xuu3000, bef) 30.44/12.99 new_compare29(xuu30000, xuu31000, bgd, bge, bgf) -> new_compare28(xuu30000, xuu31000, new_esEs4(xuu30000, xuu31000, bgd, bge, bgf), bgd, bge, bgf) 30.44/12.99 new_compare31(xuu30000, xuu31000, ty_Double) -> new_compare5(xuu30000, xuu31000) 30.44/12.99 new_esEs25(xuu30000, xuu31000, app(ty_[], cfg)) -> new_esEs16(xuu30000, xuu31000, cfg) 30.44/12.99 new_esEs19(xuu40000, xuu3000, app(ty_[], beg)) -> new_esEs16(xuu40000, xuu3000, beg) 30.44/12.99 new_esEs29(xuu4000, xuu300, ty_Int) -> new_esEs9(xuu4000, xuu300) 30.44/12.99 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 30.44/12.99 new_ltEs15(GT, GT) -> True 30.44/12.99 new_esEs30(xuu19, xuu14, ty_Bool) -> new_esEs11(xuu19, xuu14) 30.44/12.99 new_esEs26(xuu40000, xuu3000, app(app(ty_Either, dah), dba)) -> new_esEs5(xuu40000, xuu3000, dah, dba) 30.44/12.99 new_esEs30(xuu19, xuu14, app(ty_Maybe, bdb)) -> new_esEs6(xuu19, xuu14, bdb) 30.44/12.99 new_esEs10(LT, GT) -> False 30.44/12.99 new_esEs10(GT, LT) -> False 30.44/12.99 new_esEs21(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.44/12.99 new_ltEs10(xuu3000, xuu3100, eh) -> new_fsEs(new_compare9(xuu3000, xuu3100, eh)) 30.44/12.99 new_esEs19(xuu40000, xuu3000, app(app(ty_@2, bdf), bdg)) -> new_esEs7(xuu40000, xuu3000, bdf, bdg) 30.44/12.99 new_ltEs7(xuu3000, xuu3100) -> new_fsEs(new_compare6(xuu3000, xuu3100)) 30.44/12.99 new_ltEs12(Just(xuu30000), Just(xuu31000), app(app(ty_@2, cec), ced)) -> new_ltEs13(xuu30000, xuu31000, cec, ced) 30.44/12.99 new_esEs27(xuu40001, xuu3001, app(app(app(ty_@3, dbg), dbh), dca)) -> new_esEs4(xuu40001, xuu3001, dbg, dbh, dca) 30.44/12.99 new_primPlusNat0(xuu104, xuu300100) -> new_primPlusNat1(xuu104, Succ(xuu300100)) 30.44/12.99 new_not(False) -> True 30.44/12.99 new_esEs28(xuu40002, xuu3002, ty_Int) -> new_esEs9(xuu40002, xuu3002) 30.44/12.99 new_compare31(xuu30000, xuu31000, ty_Char) -> new_compare17(xuu30000, xuu31000) 30.44/12.99 new_esEs18(xuu40000, xuu3000, app(app(ty_Either, bbe), bbf)) -> new_esEs5(xuu40000, xuu3000, bbe, bbf) 30.44/12.99 new_esEs28(xuu40002, xuu3002, app(ty_Ratio, ddf)) -> new_esEs13(xuu40002, xuu3002, ddf) 30.44/12.99 new_esEs29(xuu4000, xuu300, ty_Ordering) -> new_esEs10(xuu4000, xuu300) 30.44/12.99 new_lt20(xuu30000, xuu31000, ty_@0) -> new_lt4(xuu30000, xuu31000) 30.44/12.99 new_esEs25(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) 30.44/12.99 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.44/12.99 new_compare19(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.44/12.99 new_compare19(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.44/12.99 new_lt12(xuu30001, xuu31001, app(app(ty_Either, bhe), bhf)) -> new_lt8(xuu30001, xuu31001, bhe, bhf) 30.44/12.99 new_esEs25(xuu30000, xuu31000, ty_Double) -> new_esEs17(xuu30000, xuu31000) 30.44/12.99 new_esEs5(Left(xuu40000), Right(xuu3000), gh, fg) -> False 30.44/12.99 new_esEs5(Right(xuu40000), Left(xuu3000), gh, fg) -> False 30.44/12.99 new_primCmpInt(Pos(Succ(xuu3000)), Pos(xuu310)) -> new_primCmpNat2(xuu3000, xuu310) 30.44/12.99 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Int) -> new_ltEs7(xuu30000, xuu31000) 30.44/12.99 new_lt12(xuu30001, xuu31001, ty_Integer) -> new_lt19(xuu30001, xuu31001) 30.44/12.99 new_compare27(xuu30000, xuu31000, True, bgb, bgc) -> EQ 30.44/12.99 new_esEs29(xuu4000, xuu300, app(app(ty_@2, bdd), bde)) -> new_esEs7(xuu4000, xuu300, bdd, bde) 30.44/12.99 new_ltEs4(Left(xuu30000), Right(xuu31000), cg, be) -> True 30.44/12.99 new_esEs18(xuu40000, xuu3000, app(ty_Maybe, bbh)) -> new_esEs6(xuu40000, xuu3000, bbh) 30.44/12.99 new_esEs30(xuu19, xuu14, ty_Ordering) -> new_esEs10(xuu19, xuu14) 30.44/12.99 new_esEs27(xuu40001, xuu3001, ty_Ordering) -> new_esEs10(xuu40001, xuu3001) 30.44/12.99 new_ltEs18(xuu3000, xuu3100, app(ty_[], ed)) -> new_ltEs5(xuu3000, xuu3100, ed) 30.44/12.99 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(app(ty_@2, ea), eb)) -> new_ltEs13(xuu30000, xuu31000, ea, eb) 30.44/12.99 new_esEs30(xuu19, xuu14, app(app(ty_Either, bcg), bch)) -> new_esEs5(xuu19, xuu14, bcg, bch) 30.44/12.99 new_lt20(xuu30000, xuu31000, ty_Int) -> new_lt9(xuu30000, xuu31000) 30.44/12.99 new_lt5(xuu30000, xuu31000, bae) -> new_esEs10(new_compare9(xuu30000, xuu31000, bae), LT) 30.44/12.99 new_ltEs20(xuu30001, xuu31001, ty_Bool) -> new_ltEs11(xuu30001, xuu31001) 30.44/12.99 new_compare16(xuu30000, xuu31000, False, bgd, bge, bgf) -> GT 30.44/12.99 new_compare11(xuu30000, xuu31000, True, bac, bad) -> LT 30.44/12.99 new_ltEs19(xuu30002, xuu31002, ty_Int) -> new_ltEs7(xuu30002, xuu31002) 30.44/12.99 new_primCmpNat1(Zero, Succ(xuu31000)) -> LT 30.44/12.99 new_lt12(xuu30001, xuu31001, app(ty_Ratio, bhg)) -> new_lt5(xuu30001, xuu31001, bhg) 30.44/12.99 new_esEs29(xuu4000, xuu300, app(ty_Maybe, cdb)) -> new_esEs6(xuu4000, xuu300, cdb) 30.44/12.99 new_compare210(xuu30000, xuu31000, False) -> new_compare14(xuu30000, xuu31000, new_ltEs15(xuu30000, xuu31000)) 30.44/12.99 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 30.44/12.99 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 30.44/12.99 new_esEs25(xuu30000, xuu31000, app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs4(xuu30000, xuu31000, cfh, cga, cgb) 30.44/12.99 new_lt20(xuu30000, xuu31000, ty_Double) -> new_lt17(xuu30000, xuu31000) 30.44/12.99 new_lt18(xuu30000, xuu31000) -> new_esEs10(new_compare30(xuu30000, xuu31000), LT) 30.44/12.99 new_primPlusNat1(Zero, Zero) -> Zero 30.44/12.99 new_esEs18(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.44/12.99 new_compare31(xuu30000, xuu31000, ty_Ordering) -> new_compare30(xuu30000, xuu31000) 30.44/12.99 new_lt20(xuu30000, xuu31000, app(app(ty_@2, cgg), cgh)) -> new_lt16(xuu30000, xuu31000, cgg, cgh) 30.44/12.99 new_esEs20(xuu40001, xuu3001, ty_Bool) -> new_esEs11(xuu40001, xuu3001) 30.44/12.99 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Double, be) -> new_ltEs14(xuu30000, xuu31000) 30.44/12.99 new_ltEs19(xuu30002, xuu31002, ty_Bool) -> new_ltEs11(xuu30002, xuu31002) 30.44/12.99 new_ltEs20(xuu30001, xuu31001, ty_Int) -> new_ltEs7(xuu30001, xuu31001) 30.44/12.99 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Float, fg) -> new_esEs8(xuu40000, xuu3000) 30.44/12.99 new_ltEs12(Just(xuu30000), Just(xuu31000), app(ty_Ratio, cea)) -> new_ltEs10(xuu30000, xuu31000, cea) 30.44/12.99 new_esEs27(xuu40001, xuu3001, ty_Double) -> new_esEs17(xuu40001, xuu3001) 30.44/12.99 new_esEs24(xuu30001, xuu31001, ty_Float) -> new_esEs8(xuu30001, xuu31001) 30.44/12.99 new_ltEs15(LT, LT) -> True 30.44/12.99 new_ltEs12(Nothing, Just(xuu31000), fa) -> True 30.44/12.99 new_esEs10(EQ, GT) -> False 30.44/12.99 new_esEs10(GT, EQ) -> False 30.44/12.99 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Ordering, be) -> new_ltEs15(xuu30000, xuu31000) 30.44/12.99 new_esEs18(xuu40000, xuu3000, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.44/12.99 new_ltEs19(xuu30002, xuu31002, app(app(ty_Either, cag), cah)) -> new_ltEs4(xuu30002, xuu31002, cag, cah) 30.44/12.99 new_esEs28(xuu40002, xuu3002, app(ty_Maybe, ddg)) -> new_esEs6(xuu40002, xuu3002, ddg) 30.44/12.99 new_esEs8(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs9(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) 30.44/12.99 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 30.44/12.99 new_primMulNat0(Succ(xuu4000000), Succ(xuu300100)) -> new_primPlusNat0(new_primMulNat0(xuu4000000, Succ(xuu300100)), xuu300100) 30.44/12.99 new_lt20(xuu30000, xuu31000, ty_Ordering) -> new_lt18(xuu30000, xuu31000) 30.44/12.99 new_compare31(xuu30000, xuu31000, ty_@0) -> new_compare8(xuu30000, xuu31000) 30.44/12.99 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(ty_Maybe, dh)) -> new_ltEs12(xuu30000, xuu31000, dh) 30.44/12.99 new_compare16(xuu30000, xuu31000, True, bgd, bge, bgf) -> LT 30.44/12.99 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.44/12.99 new_esEs13(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), bgg) -> new_asAs(new_esEs21(xuu40000, xuu3000, bgg), new_esEs22(xuu40001, xuu3001, bgg)) 30.44/12.99 new_esEs27(xuu40001, xuu3001, app(ty_Maybe, dce)) -> new_esEs6(xuu40001, xuu3001, dce) 30.44/12.99 new_esEs6(Just(xuu40000), Just(xuu3000), app(ty_[], cff)) -> new_esEs16(xuu40000, xuu3000, cff) 30.44/12.99 new_esEs5(Left(xuu40000), Left(xuu3000), ty_@0, fg) -> new_esEs14(xuu40000, xuu3000) 30.44/12.99 new_ltEs12(Nothing, Nothing, fa) -> True 30.44/12.99 new_esEs16(:(xuu40000, xuu40001), [], bag) -> False 30.44/12.99 new_esEs16([], :(xuu3000, xuu3001), bag) -> False 30.44/12.99 new_ltEs19(xuu30002, xuu31002, ty_Float) -> new_ltEs16(xuu30002, xuu31002) 30.44/12.99 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_@0, be) -> new_ltEs8(xuu30000, xuu31000) 30.44/12.99 new_compare31(xuu30000, xuu31000, app(app(ty_Either, cca), ccb)) -> new_compare18(xuu30000, xuu31000, cca, ccb) 30.44/12.99 new_esEs23(xuu30000, xuu31000, app(ty_[], bgh)) -> new_esEs16(xuu30000, xuu31000, bgh) 30.44/12.99 new_ltEs12(Just(xuu30000), Nothing, fa) -> False 30.44/12.99 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 30.44/12.99 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 30.44/12.99 new_compare8(@0, @0) -> EQ 30.44/12.99 new_lt20(xuu30000, xuu31000, app(ty_Maybe, cgf)) -> new_lt6(xuu30000, xuu31000, cgf) 30.44/12.99 new_compare110(xuu30000, xuu31000, False, bgb, bgc) -> GT 30.44/12.99 new_esEs4(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), ccg, cch, cda) -> new_asAs(new_esEs26(xuu40000, xuu3000, ccg), new_asAs(new_esEs27(xuu40001, xuu3001, cch), new_esEs28(xuu40002, xuu3002, cda))) 30.44/12.99 new_esEs23(xuu30000, xuu31000, ty_Integer) -> new_esEs15(xuu30000, xuu31000) 30.44/12.99 new_esEs28(xuu40002, xuu3002, app(app(ty_Either, ddd), dde)) -> new_esEs5(xuu40002, xuu3002, ddd, dde) 30.44/12.99 new_primEqNat0(Zero, Zero) -> True 30.44/12.99 new_ltEs18(xuu3000, xuu3100, ty_Float) -> new_ltEs16(xuu3000, xuu3100) 30.44/12.99 new_esEs19(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.44/12.99 new_esEs18(xuu40000, xuu3000, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.44/12.99 new_ltEs20(xuu30001, xuu31001, app(ty_[], cha)) -> new_ltEs5(xuu30001, xuu31001, cha) 30.44/12.99 new_esEs28(xuu40002, xuu3002, ty_Ordering) -> new_esEs10(xuu40002, xuu3002) 30.44/12.99 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Float) -> new_ltEs16(xuu30000, xuu31000) 30.44/12.99 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Integer) -> new_ltEs17(xuu30000, xuu31000) 30.44/12.99 new_esEs6(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.44/12.99 new_esEs29(xuu4000, xuu300, ty_Bool) -> new_esEs11(xuu4000, xuu300) 30.44/12.99 new_asAs(False, xuu141) -> False 30.44/12.99 new_esEs23(xuu30000, xuu31000, ty_Float) -> new_esEs8(xuu30000, xuu31000) 30.44/12.99 new_compare24(Nothing, Nothing, False, ec) -> LT 30.44/12.99 new_esEs20(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) 30.44/12.99 new_esEs26(xuu40000, xuu3000, app(ty_Ratio, dbb)) -> new_esEs13(xuu40000, xuu3000, dbb) 30.44/12.99 new_lt10(xuu30000, xuu31000) -> new_esEs10(new_compare19(xuu30000, xuu31000), LT) 30.44/12.99 new_esEs26(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.44/12.99 new_esEs23(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) 30.44/12.99 new_ltEs4(Right(xuu30000), Left(xuu31000), cg, be) -> False 30.44/12.99 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.44/12.99 new_primCmpInt(Neg(Succ(xuu3000)), Neg(xuu310)) -> new_primCmpNat0(xuu310, xuu3000) 30.44/12.99 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.44/12.99 new_ltEs18(xuu3000, xuu3100, ty_Int) -> new_ltEs7(xuu3000, xuu3100) 30.44/12.99 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Char, be) -> new_ltEs9(xuu30000, xuu31000) 30.44/12.99 new_esEs20(xuu40001, xuu3001, app(app(ty_@2, beh), bfa)) -> new_esEs7(xuu40001, xuu3001, beh, bfa) 30.44/12.99 30.44/12.99 The set Q consists of the following terms: 30.44/12.99 30.44/12.99 new_primPlusNat1(Succ(x0), Succ(x1)) 30.44/12.99 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 30.44/12.99 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 30.44/12.99 new_esEs27(x0, x1, ty_Ordering) 30.44/12.99 new_esEs19(x0, x1, ty_Bool) 30.44/12.99 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 30.44/12.99 new_ltEs4(Left(x0), Left(x1), ty_Char, x2) 30.44/12.99 new_esEs24(x0, x1, app(ty_Maybe, x2)) 30.44/12.99 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.44/12.99 new_ltEs18(x0, x1, ty_Bool) 30.44/12.99 new_primCmpNat2(x0, Succ(x1)) 30.44/12.99 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/12.99 new_ltEs12(Nothing, Nothing, x0) 30.44/12.99 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/12.99 new_lt20(x0, x1, ty_Int) 30.44/12.99 new_lt20(x0, x1, app(ty_[], x2)) 30.44/12.99 new_sr0(Integer(x0), Integer(x1)) 30.44/12.99 new_ltEs17(x0, x1) 30.44/12.99 new_esEs23(x0, x1, ty_Char) 30.44/12.99 new_compare31(x0, x1, ty_Ordering) 30.44/12.99 new_compare110(x0, x1, False, x2, x3) 30.44/12.99 new_ltEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.44/12.99 new_lt20(x0, x1, ty_Ordering) 30.44/12.99 new_esEs28(x0, x1, app(ty_[], x2)) 30.44/12.99 new_primCmpNat1(Succ(x0), Zero) 30.44/12.99 new_primPlusNat1(Zero, Zero) 30.44/12.99 new_esEs27(x0, x1, ty_Double) 30.44/12.99 new_esEs19(x0, x1, app(ty_Maybe, x2)) 30.44/12.99 new_esEs28(x0, x1, ty_Char) 30.44/12.99 new_compare31(x0, x1, ty_Int) 30.44/12.99 new_esEs25(x0, x1, ty_Char) 30.44/12.99 new_primCmpNat1(Zero, Zero) 30.44/12.99 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 30.44/12.99 new_ltEs18(x0, x1, ty_@0) 30.44/12.99 new_compare26(x0, x1, True) 30.44/12.99 new_esEs10(EQ, EQ) 30.44/12.99 new_lt14(x0, x1, x2) 30.44/12.99 new_compare31(x0, x1, ty_Char) 30.44/12.99 new_lt20(x0, x1, ty_Double) 30.44/12.99 new_primEqInt(Pos(Zero), Pos(Zero)) 30.44/12.99 new_lt13(x0, x1, app(ty_Maybe, x2)) 30.44/12.99 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 30.44/12.99 new_ltEs4(Left(x0), Left(x1), ty_Int, x2) 30.44/12.99 new_ltEs4(Right(x0), Right(x1), x2, ty_Integer) 30.44/12.99 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.44/12.99 new_primCompAux00(x0, GT) 30.44/12.99 new_ltEs12(Just(x0), Nothing, x1) 30.44/12.99 new_esEs25(x0, x1, ty_Int) 30.44/12.99 new_lt13(x0, x1, ty_Integer) 30.44/12.99 new_esEs24(x0, x1, ty_Bool) 30.44/12.99 new_compare31(x0, x1, ty_Double) 30.44/12.99 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 30.44/12.99 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 30.44/12.99 new_ltEs12(Just(x0), Just(x1), ty_Ordering) 30.44/12.99 new_esEs19(x0, x1, ty_@0) 30.44/12.99 new_ltEs7(x0, x1) 30.44/12.99 new_esEs6(Nothing, Just(x0), x1) 30.44/12.99 new_esEs30(x0, x1, ty_Integer) 30.44/12.99 new_esEs25(x0, x1, ty_Ordering) 30.44/12.99 new_ltEs12(Just(x0), Just(x1), app(ty_[], x2)) 30.44/12.99 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 30.44/12.99 new_ltEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.44/12.99 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 30.44/12.99 new_compare([], :(x0, x1), x2) 30.44/12.99 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 30.44/12.99 new_lt18(x0, x1) 30.44/12.99 new_primEqInt(Neg(Zero), Neg(Zero)) 30.44/12.99 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/12.99 new_compare24(Nothing, Nothing, False, x0) 30.44/12.99 new_primCmpNat0(Succ(x0), x1) 30.44/12.99 new_ltEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.44/12.99 new_lt20(x0, x1, ty_Char) 30.44/12.99 new_ltEs12(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.44/12.99 new_esEs23(x0, x1, ty_Ordering) 30.44/12.99 new_compare210(x0, x1, True) 30.44/12.99 new_compare13(x0, x1, x2) 30.44/12.99 new_ltEs19(x0, x1, ty_Float) 30.44/12.99 new_esEs30(x0, x1, ty_@0) 30.44/12.99 new_lt13(x0, x1, app(ty_[], x2)) 30.44/12.99 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 30.44/12.99 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 30.44/12.99 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.44/12.99 new_ltEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 30.44/12.99 new_esEs25(x0, x1, ty_@0) 30.44/12.99 new_esEs25(x0, x1, ty_Double) 30.44/12.99 new_ltEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.44/12.99 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.44/12.99 new_esEs23(x0, x1, app(ty_[], x2)) 30.44/12.99 new_compare27(x0, x1, True, x2, x3) 30.44/12.99 new_compare(:(x0, x1), [], x2) 30.44/12.99 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 30.44/12.99 new_esEs20(x0, x1, app(ty_Ratio, x2)) 30.44/12.99 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.44/12.99 new_ltEs4(Right(x0), Right(x1), x2, ty_Bool) 30.44/12.99 new_compare28(x0, x1, False, x2, x3, x4) 30.44/12.99 new_ltEs4(Left(x0), Left(x1), ty_Bool, x2) 30.44/12.99 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 30.44/12.99 new_ltEs11(True, True) 30.44/12.99 new_esEs27(x0, x1, ty_Char) 30.44/12.99 new_esEs19(x0, x1, app(ty_Ratio, x2)) 30.44/12.99 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 30.44/12.99 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 30.44/12.99 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 30.44/12.99 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 30.44/12.99 new_compare14(x0, x1, True) 30.44/12.99 new_esEs18(x0, x1, app(ty_Ratio, x2)) 30.44/12.99 new_esEs24(x0, x1, app(ty_Ratio, x2)) 30.44/12.99 new_esEs24(x0, x1, ty_Char) 30.44/12.99 new_ltEs12(Just(x0), Just(x1), ty_Int) 30.44/12.99 new_ltEs4(Left(x0), Left(x1), ty_Ordering, x2) 30.44/12.99 new_compare27(x0, x1, False, x2, x3) 30.44/12.99 new_compare30(x0, x1) 30.44/12.99 new_ltEs18(x0, x1, ty_Integer) 30.44/12.99 new_primEqInt(Pos(Zero), Neg(Zero)) 30.44/12.99 new_primEqInt(Neg(Zero), Pos(Zero)) 30.44/12.99 new_ltEs9(x0, x1) 30.44/12.99 new_esEs27(x0, x1, ty_Int) 30.44/12.99 new_compare7(Integer(x0), Integer(x1)) 30.44/12.99 new_esEs27(x0, x1, app(ty_[], x2)) 30.44/12.99 new_esEs23(x0, x1, ty_Integer) 30.44/12.99 new_esEs26(x0, x1, ty_Ordering) 30.44/12.99 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/12.99 new_ltEs12(Just(x0), Just(x1), ty_Char) 30.44/12.99 new_compare8(@0, @0) 30.44/12.99 new_ltEs12(Just(x0), Just(x1), ty_Double) 30.44/12.99 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 30.44/12.99 new_esEs27(x0, x1, ty_@0) 30.44/12.99 new_primMulInt(Neg(x0), Neg(x1)) 30.44/12.99 new_compare5(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 30.44/12.99 new_compare5(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 30.44/12.99 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.44/12.99 new_ltEs4(Left(x0), Left(x1), ty_Integer, x2) 30.44/12.99 new_esEs24(x0, x1, ty_Int) 30.44/12.99 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 30.44/12.99 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 30.44/12.99 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 30.44/12.99 new_ltEs13(@2(x0, x1), @2(x2, x3), x4, x5) 30.44/12.99 new_esEs25(x0, x1, ty_Bool) 30.44/12.99 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 30.44/12.99 new_compare16(x0, x1, True, x2, x3, x4) 30.44/12.99 new_ltEs15(EQ, EQ) 30.44/12.99 new_esEs28(x0, x1, ty_Ordering) 30.44/12.99 new_lt12(x0, x1, ty_Integer) 30.44/12.99 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.44/12.99 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.44/12.99 new_esEs30(x0, x1, ty_Bool) 30.44/12.99 new_esEs24(x0, x1, ty_@0) 30.44/12.99 new_compare29(x0, x1, x2, x3, x4) 30.44/12.99 new_lt12(x0, x1, app(ty_Maybe, x2)) 30.44/12.99 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 30.44/12.99 new_esEs22(x0, x1, ty_Integer) 30.44/12.99 new_esEs18(x0, x1, ty_Ordering) 30.44/12.99 new_esEs30(x0, x1, ty_Char) 30.44/12.99 new_esEs20(x0, x1, ty_Integer) 30.44/12.99 new_ltEs18(x0, x1, ty_Float) 30.44/12.99 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.44/12.99 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 30.44/12.99 new_esEs27(x0, x1, ty_Bool) 30.44/12.99 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 30.44/12.99 new_compare([], [], x0) 30.44/12.99 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 30.44/12.99 new_esEs28(x0, x1, ty_Integer) 30.44/12.99 new_lt20(x0, x1, ty_Integer) 30.44/12.99 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/12.99 new_esEs19(x0, x1, ty_Double) 30.44/12.99 new_esEs6(Just(x0), Just(x1), ty_Float) 30.44/12.99 new_esEs16(:(x0, x1), [], x2) 30.44/12.99 new_esEs24(x0, x1, ty_Float) 30.44/12.99 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/12.99 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 30.44/12.99 new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/12.99 new_esEs18(x0, x1, ty_Double) 30.44/12.99 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.44/12.99 new_esEs30(x0, x1, ty_Int) 30.44/12.99 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 30.44/12.99 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 30.44/12.99 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 30.44/12.99 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.44/12.99 new_lt5(x0, x1, x2) 30.44/12.99 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 30.44/12.99 new_esEs24(x0, x1, ty_Double) 30.44/12.99 new_compare17(Char(x0), Char(x1)) 30.44/12.99 new_ltEs20(x0, x1, ty_Double) 30.44/12.99 new_ltEs18(x0, x1, app(ty_[], x2)) 30.44/12.99 new_primMulNat0(Zero, Succ(x0)) 30.44/12.99 new_ltEs15(GT, LT) 30.44/12.99 new_ltEs15(LT, GT) 30.44/12.99 new_esEs9(x0, x1) 30.44/12.99 new_ltEs12(Just(x0), Just(x1), ty_@0) 30.44/12.99 new_ltEs4(Right(x0), Right(x1), x2, ty_Char) 30.44/12.99 new_ltEs19(x0, x1, ty_Integer) 30.44/12.99 new_esEs28(x0, x1, ty_Bool) 30.44/12.99 new_ltEs18(x0, x1, ty_Int) 30.44/12.99 new_compare5(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 30.44/12.99 new_ltEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.44/12.99 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 30.44/12.99 new_ltEs5(x0, x1, x2) 30.44/12.99 new_esEs6(Nothing, Nothing, x0) 30.44/12.99 new_esEs6(Just(x0), Nothing, x1) 30.44/12.99 new_lt11(x0, x1, x2, x3, x4) 30.44/12.99 new_esEs6(Just(x0), Just(x1), ty_Int) 30.44/12.99 new_ltEs4(Right(x0), Right(x1), x2, ty_Int) 30.44/12.99 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 30.44/12.99 new_ltEs18(x0, x1, ty_Char) 30.44/12.99 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 30.44/12.99 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 30.44/12.99 new_esEs25(x0, x1, ty_Integer) 30.44/12.99 new_primCmpNat1(Zero, Succ(x0)) 30.44/12.99 new_lt12(x0, x1, ty_Bool) 30.44/12.99 new_compare10(x0, x1, True, x2) 30.44/12.99 new_primCompAux00(x0, EQ) 30.44/12.99 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 30.44/12.99 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 30.44/12.99 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 30.44/12.99 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 30.44/12.99 new_primCmpNat1(Succ(x0), Succ(x1)) 30.44/12.99 new_primEqNat0(Zero, Succ(x0)) 30.44/12.99 new_ltEs20(x0, x1, ty_Ordering) 30.44/12.99 new_esEs30(x0, x1, ty_Float) 30.44/12.99 new_esEs17(Double(x0, x1), Double(x2, x3)) 30.44/12.99 new_esEs29(x0, x1, ty_Integer) 30.44/12.99 new_esEs6(Just(x0), Just(x1), ty_Ordering) 30.44/12.99 new_pePe(True, x0) 30.44/12.99 new_compare28(x0, x1, True, x2, x3, x4) 30.44/12.99 new_primCmpInt(Neg(Zero), Neg(Zero)) 30.44/12.99 new_lt12(x0, x1, app(ty_Ratio, x2)) 30.44/12.99 new_ltEs4(Left(x0), Left(x1), ty_Double, x2) 30.44/12.99 new_compare19(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 30.44/12.99 new_esEs30(x0, x1, app(ty_Maybe, x2)) 30.44/12.99 new_esEs18(x0, x1, app(ty_[], x2)) 30.44/12.99 new_ltEs19(x0, x1, ty_Bool) 30.44/12.99 new_esEs12(Char(x0), Char(x1)) 30.44/12.99 new_compare24(x0, x1, True, x2) 30.44/12.99 new_compare24(Nothing, Just(x0), False, x1) 30.44/12.99 new_primCmpInt(Pos(Zero), Neg(Zero)) 30.44/12.99 new_primCmpInt(Neg(Zero), Pos(Zero)) 30.44/12.99 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/12.99 new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) 30.44/12.99 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 30.44/12.99 new_esEs29(x0, x1, ty_Ordering) 30.44/12.99 new_esEs23(x0, x1, ty_Bool) 30.44/12.99 new_lt12(x0, x1, ty_Char) 30.44/12.99 new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) 30.44/12.99 new_compare15(x0, x1, x2, x3) 30.44/12.99 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/12.99 new_esEs29(x0, x1, app(ty_Maybe, x2)) 30.44/12.99 new_lt20(x0, x1, app(ty_Maybe, x2)) 30.44/12.99 new_esEs11(False, False) 30.44/12.99 new_esEs10(LT, GT) 30.44/12.99 new_esEs10(GT, LT) 30.44/12.99 new_ltEs4(Right(x0), Right(x1), x2, ty_Float) 30.44/12.99 new_esEs23(x0, x1, ty_Float) 30.44/12.99 new_esEs20(x0, x1, ty_Float) 30.44/12.99 new_esEs26(x0, x1, app(ty_[], x2)) 30.44/12.99 new_compare11(x0, x1, False, x2, x3) 30.44/12.99 new_esEs6(Just(x0), Just(x1), ty_Char) 30.44/12.99 new_ltEs4(Left(x0), Left(x1), ty_@0, x2) 30.44/12.99 new_lt20(x0, x1, ty_@0) 30.44/12.99 new_esEs20(x0, x1, app(ty_[], x2)) 30.44/12.99 new_lt13(x0, x1, ty_@0) 30.44/12.99 new_esEs20(x0, x1, ty_Bool) 30.44/12.99 new_lt12(x0, x1, ty_Int) 30.44/12.99 new_esEs23(x0, x1, app(ty_Maybe, x2)) 30.44/12.99 new_compare31(x0, x1, app(ty_[], x2)) 30.44/12.99 new_ltEs12(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.44/12.99 new_primEqNat0(Succ(x0), Zero) 30.44/12.99 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 30.44/12.99 new_esEs27(x0, x1, ty_Integer) 30.44/12.99 new_lt4(x0, x1) 30.44/12.99 new_compare111(x0, x1, True) 30.44/12.99 new_lt10(x0, x1) 30.44/12.99 new_esEs18(x0, x1, ty_@0) 30.44/12.99 new_primMulNat0(Succ(x0), Succ(x1)) 30.44/12.99 new_esEs26(x0, x1, ty_Double) 30.44/12.99 new_esEs25(x0, x1, app(ty_Maybe, x2)) 30.44/12.99 new_esEs28(x0, x1, ty_Float) 30.44/12.99 new_compare31(x0, x1, ty_@0) 30.44/12.99 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/12.99 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 30.44/12.99 new_esEs20(x0, x1, ty_Int) 30.44/12.99 new_esEs6(Just(x0), Just(x1), ty_Bool) 30.44/12.99 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.44/12.99 new_esEs26(x0, x1, ty_@0) 30.44/12.99 new_esEs28(x0, x1, ty_Int) 30.44/12.99 new_ltEs11(False, True) 30.44/12.99 new_ltEs11(True, False) 30.44/12.99 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 30.44/12.99 new_esEs10(EQ, GT) 30.44/12.99 new_esEs10(GT, EQ) 30.44/12.99 new_esEs16([], :(x0, x1), x2) 30.44/12.99 new_lt13(x0, x1, ty_Double) 30.44/12.99 new_esEs23(x0, x1, ty_Int) 30.44/12.99 new_esEs20(x0, x1, ty_Char) 30.44/12.99 new_lt12(x0, x1, ty_Float) 30.44/12.99 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/12.99 new_ltEs12(Nothing, Just(x0), x1) 30.44/12.99 new_esEs26(x0, x1, app(ty_Ratio, x2)) 30.44/12.99 new_ltEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.44/12.99 new_lt13(x0, x1, app(app(ty_@2, x2), x3)) 30.44/12.99 new_esEs19(x0, x1, app(ty_[], x2)) 30.44/12.99 new_esEs27(x0, x1, ty_Float) 30.44/12.99 new_compare25(x0, x1, False, x2, x3) 30.44/12.99 new_compare12(x0, x1) 30.44/12.99 new_lt12(x0, x1, ty_Double) 30.44/12.99 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 30.44/12.99 new_lt20(x0, x1, app(ty_Ratio, x2)) 30.44/12.99 new_esEs29(x0, x1, ty_Char) 30.44/12.99 new_esEs16(:(x0, x1), :(x2, x3), x4) 30.44/12.99 new_primMulNat0(Zero, Zero) 30.44/12.99 new_compare31(x0, x1, app(ty_Maybe, x2)) 30.44/12.99 new_lt12(x0, x1, ty_Ordering) 30.44/12.99 new_esEs25(x0, x1, app(ty_Ratio, x2)) 30.44/12.99 new_primCompAux00(x0, LT) 30.44/12.99 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.44/12.99 new_ltEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.44/12.99 new_ltEs19(x0, x1, ty_Char) 30.44/12.99 new_esEs27(x0, x1, app(ty_Ratio, x2)) 30.44/12.99 new_sr(x0, x1) 30.44/12.99 new_primCompAux0(x0, x1, x2, x3) 30.44/12.99 new_asAs(False, x0) 30.44/12.99 new_ltEs19(x0, x1, ty_Int) 30.44/12.99 new_lt8(x0, x1, x2, x3) 30.44/12.99 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 30.44/12.99 new_ltEs14(x0, x1) 30.44/12.99 new_esEs28(x0, x1, app(ty_Maybe, x2)) 30.44/12.99 new_ltEs20(x0, x1, ty_Integer) 30.44/12.99 new_esEs8(Float(x0, x1), Float(x2, x3)) 30.44/12.99 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.44/12.99 new_esEs6(Just(x0), Just(x1), ty_Integer) 30.44/12.99 new_esEs29(x0, x1, ty_@0) 30.44/12.99 new_ltEs19(x0, x1, ty_Ordering) 30.44/12.99 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.44/12.99 new_ltEs4(Right(x0), Right(x1), x2, ty_Ordering) 30.44/12.99 new_ltEs19(x0, x1, ty_@0) 30.44/12.99 new_esEs22(x0, x1, ty_Int) 30.44/12.99 new_ltEs20(x0, x1, ty_@0) 30.44/12.99 new_ltEs12(Just(x0), Just(x1), ty_Integer) 30.44/12.99 new_esEs18(x0, x1, ty_Bool) 30.44/12.99 new_esEs21(x0, x1, ty_Int) 30.44/12.99 new_ltEs12(Just(x0), Just(x1), ty_Float) 30.44/12.99 new_esEs6(Just(x0), Just(x1), ty_@0) 30.44/12.99 new_esEs10(LT, LT) 30.44/12.99 new_esEs28(x0, x1, app(ty_Ratio, x2)) 30.44/12.99 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.44/12.99 new_esEs30(x0, x1, ty_Double) 30.44/12.99 new_not(True) 30.44/12.99 new_esEs29(x0, x1, ty_Bool) 30.44/12.99 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/12.99 new_compare210(x0, x1, False) 30.44/12.99 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 30.44/12.99 new_lt15(x0, x1) 30.44/12.99 new_pePe(False, x0) 30.44/12.99 new_esEs29(x0, x1, ty_Double) 30.44/12.99 new_esEs11(True, True) 30.44/12.99 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/12.99 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/12.99 new_ltEs10(x0, x1, x2) 30.44/12.99 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 30.44/12.99 new_compare31(x0, x1, app(ty_Ratio, x2)) 30.44/12.99 new_ltEs4(Right(x0), Right(x1), x2, ty_Double) 30.44/12.99 new_primCmpNat0(Zero, x0) 30.44/12.99 new_esEs15(Integer(x0), Integer(x1)) 30.44/12.99 new_lt12(x0, x1, app(ty_[], x2)) 30.44/12.99 new_esEs27(x0, x1, app(ty_Maybe, x2)) 30.44/12.99 new_ltEs15(GT, EQ) 30.44/12.99 new_ltEs15(EQ, GT) 30.44/12.99 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 30.44/12.99 new_primCmpNat2(x0, Zero) 30.44/12.99 new_compare19(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 30.44/12.99 new_esEs11(False, True) 30.44/12.99 new_esEs11(True, False) 30.44/12.99 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.44/12.99 new_esEs29(x0, x1, ty_Int) 30.44/12.99 new_esEs26(x0, x1, ty_Integer) 30.44/12.99 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 30.44/12.99 new_ltEs20(x0, x1, ty_Char) 30.44/12.99 new_lt13(x0, x1, ty_Ordering) 30.44/12.99 new_lt17(x0, x1) 30.44/12.99 new_lt13(x0, x1, app(app(ty_Either, x2), x3)) 30.44/12.99 new_ltEs12(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.44/12.99 new_esEs23(x0, x1, app(ty_Ratio, x2)) 30.44/12.99 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 30.44/12.99 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/12.99 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 30.44/12.99 new_ltEs12(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.44/12.99 new_ltEs12(Just(x0), Just(x1), ty_Bool) 30.44/12.99 new_primEqNat0(Succ(x0), Succ(x1)) 30.44/12.99 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 30.44/12.99 new_esEs18(x0, x1, ty_Integer) 30.44/12.99 new_esEs20(x0, x1, ty_Ordering) 30.44/12.99 new_ltEs20(x0, x1, ty_Bool) 30.44/12.99 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.44/12.99 new_primPlusNat1(Succ(x0), Zero) 30.44/12.99 new_ltEs4(Left(x0), Right(x1), x2, x3) 30.44/12.99 new_ltEs4(Right(x0), Left(x1), x2, x3) 30.44/12.99 new_esEs29(x0, x1, app(ty_[], x2)) 30.44/12.99 new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/12.99 new_primMulNat0(Succ(x0), Zero) 30.44/12.99 new_compare18(x0, x1, x2, x3) 30.44/12.99 new_primCmpInt(Pos(Zero), Pos(Zero)) 30.44/12.99 new_compare31(x0, x1, ty_Integer) 30.44/12.99 new_lt12(x0, x1, ty_@0) 30.44/12.99 new_esEs19(x0, x1, ty_Ordering) 30.44/12.99 new_esEs10(GT, GT) 30.44/12.99 new_esEs20(x0, x1, app(ty_Maybe, x2)) 30.44/12.99 new_lt16(x0, x1, x2, x3) 30.44/12.99 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 30.44/12.99 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 30.44/12.99 new_compare25(x0, x1, True, x2, x3) 30.44/12.99 new_primMulInt(Pos(x0), Pos(x1)) 30.44/12.99 new_compare16(x0, x1, False, x2, x3, x4) 30.44/12.99 new_esEs14(@0, @0) 30.44/12.99 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 30.44/12.99 new_primPlusNat1(Zero, Succ(x0)) 30.44/12.99 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.44/12.99 new_esEs30(x0, x1, app(ty_Ratio, x2)) 30.44/12.99 new_primPlusNat0(x0, x1) 30.44/12.99 new_ltEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.44/12.99 new_esEs10(LT, EQ) 30.44/12.99 new_esEs10(EQ, LT) 30.44/12.99 new_compare24(Just(x0), Nothing, False, x1) 30.44/12.99 new_compare26(x0, x1, False) 30.44/12.99 new_esEs18(x0, x1, app(ty_Maybe, x2)) 30.44/12.99 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 30.44/12.99 new_esEs18(x0, x1, ty_Int) 30.44/12.99 new_primMulInt(Pos(x0), Neg(x1)) 30.44/12.99 new_primMulInt(Neg(x0), Pos(x1)) 30.44/12.99 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 30.44/12.99 new_esEs19(x0, x1, ty_Float) 30.44/12.99 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 30.44/12.99 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.44/12.99 new_esEs5(Left(x0), Right(x1), x2, x3) 30.44/12.99 new_esEs5(Right(x0), Left(x1), x2, x3) 30.44/12.99 new_esEs29(x0, x1, app(ty_Ratio, x2)) 30.44/12.99 new_lt13(x0, x1, app(ty_Ratio, x2)) 30.44/12.99 new_esEs6(Just(x0), Just(x1), ty_Double) 30.44/12.99 new_compare110(x0, x1, True, x2, x3) 30.44/12.99 new_ltEs18(x0, x1, ty_Ordering) 30.44/12.99 new_compare6(x0, x1) 30.44/12.99 new_ltEs20(x0, x1, app(ty_[], x2)) 30.44/12.99 new_esEs26(x0, x1, ty_Bool) 30.44/12.99 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 30.44/12.99 new_lt20(x0, x1, ty_Bool) 30.44/12.99 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 30.44/12.99 new_ltEs15(EQ, LT) 30.44/12.99 new_ltEs15(LT, EQ) 30.44/12.99 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 30.44/12.99 new_ltEs20(x0, x1, ty_Float) 30.44/12.99 new_compare11(x0, x1, True, x2, x3) 30.44/12.99 new_esEs30(x0, x1, app(ty_[], x2)) 30.44/12.99 new_esEs30(x0, x1, ty_Ordering) 30.44/12.99 new_esEs19(x0, x1, ty_Char) 30.44/12.99 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/12.99 new_ltEs15(GT, GT) 30.44/12.99 new_compare5(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 30.44/12.99 new_ltEs20(x0, x1, ty_Int) 30.44/12.99 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 30.44/12.99 new_compare31(x0, x1, ty_Bool) 30.44/12.99 new_esEs16([], [], x0) 30.44/12.99 new_esEs29(x0, x1, ty_Float) 30.44/12.99 new_ltEs4(Right(x0), Right(x1), x2, ty_@0) 30.44/12.99 new_fsEs(x0) 30.44/12.99 new_lt9(x0, x1) 30.44/12.99 new_ltEs11(False, False) 30.44/12.99 new_esEs19(x0, x1, ty_Int) 30.44/12.99 new_ltEs18(x0, x1, ty_Double) 30.44/12.99 new_compare111(x0, x1, False) 30.44/12.99 new_lt13(x0, x1, ty_Bool) 30.44/12.99 new_esEs26(x0, x1, app(ty_Maybe, x2)) 30.44/12.99 new_esEs26(x0, x1, ty_Int) 30.44/12.99 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 30.44/12.99 new_primEqNat0(Zero, Zero) 30.44/12.99 new_compare24(Just(x0), Just(x1), False, x2) 30.44/12.99 new_ltEs4(Left(x0), Left(x1), ty_Float, x2) 30.44/12.99 new_compare19(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 30.44/12.99 new_compare19(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 30.44/12.99 new_lt13(x0, x1, ty_Float) 30.44/12.99 new_esEs25(x0, x1, ty_Float) 30.44/12.99 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.44/12.99 new_esEs20(x0, x1, ty_@0) 30.44/12.99 new_ltEs19(x0, x1, app(ty_[], x2)) 30.44/12.99 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 30.44/12.99 new_not(False) 30.44/12.99 new_esEs24(x0, x1, ty_Integer) 30.44/12.99 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 30.44/12.99 new_lt7(x0, x1) 30.44/12.99 new_esEs23(x0, x1, ty_Double) 30.44/12.99 new_compare31(x0, x1, app(app(ty_Either, x2), x3)) 30.44/12.99 new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.44/12.99 new_esEs18(x0, x1, ty_Char) 30.44/12.99 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 30.44/12.99 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.44/12.99 new_ltEs19(x0, x1, ty_Double) 30.44/12.99 new_esEs13(:%(x0, x1), :%(x2, x3), x4) 30.44/12.99 new_compare14(x0, x1, False) 30.44/12.99 new_ltEs8(x0, x1) 30.44/12.99 new_esEs28(x0, x1, ty_Double) 30.44/12.99 new_esEs19(x0, x1, ty_Integer) 30.44/12.99 new_esEs21(x0, x1, ty_Integer) 30.44/12.99 new_ltEs15(LT, LT) 30.44/12.99 new_ltEs12(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.44/12.99 new_esEs26(x0, x1, ty_Float) 30.44/12.99 new_esEs25(x0, x1, app(ty_[], x2)) 30.44/12.99 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 30.44/12.99 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 30.44/12.99 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.44/12.99 new_lt13(x0, x1, ty_Int) 30.44/12.99 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 30.44/12.99 new_compare(:(x0, x1), :(x2, x3), x4) 30.44/12.99 new_lt6(x0, x1, x2) 30.44/12.99 new_esEs26(x0, x1, ty_Char) 30.44/12.99 new_lt20(x0, x1, ty_Float) 30.44/12.99 new_lt19(x0, x1) 30.44/12.99 new_asAs(True, x0) 30.44/12.99 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 30.44/12.99 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.44/12.99 new_lt13(x0, x1, ty_Char) 30.44/12.99 new_esEs23(x0, x1, ty_@0) 30.44/12.99 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/12.99 new_ltEs16(x0, x1) 30.44/12.99 new_compare31(x0, x1, app(app(ty_@2, x2), x3)) 30.44/12.99 new_esEs20(x0, x1, ty_Double) 30.44/12.99 new_esEs18(x0, x1, ty_Float) 30.44/12.99 new_esEs28(x0, x1, ty_@0) 30.44/12.99 new_compare10(x0, x1, False, x2) 30.44/12.99 new_esEs24(x0, x1, app(ty_[], x2)) 30.44/12.99 new_compare31(x0, x1, ty_Float) 30.44/12.99 new_esEs24(x0, x1, ty_Ordering) 30.44/12.99 30.44/12.99 We have to consider all minimal (P,Q,R)-chains. 30.44/12.99 ---------------------------------------- 30.44/12.99 30.44/12.99 (35) TransformationProof (EQUIVALENT) 30.44/12.99 By rewriting [LPAR04] the rule new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba) -> new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs10(GT, GT), h, ba) at position [6] we obtained the following new rules [LPAR04]: 30.44/12.99 30.44/12.99 (new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba) -> new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba),new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba) -> new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba)) 30.44/12.99 30.44/12.99 30.44/12.99 ---------------------------------------- 30.44/12.99 30.44/12.99 (36) 30.44/12.99 Obligation: 30.44/12.99 Q DP problem: 30.44/12.99 The TRS P consists of the following rules: 30.44/12.99 30.44/12.99 new_addToFM_C(Branch(Just(xuu300), xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C21(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs10(new_compare24(Just(xuu4000), Just(xuu300), new_esEs29(xuu4000, xuu300, h), h), LT), h, ba) 30.44/12.99 new_addToFM_C21(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, False, bb, bc) -> new_addToFM_C12(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, new_esEs10(new_compare24(Just(xuu19), Just(xuu14), new_esEs30(xuu19, xuu14, bb), bb), GT), bb, bc) 30.44/12.99 new_addToFM_C12(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, bb, bc) -> new_addToFM_C(xuu18, Just(xuu19), xuu20, bb, bc) 30.44/12.99 new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba) -> new_addToFM_C(xuu34, Just(xuu4000), xuu401, h, ba) 30.44/12.99 new_addToFM_C21(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, bb, bc) -> new_addToFM_C(xuu17, Just(xuu19), xuu20, bb, bc) 30.44/12.99 new_addToFM_C(Branch(Nothing, xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba) 30.44/12.99 new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba) -> new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba) 30.44/12.99 30.44/12.99 The TRS R consists of the following rules: 30.44/12.99 30.44/12.99 new_ltEs18(xuu3000, xuu3100, ty_Integer) -> new_ltEs17(xuu3000, xuu3100) 30.44/12.99 new_compare28(xuu30000, xuu31000, False, bgd, bge, bgf) -> new_compare16(xuu30000, xuu31000, new_ltEs6(xuu30000, xuu31000, bgd, bge, bgf), bgd, bge, bgf) 30.44/12.99 new_lt7(xuu30000, xuu31000) -> new_esEs10(new_compare17(xuu30000, xuu31000), LT) 30.44/12.99 new_esEs23(xuu30000, xuu31000, ty_Bool) -> new_esEs11(xuu30000, xuu31000) 30.44/12.99 new_esEs27(xuu40001, xuu3001, app(ty_Ratio, dcd)) -> new_esEs13(xuu40001, xuu3001, dcd) 30.44/12.99 new_primCmpInt(Neg(Succ(xuu3000)), Pos(xuu310)) -> LT 30.44/12.99 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 30.44/12.99 new_esEs27(xuu40001, xuu3001, ty_Int) -> new_esEs9(xuu40001, xuu3001) 30.44/12.99 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(ty_Ratio, hh)) -> new_esEs13(xuu40000, xuu3000, hh) 30.44/12.99 new_esEs23(xuu30000, xuu31000, app(ty_Maybe, baf)) -> new_esEs6(xuu30000, xuu31000, baf) 30.44/12.99 new_pePe(True, xuu167) -> True 30.44/12.99 new_ltEs19(xuu30002, xuu31002, app(app(app(ty_@3, cad), cae), caf)) -> new_ltEs6(xuu30002, xuu31002, cad, cae, caf) 30.44/12.99 new_ltEs20(xuu30001, xuu31001, ty_Ordering) -> new_ltEs15(xuu30001, xuu31001) 30.44/12.99 new_primCmpInt(Pos(Zero), Pos(Succ(xuu3100))) -> new_primCmpNat0(Zero, xuu3100) 30.44/12.99 new_ltEs6(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), ee, ef, eg) -> new_pePe(new_lt13(xuu30000, xuu31000, ee), new_asAs(new_esEs23(xuu30000, xuu31000, ee), new_pePe(new_lt12(xuu30001, xuu31001, ef), new_asAs(new_esEs24(xuu30001, xuu31001, ef), new_ltEs19(xuu30002, xuu31002, eg))))) 30.44/12.99 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(ty_[], bab)) -> new_esEs16(xuu40000, xuu3000, bab) 30.44/12.99 new_esEs5(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, fh), ga), gb), fg) -> new_esEs4(xuu40000, xuu3000, fh, ga, gb) 30.44/12.99 new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_Ratio, ge), fg) -> new_esEs13(xuu40000, xuu3000, ge) 30.44/12.99 new_esEs29(xuu4000, xuu300, ty_Char) -> new_esEs12(xuu4000, xuu300) 30.44/12.99 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Double) -> new_ltEs14(xuu30000, xuu31000) 30.44/12.99 new_lt20(xuu30000, xuu31000, ty_Bool) -> new_lt15(xuu30000, xuu31000) 30.44/12.99 new_compare(:(xuu30000, xuu30001), [], ed) -> GT 30.44/12.99 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 30.44/12.99 new_esEs27(xuu40001, xuu3001, app(ty_[], dcf)) -> new_esEs16(xuu40001, xuu3001, dcf) 30.44/12.99 new_esEs27(xuu40001, xuu3001, app(app(ty_Either, dcb), dcc)) -> new_esEs5(xuu40001, xuu3001, dcb, dcc) 30.44/12.99 new_primCmpInt(Pos(Zero), Neg(Succ(xuu3100))) -> GT 30.44/12.99 new_compare(:(xuu30000, xuu30001), :(xuu31000, xuu31001), ed) -> new_primCompAux0(xuu30000, xuu31000, new_compare(xuu30001, xuu31001, ed), ed) 30.44/12.99 new_esEs9(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) 30.44/12.99 new_esEs22(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) 30.44/12.99 new_esEs18(xuu40000, xuu3000, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs4(xuu40000, xuu3000, bbb, bbc, bbd) 30.44/12.99 new_ltEs19(xuu30002, xuu31002, app(ty_[], cac)) -> new_ltEs5(xuu30002, xuu31002, cac) 30.44/12.99 new_lt12(xuu30001, xuu31001, ty_Char) -> new_lt7(xuu30001, xuu31001) 30.44/12.99 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Char) -> new_ltEs9(xuu30000, xuu31000) 30.44/12.99 new_esEs26(xuu40000, xuu3000, app(app(ty_@2, dac), dad)) -> new_esEs7(xuu40000, xuu3000, dac, dad) 30.44/12.99 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Int) -> new_ltEs7(xuu30000, xuu31000) 30.44/12.99 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.44/12.99 new_lt13(xuu30000, xuu31000, app(ty_Ratio, bae)) -> new_lt5(xuu30000, xuu31000, bae) 30.44/12.99 new_esEs6(Just(xuu40000), Just(xuu3000), app(app(ty_Either, cfb), cfc)) -> new_esEs5(xuu40000, xuu3000, cfb, cfc) 30.44/12.99 new_ltEs15(EQ, LT) -> False 30.44/12.99 new_compare17(Char(xuu30000), Char(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) 30.44/12.99 new_ltEs8(xuu3000, xuu3100) -> new_fsEs(new_compare8(xuu3000, xuu3100)) 30.44/12.99 new_esEs28(xuu40002, xuu3002, app(app(app(ty_@3, dda), ddb), ddc)) -> new_esEs4(xuu40002, xuu3002, dda, ddb, ddc) 30.44/12.99 new_primCmpNat1(Succ(xuu30000), Succ(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) 30.44/12.99 new_esEs23(xuu30000, xuu31000, app(app(ty_Either, bac), bad)) -> new_esEs5(xuu30000, xuu31000, bac, bad) 30.44/12.99 new_ltEs19(xuu30002, xuu31002, ty_Ordering) -> new_ltEs15(xuu30002, xuu31002) 30.44/12.99 new_compare26(xuu30000, xuu31000, True) -> EQ 30.44/12.99 new_compare24(Nothing, Just(xuu3100), False, ec) -> LT 30.44/12.99 new_esEs18(xuu40000, xuu3000, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.44/12.99 new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False 30.44/12.99 new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False 30.44/12.99 new_ltEs4(Left(xuu30000), Left(xuu31000), app(app(ty_@2, ce), cf), be) -> new_ltEs13(xuu30000, xuu31000, ce, cf) 30.44/12.99 new_ltEs15(GT, LT) -> False 30.44/12.99 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.44/12.99 new_esEs24(xuu30001, xuu31001, ty_Double) -> new_esEs17(xuu30001, xuu31001) 30.44/12.99 new_compare25(xuu30000, xuu31000, False, bac, bad) -> new_compare11(xuu30000, xuu31000, new_ltEs4(xuu30000, xuu31000, bac, bad), bac, bad) 30.44/12.99 new_ltEs12(Just(xuu30000), Just(xuu31000), app(app(ty_Either, cdg), cdh)) -> new_ltEs4(xuu30000, xuu31000, cdg, cdh) 30.44/12.99 new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_Maybe, gf), fg) -> new_esEs6(xuu40000, xuu3000, gf) 30.44/12.99 new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.44/12.99 new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) 30.44/12.99 new_esEs30(xuu19, xuu14, ty_Char) -> new_esEs12(xuu19, xuu14) 30.44/12.99 new_esEs27(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) 30.44/12.99 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Char, fg) -> new_esEs12(xuu40000, xuu3000) 30.44/12.99 new_esEs10(GT, GT) -> True 30.44/12.99 new_ltEs4(Left(xuu30000), Left(xuu31000), app(ty_Maybe, cd), be) -> new_ltEs12(xuu30000, xuu31000, cd) 30.44/12.99 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.44/12.99 new_not(True) -> False 30.44/12.99 new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_[], gg), fg) -> new_esEs16(xuu40000, xuu3000, gg) 30.44/12.99 new_lt13(xuu30000, xuu31000, app(app(app(ty_@3, bgd), bge), bgf)) -> new_lt11(xuu30000, xuu31000, bgd, bge, bgf) 30.44/12.99 new_esEs28(xuu40002, xuu3002, ty_Bool) -> new_esEs11(xuu40002, xuu3002) 30.44/12.99 new_ltEs5(xuu3000, xuu3100, ed) -> new_fsEs(new_compare(xuu3000, xuu3100, ed)) 30.44/12.99 new_primCompAux00(xuu182, LT) -> LT 30.44/12.99 new_lt12(xuu30001, xuu31001, ty_Double) -> new_lt17(xuu30001, xuu31001) 30.44/12.99 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Float) -> new_ltEs16(xuu30000, xuu31000) 30.44/12.99 new_ltEs20(xuu30001, xuu31001, ty_Integer) -> new_ltEs17(xuu30001, xuu31001) 30.44/12.99 new_esEs25(xuu30000, xuu31000, ty_Ordering) -> new_esEs10(xuu30000, xuu31000) 30.44/12.99 new_esEs23(xuu30000, xuu31000, app(ty_Ratio, bae)) -> new_esEs13(xuu30000, xuu31000, bae) 30.44/12.99 new_esEs27(xuu40001, xuu3001, ty_Bool) -> new_esEs11(xuu40001, xuu3001) 30.44/12.99 new_esEs26(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.44/12.99 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.44/12.99 new_lt12(xuu30001, xuu31001, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_lt11(xuu30001, xuu31001, bhb, bhc, bhd) 30.44/12.99 new_esEs30(xuu19, xuu14, ty_Double) -> new_esEs17(xuu19, xuu14) 30.44/12.99 new_lt13(xuu30000, xuu31000, app(ty_Maybe, baf)) -> new_lt6(xuu30000, xuu31000, baf) 30.44/12.99 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.44/12.99 new_esEs19(xuu40000, xuu3000, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.44/12.99 new_esEs25(xuu30000, xuu31000, ty_Float) -> new_esEs8(xuu30000, xuu31000) 30.44/12.99 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Double, fg) -> new_esEs17(xuu40000, xuu3000) 30.44/12.99 new_lt19(xuu30000, xuu31000) -> new_esEs10(new_compare7(xuu30000, xuu31000), LT) 30.44/12.99 new_compare31(xuu30000, xuu31000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_compare29(xuu30000, xuu31000, cbf, cbg, cbh) 30.44/12.99 new_ltEs20(xuu30001, xuu31001, app(app(app(ty_@3, chb), chc), chd)) -> new_ltEs6(xuu30001, xuu31001, chb, chc, chd) 30.44/12.99 new_esEs5(Left(xuu40000), Left(xuu3000), app(app(ty_@2, fd), ff), fg) -> new_esEs7(xuu40000, xuu3000, fd, ff) 30.44/12.99 new_primEqNat0(Succ(xuu400000), Zero) -> False 30.44/12.99 new_primEqNat0(Zero, Succ(xuu30000)) -> False 30.44/12.99 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.44/12.99 new_esEs19(xuu40000, xuu3000, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.44/12.99 new_esEs14(@0, @0) -> True 30.44/12.99 new_lt12(xuu30001, xuu31001, app(app(ty_@2, caa), cab)) -> new_lt16(xuu30001, xuu31001, caa, cab) 30.44/12.99 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Bool, be) -> new_ltEs11(xuu30000, xuu31000) 30.44/12.99 new_esEs26(xuu40000, xuu3000, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.44/12.99 new_lt11(xuu30000, xuu31000, bgd, bge, bgf) -> new_esEs10(new_compare29(xuu30000, xuu31000, bgd, bge, bgf), LT) 30.44/12.99 new_esEs23(xuu30000, xuu31000, ty_Int) -> new_esEs9(xuu30000, xuu31000) 30.44/12.99 new_ltEs15(GT, EQ) -> False 30.44/12.99 new_lt20(xuu30000, xuu31000, app(ty_[], cfg)) -> new_lt14(xuu30000, xuu31000, cfg) 30.44/12.99 new_esEs26(xuu40000, xuu3000, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.44/12.99 new_lt20(xuu30000, xuu31000, ty_Integer) -> new_lt19(xuu30000, xuu31000) 30.44/12.99 new_primCompAux00(xuu182, GT) -> GT 30.44/12.99 new_primCmpInt(Neg(Zero), Neg(Succ(xuu3100))) -> new_primCmpNat2(xuu3100, Zero) 30.44/12.99 new_esEs10(EQ, EQ) -> True 30.44/12.99 new_esEs29(xuu4000, xuu300, ty_Double) -> new_esEs17(xuu4000, xuu300) 30.44/12.99 new_esEs6(Just(xuu40000), Just(xuu3000), app(ty_Ratio, cfd)) -> new_esEs13(xuu40000, xuu3000, cfd) 30.44/12.99 new_lt16(xuu30000, xuu31000, bgb, bgc) -> new_esEs10(new_compare15(xuu30000, xuu31000, bgb, bgc), LT) 30.44/12.99 new_esEs17(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs9(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) 30.44/12.99 new_esEs24(xuu30001, xuu31001, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_esEs4(xuu30001, xuu31001, bhb, bhc, bhd) 30.44/12.99 new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.44/12.99 new_esEs23(xuu30000, xuu31000, app(app(app(ty_@3, bgd), bge), bgf)) -> new_esEs4(xuu30000, xuu31000, bgd, bge, bgf) 30.44/12.99 new_esEs30(xuu19, xuu14, app(app(app(ty_@3, bcd), bce), bcf)) -> new_esEs4(xuu19, xuu14, bcd, bce, bcf) 30.44/12.99 new_compare14(xuu30000, xuu31000, True) -> LT 30.44/12.99 new_primCmpInt(Pos(Succ(xuu3000)), Neg(xuu310)) -> GT 30.44/12.99 new_lt13(xuu30000, xuu31000, ty_Integer) -> new_lt19(xuu30000, xuu31000) 30.44/12.99 new_ltEs18(xuu3000, xuu3100, ty_Bool) -> new_ltEs11(xuu3000, xuu3100) 30.44/12.99 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_@0) -> new_ltEs8(xuu30000, xuu31000) 30.44/12.99 new_esEs28(xuu40002, xuu3002, ty_Double) -> new_esEs17(xuu40002, xuu3002) 30.44/12.99 new_lt13(xuu30000, xuu31000, ty_Char) -> new_lt7(xuu30000, xuu31000) 30.44/12.99 new_compare110(xuu30000, xuu31000, True, bgb, bgc) -> LT 30.44/12.99 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(ty_Ratio, dg)) -> new_ltEs10(xuu30000, xuu31000, dg) 30.44/12.99 new_esEs23(xuu30000, xuu31000, ty_Double) -> new_esEs17(xuu30000, xuu31000) 30.44/12.99 new_lt20(xuu30000, xuu31000, app(app(ty_Either, cgc), cgd)) -> new_lt8(xuu30000, xuu31000, cgc, cgd) 30.44/12.99 new_lt13(xuu30000, xuu31000, ty_Double) -> new_lt17(xuu30000, xuu31000) 30.44/12.99 new_primPlusNat1(Succ(xuu25200), Succ(xuu9400)) -> Succ(Succ(new_primPlusNat1(xuu25200, xuu9400))) 30.44/12.99 new_primCompAux0(xuu30000, xuu31000, xuu168, ed) -> new_primCompAux00(xuu168, new_compare31(xuu30000, xuu31000, ed)) 30.44/12.99 new_esEs26(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.44/12.99 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Integer, be) -> new_ltEs17(xuu30000, xuu31000) 30.44/12.99 new_esEs10(LT, EQ) -> False 30.44/12.99 new_esEs10(EQ, LT) -> False 30.44/12.99 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.44/12.99 new_esEs20(xuu40001, xuu3001, ty_Ordering) -> new_esEs10(xuu40001, xuu3001) 30.44/12.99 new_esEs29(xuu4000, xuu300, app(app(app(ty_@3, ccg), cch), cda)) -> new_esEs4(xuu4000, xuu300, ccg, cch, cda) 30.44/12.99 new_compare13(xuu30000, xuu31000, baf) -> new_compare24(xuu30000, xuu31000, new_esEs6(xuu30000, xuu31000, baf), baf) 30.44/12.99 new_primCmpNat0(Succ(xuu3100), xuu3000) -> new_primCmpNat1(xuu3100, xuu3000) 30.44/12.99 new_compare210(xuu30000, xuu31000, True) -> EQ 30.44/12.99 new_esEs20(xuu40001, xuu3001, ty_Float) -> new_esEs8(xuu40001, xuu3001) 30.44/12.99 new_esEs28(xuu40002, xuu3002, ty_Char) -> new_esEs12(xuu40002, xuu3002) 30.44/12.99 new_lt9(xuu300, xuu310) -> new_esEs10(new_compare6(xuu300, xuu310), LT) 30.44/12.99 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Bool) -> new_ltEs11(xuu30000, xuu31000) 30.44/12.99 new_esEs28(xuu40002, xuu3002, app(ty_[], ddh)) -> new_esEs16(xuu40002, xuu3002, ddh) 30.44/12.99 new_esEs27(xuu40001, xuu3001, app(app(ty_@2, dbe), dbf)) -> new_esEs7(xuu40001, xuu3001, dbe, dbf) 30.44/12.99 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Char) -> new_ltEs9(xuu30000, xuu31000) 30.44/12.99 new_ltEs18(xuu3000, xuu3100, app(ty_Maybe, fa)) -> new_ltEs12(xuu3000, xuu3100, fa) 30.44/12.99 new_esEs19(xuu40000, xuu3000, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs4(xuu40000, xuu3000, bdh, bea, beb) 30.44/12.99 new_pePe(False, xuu167) -> xuu167 30.44/12.99 new_esEs27(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) 30.44/12.99 new_ltEs4(Left(xuu30000), Left(xuu31000), app(ty_Ratio, cc), be) -> new_ltEs10(xuu30000, xuu31000, cc) 30.44/12.99 new_ltEs18(xuu3000, xuu3100, app(app(app(ty_@3, ee), ef), eg)) -> new_ltEs6(xuu3000, xuu3100, ee, ef, eg) 30.44/12.99 new_esEs11(False, True) -> False 30.44/12.99 new_esEs11(True, False) -> False 30.44/12.99 new_compare25(xuu30000, xuu31000, True, bac, bad) -> EQ 30.44/12.99 new_ltEs4(Left(xuu30000), Left(xuu31000), app(app(app(ty_@3, bf), bg), bh), be) -> new_ltEs6(xuu30000, xuu31000, bf, bg, bh) 30.44/12.99 new_lt12(xuu30001, xuu31001, ty_Int) -> new_lt9(xuu30001, xuu31001) 30.44/12.99 new_compare26(xuu30000, xuu31000, False) -> new_compare111(xuu30000, xuu31000, new_ltEs11(xuu30000, xuu31000)) 30.44/12.99 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Double) -> new_ltEs14(xuu30000, xuu31000) 30.44/12.99 new_ltEs19(xuu30002, xuu31002, ty_Integer) -> new_ltEs17(xuu30002, xuu31002) 30.44/12.99 new_compare31(xuu30000, xuu31000, ty_Float) -> new_compare19(xuu30000, xuu31000) 30.44/12.99 new_lt6(xuu30000, xuu31000, baf) -> new_esEs10(new_compare13(xuu30000, xuu31000, baf), LT) 30.44/12.99 new_compare7(Integer(xuu30000), Integer(xuu31000)) -> new_primCmpInt(xuu30000, xuu31000) 30.44/12.99 new_compare10(xuu134, xuu135, False, dea) -> GT 30.44/12.99 new_compare11(xuu30000, xuu31000, False, bac, bad) -> GT 30.44/12.99 new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False 30.44/12.99 new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False 30.44/12.99 new_compare24(xuu300, xuu310, True, ec) -> EQ 30.44/12.99 new_esEs19(xuu40000, xuu3000, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.44/12.99 new_esEs19(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.44/12.99 new_compare24(Just(xuu3000), Just(xuu3100), False, ec) -> new_compare10(xuu3000, xuu3100, new_ltEs18(xuu3000, xuu3100, ec), ec) 30.44/12.99 new_esEs18(xuu40000, xuu3000, app(ty_Ratio, bbg)) -> new_esEs13(xuu40000, xuu3000, bbg) 30.44/12.99 new_compare31(xuu30000, xuu31000, ty_Int) -> new_compare6(xuu30000, xuu31000) 30.44/12.99 new_ltEs20(xuu30001, xuu31001, app(ty_Ratio, chg)) -> new_ltEs10(xuu30001, xuu31001, chg) 30.44/12.99 new_esEs6(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, ceg), ceh), cfa)) -> new_esEs4(xuu40000, xuu3000, ceg, ceh, cfa) 30.44/12.99 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.44/12.99 new_esEs26(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.44/12.99 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(app(ty_@2, ha), hb)) -> new_esEs7(xuu40000, xuu3000, ha, hb) 30.44/12.99 new_ltEs18(xuu3000, xuu3100, ty_Double) -> new_ltEs14(xuu3000, xuu3100) 30.44/12.99 new_esEs26(xuu40000, xuu3000, app(ty_[], dbd)) -> new_esEs16(xuu40000, xuu3000, dbd) 30.44/12.99 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Ordering, fg) -> new_esEs10(xuu40000, xuu3000) 30.44/12.99 new_esEs24(xuu30001, xuu31001, app(app(ty_Either, bhe), bhf)) -> new_esEs5(xuu30001, xuu31001, bhe, bhf) 30.44/12.99 new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) 30.44/12.99 new_primCmpInt(Neg(Zero), Pos(Succ(xuu3100))) -> LT 30.44/12.99 new_compare9(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Integer) -> new_compare7(new_sr0(xuu30000, xuu31001), new_sr0(xuu31000, xuu30001)) 30.44/12.99 new_compare19(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.44/12.99 new_primMulInt(Pos(xuu400000), Pos(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) 30.44/12.99 new_esEs29(xuu4000, xuu300, ty_Float) -> new_esEs8(xuu4000, xuu300) 30.44/12.99 new_esEs18(xuu40000, xuu3000, app(ty_[], bca)) -> new_esEs16(xuu40000, xuu3000, bca) 30.44/12.99 new_ltEs19(xuu30002, xuu31002, app(ty_Ratio, cba)) -> new_ltEs10(xuu30002, xuu31002, cba) 30.44/12.99 new_esEs24(xuu30001, xuu31001, ty_Ordering) -> new_esEs10(xuu30001, xuu31001) 30.44/12.99 new_ltEs14(xuu3000, xuu3100) -> new_fsEs(new_compare5(xuu3000, xuu3100)) 30.44/12.99 new_compare10(xuu134, xuu135, True, dea) -> LT 30.44/12.99 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(app(app(ty_@3, hc), hd), he)) -> new_esEs4(xuu40000, xuu3000, hc, hd, he) 30.44/12.99 new_esEs24(xuu30001, xuu31001, app(ty_Maybe, bhh)) -> new_esEs6(xuu30001, xuu31001, bhh) 30.44/12.99 new_primMulNat0(Succ(xuu4000000), Zero) -> Zero 30.44/12.99 new_primMulNat0(Zero, Succ(xuu300100)) -> Zero 30.44/12.99 new_ltEs11(False, False) -> True 30.44/12.99 new_compare31(xuu30000, xuu31000, ty_Bool) -> new_compare12(xuu30000, xuu31000) 30.44/12.99 new_esEs7(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bdd, bde) -> new_asAs(new_esEs19(xuu40000, xuu3000, bdd), new_esEs20(xuu40001, xuu3001, bde)) 30.44/12.99 new_esEs24(xuu30001, xuu31001, ty_Char) -> new_esEs12(xuu30001, xuu31001) 30.44/12.99 new_lt13(xuu30000, xuu31000, ty_Bool) -> new_lt15(xuu30000, xuu31000) 30.44/12.99 new_esEs30(xuu19, xuu14, ty_Float) -> new_esEs8(xuu19, xuu14) 30.44/12.99 new_compare9(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Int) -> new_compare6(new_sr(xuu30000, xuu31001), new_sr(xuu31000, xuu30001)) 30.44/12.99 new_esEs18(xuu40000, xuu3000, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.44/12.99 new_compare27(xuu30000, xuu31000, False, bgb, bgc) -> new_compare110(xuu30000, xuu31000, new_ltEs13(xuu30000, xuu31000, bgb, bgc), bgb, bgc) 30.44/12.99 new_ltEs17(xuu3000, xuu3100) -> new_fsEs(new_compare7(xuu3000, xuu3100)) 30.44/12.99 new_ltEs18(xuu3000, xuu3100, ty_@0) -> new_ltEs8(xuu3000, xuu3100) 30.44/12.99 new_lt20(xuu30000, xuu31000, app(app(app(ty_@3, cfh), cga), cgb)) -> new_lt11(xuu30000, xuu31000, cfh, cga, cgb) 30.44/12.99 new_compare24(Just(xuu3000), Nothing, False, ec) -> GT 30.44/12.99 new_esEs5(Left(xuu40000), Left(xuu3000), app(app(ty_Either, gc), gd), fg) -> new_esEs5(xuu40000, xuu3000, gc, gd) 30.44/12.99 new_compare19(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.44/12.99 new_primCmpNat0(Zero, xuu3000) -> LT 30.44/12.99 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(ty_Maybe, baa)) -> new_esEs6(xuu40000, xuu3000, baa) 30.44/12.99 new_esEs18(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.44/12.99 new_esEs22(xuu40001, xuu3001, ty_Int) -> new_esEs9(xuu40001, xuu3001) 30.44/12.99 new_lt8(xuu30000, xuu31000, bac, bad) -> new_esEs10(new_compare18(xuu30000, xuu31000, bac, bad), LT) 30.44/12.99 new_lt15(xuu30000, xuu31000) -> new_esEs10(new_compare12(xuu30000, xuu31000), LT) 30.44/12.99 new_compare111(xuu30000, xuu31000, True) -> LT 30.44/12.99 new_esEs27(xuu40001, xuu3001, ty_Float) -> new_esEs8(xuu40001, xuu3001) 30.44/12.99 new_lt14(xuu30000, xuu31000, bgh) -> new_esEs10(new_compare(xuu30000, xuu31000, bgh), LT) 30.44/12.99 new_compare31(xuu30000, xuu31000, app(ty_Ratio, ccc)) -> new_compare9(xuu30000, xuu31000, ccc) 30.44/12.99 new_lt13(xuu30000, xuu31000, ty_Float) -> new_lt10(xuu30000, xuu31000) 30.44/12.99 new_esEs20(xuu40001, xuu3001, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_esEs4(xuu40001, xuu3001, bfb, bfc, bfd) 30.44/12.99 new_ltEs11(True, True) -> True 30.44/12.99 new_ltEs16(xuu3000, xuu3100) -> new_fsEs(new_compare19(xuu3000, xuu3100)) 30.44/12.99 new_primPlusNat1(Succ(xuu25200), Zero) -> Succ(xuu25200) 30.44/12.99 new_primPlusNat1(Zero, Succ(xuu9400)) -> Succ(xuu9400) 30.44/12.99 new_esEs30(xuu19, xuu14, ty_@0) -> new_esEs14(xuu19, xuu14) 30.44/12.99 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Ordering) -> new_ltEs15(xuu30000, xuu31000) 30.44/12.99 new_lt13(xuu30000, xuu31000, ty_Ordering) -> new_lt18(xuu30000, xuu31000) 30.44/12.99 new_esEs16([], [], bag) -> True 30.44/12.99 new_ltEs12(Just(xuu30000), Just(xuu31000), app(app(app(ty_@3, cdd), cde), cdf)) -> new_ltEs6(xuu30000, xuu31000, cdd, cde, cdf) 30.44/12.99 new_ltEs20(xuu30001, xuu31001, ty_Double) -> new_ltEs14(xuu30001, xuu31001) 30.44/12.99 new_esEs23(xuu30000, xuu31000, ty_Ordering) -> new_esEs10(xuu30000, xuu31000) 30.44/12.99 new_lt12(xuu30001, xuu31001, ty_Float) -> new_lt10(xuu30001, xuu31001) 30.44/12.99 new_ltEs12(Just(xuu30000), Just(xuu31000), app(ty_Maybe, ceb)) -> new_ltEs12(xuu30000, xuu31000, ceb) 30.44/12.99 new_esEs29(xuu4000, xuu300, ty_@0) -> new_esEs14(xuu4000, xuu300) 30.44/12.99 new_primMulInt(Neg(xuu400000), Neg(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) 30.44/12.99 new_esEs20(xuu40001, xuu3001, ty_Double) -> new_esEs17(xuu40001, xuu3001) 30.44/12.99 new_esEs25(xuu30000, xuu31000, app(app(ty_@2, cgg), cgh)) -> new_esEs7(xuu30000, xuu31000, cgg, cgh) 30.44/12.99 new_esEs25(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) 30.44/12.99 new_lt20(xuu30000, xuu31000, app(ty_Ratio, cge)) -> new_lt5(xuu30000, xuu31000, cge) 30.44/12.99 new_compare([], :(xuu31000, xuu31001), ed) -> LT 30.44/12.99 new_esEs28(xuu40002, xuu3002, ty_Integer) -> new_esEs15(xuu40002, xuu3002) 30.44/12.99 new_ltEs19(xuu30002, xuu31002, app(app(ty_@2, cbc), cbd)) -> new_ltEs13(xuu30002, xuu31002, cbc, cbd) 30.44/12.99 new_esEs6(Just(xuu40000), Just(xuu3000), app(ty_Maybe, cfe)) -> new_esEs6(xuu40000, xuu3000, cfe) 30.44/12.99 new_esEs6(Nothing, Just(xuu3000), cdb) -> False 30.44/12.99 new_esEs6(Just(xuu40000), Nothing, cdb) -> False 30.44/12.99 new_ltEs11(False, True) -> True 30.44/12.99 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Float, be) -> new_ltEs16(xuu30000, xuu31000) 30.44/12.99 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_@0) -> new_ltEs8(xuu30000, xuu31000) 30.44/12.99 new_ltEs19(xuu30002, xuu31002, ty_@0) -> new_ltEs8(xuu30002, xuu31002) 30.44/12.99 new_ltEs15(EQ, GT) -> True 30.44/12.99 new_esEs24(xuu30001, xuu31001, ty_Bool) -> new_esEs11(xuu30001, xuu31001) 30.44/12.99 new_esEs6(Nothing, Nothing, cdb) -> True 30.44/12.99 new_ltEs18(xuu3000, xuu3100, ty_Char) -> new_ltEs9(xuu3000, xuu3100) 30.44/12.99 new_esEs11(False, False) -> True 30.44/12.99 new_esEs10(LT, LT) -> True 30.44/12.99 new_ltEs18(xuu3000, xuu3100, ty_Ordering) -> new_ltEs15(xuu3000, xuu3100) 30.44/12.99 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Int, be) -> new_ltEs7(xuu30000, xuu31000) 30.44/12.99 new_esEs21(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.44/12.99 new_ltEs20(xuu30001, xuu31001, app(app(ty_@2, daa), dab)) -> new_ltEs13(xuu30001, xuu31001, daa, dab) 30.44/12.99 new_primCmpNat2(xuu3000, Zero) -> GT 30.44/12.99 new_esEs28(xuu40002, xuu3002, ty_Float) -> new_esEs8(xuu40002, xuu3002) 30.44/12.99 new_lt4(xuu30000, xuu31000) -> new_esEs10(new_compare8(xuu30000, xuu31000), LT) 30.44/12.99 new_compare6(xuu30, xuu31) -> new_primCmpInt(xuu30, xuu31) 30.44/12.99 new_compare31(xuu30000, xuu31000, app(ty_Maybe, ccd)) -> new_compare13(xuu30000, xuu31000, ccd) 30.44/12.99 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.44/12.99 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Bool, fg) -> new_esEs11(xuu40000, xuu3000) 30.44/12.99 new_lt13(xuu30000, xuu31000, ty_Int) -> new_lt9(xuu30000, xuu31000) 30.44/12.99 new_esEs16(:(xuu40000, xuu40001), :(xuu3000, xuu3001), bag) -> new_asAs(new_esEs18(xuu40000, xuu3000, bag), new_esEs16(xuu40001, xuu3001, bag)) 30.44/12.99 new_compare30(xuu30000, xuu31000) -> new_compare210(xuu30000, xuu31000, new_esEs10(xuu30000, xuu31000)) 30.44/12.99 new_ltEs19(xuu30002, xuu31002, ty_Char) -> new_ltEs9(xuu30002, xuu31002) 30.44/12.99 new_lt12(xuu30001, xuu31001, ty_Bool) -> new_lt15(xuu30001, xuu31001) 30.44/12.99 new_compare31(xuu30000, xuu31000, ty_Integer) -> new_compare7(xuu30000, xuu31000) 30.44/12.99 new_ltEs12(Just(xuu30000), Just(xuu31000), app(ty_[], cdc)) -> new_ltEs5(xuu30000, xuu31000, cdc) 30.44/12.99 new_esEs26(xuu40000, xuu3000, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs4(xuu40000, xuu3000, dae, daf, dag) 30.44/12.99 new_primMulInt(Pos(xuu400000), Neg(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) 30.44/12.99 new_primMulInt(Neg(xuu400000), Pos(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) 30.44/12.99 new_esEs12(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) 30.44/12.99 new_esEs19(xuu40000, xuu3000, app(app(ty_Either, bec), bed)) -> new_esEs5(xuu40000, xuu3000, bec, bed) 30.44/12.99 new_lt17(xuu30000, xuu31000) -> new_esEs10(new_compare5(xuu30000, xuu31000), LT) 30.44/12.99 new_esEs26(xuu40000, xuu3000, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.44/12.99 new_esEs20(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) 30.44/12.99 new_ltEs20(xuu30001, xuu31001, ty_@0) -> new_ltEs8(xuu30001, xuu31001) 30.44/12.99 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(app(app(ty_@3, db), dc), dd)) -> new_ltEs6(xuu30000, xuu31000, db, dc, dd) 30.44/12.99 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(app(ty_Either, de), df)) -> new_ltEs4(xuu30000, xuu31000, de, df) 30.44/12.99 new_ltEs4(Left(xuu30000), Left(xuu31000), app(ty_[], bd), be) -> new_ltEs5(xuu30000, xuu31000, bd) 30.44/12.99 new_primCmpNat1(Succ(xuu30000), Zero) -> GT 30.44/12.99 new_esEs27(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) 30.44/12.99 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Integer) -> new_ltEs17(xuu30000, xuu31000) 30.44/12.99 new_compare14(xuu30000, xuu31000, False) -> GT 30.44/12.99 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Ordering) -> new_ltEs15(xuu30000, xuu31000) 30.44/12.99 new_ltEs19(xuu30002, xuu31002, ty_Double) -> new_ltEs14(xuu30002, xuu31002) 30.44/12.99 new_sr0(Integer(xuu300000), Integer(xuu310010)) -> Integer(new_primMulInt(xuu300000, xuu310010)) 30.44/12.99 new_ltEs9(xuu3000, xuu3100) -> new_fsEs(new_compare17(xuu3000, xuu3100)) 30.44/12.99 new_primCmpNat2(xuu3000, Succ(xuu3100)) -> new_primCmpNat1(xuu3000, xuu3100) 30.44/12.99 new_esEs28(xuu40002, xuu3002, ty_@0) -> new_esEs14(xuu40002, xuu3002) 30.44/12.99 new_ltEs15(LT, GT) -> True 30.44/12.99 new_ltEs20(xuu30001, xuu31001, app(app(ty_Either, che), chf)) -> new_ltEs4(xuu30001, xuu31001, che, chf) 30.44/12.99 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(ty_[], da)) -> new_ltEs5(xuu30000, xuu31000, da) 30.44/12.99 new_esEs29(xuu4000, xuu300, ty_Integer) -> new_esEs15(xuu4000, xuu300) 30.44/12.99 new_esEs20(xuu40001, xuu3001, app(ty_Ratio, bfg)) -> new_esEs13(xuu40001, xuu3001, bfg) 30.44/12.99 new_esEs30(xuu19, xuu14, ty_Integer) -> new_esEs15(xuu19, xuu14) 30.44/12.99 new_esEs20(xuu40001, xuu3001, ty_Int) -> new_esEs9(xuu40001, xuu3001) 30.44/12.99 new_esEs15(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) 30.44/12.99 new_esEs25(xuu30000, xuu31000, app(ty_Ratio, cge)) -> new_esEs13(xuu30000, xuu31000, cge) 30.44/12.99 new_esEs25(xuu30000, xuu31000, ty_Bool) -> new_esEs11(xuu30000, xuu31000) 30.44/12.99 new_compare31(xuu30000, xuu31000, app(ty_[], cbe)) -> new_compare(xuu30000, xuu31000, cbe) 30.44/12.99 new_esEs25(xuu30000, xuu31000, ty_Int) -> new_esEs9(xuu30000, xuu31000) 30.44/12.99 new_asAs(True, xuu141) -> xuu141 30.44/12.99 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.44/12.99 new_ltEs13(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), fb, fc) -> new_pePe(new_lt20(xuu30000, xuu31000, fb), new_asAs(new_esEs25(xuu30000, xuu31000, fb), new_ltEs20(xuu30001, xuu31001, fc))) 30.44/12.99 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Bool) -> new_ltEs11(xuu30000, xuu31000) 30.44/12.99 new_esEs18(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.44/12.99 new_esEs24(xuu30001, xuu31001, ty_@0) -> new_esEs14(xuu30001, xuu31001) 30.44/12.99 new_compare31(xuu30000, xuu31000, app(app(ty_@2, cce), ccf)) -> new_compare15(xuu30000, xuu31000, cce, ccf) 30.44/12.99 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Integer, fg) -> new_esEs15(xuu40000, xuu3000) 30.44/12.99 new_lt12(xuu30001, xuu31001, ty_Ordering) -> new_lt18(xuu30001, xuu31001) 30.44/12.99 new_compare18(xuu30000, xuu31000, bac, bad) -> new_compare25(xuu30000, xuu31000, new_esEs5(xuu30000, xuu31000, bac, bad), bac, bad) 30.44/12.99 new_lt13(xuu30000, xuu31000, app(app(ty_Either, bac), bad)) -> new_lt8(xuu30000, xuu31000, bac, bad) 30.44/12.99 new_esEs19(xuu40000, xuu3000, app(ty_Ratio, bee)) -> new_esEs13(xuu40000, xuu3000, bee) 30.44/12.99 new_ltEs20(xuu30001, xuu31001, ty_Char) -> new_ltEs9(xuu30001, xuu31001) 30.44/12.99 new_esEs24(xuu30001, xuu31001, ty_Integer) -> new_esEs15(xuu30001, xuu31001) 30.44/12.99 new_esEs19(xuu40000, xuu3000, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.44/12.99 new_esEs29(xuu4000, xuu300, app(ty_[], bag)) -> new_esEs16(xuu4000, xuu300, bag) 30.44/12.99 new_ltEs20(xuu30001, xuu31001, ty_Float) -> new_ltEs16(xuu30001, xuu31001) 30.44/12.99 new_lt13(xuu30000, xuu31000, ty_@0) -> new_lt4(xuu30000, xuu31000) 30.44/12.99 new_compare12(xuu30000, xuu31000) -> new_compare26(xuu30000, xuu31000, new_esEs11(xuu30000, xuu31000)) 30.44/12.99 new_esEs19(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.44/12.99 new_esEs18(xuu40000, xuu3000, app(app(ty_@2, bah), bba)) -> new_esEs7(xuu40000, xuu3000, bah, bba) 30.44/12.99 new_esEs24(xuu30001, xuu31001, app(app(ty_@2, caa), cab)) -> new_esEs7(xuu30001, xuu31001, caa, cab) 30.44/12.99 new_esEs30(xuu19, xuu14, app(app(ty_@2, bcb), bcc)) -> new_esEs7(xuu19, xuu14, bcb, bcc) 30.44/12.99 new_lt12(xuu30001, xuu31001, app(ty_[], bha)) -> new_lt14(xuu30001, xuu31001, bha) 30.44/12.99 new_esEs29(xuu4000, xuu300, app(app(ty_Either, gh), fg)) -> new_esEs5(xuu4000, xuu300, gh, fg) 30.44/12.99 new_ltEs18(xuu3000, xuu3100, app(app(ty_@2, fb), fc)) -> new_ltEs13(xuu3000, xuu3100, fb, fc) 30.44/12.99 new_lt20(xuu30000, xuu31000, ty_Char) -> new_lt7(xuu30000, xuu31000) 30.44/12.99 new_compare15(xuu30000, xuu31000, bgb, bgc) -> new_compare27(xuu30000, xuu31000, new_esEs7(xuu30000, xuu31000, bgb, bgc), bgb, bgc) 30.44/12.99 new_primCompAux00(xuu182, EQ) -> xuu182 30.44/12.99 new_sr(xuu40000, xuu3001) -> new_primMulInt(xuu40000, xuu3001) 30.44/12.99 new_lt12(xuu30001, xuu31001, app(ty_Maybe, bhh)) -> new_lt6(xuu30001, xuu31001, bhh) 30.44/12.99 new_esEs25(xuu30000, xuu31000, ty_Integer) -> new_esEs15(xuu30000, xuu31000) 30.44/12.99 new_primMulNat0(Zero, Zero) -> Zero 30.44/12.99 new_lt13(xuu30000, xuu31000, app(app(ty_@2, bgb), bgc)) -> new_lt16(xuu30000, xuu31000, bgb, bgc) 30.44/12.99 new_esEs30(xuu19, xuu14, app(ty_[], bdc)) -> new_esEs16(xuu19, xuu14, bdc) 30.44/12.99 new_esEs24(xuu30001, xuu31001, app(ty_[], bha)) -> new_esEs16(xuu30001, xuu31001, bha) 30.44/12.99 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Int, fg) -> new_esEs9(xuu40000, xuu3000) 30.44/12.99 new_esEs23(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) 30.44/12.99 new_compare111(xuu30000, xuu31000, False) -> GT 30.44/12.99 new_primCmpNat1(Zero, Zero) -> EQ 30.44/12.99 new_ltEs20(xuu30001, xuu31001, app(ty_Maybe, chh)) -> new_ltEs12(xuu30001, xuu31001, chh) 30.44/12.99 new_esEs30(xuu19, xuu14, ty_Int) -> new_esEs9(xuu19, xuu14) 30.44/12.99 new_esEs23(xuu30000, xuu31000, app(app(ty_@2, bgb), bgc)) -> new_esEs7(xuu30000, xuu31000, bgb, bgc) 30.44/12.99 new_compare28(xuu30000, xuu31000, True, bgd, bge, bgf) -> EQ 30.44/12.99 new_ltEs18(xuu3000, xuu3100, app(app(ty_Either, cg), be)) -> new_ltEs4(xuu3000, xuu3100, cg, be) 30.44/12.99 new_lt20(xuu30000, xuu31000, ty_Float) -> new_lt10(xuu30000, xuu31000) 30.44/12.99 new_esEs20(xuu40001, xuu3001, app(app(ty_Either, bfe), bff)) -> new_esEs5(xuu40001, xuu3001, bfe, bff) 30.44/12.99 new_ltEs11(True, False) -> False 30.44/12.99 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(app(ty_Either, hf), hg)) -> new_esEs5(xuu40000, xuu3000, hf, hg) 30.44/12.99 new_esEs19(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.44/12.99 new_ltEs15(EQ, EQ) -> True 30.44/12.99 new_esEs26(xuu40000, xuu3000, app(ty_Maybe, dbc)) -> new_esEs6(xuu40000, xuu3000, dbc) 30.44/12.99 new_fsEs(xuu151) -> new_not(new_esEs10(xuu151, GT)) 30.44/12.99 new_esEs30(xuu19, xuu14, app(ty_Ratio, bda)) -> new_esEs13(xuu19, xuu14, bda) 30.44/12.99 new_esEs26(xuu40000, xuu3000, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.44/12.99 new_esEs24(xuu30001, xuu31001, app(ty_Ratio, bhg)) -> new_esEs13(xuu30001, xuu31001, bhg) 30.44/12.99 new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.44/12.99 new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.44/12.99 new_ltEs18(xuu3000, xuu3100, app(ty_Ratio, eh)) -> new_ltEs10(xuu3000, xuu3100, eh) 30.44/12.99 new_lt12(xuu30001, xuu31001, ty_@0) -> new_lt4(xuu30001, xuu31001) 30.44/12.99 new_esEs6(Just(xuu40000), Just(xuu3000), app(app(ty_@2, cee), cef)) -> new_esEs7(xuu40000, xuu3000, cee, cef) 30.44/12.99 new_esEs18(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.44/12.99 new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False 30.44/12.99 new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False 30.44/12.99 new_esEs29(xuu4000, xuu300, app(ty_Ratio, bgg)) -> new_esEs13(xuu4000, xuu300, bgg) 30.44/12.99 new_esEs24(xuu30001, xuu31001, ty_Int) -> new_esEs9(xuu30001, xuu31001) 30.44/12.99 new_esEs25(xuu30000, xuu31000, app(ty_Maybe, cgf)) -> new_esEs6(xuu30000, xuu31000, cgf) 30.44/12.99 new_compare([], [], ed) -> EQ 30.44/12.99 new_ltEs15(LT, EQ) -> True 30.44/12.99 new_esEs20(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) 30.44/12.99 new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) 30.44/12.99 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.44/12.99 new_esEs20(xuu40001, xuu3001, app(ty_[], bga)) -> new_esEs16(xuu40001, xuu3001, bga) 30.44/12.99 new_esEs28(xuu40002, xuu3002, app(app(ty_@2, dcg), dch)) -> new_esEs7(xuu40002, xuu3002, dcg, dch) 30.44/12.99 new_ltEs4(Left(xuu30000), Left(xuu31000), app(app(ty_Either, ca), cb), be) -> new_ltEs4(xuu30000, xuu31000, ca, cb) 30.44/12.99 new_lt13(xuu30000, xuu31000, app(ty_[], bgh)) -> new_lt14(xuu30000, xuu31000, bgh) 30.44/12.99 new_esEs25(xuu30000, xuu31000, app(app(ty_Either, cgc), cgd)) -> new_esEs5(xuu30000, xuu31000, cgc, cgd) 30.44/12.99 new_esEs20(xuu40001, xuu3001, app(ty_Maybe, bfh)) -> new_esEs6(xuu40001, xuu3001, bfh) 30.44/12.99 new_ltEs19(xuu30002, xuu31002, app(ty_Maybe, cbb)) -> new_ltEs12(xuu30002, xuu31002, cbb) 30.44/12.99 new_esEs11(True, True) -> True 30.44/12.99 new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False 30.44/12.99 new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False 30.44/12.99 new_esEs19(xuu40000, xuu3000, app(ty_Maybe, bef)) -> new_esEs6(xuu40000, xuu3000, bef) 30.44/12.99 new_compare29(xuu30000, xuu31000, bgd, bge, bgf) -> new_compare28(xuu30000, xuu31000, new_esEs4(xuu30000, xuu31000, bgd, bge, bgf), bgd, bge, bgf) 30.44/12.99 new_compare31(xuu30000, xuu31000, ty_Double) -> new_compare5(xuu30000, xuu31000) 30.44/12.99 new_esEs25(xuu30000, xuu31000, app(ty_[], cfg)) -> new_esEs16(xuu30000, xuu31000, cfg) 30.44/12.99 new_esEs19(xuu40000, xuu3000, app(ty_[], beg)) -> new_esEs16(xuu40000, xuu3000, beg) 30.44/12.99 new_esEs29(xuu4000, xuu300, ty_Int) -> new_esEs9(xuu4000, xuu300) 30.44/12.99 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 30.44/12.99 new_ltEs15(GT, GT) -> True 30.44/12.99 new_esEs30(xuu19, xuu14, ty_Bool) -> new_esEs11(xuu19, xuu14) 30.44/12.99 new_esEs26(xuu40000, xuu3000, app(app(ty_Either, dah), dba)) -> new_esEs5(xuu40000, xuu3000, dah, dba) 30.44/12.99 new_esEs30(xuu19, xuu14, app(ty_Maybe, bdb)) -> new_esEs6(xuu19, xuu14, bdb) 30.44/12.99 new_esEs10(LT, GT) -> False 30.44/12.99 new_esEs10(GT, LT) -> False 30.44/12.99 new_esEs21(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.44/12.99 new_ltEs10(xuu3000, xuu3100, eh) -> new_fsEs(new_compare9(xuu3000, xuu3100, eh)) 30.44/12.99 new_esEs19(xuu40000, xuu3000, app(app(ty_@2, bdf), bdg)) -> new_esEs7(xuu40000, xuu3000, bdf, bdg) 30.44/12.99 new_ltEs7(xuu3000, xuu3100) -> new_fsEs(new_compare6(xuu3000, xuu3100)) 30.44/12.99 new_ltEs12(Just(xuu30000), Just(xuu31000), app(app(ty_@2, cec), ced)) -> new_ltEs13(xuu30000, xuu31000, cec, ced) 30.44/12.99 new_esEs27(xuu40001, xuu3001, app(app(app(ty_@3, dbg), dbh), dca)) -> new_esEs4(xuu40001, xuu3001, dbg, dbh, dca) 30.44/12.99 new_primPlusNat0(xuu104, xuu300100) -> new_primPlusNat1(xuu104, Succ(xuu300100)) 30.44/12.99 new_not(False) -> True 30.44/12.99 new_esEs28(xuu40002, xuu3002, ty_Int) -> new_esEs9(xuu40002, xuu3002) 30.44/12.99 new_compare31(xuu30000, xuu31000, ty_Char) -> new_compare17(xuu30000, xuu31000) 30.44/12.99 new_esEs18(xuu40000, xuu3000, app(app(ty_Either, bbe), bbf)) -> new_esEs5(xuu40000, xuu3000, bbe, bbf) 30.44/12.99 new_esEs28(xuu40002, xuu3002, app(ty_Ratio, ddf)) -> new_esEs13(xuu40002, xuu3002, ddf) 30.44/12.99 new_esEs29(xuu4000, xuu300, ty_Ordering) -> new_esEs10(xuu4000, xuu300) 30.44/12.99 new_lt20(xuu30000, xuu31000, ty_@0) -> new_lt4(xuu30000, xuu31000) 30.44/12.99 new_esEs25(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) 30.44/12.99 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.44/12.99 new_compare19(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.44/12.99 new_compare19(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.44/12.99 new_lt12(xuu30001, xuu31001, app(app(ty_Either, bhe), bhf)) -> new_lt8(xuu30001, xuu31001, bhe, bhf) 30.44/12.99 new_esEs25(xuu30000, xuu31000, ty_Double) -> new_esEs17(xuu30000, xuu31000) 30.44/12.99 new_esEs5(Left(xuu40000), Right(xuu3000), gh, fg) -> False 30.44/12.99 new_esEs5(Right(xuu40000), Left(xuu3000), gh, fg) -> False 30.44/12.99 new_primCmpInt(Pos(Succ(xuu3000)), Pos(xuu310)) -> new_primCmpNat2(xuu3000, xuu310) 30.44/12.99 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Int) -> new_ltEs7(xuu30000, xuu31000) 30.44/12.99 new_lt12(xuu30001, xuu31001, ty_Integer) -> new_lt19(xuu30001, xuu31001) 30.44/12.99 new_compare27(xuu30000, xuu31000, True, bgb, bgc) -> EQ 30.44/12.99 new_esEs29(xuu4000, xuu300, app(app(ty_@2, bdd), bde)) -> new_esEs7(xuu4000, xuu300, bdd, bde) 30.44/12.99 new_ltEs4(Left(xuu30000), Right(xuu31000), cg, be) -> True 30.44/12.99 new_esEs18(xuu40000, xuu3000, app(ty_Maybe, bbh)) -> new_esEs6(xuu40000, xuu3000, bbh) 30.44/12.99 new_esEs30(xuu19, xuu14, ty_Ordering) -> new_esEs10(xuu19, xuu14) 30.44/12.99 new_esEs27(xuu40001, xuu3001, ty_Ordering) -> new_esEs10(xuu40001, xuu3001) 30.44/12.99 new_ltEs18(xuu3000, xuu3100, app(ty_[], ed)) -> new_ltEs5(xuu3000, xuu3100, ed) 30.44/12.99 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(app(ty_@2, ea), eb)) -> new_ltEs13(xuu30000, xuu31000, ea, eb) 30.44/12.99 new_esEs30(xuu19, xuu14, app(app(ty_Either, bcg), bch)) -> new_esEs5(xuu19, xuu14, bcg, bch) 30.44/12.99 new_lt20(xuu30000, xuu31000, ty_Int) -> new_lt9(xuu30000, xuu31000) 30.44/12.99 new_lt5(xuu30000, xuu31000, bae) -> new_esEs10(new_compare9(xuu30000, xuu31000, bae), LT) 30.44/12.99 new_ltEs20(xuu30001, xuu31001, ty_Bool) -> new_ltEs11(xuu30001, xuu31001) 30.44/12.99 new_compare16(xuu30000, xuu31000, False, bgd, bge, bgf) -> GT 30.44/12.99 new_compare11(xuu30000, xuu31000, True, bac, bad) -> LT 30.44/12.99 new_ltEs19(xuu30002, xuu31002, ty_Int) -> new_ltEs7(xuu30002, xuu31002) 30.44/12.99 new_primCmpNat1(Zero, Succ(xuu31000)) -> LT 30.44/12.99 new_lt12(xuu30001, xuu31001, app(ty_Ratio, bhg)) -> new_lt5(xuu30001, xuu31001, bhg) 30.44/12.99 new_esEs29(xuu4000, xuu300, app(ty_Maybe, cdb)) -> new_esEs6(xuu4000, xuu300, cdb) 30.44/12.99 new_compare210(xuu30000, xuu31000, False) -> new_compare14(xuu30000, xuu31000, new_ltEs15(xuu30000, xuu31000)) 30.44/12.99 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 30.44/12.99 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 30.44/12.99 new_esEs25(xuu30000, xuu31000, app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs4(xuu30000, xuu31000, cfh, cga, cgb) 30.44/12.99 new_lt20(xuu30000, xuu31000, ty_Double) -> new_lt17(xuu30000, xuu31000) 30.44/12.99 new_lt18(xuu30000, xuu31000) -> new_esEs10(new_compare30(xuu30000, xuu31000), LT) 30.44/12.99 new_primPlusNat1(Zero, Zero) -> Zero 30.44/12.99 new_esEs18(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.44/12.99 new_compare31(xuu30000, xuu31000, ty_Ordering) -> new_compare30(xuu30000, xuu31000) 30.44/12.99 new_lt20(xuu30000, xuu31000, app(app(ty_@2, cgg), cgh)) -> new_lt16(xuu30000, xuu31000, cgg, cgh) 30.44/12.99 new_esEs20(xuu40001, xuu3001, ty_Bool) -> new_esEs11(xuu40001, xuu3001) 30.44/12.99 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Double, be) -> new_ltEs14(xuu30000, xuu31000) 30.44/12.99 new_ltEs19(xuu30002, xuu31002, ty_Bool) -> new_ltEs11(xuu30002, xuu31002) 30.44/12.99 new_ltEs20(xuu30001, xuu31001, ty_Int) -> new_ltEs7(xuu30001, xuu31001) 30.44/12.99 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Float, fg) -> new_esEs8(xuu40000, xuu3000) 30.44/12.99 new_ltEs12(Just(xuu30000), Just(xuu31000), app(ty_Ratio, cea)) -> new_ltEs10(xuu30000, xuu31000, cea) 30.44/12.99 new_esEs27(xuu40001, xuu3001, ty_Double) -> new_esEs17(xuu40001, xuu3001) 30.44/12.99 new_esEs24(xuu30001, xuu31001, ty_Float) -> new_esEs8(xuu30001, xuu31001) 30.44/12.99 new_ltEs15(LT, LT) -> True 30.44/12.99 new_ltEs12(Nothing, Just(xuu31000), fa) -> True 30.44/12.99 new_esEs10(EQ, GT) -> False 30.44/12.99 new_esEs10(GT, EQ) -> False 30.44/12.99 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Ordering, be) -> new_ltEs15(xuu30000, xuu31000) 30.44/12.99 new_esEs18(xuu40000, xuu3000, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.44/12.99 new_ltEs19(xuu30002, xuu31002, app(app(ty_Either, cag), cah)) -> new_ltEs4(xuu30002, xuu31002, cag, cah) 30.44/12.99 new_esEs28(xuu40002, xuu3002, app(ty_Maybe, ddg)) -> new_esEs6(xuu40002, xuu3002, ddg) 30.44/12.99 new_esEs8(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs9(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) 30.44/12.99 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 30.44/12.99 new_primMulNat0(Succ(xuu4000000), Succ(xuu300100)) -> new_primPlusNat0(new_primMulNat0(xuu4000000, Succ(xuu300100)), xuu300100) 30.44/12.99 new_lt20(xuu30000, xuu31000, ty_Ordering) -> new_lt18(xuu30000, xuu31000) 30.44/12.99 new_compare31(xuu30000, xuu31000, ty_@0) -> new_compare8(xuu30000, xuu31000) 30.44/12.99 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(ty_Maybe, dh)) -> new_ltEs12(xuu30000, xuu31000, dh) 30.44/12.99 new_compare16(xuu30000, xuu31000, True, bgd, bge, bgf) -> LT 30.44/12.99 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.44/12.99 new_esEs13(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), bgg) -> new_asAs(new_esEs21(xuu40000, xuu3000, bgg), new_esEs22(xuu40001, xuu3001, bgg)) 30.44/12.99 new_esEs27(xuu40001, xuu3001, app(ty_Maybe, dce)) -> new_esEs6(xuu40001, xuu3001, dce) 30.44/12.99 new_esEs6(Just(xuu40000), Just(xuu3000), app(ty_[], cff)) -> new_esEs16(xuu40000, xuu3000, cff) 30.44/12.99 new_esEs5(Left(xuu40000), Left(xuu3000), ty_@0, fg) -> new_esEs14(xuu40000, xuu3000) 30.44/12.99 new_ltEs12(Nothing, Nothing, fa) -> True 30.44/12.99 new_esEs16(:(xuu40000, xuu40001), [], bag) -> False 30.44/12.99 new_esEs16([], :(xuu3000, xuu3001), bag) -> False 30.44/12.99 new_ltEs19(xuu30002, xuu31002, ty_Float) -> new_ltEs16(xuu30002, xuu31002) 30.44/12.99 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_@0, be) -> new_ltEs8(xuu30000, xuu31000) 30.44/12.99 new_compare31(xuu30000, xuu31000, app(app(ty_Either, cca), ccb)) -> new_compare18(xuu30000, xuu31000, cca, ccb) 30.44/12.99 new_esEs23(xuu30000, xuu31000, app(ty_[], bgh)) -> new_esEs16(xuu30000, xuu31000, bgh) 30.44/12.99 new_ltEs12(Just(xuu30000), Nothing, fa) -> False 30.44/12.99 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 30.44/12.99 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 30.44/12.99 new_compare8(@0, @0) -> EQ 30.44/12.99 new_lt20(xuu30000, xuu31000, app(ty_Maybe, cgf)) -> new_lt6(xuu30000, xuu31000, cgf) 30.44/12.99 new_compare110(xuu30000, xuu31000, False, bgb, bgc) -> GT 30.44/12.99 new_esEs4(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), ccg, cch, cda) -> new_asAs(new_esEs26(xuu40000, xuu3000, ccg), new_asAs(new_esEs27(xuu40001, xuu3001, cch), new_esEs28(xuu40002, xuu3002, cda))) 30.44/12.99 new_esEs23(xuu30000, xuu31000, ty_Integer) -> new_esEs15(xuu30000, xuu31000) 30.44/12.99 new_esEs28(xuu40002, xuu3002, app(app(ty_Either, ddd), dde)) -> new_esEs5(xuu40002, xuu3002, ddd, dde) 30.44/13.00 new_primEqNat0(Zero, Zero) -> True 30.44/13.00 new_ltEs18(xuu3000, xuu3100, ty_Float) -> new_ltEs16(xuu3000, xuu3100) 30.44/13.00 new_esEs19(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.44/13.00 new_esEs18(xuu40000, xuu3000, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.44/13.00 new_ltEs20(xuu30001, xuu31001, app(ty_[], cha)) -> new_ltEs5(xuu30001, xuu31001, cha) 30.44/13.00 new_esEs28(xuu40002, xuu3002, ty_Ordering) -> new_esEs10(xuu40002, xuu3002) 30.44/13.00 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Float) -> new_ltEs16(xuu30000, xuu31000) 30.44/13.00 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Integer) -> new_ltEs17(xuu30000, xuu31000) 30.44/13.00 new_esEs6(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.44/13.00 new_esEs29(xuu4000, xuu300, ty_Bool) -> new_esEs11(xuu4000, xuu300) 30.44/13.00 new_asAs(False, xuu141) -> False 30.44/13.00 new_esEs23(xuu30000, xuu31000, ty_Float) -> new_esEs8(xuu30000, xuu31000) 30.44/13.00 new_compare24(Nothing, Nothing, False, ec) -> LT 30.44/13.00 new_esEs20(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) 30.44/13.00 new_esEs26(xuu40000, xuu3000, app(ty_Ratio, dbb)) -> new_esEs13(xuu40000, xuu3000, dbb) 30.44/13.00 new_lt10(xuu30000, xuu31000) -> new_esEs10(new_compare19(xuu30000, xuu31000), LT) 30.44/13.00 new_esEs26(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.44/13.00 new_esEs23(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) 30.44/13.00 new_ltEs4(Right(xuu30000), Left(xuu31000), cg, be) -> False 30.44/13.00 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.44/13.00 new_primCmpInt(Neg(Succ(xuu3000)), Neg(xuu310)) -> new_primCmpNat0(xuu310, xuu3000) 30.44/13.00 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.44/13.00 new_ltEs18(xuu3000, xuu3100, ty_Int) -> new_ltEs7(xuu3000, xuu3100) 30.44/13.00 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Char, be) -> new_ltEs9(xuu30000, xuu31000) 30.44/13.00 new_esEs20(xuu40001, xuu3001, app(app(ty_@2, beh), bfa)) -> new_esEs7(xuu40001, xuu3001, beh, bfa) 30.44/13.00 30.44/13.00 The set Q consists of the following terms: 30.44/13.00 30.44/13.00 new_primPlusNat1(Succ(x0), Succ(x1)) 30.44/13.00 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.00 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 30.44/13.00 new_esEs27(x0, x1, ty_Ordering) 30.44/13.00 new_esEs19(x0, x1, ty_Bool) 30.44/13.00 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 30.44/13.00 new_ltEs4(Left(x0), Left(x1), ty_Char, x2) 30.44/13.00 new_esEs24(x0, x1, app(ty_Maybe, x2)) 30.44/13.00 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.44/13.00 new_ltEs18(x0, x1, ty_Bool) 30.44/13.00 new_primCmpNat2(x0, Succ(x1)) 30.44/13.00 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_ltEs12(Nothing, Nothing, x0) 30.44/13.00 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_lt20(x0, x1, ty_Int) 30.44/13.00 new_lt20(x0, x1, app(ty_[], x2)) 30.44/13.00 new_sr0(Integer(x0), Integer(x1)) 30.44/13.00 new_ltEs17(x0, x1) 30.44/13.00 new_esEs23(x0, x1, ty_Char) 30.44/13.00 new_compare31(x0, x1, ty_Ordering) 30.44/13.00 new_compare110(x0, x1, False, x2, x3) 30.44/13.00 new_ltEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.44/13.00 new_lt20(x0, x1, ty_Ordering) 30.44/13.00 new_esEs28(x0, x1, app(ty_[], x2)) 30.44/13.00 new_primCmpNat1(Succ(x0), Zero) 30.44/13.00 new_primPlusNat1(Zero, Zero) 30.44/13.00 new_esEs27(x0, x1, ty_Double) 30.44/13.00 new_esEs19(x0, x1, app(ty_Maybe, x2)) 30.44/13.00 new_esEs28(x0, x1, ty_Char) 30.44/13.00 new_compare31(x0, x1, ty_Int) 30.44/13.00 new_esEs25(x0, x1, ty_Char) 30.44/13.00 new_primCmpNat1(Zero, Zero) 30.44/13.00 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 30.44/13.00 new_ltEs18(x0, x1, ty_@0) 30.44/13.00 new_compare26(x0, x1, True) 30.44/13.00 new_esEs10(EQ, EQ) 30.44/13.00 new_lt14(x0, x1, x2) 30.44/13.00 new_compare31(x0, x1, ty_Char) 30.44/13.00 new_lt20(x0, x1, ty_Double) 30.44/13.00 new_primEqInt(Pos(Zero), Pos(Zero)) 30.44/13.00 new_lt13(x0, x1, app(ty_Maybe, x2)) 30.44/13.00 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 30.44/13.00 new_ltEs4(Left(x0), Left(x1), ty_Int, x2) 30.44/13.00 new_ltEs4(Right(x0), Right(x1), x2, ty_Integer) 30.44/13.00 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.44/13.00 new_primCompAux00(x0, GT) 30.44/13.00 new_ltEs12(Just(x0), Nothing, x1) 30.44/13.00 new_esEs25(x0, x1, ty_Int) 30.44/13.00 new_lt13(x0, x1, ty_Integer) 30.44/13.00 new_esEs24(x0, x1, ty_Bool) 30.44/13.00 new_compare31(x0, x1, ty_Double) 30.44/13.00 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 30.44/13.00 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 30.44/13.00 new_ltEs12(Just(x0), Just(x1), ty_Ordering) 30.44/13.00 new_esEs19(x0, x1, ty_@0) 30.44/13.00 new_ltEs7(x0, x1) 30.44/13.00 new_esEs6(Nothing, Just(x0), x1) 30.44/13.00 new_esEs30(x0, x1, ty_Integer) 30.44/13.00 new_esEs25(x0, x1, ty_Ordering) 30.44/13.00 new_ltEs12(Just(x0), Just(x1), app(ty_[], x2)) 30.44/13.00 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.00 new_ltEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.44/13.00 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 30.44/13.00 new_compare([], :(x0, x1), x2) 30.44/13.00 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 30.44/13.00 new_lt18(x0, x1) 30.44/13.00 new_primEqInt(Neg(Zero), Neg(Zero)) 30.44/13.00 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_compare24(Nothing, Nothing, False, x0) 30.44/13.00 new_primCmpNat0(Succ(x0), x1) 30.44/13.00 new_ltEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.44/13.00 new_lt20(x0, x1, ty_Char) 30.44/13.00 new_ltEs12(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.44/13.00 new_esEs23(x0, x1, ty_Ordering) 30.44/13.00 new_compare210(x0, x1, True) 30.44/13.00 new_compare13(x0, x1, x2) 30.44/13.00 new_ltEs19(x0, x1, ty_Float) 30.44/13.00 new_esEs30(x0, x1, ty_@0) 30.44/13.00 new_lt13(x0, x1, app(ty_[], x2)) 30.44/13.00 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 30.44/13.00 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 30.44/13.00 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.00 new_ltEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 30.44/13.00 new_esEs25(x0, x1, ty_@0) 30.44/13.00 new_esEs25(x0, x1, ty_Double) 30.44/13.00 new_ltEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.44/13.00 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.44/13.00 new_esEs23(x0, x1, app(ty_[], x2)) 30.44/13.00 new_compare27(x0, x1, True, x2, x3) 30.44/13.00 new_compare(:(x0, x1), [], x2) 30.44/13.00 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 30.44/13.00 new_esEs20(x0, x1, app(ty_Ratio, x2)) 30.44/13.00 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.44/13.00 new_ltEs4(Right(x0), Right(x1), x2, ty_Bool) 30.44/13.00 new_compare28(x0, x1, False, x2, x3, x4) 30.44/13.00 new_ltEs4(Left(x0), Left(x1), ty_Bool, x2) 30.44/13.00 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.00 new_ltEs11(True, True) 30.44/13.00 new_esEs27(x0, x1, ty_Char) 30.44/13.00 new_esEs19(x0, x1, app(ty_Ratio, x2)) 30.44/13.00 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 30.44/13.00 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.00 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.00 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 30.44/13.00 new_compare14(x0, x1, True) 30.44/13.00 new_esEs18(x0, x1, app(ty_Ratio, x2)) 30.44/13.00 new_esEs24(x0, x1, app(ty_Ratio, x2)) 30.44/13.00 new_esEs24(x0, x1, ty_Char) 30.44/13.00 new_ltEs12(Just(x0), Just(x1), ty_Int) 30.44/13.00 new_ltEs4(Left(x0), Left(x1), ty_Ordering, x2) 30.44/13.00 new_compare27(x0, x1, False, x2, x3) 30.44/13.00 new_compare30(x0, x1) 30.44/13.00 new_ltEs18(x0, x1, ty_Integer) 30.44/13.00 new_primEqInt(Pos(Zero), Neg(Zero)) 30.44/13.00 new_primEqInt(Neg(Zero), Pos(Zero)) 30.44/13.00 new_ltEs9(x0, x1) 30.44/13.00 new_esEs27(x0, x1, ty_Int) 30.44/13.00 new_compare7(Integer(x0), Integer(x1)) 30.44/13.00 new_esEs27(x0, x1, app(ty_[], x2)) 30.44/13.00 new_esEs23(x0, x1, ty_Integer) 30.44/13.00 new_esEs26(x0, x1, ty_Ordering) 30.44/13.00 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_ltEs12(Just(x0), Just(x1), ty_Char) 30.44/13.00 new_compare8(@0, @0) 30.44/13.00 new_ltEs12(Just(x0), Just(x1), ty_Double) 30.44/13.00 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 30.44/13.00 new_esEs27(x0, x1, ty_@0) 30.44/13.00 new_primMulInt(Neg(x0), Neg(x1)) 30.44/13.00 new_compare5(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 30.44/13.00 new_compare5(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 30.44/13.00 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.44/13.00 new_ltEs4(Left(x0), Left(x1), ty_Integer, x2) 30.44/13.00 new_esEs24(x0, x1, ty_Int) 30.44/13.00 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 30.44/13.00 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 30.44/13.00 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 30.44/13.00 new_ltEs13(@2(x0, x1), @2(x2, x3), x4, x5) 30.44/13.00 new_esEs25(x0, x1, ty_Bool) 30.44/13.00 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 30.44/13.00 new_compare16(x0, x1, True, x2, x3, x4) 30.44/13.00 new_ltEs15(EQ, EQ) 30.44/13.00 new_esEs28(x0, x1, ty_Ordering) 30.44/13.00 new_lt12(x0, x1, ty_Integer) 30.44/13.00 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.44/13.00 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.00 new_esEs30(x0, x1, ty_Bool) 30.44/13.00 new_esEs24(x0, x1, ty_@0) 30.44/13.00 new_compare29(x0, x1, x2, x3, x4) 30.44/13.00 new_lt12(x0, x1, app(ty_Maybe, x2)) 30.44/13.00 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.00 new_esEs22(x0, x1, ty_Integer) 30.44/13.00 new_esEs18(x0, x1, ty_Ordering) 30.44/13.00 new_esEs30(x0, x1, ty_Char) 30.44/13.00 new_esEs20(x0, x1, ty_Integer) 30.44/13.00 new_ltEs18(x0, x1, ty_Float) 30.44/13.00 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.44/13.00 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.00 new_esEs27(x0, x1, ty_Bool) 30.44/13.00 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.00 new_compare([], [], x0) 30.44/13.00 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 30.44/13.00 new_esEs28(x0, x1, ty_Integer) 30.44/13.00 new_lt20(x0, x1, ty_Integer) 30.44/13.00 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_esEs19(x0, x1, ty_Double) 30.44/13.00 new_esEs6(Just(x0), Just(x1), ty_Float) 30.44/13.00 new_esEs16(:(x0, x1), [], x2) 30.44/13.00 new_esEs24(x0, x1, ty_Float) 30.44/13.00 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.00 new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_esEs18(x0, x1, ty_Double) 30.44/13.00 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.44/13.00 new_esEs30(x0, x1, ty_Int) 30.44/13.00 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 30.44/13.00 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 30.44/13.00 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 30.44/13.00 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.44/13.00 new_lt5(x0, x1, x2) 30.44/13.00 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 30.44/13.00 new_esEs24(x0, x1, ty_Double) 30.44/13.00 new_compare17(Char(x0), Char(x1)) 30.44/13.00 new_ltEs20(x0, x1, ty_Double) 30.44/13.00 new_ltEs18(x0, x1, app(ty_[], x2)) 30.44/13.00 new_primMulNat0(Zero, Succ(x0)) 30.44/13.00 new_ltEs15(GT, LT) 30.44/13.00 new_ltEs15(LT, GT) 30.44/13.00 new_esEs9(x0, x1) 30.44/13.00 new_ltEs12(Just(x0), Just(x1), ty_@0) 30.44/13.00 new_ltEs4(Right(x0), Right(x1), x2, ty_Char) 30.44/13.00 new_ltEs19(x0, x1, ty_Integer) 30.44/13.00 new_esEs28(x0, x1, ty_Bool) 30.44/13.00 new_ltEs18(x0, x1, ty_Int) 30.44/13.00 new_compare5(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 30.44/13.00 new_ltEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.44/13.00 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.00 new_ltEs5(x0, x1, x2) 30.44/13.00 new_esEs6(Nothing, Nothing, x0) 30.44/13.00 new_esEs6(Just(x0), Nothing, x1) 30.44/13.00 new_lt11(x0, x1, x2, x3, x4) 30.44/13.00 new_esEs6(Just(x0), Just(x1), ty_Int) 30.44/13.00 new_ltEs4(Right(x0), Right(x1), x2, ty_Int) 30.44/13.00 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 30.44/13.00 new_ltEs18(x0, x1, ty_Char) 30.44/13.00 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 30.44/13.00 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.00 new_esEs25(x0, x1, ty_Integer) 30.44/13.00 new_primCmpNat1(Zero, Succ(x0)) 30.44/13.00 new_lt12(x0, x1, ty_Bool) 30.44/13.00 new_compare10(x0, x1, True, x2) 30.44/13.00 new_primCompAux00(x0, EQ) 30.44/13.00 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 30.44/13.00 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 30.44/13.00 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 30.44/13.00 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.00 new_primCmpNat1(Succ(x0), Succ(x1)) 30.44/13.00 new_primEqNat0(Zero, Succ(x0)) 30.44/13.00 new_ltEs20(x0, x1, ty_Ordering) 30.44/13.00 new_esEs30(x0, x1, ty_Float) 30.44/13.00 new_esEs17(Double(x0, x1), Double(x2, x3)) 30.44/13.00 new_esEs29(x0, x1, ty_Integer) 30.44/13.00 new_esEs6(Just(x0), Just(x1), ty_Ordering) 30.44/13.00 new_pePe(True, x0) 30.44/13.00 new_compare28(x0, x1, True, x2, x3, x4) 30.44/13.00 new_primCmpInt(Neg(Zero), Neg(Zero)) 30.44/13.00 new_lt12(x0, x1, app(ty_Ratio, x2)) 30.44/13.00 new_ltEs4(Left(x0), Left(x1), ty_Double, x2) 30.44/13.00 new_compare19(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 30.44/13.00 new_esEs30(x0, x1, app(ty_Maybe, x2)) 30.44/13.00 new_esEs18(x0, x1, app(ty_[], x2)) 30.44/13.00 new_ltEs19(x0, x1, ty_Bool) 30.44/13.00 new_esEs12(Char(x0), Char(x1)) 30.44/13.00 new_compare24(x0, x1, True, x2) 30.44/13.00 new_compare24(Nothing, Just(x0), False, x1) 30.44/13.00 new_primCmpInt(Pos(Zero), Neg(Zero)) 30.44/13.00 new_primCmpInt(Neg(Zero), Pos(Zero)) 30.44/13.00 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) 30.44/13.00 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 30.44/13.00 new_esEs29(x0, x1, ty_Ordering) 30.44/13.00 new_esEs23(x0, x1, ty_Bool) 30.44/13.00 new_lt12(x0, x1, ty_Char) 30.44/13.00 new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) 30.44/13.00 new_compare15(x0, x1, x2, x3) 30.44/13.00 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_esEs29(x0, x1, app(ty_Maybe, x2)) 30.44/13.00 new_lt20(x0, x1, app(ty_Maybe, x2)) 30.44/13.00 new_esEs11(False, False) 30.44/13.00 new_esEs10(LT, GT) 30.44/13.00 new_esEs10(GT, LT) 30.44/13.00 new_ltEs4(Right(x0), Right(x1), x2, ty_Float) 30.44/13.00 new_esEs23(x0, x1, ty_Float) 30.44/13.00 new_esEs20(x0, x1, ty_Float) 30.44/13.00 new_esEs26(x0, x1, app(ty_[], x2)) 30.44/13.00 new_compare11(x0, x1, False, x2, x3) 30.44/13.00 new_esEs6(Just(x0), Just(x1), ty_Char) 30.44/13.00 new_ltEs4(Left(x0), Left(x1), ty_@0, x2) 30.44/13.00 new_lt20(x0, x1, ty_@0) 30.44/13.00 new_esEs20(x0, x1, app(ty_[], x2)) 30.44/13.00 new_lt13(x0, x1, ty_@0) 30.44/13.00 new_esEs20(x0, x1, ty_Bool) 30.44/13.00 new_lt12(x0, x1, ty_Int) 30.44/13.00 new_esEs23(x0, x1, app(ty_Maybe, x2)) 30.44/13.00 new_compare31(x0, x1, app(ty_[], x2)) 30.44/13.00 new_ltEs12(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_primEqNat0(Succ(x0), Zero) 30.44/13.00 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.00 new_esEs27(x0, x1, ty_Integer) 30.44/13.00 new_lt4(x0, x1) 30.44/13.00 new_compare111(x0, x1, True) 30.44/13.00 new_lt10(x0, x1) 30.44/13.00 new_esEs18(x0, x1, ty_@0) 30.44/13.00 new_primMulNat0(Succ(x0), Succ(x1)) 30.44/13.00 new_esEs26(x0, x1, ty_Double) 30.44/13.00 new_esEs25(x0, x1, app(ty_Maybe, x2)) 30.44/13.00 new_esEs28(x0, x1, ty_Float) 30.44/13.00 new_compare31(x0, x1, ty_@0) 30.44/13.00 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 30.44/13.00 new_esEs20(x0, x1, ty_Int) 30.44/13.00 new_esEs6(Just(x0), Just(x1), ty_Bool) 30.44/13.00 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.44/13.00 new_esEs26(x0, x1, ty_@0) 30.44/13.00 new_esEs28(x0, x1, ty_Int) 30.44/13.00 new_ltEs11(False, True) 30.44/13.00 new_ltEs11(True, False) 30.44/13.00 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 30.44/13.00 new_esEs10(EQ, GT) 30.44/13.00 new_esEs10(GT, EQ) 30.44/13.00 new_esEs16([], :(x0, x1), x2) 30.44/13.00 new_lt13(x0, x1, ty_Double) 30.44/13.00 new_esEs23(x0, x1, ty_Int) 30.44/13.00 new_esEs20(x0, x1, ty_Char) 30.44/13.00 new_lt12(x0, x1, ty_Float) 30.44/13.00 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_ltEs12(Nothing, Just(x0), x1) 30.44/13.00 new_esEs26(x0, x1, app(ty_Ratio, x2)) 30.44/13.00 new_ltEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.44/13.00 new_lt13(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.00 new_esEs19(x0, x1, app(ty_[], x2)) 30.44/13.00 new_esEs27(x0, x1, ty_Float) 30.44/13.00 new_compare25(x0, x1, False, x2, x3) 30.44/13.00 new_compare12(x0, x1) 30.44/13.00 new_lt12(x0, x1, ty_Double) 30.44/13.00 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.00 new_lt20(x0, x1, app(ty_Ratio, x2)) 30.44/13.00 new_esEs29(x0, x1, ty_Char) 30.44/13.00 new_esEs16(:(x0, x1), :(x2, x3), x4) 30.44/13.00 new_primMulNat0(Zero, Zero) 30.44/13.00 new_compare31(x0, x1, app(ty_Maybe, x2)) 30.44/13.00 new_lt12(x0, x1, ty_Ordering) 30.44/13.00 new_esEs25(x0, x1, app(ty_Ratio, x2)) 30.44/13.00 new_primCompAux00(x0, LT) 30.44/13.00 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.44/13.00 new_ltEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.44/13.00 new_ltEs19(x0, x1, ty_Char) 30.44/13.00 new_esEs27(x0, x1, app(ty_Ratio, x2)) 30.44/13.00 new_sr(x0, x1) 30.44/13.00 new_primCompAux0(x0, x1, x2, x3) 30.44/13.00 new_asAs(False, x0) 30.44/13.00 new_ltEs19(x0, x1, ty_Int) 30.44/13.00 new_lt8(x0, x1, x2, x3) 30.44/13.00 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.00 new_ltEs14(x0, x1) 30.44/13.00 new_esEs28(x0, x1, app(ty_Maybe, x2)) 30.44/13.00 new_ltEs20(x0, x1, ty_Integer) 30.44/13.00 new_esEs8(Float(x0, x1), Float(x2, x3)) 30.44/13.00 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_esEs6(Just(x0), Just(x1), ty_Integer) 30.44/13.00 new_esEs29(x0, x1, ty_@0) 30.44/13.00 new_ltEs19(x0, x1, ty_Ordering) 30.44/13.00 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.44/13.00 new_ltEs4(Right(x0), Right(x1), x2, ty_Ordering) 30.44/13.00 new_ltEs19(x0, x1, ty_@0) 30.44/13.00 new_esEs22(x0, x1, ty_Int) 30.44/13.00 new_ltEs20(x0, x1, ty_@0) 30.44/13.00 new_ltEs12(Just(x0), Just(x1), ty_Integer) 30.44/13.00 new_esEs18(x0, x1, ty_Bool) 30.44/13.00 new_esEs21(x0, x1, ty_Int) 30.44/13.00 new_ltEs12(Just(x0), Just(x1), ty_Float) 30.44/13.00 new_esEs6(Just(x0), Just(x1), ty_@0) 30.44/13.00 new_esEs10(LT, LT) 30.44/13.00 new_esEs28(x0, x1, app(ty_Ratio, x2)) 30.44/13.00 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.44/13.00 new_esEs30(x0, x1, ty_Double) 30.44/13.00 new_not(True) 30.44/13.00 new_esEs29(x0, x1, ty_Bool) 30.44/13.00 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_compare210(x0, x1, False) 30.44/13.00 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 30.44/13.00 new_lt15(x0, x1) 30.44/13.00 new_pePe(False, x0) 30.44/13.00 new_esEs29(x0, x1, ty_Double) 30.44/13.00 new_esEs11(True, True) 30.44/13.00 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_ltEs10(x0, x1, x2) 30.44/13.00 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 30.44/13.00 new_compare31(x0, x1, app(ty_Ratio, x2)) 30.44/13.00 new_ltEs4(Right(x0), Right(x1), x2, ty_Double) 30.44/13.00 new_primCmpNat0(Zero, x0) 30.44/13.00 new_esEs15(Integer(x0), Integer(x1)) 30.44/13.00 new_lt12(x0, x1, app(ty_[], x2)) 30.44/13.00 new_esEs27(x0, x1, app(ty_Maybe, x2)) 30.44/13.00 new_ltEs15(GT, EQ) 30.44/13.00 new_ltEs15(EQ, GT) 30.44/13.00 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.00 new_primCmpNat2(x0, Zero) 30.44/13.00 new_compare19(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 30.44/13.00 new_esEs11(False, True) 30.44/13.00 new_esEs11(True, False) 30.44/13.00 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.44/13.00 new_esEs29(x0, x1, ty_Int) 30.44/13.00 new_esEs26(x0, x1, ty_Integer) 30.44/13.00 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.00 new_ltEs20(x0, x1, ty_Char) 30.44/13.00 new_lt13(x0, x1, ty_Ordering) 30.44/13.00 new_lt17(x0, x1) 30.44/13.00 new_lt13(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.00 new_ltEs12(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.44/13.00 new_esEs23(x0, x1, app(ty_Ratio, x2)) 30.44/13.00 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 30.44/13.00 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.00 new_ltEs12(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.44/13.00 new_ltEs12(Just(x0), Just(x1), ty_Bool) 30.44/13.00 new_primEqNat0(Succ(x0), Succ(x1)) 30.44/13.00 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.00 new_esEs18(x0, x1, ty_Integer) 30.44/13.00 new_esEs20(x0, x1, ty_Ordering) 30.44/13.00 new_ltEs20(x0, x1, ty_Bool) 30.44/13.00 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.00 new_primPlusNat1(Succ(x0), Zero) 30.44/13.00 new_ltEs4(Left(x0), Right(x1), x2, x3) 30.44/13.00 new_ltEs4(Right(x0), Left(x1), x2, x3) 30.44/13.00 new_esEs29(x0, x1, app(ty_[], x2)) 30.44/13.00 new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_primMulNat0(Succ(x0), Zero) 30.44/13.00 new_compare18(x0, x1, x2, x3) 30.44/13.00 new_primCmpInt(Pos(Zero), Pos(Zero)) 30.44/13.00 new_compare31(x0, x1, ty_Integer) 30.44/13.00 new_lt12(x0, x1, ty_@0) 30.44/13.00 new_esEs19(x0, x1, ty_Ordering) 30.44/13.00 new_esEs10(GT, GT) 30.44/13.00 new_esEs20(x0, x1, app(ty_Maybe, x2)) 30.44/13.00 new_lt16(x0, x1, x2, x3) 30.44/13.00 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 30.44/13.00 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 30.44/13.00 new_compare25(x0, x1, True, x2, x3) 30.44/13.00 new_primMulInt(Pos(x0), Pos(x1)) 30.44/13.00 new_compare16(x0, x1, False, x2, x3, x4) 30.44/13.00 new_esEs14(@0, @0) 30.44/13.00 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 30.44/13.00 new_primPlusNat1(Zero, Succ(x0)) 30.44/13.00 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.44/13.00 new_esEs30(x0, x1, app(ty_Ratio, x2)) 30.44/13.00 new_primPlusNat0(x0, x1) 30.44/13.00 new_ltEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.44/13.00 new_esEs10(LT, EQ) 30.44/13.00 new_esEs10(EQ, LT) 30.44/13.00 new_compare24(Just(x0), Nothing, False, x1) 30.44/13.00 new_compare26(x0, x1, False) 30.44/13.00 new_esEs18(x0, x1, app(ty_Maybe, x2)) 30.44/13.00 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 30.44/13.00 new_esEs18(x0, x1, ty_Int) 30.44/13.00 new_primMulInt(Pos(x0), Neg(x1)) 30.44/13.00 new_primMulInt(Neg(x0), Pos(x1)) 30.44/13.00 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 30.44/13.00 new_esEs19(x0, x1, ty_Float) 30.44/13.00 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.00 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.44/13.00 new_esEs5(Left(x0), Right(x1), x2, x3) 30.44/13.00 new_esEs5(Right(x0), Left(x1), x2, x3) 30.44/13.00 new_esEs29(x0, x1, app(ty_Ratio, x2)) 30.44/13.00 new_lt13(x0, x1, app(ty_Ratio, x2)) 30.44/13.00 new_esEs6(Just(x0), Just(x1), ty_Double) 30.44/13.00 new_compare110(x0, x1, True, x2, x3) 30.44/13.00 new_ltEs18(x0, x1, ty_Ordering) 30.44/13.00 new_compare6(x0, x1) 30.44/13.00 new_ltEs20(x0, x1, app(ty_[], x2)) 30.44/13.00 new_esEs26(x0, x1, ty_Bool) 30.44/13.00 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 30.44/13.00 new_lt20(x0, x1, ty_Bool) 30.44/13.00 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 30.44/13.00 new_ltEs15(EQ, LT) 30.44/13.00 new_ltEs15(LT, EQ) 30.44/13.00 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.00 new_ltEs20(x0, x1, ty_Float) 30.44/13.00 new_compare11(x0, x1, True, x2, x3) 30.44/13.00 new_esEs30(x0, x1, app(ty_[], x2)) 30.44/13.00 new_esEs30(x0, x1, ty_Ordering) 30.44/13.00 new_esEs19(x0, x1, ty_Char) 30.44/13.00 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_ltEs15(GT, GT) 30.44/13.00 new_compare5(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 30.44/13.00 new_ltEs20(x0, x1, ty_Int) 30.44/13.00 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.00 new_compare31(x0, x1, ty_Bool) 30.44/13.00 new_esEs16([], [], x0) 30.44/13.00 new_esEs29(x0, x1, ty_Float) 30.44/13.00 new_ltEs4(Right(x0), Right(x1), x2, ty_@0) 30.44/13.00 new_fsEs(x0) 30.44/13.00 new_lt9(x0, x1) 30.44/13.00 new_ltEs11(False, False) 30.44/13.00 new_esEs19(x0, x1, ty_Int) 30.44/13.00 new_ltEs18(x0, x1, ty_Double) 30.44/13.00 new_compare111(x0, x1, False) 30.44/13.00 new_lt13(x0, x1, ty_Bool) 30.44/13.00 new_esEs26(x0, x1, app(ty_Maybe, x2)) 30.44/13.00 new_esEs26(x0, x1, ty_Int) 30.44/13.00 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.00 new_primEqNat0(Zero, Zero) 30.44/13.00 new_compare24(Just(x0), Just(x1), False, x2) 30.44/13.00 new_ltEs4(Left(x0), Left(x1), ty_Float, x2) 30.44/13.00 new_compare19(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 30.44/13.00 new_compare19(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 30.44/13.00 new_lt13(x0, x1, ty_Float) 30.44/13.00 new_esEs25(x0, x1, ty_Float) 30.44/13.00 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.44/13.00 new_esEs20(x0, x1, ty_@0) 30.44/13.00 new_ltEs19(x0, x1, app(ty_[], x2)) 30.44/13.00 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.00 new_not(False) 30.44/13.00 new_esEs24(x0, x1, ty_Integer) 30.44/13.00 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 30.44/13.00 new_lt7(x0, x1) 30.44/13.00 new_esEs23(x0, x1, ty_Double) 30.44/13.00 new_compare31(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.00 new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.44/13.00 new_esEs18(x0, x1, ty_Char) 30.44/13.00 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 30.44/13.00 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.00 new_ltEs19(x0, x1, ty_Double) 30.44/13.00 new_esEs13(:%(x0, x1), :%(x2, x3), x4) 30.44/13.00 new_compare14(x0, x1, False) 30.44/13.00 new_ltEs8(x0, x1) 30.44/13.00 new_esEs28(x0, x1, ty_Double) 30.44/13.00 new_esEs19(x0, x1, ty_Integer) 30.44/13.00 new_esEs21(x0, x1, ty_Integer) 30.44/13.00 new_ltEs15(LT, LT) 30.44/13.00 new_ltEs12(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.44/13.00 new_esEs26(x0, x1, ty_Float) 30.44/13.00 new_esEs25(x0, x1, app(ty_[], x2)) 30.44/13.00 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.00 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.00 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.44/13.00 new_lt13(x0, x1, ty_Int) 30.44/13.00 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.00 new_compare(:(x0, x1), :(x2, x3), x4) 30.44/13.00 new_lt6(x0, x1, x2) 30.44/13.00 new_esEs26(x0, x1, ty_Char) 30.44/13.00 new_lt20(x0, x1, ty_Float) 30.44/13.00 new_lt19(x0, x1) 30.44/13.00 new_asAs(True, x0) 30.44/13.00 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.00 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.44/13.00 new_lt13(x0, x1, ty_Char) 30.44/13.00 new_esEs23(x0, x1, ty_@0) 30.44/13.00 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_ltEs16(x0, x1) 30.44/13.00 new_compare31(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.00 new_esEs20(x0, x1, ty_Double) 30.44/13.00 new_esEs18(x0, x1, ty_Float) 30.44/13.00 new_esEs28(x0, x1, ty_@0) 30.44/13.00 new_compare10(x0, x1, False, x2) 30.44/13.00 new_esEs24(x0, x1, app(ty_[], x2)) 30.44/13.00 new_compare31(x0, x1, ty_Float) 30.44/13.00 new_esEs24(x0, x1, ty_Ordering) 30.44/13.00 30.44/13.00 We have to consider all minimal (P,Q,R)-chains. 30.44/13.00 ---------------------------------------- 30.44/13.00 30.44/13.00 (37) QDPSizeChangeProof (EQUIVALENT) 30.44/13.00 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.44/13.00 30.44/13.00 From the DPs we obtained the following set of size-change graphs: 30.44/13.00 *new_addToFM_C21(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, bb, bc) -> new_addToFM_C(xuu17, Just(xuu19), xuu20, bb, bc) 30.44/13.00 The graph contains the following edges 4 >= 1, 7 >= 3, 9 >= 4, 10 >= 5 30.44/13.00 30.44/13.00 30.44/13.00 *new_addToFM_C21(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, False, bb, bc) -> new_addToFM_C12(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, new_esEs10(new_compare24(Just(xuu19), Just(xuu14), new_esEs30(xuu19, xuu14, bb), bb), GT), bb, bc) 30.44/13.00 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 9 >= 9, 10 >= 10 30.44/13.00 30.44/13.00 30.44/13.00 *new_addToFM_C12(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, bb, bc) -> new_addToFM_C(xuu18, Just(xuu19), xuu20, bb, bc) 30.44/13.00 The graph contains the following edges 5 >= 1, 7 >= 3, 9 >= 4, 10 >= 5 30.44/13.00 30.44/13.00 30.44/13.00 *new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba) -> new_addToFM_C(xuu34, Just(xuu4000), xuu401, h, ba) 30.44/13.00 The graph contains the following edges 4 >= 1, 6 >= 3, 8 >= 4, 9 >= 5 30.44/13.00 30.44/13.00 30.44/13.00 *new_addToFM_C(Branch(Just(xuu300), xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C21(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs10(new_compare24(Just(xuu4000), Just(xuu300), new_esEs29(xuu4000, xuu300, h), h), LT), h, ba) 30.44/13.00 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 7, 4 >= 9, 5 >= 10 30.44/13.00 30.44/13.00 30.44/13.00 *new_addToFM_C(Branch(Nothing, xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba) 30.44/13.00 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 2 > 5, 3 >= 6, 4 >= 8, 5 >= 9 30.44/13.00 30.44/13.00 30.44/13.00 *new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba) -> new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba) 30.44/13.00 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9 30.44/13.00 30.44/13.00 30.44/13.00 ---------------------------------------- 30.44/13.00 30.44/13.00 (38) 30.44/13.00 YES 30.44/13.00 30.44/13.00 ---------------------------------------- 30.44/13.00 30.44/13.00 (39) 30.44/13.00 Obligation: 30.44/13.00 Q DP problem: 30.44/13.00 The TRS P consists of the following rules: 30.44/13.00 30.44/13.00 new_addToFM_C(Branch(Nothing, xuu31, xuu32, xuu33, xuu34), Nothing, xuu401, h, ba) -> new_addToFM_C1(xuu31, xuu32, xuu33, xuu34, xuu401, new_esEs10(new_compare24(Nothing, Nothing, True, h), GT), h, ba) 30.44/13.00 new_addToFM_C1(xuu31, xuu32, xuu33, xuu34, xuu401, True, h, ba) -> new_addToFM_C(xuu34, Nothing, xuu401, h, ba) 30.44/13.00 new_addToFM_C(Branch(Just(xuu300), xuu31, xuu32, xuu33, xuu34), Nothing, xuu401, h, ba) -> new_addToFM_C2(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, new_esEs10(new_compare24(Nothing, Just(xuu300), False, h), LT), h, ba) 30.44/13.00 new_addToFM_C2(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, True, h, ba) -> new_addToFM_C(xuu33, Nothing, xuu401, h, ba) 30.44/13.00 new_addToFM_C2(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, False, h, ba) -> new_addToFM_C10(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, new_esEs10(new_compare24(Nothing, Just(xuu300), False, h), GT), h, ba) 30.44/13.00 new_addToFM_C10(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, True, h, ba) -> new_addToFM_C(xuu34, Nothing, xuu401, h, ba) 30.44/13.00 30.44/13.00 The TRS R consists of the following rules: 30.44/13.00 30.44/13.00 new_ltEs18(xuu3000, xuu3100, ty_Integer) -> new_ltEs17(xuu3000, xuu3100) 30.44/13.00 new_compare28(xuu30000, xuu31000, False, bgd, bge, bgf) -> new_compare16(xuu30000, xuu31000, new_ltEs6(xuu30000, xuu31000, bgd, bge, bgf), bgd, bge, bgf) 30.44/13.00 new_lt7(xuu30000, xuu31000) -> new_esEs10(new_compare17(xuu30000, xuu31000), LT) 30.44/13.00 new_esEs23(xuu30000, xuu31000, ty_Bool) -> new_esEs11(xuu30000, xuu31000) 30.44/13.00 new_esEs27(xuu40001, xuu3001, app(ty_Ratio, dcd)) -> new_esEs13(xuu40001, xuu3001, dcd) 30.44/13.00 new_primCmpInt(Neg(Succ(xuu3000)), Pos(xuu310)) -> LT 30.44/13.00 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 30.44/13.00 new_esEs27(xuu40001, xuu3001, ty_Int) -> new_esEs9(xuu40001, xuu3001) 30.44/13.00 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(ty_Ratio, hh)) -> new_esEs13(xuu40000, xuu3000, hh) 30.44/13.00 new_esEs23(xuu30000, xuu31000, app(ty_Maybe, baf)) -> new_esEs6(xuu30000, xuu31000, baf) 30.44/13.00 new_pePe(True, xuu167) -> True 30.44/13.00 new_ltEs19(xuu30002, xuu31002, app(app(app(ty_@3, cad), cae), caf)) -> new_ltEs6(xuu30002, xuu31002, cad, cae, caf) 30.44/13.00 new_ltEs20(xuu30001, xuu31001, ty_Ordering) -> new_ltEs15(xuu30001, xuu31001) 30.44/13.00 new_primCmpInt(Pos(Zero), Pos(Succ(xuu3100))) -> new_primCmpNat0(Zero, xuu3100) 30.44/13.00 new_ltEs6(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), ee, ef, eg) -> new_pePe(new_lt13(xuu30000, xuu31000, ee), new_asAs(new_esEs23(xuu30000, xuu31000, ee), new_pePe(new_lt12(xuu30001, xuu31001, ef), new_asAs(new_esEs24(xuu30001, xuu31001, ef), new_ltEs19(xuu30002, xuu31002, eg))))) 30.44/13.00 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(ty_[], bab)) -> new_esEs16(xuu40000, xuu3000, bab) 30.44/13.00 new_esEs5(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, fh), ga), gb), fg) -> new_esEs4(xuu40000, xuu3000, fh, ga, gb) 30.44/13.00 new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_Ratio, ge), fg) -> new_esEs13(xuu40000, xuu3000, ge) 30.44/13.00 new_esEs29(xuu4000, xuu300, ty_Char) -> new_esEs12(xuu4000, xuu300) 30.44/13.00 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Double) -> new_ltEs14(xuu30000, xuu31000) 30.44/13.00 new_lt20(xuu30000, xuu31000, ty_Bool) -> new_lt15(xuu30000, xuu31000) 30.44/13.00 new_compare(:(xuu30000, xuu30001), [], ed) -> GT 30.44/13.00 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 30.44/13.00 new_esEs27(xuu40001, xuu3001, app(ty_[], dcf)) -> new_esEs16(xuu40001, xuu3001, dcf) 30.44/13.00 new_esEs27(xuu40001, xuu3001, app(app(ty_Either, dcb), dcc)) -> new_esEs5(xuu40001, xuu3001, dcb, dcc) 30.44/13.00 new_primCmpInt(Pos(Zero), Neg(Succ(xuu3100))) -> GT 30.44/13.00 new_compare(:(xuu30000, xuu30001), :(xuu31000, xuu31001), ed) -> new_primCompAux0(xuu30000, xuu31000, new_compare(xuu30001, xuu31001, ed), ed) 30.44/13.00 new_esEs9(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) 30.44/13.00 new_esEs22(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) 30.44/13.00 new_esEs18(xuu40000, xuu3000, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs4(xuu40000, xuu3000, bbb, bbc, bbd) 30.44/13.00 new_ltEs19(xuu30002, xuu31002, app(ty_[], cac)) -> new_ltEs5(xuu30002, xuu31002, cac) 30.44/13.00 new_lt12(xuu30001, xuu31001, ty_Char) -> new_lt7(xuu30001, xuu31001) 30.44/13.00 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Char) -> new_ltEs9(xuu30000, xuu31000) 30.44/13.00 new_esEs26(xuu40000, xuu3000, app(app(ty_@2, dac), dad)) -> new_esEs7(xuu40000, xuu3000, dac, dad) 30.44/13.00 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Int) -> new_ltEs7(xuu30000, xuu31000) 30.44/13.00 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.44/13.00 new_lt13(xuu30000, xuu31000, app(ty_Ratio, bae)) -> new_lt5(xuu30000, xuu31000, bae) 30.44/13.00 new_esEs6(Just(xuu40000), Just(xuu3000), app(app(ty_Either, cfb), cfc)) -> new_esEs5(xuu40000, xuu3000, cfb, cfc) 30.44/13.00 new_ltEs15(EQ, LT) -> False 30.44/13.00 new_compare17(Char(xuu30000), Char(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) 30.44/13.00 new_ltEs8(xuu3000, xuu3100) -> new_fsEs(new_compare8(xuu3000, xuu3100)) 30.44/13.00 new_esEs28(xuu40002, xuu3002, app(app(app(ty_@3, dda), ddb), ddc)) -> new_esEs4(xuu40002, xuu3002, dda, ddb, ddc) 30.44/13.00 new_primCmpNat1(Succ(xuu30000), Succ(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) 30.44/13.00 new_esEs23(xuu30000, xuu31000, app(app(ty_Either, bac), bad)) -> new_esEs5(xuu30000, xuu31000, bac, bad) 30.44/13.00 new_ltEs19(xuu30002, xuu31002, ty_Ordering) -> new_ltEs15(xuu30002, xuu31002) 30.44/13.00 new_compare26(xuu30000, xuu31000, True) -> EQ 30.44/13.00 new_compare24(Nothing, Just(xuu3100), False, ec) -> LT 30.44/13.00 new_esEs18(xuu40000, xuu3000, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.44/13.00 new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False 30.44/13.00 new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False 30.44/13.00 new_ltEs4(Left(xuu30000), Left(xuu31000), app(app(ty_@2, ce), cf), be) -> new_ltEs13(xuu30000, xuu31000, ce, cf) 30.44/13.00 new_ltEs15(GT, LT) -> False 30.44/13.00 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.44/13.00 new_esEs24(xuu30001, xuu31001, ty_Double) -> new_esEs17(xuu30001, xuu31001) 30.44/13.00 new_compare25(xuu30000, xuu31000, False, bac, bad) -> new_compare11(xuu30000, xuu31000, new_ltEs4(xuu30000, xuu31000, bac, bad), bac, bad) 30.44/13.00 new_ltEs12(Just(xuu30000), Just(xuu31000), app(app(ty_Either, cdg), cdh)) -> new_ltEs4(xuu30000, xuu31000, cdg, cdh) 30.44/13.00 new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_Maybe, gf), fg) -> new_esEs6(xuu40000, xuu3000, gf) 30.44/13.00 new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.44/13.00 new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) 30.44/13.00 new_esEs30(xuu19, xuu14, ty_Char) -> new_esEs12(xuu19, xuu14) 30.44/13.00 new_esEs27(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) 30.44/13.00 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Char, fg) -> new_esEs12(xuu40000, xuu3000) 30.44/13.00 new_esEs10(GT, GT) -> True 30.44/13.00 new_ltEs4(Left(xuu30000), Left(xuu31000), app(ty_Maybe, cd), be) -> new_ltEs12(xuu30000, xuu31000, cd) 30.44/13.00 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.44/13.00 new_not(True) -> False 30.44/13.00 new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_[], gg), fg) -> new_esEs16(xuu40000, xuu3000, gg) 30.44/13.00 new_lt13(xuu30000, xuu31000, app(app(app(ty_@3, bgd), bge), bgf)) -> new_lt11(xuu30000, xuu31000, bgd, bge, bgf) 30.44/13.00 new_esEs28(xuu40002, xuu3002, ty_Bool) -> new_esEs11(xuu40002, xuu3002) 30.44/13.00 new_ltEs5(xuu3000, xuu3100, ed) -> new_fsEs(new_compare(xuu3000, xuu3100, ed)) 30.44/13.00 new_primCompAux00(xuu182, LT) -> LT 30.44/13.00 new_lt12(xuu30001, xuu31001, ty_Double) -> new_lt17(xuu30001, xuu31001) 30.44/13.00 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Float) -> new_ltEs16(xuu30000, xuu31000) 30.44/13.00 new_ltEs20(xuu30001, xuu31001, ty_Integer) -> new_ltEs17(xuu30001, xuu31001) 30.44/13.00 new_esEs25(xuu30000, xuu31000, ty_Ordering) -> new_esEs10(xuu30000, xuu31000) 30.44/13.00 new_esEs23(xuu30000, xuu31000, app(ty_Ratio, bae)) -> new_esEs13(xuu30000, xuu31000, bae) 30.44/13.00 new_esEs27(xuu40001, xuu3001, ty_Bool) -> new_esEs11(xuu40001, xuu3001) 30.44/13.00 new_esEs26(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.44/13.00 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.44/13.00 new_lt12(xuu30001, xuu31001, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_lt11(xuu30001, xuu31001, bhb, bhc, bhd) 30.44/13.00 new_esEs30(xuu19, xuu14, ty_Double) -> new_esEs17(xuu19, xuu14) 30.44/13.00 new_lt13(xuu30000, xuu31000, app(ty_Maybe, baf)) -> new_lt6(xuu30000, xuu31000, baf) 30.44/13.00 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.44/13.00 new_esEs19(xuu40000, xuu3000, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.44/13.00 new_esEs25(xuu30000, xuu31000, ty_Float) -> new_esEs8(xuu30000, xuu31000) 30.44/13.00 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Double, fg) -> new_esEs17(xuu40000, xuu3000) 30.44/13.00 new_lt19(xuu30000, xuu31000) -> new_esEs10(new_compare7(xuu30000, xuu31000), LT) 30.44/13.00 new_compare31(xuu30000, xuu31000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_compare29(xuu30000, xuu31000, cbf, cbg, cbh) 30.44/13.00 new_ltEs20(xuu30001, xuu31001, app(app(app(ty_@3, chb), chc), chd)) -> new_ltEs6(xuu30001, xuu31001, chb, chc, chd) 30.44/13.00 new_esEs5(Left(xuu40000), Left(xuu3000), app(app(ty_@2, fd), ff), fg) -> new_esEs7(xuu40000, xuu3000, fd, ff) 30.44/13.00 new_primEqNat0(Succ(xuu400000), Zero) -> False 30.44/13.00 new_primEqNat0(Zero, Succ(xuu30000)) -> False 30.44/13.00 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.44/13.00 new_esEs19(xuu40000, xuu3000, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.44/13.00 new_esEs14(@0, @0) -> True 30.44/13.00 new_lt12(xuu30001, xuu31001, app(app(ty_@2, caa), cab)) -> new_lt16(xuu30001, xuu31001, caa, cab) 30.44/13.00 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Bool, be) -> new_ltEs11(xuu30000, xuu31000) 30.44/13.00 new_esEs26(xuu40000, xuu3000, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.44/13.00 new_lt11(xuu30000, xuu31000, bgd, bge, bgf) -> new_esEs10(new_compare29(xuu30000, xuu31000, bgd, bge, bgf), LT) 30.44/13.00 new_esEs23(xuu30000, xuu31000, ty_Int) -> new_esEs9(xuu30000, xuu31000) 30.44/13.00 new_ltEs15(GT, EQ) -> False 30.44/13.00 new_lt20(xuu30000, xuu31000, app(ty_[], cfg)) -> new_lt14(xuu30000, xuu31000, cfg) 30.44/13.00 new_esEs26(xuu40000, xuu3000, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.44/13.00 new_lt20(xuu30000, xuu31000, ty_Integer) -> new_lt19(xuu30000, xuu31000) 30.44/13.00 new_primCompAux00(xuu182, GT) -> GT 30.44/13.00 new_primCmpInt(Neg(Zero), Neg(Succ(xuu3100))) -> new_primCmpNat2(xuu3100, Zero) 30.44/13.00 new_esEs10(EQ, EQ) -> True 30.44/13.00 new_esEs29(xuu4000, xuu300, ty_Double) -> new_esEs17(xuu4000, xuu300) 30.44/13.00 new_esEs6(Just(xuu40000), Just(xuu3000), app(ty_Ratio, cfd)) -> new_esEs13(xuu40000, xuu3000, cfd) 30.44/13.00 new_lt16(xuu30000, xuu31000, bgb, bgc) -> new_esEs10(new_compare15(xuu30000, xuu31000, bgb, bgc), LT) 30.44/13.00 new_esEs17(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs9(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) 30.44/13.00 new_esEs24(xuu30001, xuu31001, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_esEs4(xuu30001, xuu31001, bhb, bhc, bhd) 30.44/13.00 new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.44/13.00 new_esEs23(xuu30000, xuu31000, app(app(app(ty_@3, bgd), bge), bgf)) -> new_esEs4(xuu30000, xuu31000, bgd, bge, bgf) 30.44/13.00 new_esEs30(xuu19, xuu14, app(app(app(ty_@3, bcd), bce), bcf)) -> new_esEs4(xuu19, xuu14, bcd, bce, bcf) 30.44/13.00 new_compare14(xuu30000, xuu31000, True) -> LT 30.44/13.00 new_primCmpInt(Pos(Succ(xuu3000)), Neg(xuu310)) -> GT 30.44/13.00 new_lt13(xuu30000, xuu31000, ty_Integer) -> new_lt19(xuu30000, xuu31000) 30.44/13.00 new_ltEs18(xuu3000, xuu3100, ty_Bool) -> new_ltEs11(xuu3000, xuu3100) 30.44/13.00 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_@0) -> new_ltEs8(xuu30000, xuu31000) 30.44/13.00 new_esEs28(xuu40002, xuu3002, ty_Double) -> new_esEs17(xuu40002, xuu3002) 30.44/13.00 new_lt13(xuu30000, xuu31000, ty_Char) -> new_lt7(xuu30000, xuu31000) 30.44/13.00 new_compare110(xuu30000, xuu31000, True, bgb, bgc) -> LT 30.44/13.00 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(ty_Ratio, dg)) -> new_ltEs10(xuu30000, xuu31000, dg) 30.44/13.00 new_esEs23(xuu30000, xuu31000, ty_Double) -> new_esEs17(xuu30000, xuu31000) 30.44/13.00 new_lt20(xuu30000, xuu31000, app(app(ty_Either, cgc), cgd)) -> new_lt8(xuu30000, xuu31000, cgc, cgd) 30.44/13.00 new_lt13(xuu30000, xuu31000, ty_Double) -> new_lt17(xuu30000, xuu31000) 30.44/13.00 new_primPlusNat1(Succ(xuu25200), Succ(xuu9400)) -> Succ(Succ(new_primPlusNat1(xuu25200, xuu9400))) 30.44/13.00 new_primCompAux0(xuu30000, xuu31000, xuu168, ed) -> new_primCompAux00(xuu168, new_compare31(xuu30000, xuu31000, ed)) 30.44/13.00 new_esEs26(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.44/13.00 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Integer, be) -> new_ltEs17(xuu30000, xuu31000) 30.44/13.00 new_esEs10(LT, EQ) -> False 30.44/13.00 new_esEs10(EQ, LT) -> False 30.44/13.00 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.44/13.00 new_esEs20(xuu40001, xuu3001, ty_Ordering) -> new_esEs10(xuu40001, xuu3001) 30.44/13.00 new_esEs29(xuu4000, xuu300, app(app(app(ty_@3, ccg), cch), cda)) -> new_esEs4(xuu4000, xuu300, ccg, cch, cda) 30.44/13.00 new_compare13(xuu30000, xuu31000, baf) -> new_compare24(xuu30000, xuu31000, new_esEs6(xuu30000, xuu31000, baf), baf) 30.44/13.00 new_primCmpNat0(Succ(xuu3100), xuu3000) -> new_primCmpNat1(xuu3100, xuu3000) 30.44/13.00 new_compare210(xuu30000, xuu31000, True) -> EQ 30.44/13.00 new_esEs20(xuu40001, xuu3001, ty_Float) -> new_esEs8(xuu40001, xuu3001) 30.44/13.00 new_esEs28(xuu40002, xuu3002, ty_Char) -> new_esEs12(xuu40002, xuu3002) 30.44/13.00 new_lt9(xuu300, xuu310) -> new_esEs10(new_compare6(xuu300, xuu310), LT) 30.44/13.00 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Bool) -> new_ltEs11(xuu30000, xuu31000) 30.44/13.00 new_esEs28(xuu40002, xuu3002, app(ty_[], ddh)) -> new_esEs16(xuu40002, xuu3002, ddh) 30.44/13.00 new_esEs27(xuu40001, xuu3001, app(app(ty_@2, dbe), dbf)) -> new_esEs7(xuu40001, xuu3001, dbe, dbf) 30.44/13.00 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Char) -> new_ltEs9(xuu30000, xuu31000) 30.44/13.00 new_ltEs18(xuu3000, xuu3100, app(ty_Maybe, fa)) -> new_ltEs12(xuu3000, xuu3100, fa) 30.44/13.00 new_esEs19(xuu40000, xuu3000, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs4(xuu40000, xuu3000, bdh, bea, beb) 30.44/13.00 new_pePe(False, xuu167) -> xuu167 30.44/13.00 new_esEs27(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) 30.44/13.00 new_ltEs4(Left(xuu30000), Left(xuu31000), app(ty_Ratio, cc), be) -> new_ltEs10(xuu30000, xuu31000, cc) 30.44/13.00 new_ltEs18(xuu3000, xuu3100, app(app(app(ty_@3, ee), ef), eg)) -> new_ltEs6(xuu3000, xuu3100, ee, ef, eg) 30.44/13.00 new_esEs11(False, True) -> False 30.44/13.00 new_esEs11(True, False) -> False 30.44/13.00 new_compare25(xuu30000, xuu31000, True, bac, bad) -> EQ 30.44/13.00 new_ltEs4(Left(xuu30000), Left(xuu31000), app(app(app(ty_@3, bf), bg), bh), be) -> new_ltEs6(xuu30000, xuu31000, bf, bg, bh) 30.44/13.00 new_lt12(xuu30001, xuu31001, ty_Int) -> new_lt9(xuu30001, xuu31001) 30.44/13.00 new_compare26(xuu30000, xuu31000, False) -> new_compare111(xuu30000, xuu31000, new_ltEs11(xuu30000, xuu31000)) 30.44/13.00 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Double) -> new_ltEs14(xuu30000, xuu31000) 30.44/13.00 new_ltEs19(xuu30002, xuu31002, ty_Integer) -> new_ltEs17(xuu30002, xuu31002) 30.44/13.00 new_compare31(xuu30000, xuu31000, ty_Float) -> new_compare19(xuu30000, xuu31000) 30.44/13.00 new_lt6(xuu30000, xuu31000, baf) -> new_esEs10(new_compare13(xuu30000, xuu31000, baf), LT) 30.44/13.00 new_compare7(Integer(xuu30000), Integer(xuu31000)) -> new_primCmpInt(xuu30000, xuu31000) 30.44/13.00 new_compare10(xuu134, xuu135, False, dea) -> GT 30.44/13.00 new_compare11(xuu30000, xuu31000, False, bac, bad) -> GT 30.44/13.00 new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False 30.44/13.00 new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False 30.44/13.00 new_compare24(xuu300, xuu310, True, ec) -> EQ 30.44/13.00 new_esEs19(xuu40000, xuu3000, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.44/13.00 new_esEs19(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.44/13.00 new_compare24(Just(xuu3000), Just(xuu3100), False, ec) -> new_compare10(xuu3000, xuu3100, new_ltEs18(xuu3000, xuu3100, ec), ec) 30.44/13.00 new_esEs18(xuu40000, xuu3000, app(ty_Ratio, bbg)) -> new_esEs13(xuu40000, xuu3000, bbg) 30.44/13.00 new_compare31(xuu30000, xuu31000, ty_Int) -> new_compare6(xuu30000, xuu31000) 30.44/13.00 new_ltEs20(xuu30001, xuu31001, app(ty_Ratio, chg)) -> new_ltEs10(xuu30001, xuu31001, chg) 30.44/13.00 new_esEs6(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, ceg), ceh), cfa)) -> new_esEs4(xuu40000, xuu3000, ceg, ceh, cfa) 30.44/13.00 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.44/13.00 new_esEs26(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.44/13.00 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(app(ty_@2, ha), hb)) -> new_esEs7(xuu40000, xuu3000, ha, hb) 30.44/13.00 new_ltEs18(xuu3000, xuu3100, ty_Double) -> new_ltEs14(xuu3000, xuu3100) 30.44/13.00 new_esEs26(xuu40000, xuu3000, app(ty_[], dbd)) -> new_esEs16(xuu40000, xuu3000, dbd) 30.44/13.00 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Ordering, fg) -> new_esEs10(xuu40000, xuu3000) 30.44/13.00 new_esEs24(xuu30001, xuu31001, app(app(ty_Either, bhe), bhf)) -> new_esEs5(xuu30001, xuu31001, bhe, bhf) 30.44/13.00 new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) 30.44/13.00 new_primCmpInt(Neg(Zero), Pos(Succ(xuu3100))) -> LT 30.44/13.00 new_compare9(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Integer) -> new_compare7(new_sr0(xuu30000, xuu31001), new_sr0(xuu31000, xuu30001)) 30.44/13.00 new_compare19(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.44/13.00 new_primMulInt(Pos(xuu400000), Pos(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) 30.44/13.00 new_esEs29(xuu4000, xuu300, ty_Float) -> new_esEs8(xuu4000, xuu300) 30.44/13.00 new_esEs18(xuu40000, xuu3000, app(ty_[], bca)) -> new_esEs16(xuu40000, xuu3000, bca) 30.44/13.00 new_ltEs19(xuu30002, xuu31002, app(ty_Ratio, cba)) -> new_ltEs10(xuu30002, xuu31002, cba) 30.44/13.00 new_esEs24(xuu30001, xuu31001, ty_Ordering) -> new_esEs10(xuu30001, xuu31001) 30.44/13.00 new_ltEs14(xuu3000, xuu3100) -> new_fsEs(new_compare5(xuu3000, xuu3100)) 30.44/13.00 new_compare10(xuu134, xuu135, True, dea) -> LT 30.44/13.00 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(app(app(ty_@3, hc), hd), he)) -> new_esEs4(xuu40000, xuu3000, hc, hd, he) 30.44/13.00 new_esEs24(xuu30001, xuu31001, app(ty_Maybe, bhh)) -> new_esEs6(xuu30001, xuu31001, bhh) 30.44/13.00 new_primMulNat0(Succ(xuu4000000), Zero) -> Zero 30.44/13.00 new_primMulNat0(Zero, Succ(xuu300100)) -> Zero 30.44/13.00 new_ltEs11(False, False) -> True 30.44/13.00 new_compare31(xuu30000, xuu31000, ty_Bool) -> new_compare12(xuu30000, xuu31000) 30.44/13.00 new_esEs7(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bdd, bde) -> new_asAs(new_esEs19(xuu40000, xuu3000, bdd), new_esEs20(xuu40001, xuu3001, bde)) 30.44/13.00 new_esEs24(xuu30001, xuu31001, ty_Char) -> new_esEs12(xuu30001, xuu31001) 30.44/13.00 new_lt13(xuu30000, xuu31000, ty_Bool) -> new_lt15(xuu30000, xuu31000) 30.44/13.00 new_esEs30(xuu19, xuu14, ty_Float) -> new_esEs8(xuu19, xuu14) 30.44/13.00 new_compare9(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Int) -> new_compare6(new_sr(xuu30000, xuu31001), new_sr(xuu31000, xuu30001)) 30.44/13.00 new_esEs18(xuu40000, xuu3000, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.44/13.00 new_compare27(xuu30000, xuu31000, False, bgb, bgc) -> new_compare110(xuu30000, xuu31000, new_ltEs13(xuu30000, xuu31000, bgb, bgc), bgb, bgc) 30.44/13.00 new_ltEs17(xuu3000, xuu3100) -> new_fsEs(new_compare7(xuu3000, xuu3100)) 30.44/13.00 new_ltEs18(xuu3000, xuu3100, ty_@0) -> new_ltEs8(xuu3000, xuu3100) 30.44/13.00 new_lt20(xuu30000, xuu31000, app(app(app(ty_@3, cfh), cga), cgb)) -> new_lt11(xuu30000, xuu31000, cfh, cga, cgb) 30.44/13.00 new_compare24(Just(xuu3000), Nothing, False, ec) -> GT 30.44/13.00 new_esEs5(Left(xuu40000), Left(xuu3000), app(app(ty_Either, gc), gd), fg) -> new_esEs5(xuu40000, xuu3000, gc, gd) 30.44/13.00 new_compare19(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.44/13.00 new_primCmpNat0(Zero, xuu3000) -> LT 30.44/13.00 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(ty_Maybe, baa)) -> new_esEs6(xuu40000, xuu3000, baa) 30.44/13.00 new_esEs18(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.44/13.00 new_esEs22(xuu40001, xuu3001, ty_Int) -> new_esEs9(xuu40001, xuu3001) 30.44/13.00 new_lt8(xuu30000, xuu31000, bac, bad) -> new_esEs10(new_compare18(xuu30000, xuu31000, bac, bad), LT) 30.44/13.00 new_lt15(xuu30000, xuu31000) -> new_esEs10(new_compare12(xuu30000, xuu31000), LT) 30.44/13.00 new_compare111(xuu30000, xuu31000, True) -> LT 30.44/13.00 new_esEs27(xuu40001, xuu3001, ty_Float) -> new_esEs8(xuu40001, xuu3001) 30.44/13.00 new_lt14(xuu30000, xuu31000, bgh) -> new_esEs10(new_compare(xuu30000, xuu31000, bgh), LT) 30.44/13.00 new_compare31(xuu30000, xuu31000, app(ty_Ratio, ccc)) -> new_compare9(xuu30000, xuu31000, ccc) 30.44/13.00 new_lt13(xuu30000, xuu31000, ty_Float) -> new_lt10(xuu30000, xuu31000) 30.44/13.00 new_esEs20(xuu40001, xuu3001, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_esEs4(xuu40001, xuu3001, bfb, bfc, bfd) 30.44/13.00 new_ltEs11(True, True) -> True 30.44/13.00 new_ltEs16(xuu3000, xuu3100) -> new_fsEs(new_compare19(xuu3000, xuu3100)) 30.44/13.00 new_primPlusNat1(Succ(xuu25200), Zero) -> Succ(xuu25200) 30.44/13.00 new_primPlusNat1(Zero, Succ(xuu9400)) -> Succ(xuu9400) 30.44/13.00 new_esEs30(xuu19, xuu14, ty_@0) -> new_esEs14(xuu19, xuu14) 30.44/13.00 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Ordering) -> new_ltEs15(xuu30000, xuu31000) 30.44/13.00 new_lt13(xuu30000, xuu31000, ty_Ordering) -> new_lt18(xuu30000, xuu31000) 30.44/13.00 new_esEs16([], [], bag) -> True 30.44/13.00 new_ltEs12(Just(xuu30000), Just(xuu31000), app(app(app(ty_@3, cdd), cde), cdf)) -> new_ltEs6(xuu30000, xuu31000, cdd, cde, cdf) 30.44/13.00 new_ltEs20(xuu30001, xuu31001, ty_Double) -> new_ltEs14(xuu30001, xuu31001) 30.44/13.00 new_esEs23(xuu30000, xuu31000, ty_Ordering) -> new_esEs10(xuu30000, xuu31000) 30.44/13.00 new_lt12(xuu30001, xuu31001, ty_Float) -> new_lt10(xuu30001, xuu31001) 30.44/13.00 new_ltEs12(Just(xuu30000), Just(xuu31000), app(ty_Maybe, ceb)) -> new_ltEs12(xuu30000, xuu31000, ceb) 30.44/13.00 new_esEs29(xuu4000, xuu300, ty_@0) -> new_esEs14(xuu4000, xuu300) 30.44/13.00 new_primMulInt(Neg(xuu400000), Neg(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) 30.44/13.00 new_esEs20(xuu40001, xuu3001, ty_Double) -> new_esEs17(xuu40001, xuu3001) 30.44/13.00 new_esEs25(xuu30000, xuu31000, app(app(ty_@2, cgg), cgh)) -> new_esEs7(xuu30000, xuu31000, cgg, cgh) 30.44/13.00 new_esEs25(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) 30.44/13.00 new_lt20(xuu30000, xuu31000, app(ty_Ratio, cge)) -> new_lt5(xuu30000, xuu31000, cge) 30.44/13.00 new_compare([], :(xuu31000, xuu31001), ed) -> LT 30.44/13.00 new_esEs28(xuu40002, xuu3002, ty_Integer) -> new_esEs15(xuu40002, xuu3002) 30.44/13.00 new_ltEs19(xuu30002, xuu31002, app(app(ty_@2, cbc), cbd)) -> new_ltEs13(xuu30002, xuu31002, cbc, cbd) 30.44/13.00 new_esEs6(Just(xuu40000), Just(xuu3000), app(ty_Maybe, cfe)) -> new_esEs6(xuu40000, xuu3000, cfe) 30.44/13.00 new_esEs6(Nothing, Just(xuu3000), cdb) -> False 30.44/13.00 new_esEs6(Just(xuu40000), Nothing, cdb) -> False 30.44/13.00 new_ltEs11(False, True) -> True 30.44/13.00 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Float, be) -> new_ltEs16(xuu30000, xuu31000) 30.44/13.00 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_@0) -> new_ltEs8(xuu30000, xuu31000) 30.44/13.00 new_ltEs19(xuu30002, xuu31002, ty_@0) -> new_ltEs8(xuu30002, xuu31002) 30.44/13.00 new_ltEs15(EQ, GT) -> True 30.44/13.00 new_esEs24(xuu30001, xuu31001, ty_Bool) -> new_esEs11(xuu30001, xuu31001) 30.44/13.00 new_esEs6(Nothing, Nothing, cdb) -> True 30.44/13.00 new_ltEs18(xuu3000, xuu3100, ty_Char) -> new_ltEs9(xuu3000, xuu3100) 30.44/13.00 new_esEs11(False, False) -> True 30.44/13.00 new_esEs10(LT, LT) -> True 30.44/13.00 new_ltEs18(xuu3000, xuu3100, ty_Ordering) -> new_ltEs15(xuu3000, xuu3100) 30.44/13.00 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Int, be) -> new_ltEs7(xuu30000, xuu31000) 30.44/13.00 new_esEs21(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.44/13.00 new_ltEs20(xuu30001, xuu31001, app(app(ty_@2, daa), dab)) -> new_ltEs13(xuu30001, xuu31001, daa, dab) 30.44/13.00 new_primCmpNat2(xuu3000, Zero) -> GT 30.44/13.00 new_esEs28(xuu40002, xuu3002, ty_Float) -> new_esEs8(xuu40002, xuu3002) 30.44/13.00 new_lt4(xuu30000, xuu31000) -> new_esEs10(new_compare8(xuu30000, xuu31000), LT) 30.44/13.00 new_compare6(xuu30, xuu31) -> new_primCmpInt(xuu30, xuu31) 30.44/13.00 new_compare31(xuu30000, xuu31000, app(ty_Maybe, ccd)) -> new_compare13(xuu30000, xuu31000, ccd) 30.44/13.00 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.44/13.00 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Bool, fg) -> new_esEs11(xuu40000, xuu3000) 30.44/13.00 new_lt13(xuu30000, xuu31000, ty_Int) -> new_lt9(xuu30000, xuu31000) 30.44/13.00 new_esEs16(:(xuu40000, xuu40001), :(xuu3000, xuu3001), bag) -> new_asAs(new_esEs18(xuu40000, xuu3000, bag), new_esEs16(xuu40001, xuu3001, bag)) 30.44/13.00 new_compare30(xuu30000, xuu31000) -> new_compare210(xuu30000, xuu31000, new_esEs10(xuu30000, xuu31000)) 30.44/13.00 new_ltEs19(xuu30002, xuu31002, ty_Char) -> new_ltEs9(xuu30002, xuu31002) 30.44/13.00 new_lt12(xuu30001, xuu31001, ty_Bool) -> new_lt15(xuu30001, xuu31001) 30.44/13.00 new_compare31(xuu30000, xuu31000, ty_Integer) -> new_compare7(xuu30000, xuu31000) 30.44/13.00 new_ltEs12(Just(xuu30000), Just(xuu31000), app(ty_[], cdc)) -> new_ltEs5(xuu30000, xuu31000, cdc) 30.44/13.00 new_esEs26(xuu40000, xuu3000, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs4(xuu40000, xuu3000, dae, daf, dag) 30.44/13.00 new_primMulInt(Pos(xuu400000), Neg(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) 30.44/13.00 new_primMulInt(Neg(xuu400000), Pos(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) 30.44/13.00 new_esEs12(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) 30.44/13.00 new_esEs19(xuu40000, xuu3000, app(app(ty_Either, bec), bed)) -> new_esEs5(xuu40000, xuu3000, bec, bed) 30.44/13.00 new_lt17(xuu30000, xuu31000) -> new_esEs10(new_compare5(xuu30000, xuu31000), LT) 30.44/13.00 new_esEs26(xuu40000, xuu3000, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.44/13.00 new_esEs20(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) 30.44/13.00 new_ltEs20(xuu30001, xuu31001, ty_@0) -> new_ltEs8(xuu30001, xuu31001) 30.44/13.00 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(app(app(ty_@3, db), dc), dd)) -> new_ltEs6(xuu30000, xuu31000, db, dc, dd) 30.44/13.00 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(app(ty_Either, de), df)) -> new_ltEs4(xuu30000, xuu31000, de, df) 30.44/13.00 new_ltEs4(Left(xuu30000), Left(xuu31000), app(ty_[], bd), be) -> new_ltEs5(xuu30000, xuu31000, bd) 30.44/13.00 new_primCmpNat1(Succ(xuu30000), Zero) -> GT 30.44/13.00 new_esEs27(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) 30.44/13.00 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Integer) -> new_ltEs17(xuu30000, xuu31000) 30.44/13.00 new_compare14(xuu30000, xuu31000, False) -> GT 30.44/13.00 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Ordering) -> new_ltEs15(xuu30000, xuu31000) 30.44/13.00 new_ltEs19(xuu30002, xuu31002, ty_Double) -> new_ltEs14(xuu30002, xuu31002) 30.44/13.00 new_sr0(Integer(xuu300000), Integer(xuu310010)) -> Integer(new_primMulInt(xuu300000, xuu310010)) 30.44/13.00 new_ltEs9(xuu3000, xuu3100) -> new_fsEs(new_compare17(xuu3000, xuu3100)) 30.44/13.00 new_primCmpNat2(xuu3000, Succ(xuu3100)) -> new_primCmpNat1(xuu3000, xuu3100) 30.44/13.00 new_esEs28(xuu40002, xuu3002, ty_@0) -> new_esEs14(xuu40002, xuu3002) 30.44/13.00 new_ltEs15(LT, GT) -> True 30.44/13.00 new_ltEs20(xuu30001, xuu31001, app(app(ty_Either, che), chf)) -> new_ltEs4(xuu30001, xuu31001, che, chf) 30.44/13.00 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(ty_[], da)) -> new_ltEs5(xuu30000, xuu31000, da) 30.44/13.00 new_esEs29(xuu4000, xuu300, ty_Integer) -> new_esEs15(xuu4000, xuu300) 30.44/13.00 new_esEs20(xuu40001, xuu3001, app(ty_Ratio, bfg)) -> new_esEs13(xuu40001, xuu3001, bfg) 30.44/13.00 new_esEs30(xuu19, xuu14, ty_Integer) -> new_esEs15(xuu19, xuu14) 30.44/13.00 new_esEs20(xuu40001, xuu3001, ty_Int) -> new_esEs9(xuu40001, xuu3001) 30.44/13.00 new_esEs15(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) 30.44/13.00 new_esEs25(xuu30000, xuu31000, app(ty_Ratio, cge)) -> new_esEs13(xuu30000, xuu31000, cge) 30.44/13.00 new_esEs25(xuu30000, xuu31000, ty_Bool) -> new_esEs11(xuu30000, xuu31000) 30.44/13.00 new_compare31(xuu30000, xuu31000, app(ty_[], cbe)) -> new_compare(xuu30000, xuu31000, cbe) 30.44/13.00 new_esEs25(xuu30000, xuu31000, ty_Int) -> new_esEs9(xuu30000, xuu31000) 30.44/13.00 new_asAs(True, xuu141) -> xuu141 30.44/13.00 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.44/13.00 new_ltEs13(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), fb, fc) -> new_pePe(new_lt20(xuu30000, xuu31000, fb), new_asAs(new_esEs25(xuu30000, xuu31000, fb), new_ltEs20(xuu30001, xuu31001, fc))) 30.44/13.00 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Bool) -> new_ltEs11(xuu30000, xuu31000) 30.44/13.00 new_esEs18(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.44/13.00 new_esEs24(xuu30001, xuu31001, ty_@0) -> new_esEs14(xuu30001, xuu31001) 30.44/13.00 new_compare31(xuu30000, xuu31000, app(app(ty_@2, cce), ccf)) -> new_compare15(xuu30000, xuu31000, cce, ccf) 30.44/13.00 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Integer, fg) -> new_esEs15(xuu40000, xuu3000) 30.44/13.00 new_lt12(xuu30001, xuu31001, ty_Ordering) -> new_lt18(xuu30001, xuu31001) 30.44/13.00 new_compare18(xuu30000, xuu31000, bac, bad) -> new_compare25(xuu30000, xuu31000, new_esEs5(xuu30000, xuu31000, bac, bad), bac, bad) 30.44/13.00 new_lt13(xuu30000, xuu31000, app(app(ty_Either, bac), bad)) -> new_lt8(xuu30000, xuu31000, bac, bad) 30.44/13.00 new_esEs19(xuu40000, xuu3000, app(ty_Ratio, bee)) -> new_esEs13(xuu40000, xuu3000, bee) 30.44/13.00 new_ltEs20(xuu30001, xuu31001, ty_Char) -> new_ltEs9(xuu30001, xuu31001) 30.44/13.00 new_esEs24(xuu30001, xuu31001, ty_Integer) -> new_esEs15(xuu30001, xuu31001) 30.44/13.00 new_esEs19(xuu40000, xuu3000, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.44/13.00 new_esEs29(xuu4000, xuu300, app(ty_[], bag)) -> new_esEs16(xuu4000, xuu300, bag) 30.44/13.00 new_ltEs20(xuu30001, xuu31001, ty_Float) -> new_ltEs16(xuu30001, xuu31001) 30.44/13.00 new_lt13(xuu30000, xuu31000, ty_@0) -> new_lt4(xuu30000, xuu31000) 30.44/13.00 new_compare12(xuu30000, xuu31000) -> new_compare26(xuu30000, xuu31000, new_esEs11(xuu30000, xuu31000)) 30.44/13.00 new_esEs19(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.44/13.00 new_esEs18(xuu40000, xuu3000, app(app(ty_@2, bah), bba)) -> new_esEs7(xuu40000, xuu3000, bah, bba) 30.44/13.00 new_esEs24(xuu30001, xuu31001, app(app(ty_@2, caa), cab)) -> new_esEs7(xuu30001, xuu31001, caa, cab) 30.44/13.00 new_esEs30(xuu19, xuu14, app(app(ty_@2, bcb), bcc)) -> new_esEs7(xuu19, xuu14, bcb, bcc) 30.44/13.00 new_lt12(xuu30001, xuu31001, app(ty_[], bha)) -> new_lt14(xuu30001, xuu31001, bha) 30.44/13.00 new_esEs29(xuu4000, xuu300, app(app(ty_Either, gh), fg)) -> new_esEs5(xuu4000, xuu300, gh, fg) 30.44/13.00 new_ltEs18(xuu3000, xuu3100, app(app(ty_@2, fb), fc)) -> new_ltEs13(xuu3000, xuu3100, fb, fc) 30.44/13.00 new_lt20(xuu30000, xuu31000, ty_Char) -> new_lt7(xuu30000, xuu31000) 30.44/13.00 new_compare15(xuu30000, xuu31000, bgb, bgc) -> new_compare27(xuu30000, xuu31000, new_esEs7(xuu30000, xuu31000, bgb, bgc), bgb, bgc) 30.44/13.00 new_primCompAux00(xuu182, EQ) -> xuu182 30.44/13.00 new_sr(xuu40000, xuu3001) -> new_primMulInt(xuu40000, xuu3001) 30.44/13.00 new_lt12(xuu30001, xuu31001, app(ty_Maybe, bhh)) -> new_lt6(xuu30001, xuu31001, bhh) 30.44/13.00 new_esEs25(xuu30000, xuu31000, ty_Integer) -> new_esEs15(xuu30000, xuu31000) 30.44/13.00 new_primMulNat0(Zero, Zero) -> Zero 30.44/13.00 new_lt13(xuu30000, xuu31000, app(app(ty_@2, bgb), bgc)) -> new_lt16(xuu30000, xuu31000, bgb, bgc) 30.44/13.00 new_esEs30(xuu19, xuu14, app(ty_[], bdc)) -> new_esEs16(xuu19, xuu14, bdc) 30.44/13.00 new_esEs24(xuu30001, xuu31001, app(ty_[], bha)) -> new_esEs16(xuu30001, xuu31001, bha) 30.44/13.00 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Int, fg) -> new_esEs9(xuu40000, xuu3000) 30.44/13.00 new_esEs23(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) 30.44/13.00 new_compare111(xuu30000, xuu31000, False) -> GT 30.44/13.00 new_primCmpNat1(Zero, Zero) -> EQ 30.44/13.00 new_ltEs20(xuu30001, xuu31001, app(ty_Maybe, chh)) -> new_ltEs12(xuu30001, xuu31001, chh) 30.44/13.00 new_esEs30(xuu19, xuu14, ty_Int) -> new_esEs9(xuu19, xuu14) 30.44/13.00 new_esEs23(xuu30000, xuu31000, app(app(ty_@2, bgb), bgc)) -> new_esEs7(xuu30000, xuu31000, bgb, bgc) 30.44/13.00 new_compare28(xuu30000, xuu31000, True, bgd, bge, bgf) -> EQ 30.44/13.00 new_ltEs18(xuu3000, xuu3100, app(app(ty_Either, cg), be)) -> new_ltEs4(xuu3000, xuu3100, cg, be) 30.44/13.00 new_lt20(xuu30000, xuu31000, ty_Float) -> new_lt10(xuu30000, xuu31000) 30.44/13.00 new_esEs20(xuu40001, xuu3001, app(app(ty_Either, bfe), bff)) -> new_esEs5(xuu40001, xuu3001, bfe, bff) 30.44/13.00 new_ltEs11(True, False) -> False 30.44/13.00 new_esEs5(Right(xuu40000), Right(xuu3000), gh, app(app(ty_Either, hf), hg)) -> new_esEs5(xuu40000, xuu3000, hf, hg) 30.44/13.00 new_esEs19(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.44/13.00 new_ltEs15(EQ, EQ) -> True 30.44/13.00 new_esEs26(xuu40000, xuu3000, app(ty_Maybe, dbc)) -> new_esEs6(xuu40000, xuu3000, dbc) 30.44/13.00 new_fsEs(xuu151) -> new_not(new_esEs10(xuu151, GT)) 30.44/13.00 new_esEs30(xuu19, xuu14, app(ty_Ratio, bda)) -> new_esEs13(xuu19, xuu14, bda) 30.44/13.00 new_esEs26(xuu40000, xuu3000, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.44/13.00 new_esEs24(xuu30001, xuu31001, app(ty_Ratio, bhg)) -> new_esEs13(xuu30001, xuu31001, bhg) 30.44/13.00 new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.44/13.00 new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.44/13.00 new_ltEs18(xuu3000, xuu3100, app(ty_Ratio, eh)) -> new_ltEs10(xuu3000, xuu3100, eh) 30.44/13.00 new_lt12(xuu30001, xuu31001, ty_@0) -> new_lt4(xuu30001, xuu31001) 30.44/13.00 new_esEs6(Just(xuu40000), Just(xuu3000), app(app(ty_@2, cee), cef)) -> new_esEs7(xuu40000, xuu3000, cee, cef) 30.44/13.00 new_esEs18(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.44/13.00 new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False 30.44/13.00 new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False 30.44/13.00 new_esEs29(xuu4000, xuu300, app(ty_Ratio, bgg)) -> new_esEs13(xuu4000, xuu300, bgg) 30.44/13.00 new_esEs24(xuu30001, xuu31001, ty_Int) -> new_esEs9(xuu30001, xuu31001) 30.44/13.00 new_esEs25(xuu30000, xuu31000, app(ty_Maybe, cgf)) -> new_esEs6(xuu30000, xuu31000, cgf) 30.44/13.00 new_compare([], [], ed) -> EQ 30.44/13.00 new_ltEs15(LT, EQ) -> True 30.44/13.00 new_esEs20(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) 30.44/13.00 new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) 30.44/13.00 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.44/13.00 new_esEs20(xuu40001, xuu3001, app(ty_[], bga)) -> new_esEs16(xuu40001, xuu3001, bga) 30.44/13.00 new_esEs28(xuu40002, xuu3002, app(app(ty_@2, dcg), dch)) -> new_esEs7(xuu40002, xuu3002, dcg, dch) 30.44/13.00 new_ltEs4(Left(xuu30000), Left(xuu31000), app(app(ty_Either, ca), cb), be) -> new_ltEs4(xuu30000, xuu31000, ca, cb) 30.44/13.00 new_lt13(xuu30000, xuu31000, app(ty_[], bgh)) -> new_lt14(xuu30000, xuu31000, bgh) 30.44/13.00 new_esEs25(xuu30000, xuu31000, app(app(ty_Either, cgc), cgd)) -> new_esEs5(xuu30000, xuu31000, cgc, cgd) 30.44/13.00 new_esEs20(xuu40001, xuu3001, app(ty_Maybe, bfh)) -> new_esEs6(xuu40001, xuu3001, bfh) 30.44/13.00 new_ltEs19(xuu30002, xuu31002, app(ty_Maybe, cbb)) -> new_ltEs12(xuu30002, xuu31002, cbb) 30.44/13.00 new_esEs11(True, True) -> True 30.44/13.00 new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False 30.44/13.00 new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False 30.44/13.00 new_esEs19(xuu40000, xuu3000, app(ty_Maybe, bef)) -> new_esEs6(xuu40000, xuu3000, bef) 30.44/13.00 new_compare29(xuu30000, xuu31000, bgd, bge, bgf) -> new_compare28(xuu30000, xuu31000, new_esEs4(xuu30000, xuu31000, bgd, bge, bgf), bgd, bge, bgf) 30.44/13.00 new_compare31(xuu30000, xuu31000, ty_Double) -> new_compare5(xuu30000, xuu31000) 30.44/13.00 new_esEs25(xuu30000, xuu31000, app(ty_[], cfg)) -> new_esEs16(xuu30000, xuu31000, cfg) 30.44/13.00 new_esEs19(xuu40000, xuu3000, app(ty_[], beg)) -> new_esEs16(xuu40000, xuu3000, beg) 30.44/13.00 new_esEs29(xuu4000, xuu300, ty_Int) -> new_esEs9(xuu4000, xuu300) 30.44/13.00 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 30.44/13.00 new_ltEs15(GT, GT) -> True 30.44/13.00 new_esEs30(xuu19, xuu14, ty_Bool) -> new_esEs11(xuu19, xuu14) 30.44/13.00 new_esEs26(xuu40000, xuu3000, app(app(ty_Either, dah), dba)) -> new_esEs5(xuu40000, xuu3000, dah, dba) 30.44/13.00 new_esEs30(xuu19, xuu14, app(ty_Maybe, bdb)) -> new_esEs6(xuu19, xuu14, bdb) 30.44/13.00 new_esEs10(LT, GT) -> False 30.44/13.00 new_esEs10(GT, LT) -> False 30.44/13.00 new_esEs21(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.44/13.00 new_ltEs10(xuu3000, xuu3100, eh) -> new_fsEs(new_compare9(xuu3000, xuu3100, eh)) 30.44/13.00 new_esEs19(xuu40000, xuu3000, app(app(ty_@2, bdf), bdg)) -> new_esEs7(xuu40000, xuu3000, bdf, bdg) 30.44/13.00 new_ltEs7(xuu3000, xuu3100) -> new_fsEs(new_compare6(xuu3000, xuu3100)) 30.44/13.00 new_ltEs12(Just(xuu30000), Just(xuu31000), app(app(ty_@2, cec), ced)) -> new_ltEs13(xuu30000, xuu31000, cec, ced) 30.44/13.00 new_esEs27(xuu40001, xuu3001, app(app(app(ty_@3, dbg), dbh), dca)) -> new_esEs4(xuu40001, xuu3001, dbg, dbh, dca) 30.44/13.00 new_primPlusNat0(xuu104, xuu300100) -> new_primPlusNat1(xuu104, Succ(xuu300100)) 30.44/13.00 new_not(False) -> True 30.44/13.00 new_esEs28(xuu40002, xuu3002, ty_Int) -> new_esEs9(xuu40002, xuu3002) 30.44/13.00 new_compare31(xuu30000, xuu31000, ty_Char) -> new_compare17(xuu30000, xuu31000) 30.44/13.00 new_esEs18(xuu40000, xuu3000, app(app(ty_Either, bbe), bbf)) -> new_esEs5(xuu40000, xuu3000, bbe, bbf) 30.44/13.00 new_esEs28(xuu40002, xuu3002, app(ty_Ratio, ddf)) -> new_esEs13(xuu40002, xuu3002, ddf) 30.44/13.00 new_esEs29(xuu4000, xuu300, ty_Ordering) -> new_esEs10(xuu4000, xuu300) 30.44/13.00 new_lt20(xuu30000, xuu31000, ty_@0) -> new_lt4(xuu30000, xuu31000) 30.44/13.00 new_esEs25(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) 30.44/13.00 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.44/13.00 new_compare19(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.44/13.00 new_compare19(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.44/13.00 new_lt12(xuu30001, xuu31001, app(app(ty_Either, bhe), bhf)) -> new_lt8(xuu30001, xuu31001, bhe, bhf) 30.44/13.00 new_esEs25(xuu30000, xuu31000, ty_Double) -> new_esEs17(xuu30000, xuu31000) 30.44/13.00 new_esEs5(Left(xuu40000), Right(xuu3000), gh, fg) -> False 30.44/13.00 new_esEs5(Right(xuu40000), Left(xuu3000), gh, fg) -> False 30.44/13.00 new_primCmpInt(Pos(Succ(xuu3000)), Pos(xuu310)) -> new_primCmpNat2(xuu3000, xuu310) 30.44/13.00 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Int) -> new_ltEs7(xuu30000, xuu31000) 30.44/13.00 new_lt12(xuu30001, xuu31001, ty_Integer) -> new_lt19(xuu30001, xuu31001) 30.44/13.00 new_compare27(xuu30000, xuu31000, True, bgb, bgc) -> EQ 30.44/13.00 new_esEs29(xuu4000, xuu300, app(app(ty_@2, bdd), bde)) -> new_esEs7(xuu4000, xuu300, bdd, bde) 30.44/13.00 new_ltEs4(Left(xuu30000), Right(xuu31000), cg, be) -> True 30.44/13.00 new_esEs18(xuu40000, xuu3000, app(ty_Maybe, bbh)) -> new_esEs6(xuu40000, xuu3000, bbh) 30.44/13.00 new_esEs30(xuu19, xuu14, ty_Ordering) -> new_esEs10(xuu19, xuu14) 30.44/13.00 new_esEs27(xuu40001, xuu3001, ty_Ordering) -> new_esEs10(xuu40001, xuu3001) 30.44/13.00 new_ltEs18(xuu3000, xuu3100, app(ty_[], ed)) -> new_ltEs5(xuu3000, xuu3100, ed) 30.44/13.00 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(app(ty_@2, ea), eb)) -> new_ltEs13(xuu30000, xuu31000, ea, eb) 30.44/13.00 new_esEs30(xuu19, xuu14, app(app(ty_Either, bcg), bch)) -> new_esEs5(xuu19, xuu14, bcg, bch) 30.44/13.00 new_lt20(xuu30000, xuu31000, ty_Int) -> new_lt9(xuu30000, xuu31000) 30.44/13.00 new_lt5(xuu30000, xuu31000, bae) -> new_esEs10(new_compare9(xuu30000, xuu31000, bae), LT) 30.44/13.00 new_ltEs20(xuu30001, xuu31001, ty_Bool) -> new_ltEs11(xuu30001, xuu31001) 30.44/13.00 new_compare16(xuu30000, xuu31000, False, bgd, bge, bgf) -> GT 30.44/13.00 new_compare11(xuu30000, xuu31000, True, bac, bad) -> LT 30.44/13.00 new_ltEs19(xuu30002, xuu31002, ty_Int) -> new_ltEs7(xuu30002, xuu31002) 30.44/13.00 new_primCmpNat1(Zero, Succ(xuu31000)) -> LT 30.44/13.00 new_lt12(xuu30001, xuu31001, app(ty_Ratio, bhg)) -> new_lt5(xuu30001, xuu31001, bhg) 30.44/13.00 new_esEs29(xuu4000, xuu300, app(ty_Maybe, cdb)) -> new_esEs6(xuu4000, xuu300, cdb) 30.44/13.00 new_compare210(xuu30000, xuu31000, False) -> new_compare14(xuu30000, xuu31000, new_ltEs15(xuu30000, xuu31000)) 30.44/13.00 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 30.44/13.00 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 30.44/13.00 new_esEs25(xuu30000, xuu31000, app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs4(xuu30000, xuu31000, cfh, cga, cgb) 30.44/13.00 new_lt20(xuu30000, xuu31000, ty_Double) -> new_lt17(xuu30000, xuu31000) 30.44/13.00 new_lt18(xuu30000, xuu31000) -> new_esEs10(new_compare30(xuu30000, xuu31000), LT) 30.44/13.00 new_primPlusNat1(Zero, Zero) -> Zero 30.44/13.00 new_esEs18(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.44/13.00 new_compare31(xuu30000, xuu31000, ty_Ordering) -> new_compare30(xuu30000, xuu31000) 30.44/13.00 new_lt20(xuu30000, xuu31000, app(app(ty_@2, cgg), cgh)) -> new_lt16(xuu30000, xuu31000, cgg, cgh) 30.44/13.00 new_esEs20(xuu40001, xuu3001, ty_Bool) -> new_esEs11(xuu40001, xuu3001) 30.44/13.00 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Double, be) -> new_ltEs14(xuu30000, xuu31000) 30.44/13.00 new_ltEs19(xuu30002, xuu31002, ty_Bool) -> new_ltEs11(xuu30002, xuu31002) 30.44/13.00 new_ltEs20(xuu30001, xuu31001, ty_Int) -> new_ltEs7(xuu30001, xuu31001) 30.44/13.00 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Float, fg) -> new_esEs8(xuu40000, xuu3000) 30.44/13.00 new_ltEs12(Just(xuu30000), Just(xuu31000), app(ty_Ratio, cea)) -> new_ltEs10(xuu30000, xuu31000, cea) 30.44/13.00 new_esEs27(xuu40001, xuu3001, ty_Double) -> new_esEs17(xuu40001, xuu3001) 30.44/13.00 new_esEs24(xuu30001, xuu31001, ty_Float) -> new_esEs8(xuu30001, xuu31001) 30.44/13.00 new_ltEs15(LT, LT) -> True 30.44/13.00 new_ltEs12(Nothing, Just(xuu31000), fa) -> True 30.44/13.00 new_esEs10(EQ, GT) -> False 30.44/13.00 new_esEs10(GT, EQ) -> False 30.44/13.00 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Ordering, be) -> new_ltEs15(xuu30000, xuu31000) 30.44/13.00 new_esEs18(xuu40000, xuu3000, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.44/13.00 new_ltEs19(xuu30002, xuu31002, app(app(ty_Either, cag), cah)) -> new_ltEs4(xuu30002, xuu31002, cag, cah) 30.44/13.00 new_esEs28(xuu40002, xuu3002, app(ty_Maybe, ddg)) -> new_esEs6(xuu40002, xuu3002, ddg) 30.44/13.00 new_esEs8(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs9(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) 30.44/13.00 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 30.44/13.00 new_primMulNat0(Succ(xuu4000000), Succ(xuu300100)) -> new_primPlusNat0(new_primMulNat0(xuu4000000, Succ(xuu300100)), xuu300100) 30.44/13.00 new_lt20(xuu30000, xuu31000, ty_Ordering) -> new_lt18(xuu30000, xuu31000) 30.44/13.00 new_compare31(xuu30000, xuu31000, ty_@0) -> new_compare8(xuu30000, xuu31000) 30.44/13.00 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, app(ty_Maybe, dh)) -> new_ltEs12(xuu30000, xuu31000, dh) 30.44/13.00 new_compare16(xuu30000, xuu31000, True, bgd, bge, bgf) -> LT 30.44/13.00 new_esEs5(Right(xuu40000), Right(xuu3000), gh, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.44/13.00 new_esEs13(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), bgg) -> new_asAs(new_esEs21(xuu40000, xuu3000, bgg), new_esEs22(xuu40001, xuu3001, bgg)) 30.44/13.00 new_esEs27(xuu40001, xuu3001, app(ty_Maybe, dce)) -> new_esEs6(xuu40001, xuu3001, dce) 30.44/13.00 new_esEs6(Just(xuu40000), Just(xuu3000), app(ty_[], cff)) -> new_esEs16(xuu40000, xuu3000, cff) 30.44/13.00 new_esEs5(Left(xuu40000), Left(xuu3000), ty_@0, fg) -> new_esEs14(xuu40000, xuu3000) 30.44/13.00 new_ltEs12(Nothing, Nothing, fa) -> True 30.44/13.00 new_esEs16(:(xuu40000, xuu40001), [], bag) -> False 30.44/13.00 new_esEs16([], :(xuu3000, xuu3001), bag) -> False 30.44/13.00 new_ltEs19(xuu30002, xuu31002, ty_Float) -> new_ltEs16(xuu30002, xuu31002) 30.44/13.00 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_@0, be) -> new_ltEs8(xuu30000, xuu31000) 30.44/13.00 new_compare31(xuu30000, xuu31000, app(app(ty_Either, cca), ccb)) -> new_compare18(xuu30000, xuu31000, cca, ccb) 30.44/13.00 new_esEs23(xuu30000, xuu31000, app(ty_[], bgh)) -> new_esEs16(xuu30000, xuu31000, bgh) 30.44/13.00 new_ltEs12(Just(xuu30000), Nothing, fa) -> False 30.44/13.00 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 30.44/13.00 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 30.44/13.00 new_compare8(@0, @0) -> EQ 30.44/13.00 new_lt20(xuu30000, xuu31000, app(ty_Maybe, cgf)) -> new_lt6(xuu30000, xuu31000, cgf) 30.44/13.00 new_compare110(xuu30000, xuu31000, False, bgb, bgc) -> GT 30.44/13.00 new_esEs4(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), ccg, cch, cda) -> new_asAs(new_esEs26(xuu40000, xuu3000, ccg), new_asAs(new_esEs27(xuu40001, xuu3001, cch), new_esEs28(xuu40002, xuu3002, cda))) 30.44/13.00 new_esEs23(xuu30000, xuu31000, ty_Integer) -> new_esEs15(xuu30000, xuu31000) 30.44/13.00 new_esEs28(xuu40002, xuu3002, app(app(ty_Either, ddd), dde)) -> new_esEs5(xuu40002, xuu3002, ddd, dde) 30.44/13.00 new_primEqNat0(Zero, Zero) -> True 30.44/13.00 new_ltEs18(xuu3000, xuu3100, ty_Float) -> new_ltEs16(xuu3000, xuu3100) 30.44/13.00 new_esEs19(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.44/13.00 new_esEs18(xuu40000, xuu3000, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.44/13.00 new_ltEs20(xuu30001, xuu31001, app(ty_[], cha)) -> new_ltEs5(xuu30001, xuu31001, cha) 30.44/13.00 new_esEs28(xuu40002, xuu3002, ty_Ordering) -> new_esEs10(xuu40002, xuu3002) 30.44/13.00 new_ltEs4(Right(xuu30000), Right(xuu31000), cg, ty_Float) -> new_ltEs16(xuu30000, xuu31000) 30.44/13.00 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Integer) -> new_ltEs17(xuu30000, xuu31000) 30.44/13.00 new_esEs6(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.44/13.00 new_esEs29(xuu4000, xuu300, ty_Bool) -> new_esEs11(xuu4000, xuu300) 30.44/13.00 new_asAs(False, xuu141) -> False 30.44/13.00 new_esEs23(xuu30000, xuu31000, ty_Float) -> new_esEs8(xuu30000, xuu31000) 30.44/13.00 new_compare24(Nothing, Nothing, False, ec) -> LT 30.44/13.00 new_esEs20(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) 30.44/13.00 new_esEs26(xuu40000, xuu3000, app(ty_Ratio, dbb)) -> new_esEs13(xuu40000, xuu3000, dbb) 30.44/13.00 new_lt10(xuu30000, xuu31000) -> new_esEs10(new_compare19(xuu30000, xuu31000), LT) 30.44/13.00 new_esEs26(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.44/13.00 new_esEs23(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) 30.44/13.00 new_ltEs4(Right(xuu30000), Left(xuu31000), cg, be) -> False 30.44/13.00 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.44/13.00 new_primCmpInt(Neg(Succ(xuu3000)), Neg(xuu310)) -> new_primCmpNat0(xuu310, xuu3000) 30.44/13.00 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.44/13.00 new_ltEs18(xuu3000, xuu3100, ty_Int) -> new_ltEs7(xuu3000, xuu3100) 30.44/13.00 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Char, be) -> new_ltEs9(xuu30000, xuu31000) 30.44/13.00 new_esEs20(xuu40001, xuu3001, app(app(ty_@2, beh), bfa)) -> new_esEs7(xuu40001, xuu3001, beh, bfa) 30.44/13.00 30.44/13.00 The set Q consists of the following terms: 30.44/13.00 30.44/13.00 new_primPlusNat1(Succ(x0), Succ(x1)) 30.44/13.00 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.00 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 30.44/13.00 new_esEs27(x0, x1, ty_Ordering) 30.44/13.00 new_esEs19(x0, x1, ty_Bool) 30.44/13.00 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 30.44/13.00 new_ltEs4(Left(x0), Left(x1), ty_Char, x2) 30.44/13.00 new_esEs24(x0, x1, app(ty_Maybe, x2)) 30.44/13.00 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.44/13.00 new_ltEs18(x0, x1, ty_Bool) 30.44/13.00 new_primCmpNat2(x0, Succ(x1)) 30.44/13.00 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_ltEs12(Nothing, Nothing, x0) 30.44/13.00 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_lt20(x0, x1, ty_Int) 30.44/13.00 new_lt20(x0, x1, app(ty_[], x2)) 30.44/13.00 new_sr0(Integer(x0), Integer(x1)) 30.44/13.00 new_ltEs17(x0, x1) 30.44/13.00 new_esEs23(x0, x1, ty_Char) 30.44/13.00 new_compare31(x0, x1, ty_Ordering) 30.44/13.00 new_compare110(x0, x1, False, x2, x3) 30.44/13.00 new_ltEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.44/13.00 new_lt20(x0, x1, ty_Ordering) 30.44/13.00 new_esEs28(x0, x1, app(ty_[], x2)) 30.44/13.00 new_primCmpNat1(Succ(x0), Zero) 30.44/13.00 new_primPlusNat1(Zero, Zero) 30.44/13.00 new_esEs27(x0, x1, ty_Double) 30.44/13.00 new_esEs19(x0, x1, app(ty_Maybe, x2)) 30.44/13.00 new_esEs28(x0, x1, ty_Char) 30.44/13.00 new_compare31(x0, x1, ty_Int) 30.44/13.00 new_esEs25(x0, x1, ty_Char) 30.44/13.00 new_primCmpNat1(Zero, Zero) 30.44/13.00 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 30.44/13.00 new_ltEs18(x0, x1, ty_@0) 30.44/13.00 new_compare26(x0, x1, True) 30.44/13.00 new_esEs10(EQ, EQ) 30.44/13.00 new_lt14(x0, x1, x2) 30.44/13.00 new_compare31(x0, x1, ty_Char) 30.44/13.00 new_lt20(x0, x1, ty_Double) 30.44/13.00 new_primEqInt(Pos(Zero), Pos(Zero)) 30.44/13.00 new_lt13(x0, x1, app(ty_Maybe, x2)) 30.44/13.00 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 30.44/13.00 new_ltEs4(Left(x0), Left(x1), ty_Int, x2) 30.44/13.00 new_ltEs4(Right(x0), Right(x1), x2, ty_Integer) 30.44/13.00 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.44/13.00 new_primCompAux00(x0, GT) 30.44/13.00 new_ltEs12(Just(x0), Nothing, x1) 30.44/13.00 new_esEs25(x0, x1, ty_Int) 30.44/13.00 new_lt13(x0, x1, ty_Integer) 30.44/13.00 new_esEs24(x0, x1, ty_Bool) 30.44/13.00 new_compare31(x0, x1, ty_Double) 30.44/13.00 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 30.44/13.00 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 30.44/13.00 new_ltEs12(Just(x0), Just(x1), ty_Ordering) 30.44/13.00 new_esEs19(x0, x1, ty_@0) 30.44/13.00 new_ltEs7(x0, x1) 30.44/13.00 new_esEs6(Nothing, Just(x0), x1) 30.44/13.00 new_esEs30(x0, x1, ty_Integer) 30.44/13.00 new_esEs25(x0, x1, ty_Ordering) 30.44/13.00 new_ltEs12(Just(x0), Just(x1), app(ty_[], x2)) 30.44/13.00 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.00 new_ltEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.44/13.00 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 30.44/13.00 new_compare([], :(x0, x1), x2) 30.44/13.00 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 30.44/13.00 new_lt18(x0, x1) 30.44/13.00 new_primEqInt(Neg(Zero), Neg(Zero)) 30.44/13.00 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_compare24(Nothing, Nothing, False, x0) 30.44/13.00 new_primCmpNat0(Succ(x0), x1) 30.44/13.00 new_ltEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.44/13.00 new_lt20(x0, x1, ty_Char) 30.44/13.00 new_ltEs12(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.44/13.00 new_esEs23(x0, x1, ty_Ordering) 30.44/13.00 new_compare210(x0, x1, True) 30.44/13.00 new_compare13(x0, x1, x2) 30.44/13.00 new_ltEs19(x0, x1, ty_Float) 30.44/13.00 new_esEs30(x0, x1, ty_@0) 30.44/13.00 new_lt13(x0, x1, app(ty_[], x2)) 30.44/13.00 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 30.44/13.00 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 30.44/13.00 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.00 new_ltEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 30.44/13.00 new_esEs25(x0, x1, ty_@0) 30.44/13.00 new_esEs25(x0, x1, ty_Double) 30.44/13.00 new_ltEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.44/13.00 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.44/13.00 new_esEs23(x0, x1, app(ty_[], x2)) 30.44/13.00 new_compare27(x0, x1, True, x2, x3) 30.44/13.00 new_compare(:(x0, x1), [], x2) 30.44/13.00 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 30.44/13.00 new_esEs20(x0, x1, app(ty_Ratio, x2)) 30.44/13.00 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.44/13.00 new_ltEs4(Right(x0), Right(x1), x2, ty_Bool) 30.44/13.00 new_compare28(x0, x1, False, x2, x3, x4) 30.44/13.00 new_ltEs4(Left(x0), Left(x1), ty_Bool, x2) 30.44/13.00 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.00 new_ltEs11(True, True) 30.44/13.00 new_esEs27(x0, x1, ty_Char) 30.44/13.00 new_esEs19(x0, x1, app(ty_Ratio, x2)) 30.44/13.00 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 30.44/13.00 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.00 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.00 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 30.44/13.00 new_compare14(x0, x1, True) 30.44/13.00 new_esEs18(x0, x1, app(ty_Ratio, x2)) 30.44/13.00 new_esEs24(x0, x1, app(ty_Ratio, x2)) 30.44/13.00 new_esEs24(x0, x1, ty_Char) 30.44/13.00 new_ltEs12(Just(x0), Just(x1), ty_Int) 30.44/13.00 new_ltEs4(Left(x0), Left(x1), ty_Ordering, x2) 30.44/13.00 new_compare27(x0, x1, False, x2, x3) 30.44/13.00 new_compare30(x0, x1) 30.44/13.00 new_ltEs18(x0, x1, ty_Integer) 30.44/13.00 new_primEqInt(Pos(Zero), Neg(Zero)) 30.44/13.00 new_primEqInt(Neg(Zero), Pos(Zero)) 30.44/13.00 new_ltEs9(x0, x1) 30.44/13.00 new_esEs27(x0, x1, ty_Int) 30.44/13.00 new_compare7(Integer(x0), Integer(x1)) 30.44/13.00 new_esEs27(x0, x1, app(ty_[], x2)) 30.44/13.00 new_esEs23(x0, x1, ty_Integer) 30.44/13.00 new_esEs26(x0, x1, ty_Ordering) 30.44/13.00 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_ltEs12(Just(x0), Just(x1), ty_Char) 30.44/13.00 new_compare8(@0, @0) 30.44/13.00 new_ltEs12(Just(x0), Just(x1), ty_Double) 30.44/13.00 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 30.44/13.00 new_esEs27(x0, x1, ty_@0) 30.44/13.00 new_primMulInt(Neg(x0), Neg(x1)) 30.44/13.00 new_compare5(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 30.44/13.00 new_compare5(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 30.44/13.00 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.44/13.00 new_ltEs4(Left(x0), Left(x1), ty_Integer, x2) 30.44/13.00 new_esEs24(x0, x1, ty_Int) 30.44/13.00 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 30.44/13.00 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 30.44/13.00 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 30.44/13.00 new_ltEs13(@2(x0, x1), @2(x2, x3), x4, x5) 30.44/13.00 new_esEs25(x0, x1, ty_Bool) 30.44/13.00 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 30.44/13.00 new_compare16(x0, x1, True, x2, x3, x4) 30.44/13.00 new_ltEs15(EQ, EQ) 30.44/13.00 new_esEs28(x0, x1, ty_Ordering) 30.44/13.00 new_lt12(x0, x1, ty_Integer) 30.44/13.00 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.44/13.00 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.00 new_esEs30(x0, x1, ty_Bool) 30.44/13.00 new_esEs24(x0, x1, ty_@0) 30.44/13.00 new_compare29(x0, x1, x2, x3, x4) 30.44/13.00 new_lt12(x0, x1, app(ty_Maybe, x2)) 30.44/13.00 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.00 new_esEs22(x0, x1, ty_Integer) 30.44/13.00 new_esEs18(x0, x1, ty_Ordering) 30.44/13.00 new_esEs30(x0, x1, ty_Char) 30.44/13.00 new_esEs20(x0, x1, ty_Integer) 30.44/13.00 new_ltEs18(x0, x1, ty_Float) 30.44/13.00 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.44/13.00 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.00 new_esEs27(x0, x1, ty_Bool) 30.44/13.00 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.00 new_compare([], [], x0) 30.44/13.00 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 30.44/13.00 new_esEs28(x0, x1, ty_Integer) 30.44/13.00 new_lt20(x0, x1, ty_Integer) 30.44/13.00 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_esEs19(x0, x1, ty_Double) 30.44/13.00 new_esEs6(Just(x0), Just(x1), ty_Float) 30.44/13.00 new_esEs16(:(x0, x1), [], x2) 30.44/13.00 new_esEs24(x0, x1, ty_Float) 30.44/13.00 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.00 new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_esEs18(x0, x1, ty_Double) 30.44/13.00 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.44/13.00 new_esEs30(x0, x1, ty_Int) 30.44/13.00 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 30.44/13.00 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 30.44/13.00 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 30.44/13.00 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.44/13.00 new_lt5(x0, x1, x2) 30.44/13.00 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 30.44/13.00 new_esEs24(x0, x1, ty_Double) 30.44/13.00 new_compare17(Char(x0), Char(x1)) 30.44/13.00 new_ltEs20(x0, x1, ty_Double) 30.44/13.00 new_ltEs18(x0, x1, app(ty_[], x2)) 30.44/13.00 new_primMulNat0(Zero, Succ(x0)) 30.44/13.00 new_ltEs15(GT, LT) 30.44/13.00 new_ltEs15(LT, GT) 30.44/13.00 new_esEs9(x0, x1) 30.44/13.00 new_ltEs12(Just(x0), Just(x1), ty_@0) 30.44/13.00 new_ltEs4(Right(x0), Right(x1), x2, ty_Char) 30.44/13.00 new_ltEs19(x0, x1, ty_Integer) 30.44/13.00 new_esEs28(x0, x1, ty_Bool) 30.44/13.00 new_ltEs18(x0, x1, ty_Int) 30.44/13.00 new_compare5(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 30.44/13.00 new_ltEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.44/13.00 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.00 new_ltEs5(x0, x1, x2) 30.44/13.00 new_esEs6(Nothing, Nothing, x0) 30.44/13.00 new_esEs6(Just(x0), Nothing, x1) 30.44/13.00 new_lt11(x0, x1, x2, x3, x4) 30.44/13.00 new_esEs6(Just(x0), Just(x1), ty_Int) 30.44/13.00 new_ltEs4(Right(x0), Right(x1), x2, ty_Int) 30.44/13.00 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 30.44/13.00 new_ltEs18(x0, x1, ty_Char) 30.44/13.00 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 30.44/13.00 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.00 new_esEs25(x0, x1, ty_Integer) 30.44/13.00 new_primCmpNat1(Zero, Succ(x0)) 30.44/13.00 new_lt12(x0, x1, ty_Bool) 30.44/13.00 new_compare10(x0, x1, True, x2) 30.44/13.00 new_primCompAux00(x0, EQ) 30.44/13.00 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 30.44/13.00 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 30.44/13.00 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 30.44/13.00 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.00 new_primCmpNat1(Succ(x0), Succ(x1)) 30.44/13.00 new_primEqNat0(Zero, Succ(x0)) 30.44/13.00 new_ltEs20(x0, x1, ty_Ordering) 30.44/13.00 new_esEs30(x0, x1, ty_Float) 30.44/13.00 new_esEs17(Double(x0, x1), Double(x2, x3)) 30.44/13.00 new_esEs29(x0, x1, ty_Integer) 30.44/13.00 new_esEs6(Just(x0), Just(x1), ty_Ordering) 30.44/13.00 new_pePe(True, x0) 30.44/13.00 new_compare28(x0, x1, True, x2, x3, x4) 30.44/13.00 new_primCmpInt(Neg(Zero), Neg(Zero)) 30.44/13.00 new_lt12(x0, x1, app(ty_Ratio, x2)) 30.44/13.00 new_ltEs4(Left(x0), Left(x1), ty_Double, x2) 30.44/13.00 new_compare19(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 30.44/13.00 new_esEs30(x0, x1, app(ty_Maybe, x2)) 30.44/13.00 new_esEs18(x0, x1, app(ty_[], x2)) 30.44/13.00 new_ltEs19(x0, x1, ty_Bool) 30.44/13.00 new_esEs12(Char(x0), Char(x1)) 30.44/13.00 new_compare24(x0, x1, True, x2) 30.44/13.00 new_compare24(Nothing, Just(x0), False, x1) 30.44/13.00 new_primCmpInt(Pos(Zero), Neg(Zero)) 30.44/13.00 new_primCmpInt(Neg(Zero), Pos(Zero)) 30.44/13.00 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) 30.44/13.00 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 30.44/13.00 new_esEs29(x0, x1, ty_Ordering) 30.44/13.00 new_esEs23(x0, x1, ty_Bool) 30.44/13.00 new_lt12(x0, x1, ty_Char) 30.44/13.00 new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) 30.44/13.00 new_compare15(x0, x1, x2, x3) 30.44/13.00 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_esEs29(x0, x1, app(ty_Maybe, x2)) 30.44/13.00 new_lt20(x0, x1, app(ty_Maybe, x2)) 30.44/13.00 new_esEs11(False, False) 30.44/13.00 new_esEs10(LT, GT) 30.44/13.00 new_esEs10(GT, LT) 30.44/13.00 new_ltEs4(Right(x0), Right(x1), x2, ty_Float) 30.44/13.00 new_esEs23(x0, x1, ty_Float) 30.44/13.00 new_esEs20(x0, x1, ty_Float) 30.44/13.00 new_esEs26(x0, x1, app(ty_[], x2)) 30.44/13.00 new_compare11(x0, x1, False, x2, x3) 30.44/13.00 new_esEs6(Just(x0), Just(x1), ty_Char) 30.44/13.00 new_ltEs4(Left(x0), Left(x1), ty_@0, x2) 30.44/13.00 new_lt20(x0, x1, ty_@0) 30.44/13.00 new_esEs20(x0, x1, app(ty_[], x2)) 30.44/13.00 new_lt13(x0, x1, ty_@0) 30.44/13.00 new_esEs20(x0, x1, ty_Bool) 30.44/13.00 new_lt12(x0, x1, ty_Int) 30.44/13.00 new_esEs23(x0, x1, app(ty_Maybe, x2)) 30.44/13.00 new_compare31(x0, x1, app(ty_[], x2)) 30.44/13.00 new_ltEs12(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_primEqNat0(Succ(x0), Zero) 30.44/13.00 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.00 new_esEs27(x0, x1, ty_Integer) 30.44/13.00 new_lt4(x0, x1) 30.44/13.00 new_compare111(x0, x1, True) 30.44/13.00 new_lt10(x0, x1) 30.44/13.00 new_esEs18(x0, x1, ty_@0) 30.44/13.00 new_primMulNat0(Succ(x0), Succ(x1)) 30.44/13.00 new_esEs26(x0, x1, ty_Double) 30.44/13.00 new_esEs25(x0, x1, app(ty_Maybe, x2)) 30.44/13.00 new_esEs28(x0, x1, ty_Float) 30.44/13.00 new_compare31(x0, x1, ty_@0) 30.44/13.00 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 30.44/13.00 new_esEs20(x0, x1, ty_Int) 30.44/13.00 new_esEs6(Just(x0), Just(x1), ty_Bool) 30.44/13.00 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.44/13.00 new_esEs26(x0, x1, ty_@0) 30.44/13.00 new_esEs28(x0, x1, ty_Int) 30.44/13.00 new_ltEs11(False, True) 30.44/13.00 new_ltEs11(True, False) 30.44/13.00 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 30.44/13.00 new_esEs10(EQ, GT) 30.44/13.00 new_esEs10(GT, EQ) 30.44/13.00 new_esEs16([], :(x0, x1), x2) 30.44/13.00 new_lt13(x0, x1, ty_Double) 30.44/13.00 new_esEs23(x0, x1, ty_Int) 30.44/13.00 new_esEs20(x0, x1, ty_Char) 30.44/13.00 new_lt12(x0, x1, ty_Float) 30.44/13.00 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_ltEs12(Nothing, Just(x0), x1) 30.44/13.00 new_esEs26(x0, x1, app(ty_Ratio, x2)) 30.44/13.00 new_ltEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.44/13.00 new_lt13(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.00 new_esEs19(x0, x1, app(ty_[], x2)) 30.44/13.00 new_esEs27(x0, x1, ty_Float) 30.44/13.00 new_compare25(x0, x1, False, x2, x3) 30.44/13.00 new_compare12(x0, x1) 30.44/13.00 new_lt12(x0, x1, ty_Double) 30.44/13.00 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.00 new_lt20(x0, x1, app(ty_Ratio, x2)) 30.44/13.00 new_esEs29(x0, x1, ty_Char) 30.44/13.00 new_esEs16(:(x0, x1), :(x2, x3), x4) 30.44/13.00 new_primMulNat0(Zero, Zero) 30.44/13.00 new_compare31(x0, x1, app(ty_Maybe, x2)) 30.44/13.00 new_lt12(x0, x1, ty_Ordering) 30.44/13.00 new_esEs25(x0, x1, app(ty_Ratio, x2)) 30.44/13.00 new_primCompAux00(x0, LT) 30.44/13.00 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.44/13.00 new_ltEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.44/13.00 new_ltEs19(x0, x1, ty_Char) 30.44/13.00 new_esEs27(x0, x1, app(ty_Ratio, x2)) 30.44/13.00 new_sr(x0, x1) 30.44/13.00 new_primCompAux0(x0, x1, x2, x3) 30.44/13.00 new_asAs(False, x0) 30.44/13.00 new_ltEs19(x0, x1, ty_Int) 30.44/13.00 new_lt8(x0, x1, x2, x3) 30.44/13.00 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.00 new_ltEs14(x0, x1) 30.44/13.00 new_esEs28(x0, x1, app(ty_Maybe, x2)) 30.44/13.00 new_ltEs20(x0, x1, ty_Integer) 30.44/13.00 new_esEs8(Float(x0, x1), Float(x2, x3)) 30.44/13.00 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_esEs6(Just(x0), Just(x1), ty_Integer) 30.44/13.00 new_esEs29(x0, x1, ty_@0) 30.44/13.00 new_ltEs19(x0, x1, ty_Ordering) 30.44/13.00 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.44/13.00 new_ltEs4(Right(x0), Right(x1), x2, ty_Ordering) 30.44/13.00 new_ltEs19(x0, x1, ty_@0) 30.44/13.00 new_esEs22(x0, x1, ty_Int) 30.44/13.00 new_ltEs20(x0, x1, ty_@0) 30.44/13.00 new_ltEs12(Just(x0), Just(x1), ty_Integer) 30.44/13.00 new_esEs18(x0, x1, ty_Bool) 30.44/13.00 new_esEs21(x0, x1, ty_Int) 30.44/13.00 new_ltEs12(Just(x0), Just(x1), ty_Float) 30.44/13.00 new_esEs6(Just(x0), Just(x1), ty_@0) 30.44/13.00 new_esEs10(LT, LT) 30.44/13.00 new_esEs28(x0, x1, app(ty_Ratio, x2)) 30.44/13.00 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.44/13.00 new_esEs30(x0, x1, ty_Double) 30.44/13.00 new_not(True) 30.44/13.00 new_esEs29(x0, x1, ty_Bool) 30.44/13.00 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_compare210(x0, x1, False) 30.44/13.00 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 30.44/13.00 new_lt15(x0, x1) 30.44/13.00 new_pePe(False, x0) 30.44/13.00 new_esEs29(x0, x1, ty_Double) 30.44/13.00 new_esEs11(True, True) 30.44/13.00 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_ltEs10(x0, x1, x2) 30.44/13.00 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 30.44/13.00 new_compare31(x0, x1, app(ty_Ratio, x2)) 30.44/13.00 new_ltEs4(Right(x0), Right(x1), x2, ty_Double) 30.44/13.00 new_primCmpNat0(Zero, x0) 30.44/13.00 new_esEs15(Integer(x0), Integer(x1)) 30.44/13.00 new_lt12(x0, x1, app(ty_[], x2)) 30.44/13.00 new_esEs27(x0, x1, app(ty_Maybe, x2)) 30.44/13.00 new_ltEs15(GT, EQ) 30.44/13.00 new_ltEs15(EQ, GT) 30.44/13.00 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.00 new_primCmpNat2(x0, Zero) 30.44/13.00 new_compare19(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 30.44/13.00 new_esEs11(False, True) 30.44/13.00 new_esEs11(True, False) 30.44/13.00 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.44/13.00 new_esEs29(x0, x1, ty_Int) 30.44/13.00 new_esEs26(x0, x1, ty_Integer) 30.44/13.00 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.00 new_ltEs20(x0, x1, ty_Char) 30.44/13.00 new_lt13(x0, x1, ty_Ordering) 30.44/13.00 new_lt17(x0, x1) 30.44/13.00 new_lt13(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.00 new_ltEs12(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.44/13.00 new_esEs23(x0, x1, app(ty_Ratio, x2)) 30.44/13.00 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 30.44/13.00 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.00 new_ltEs12(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.44/13.00 new_ltEs12(Just(x0), Just(x1), ty_Bool) 30.44/13.00 new_primEqNat0(Succ(x0), Succ(x1)) 30.44/13.00 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.00 new_esEs18(x0, x1, ty_Integer) 30.44/13.00 new_esEs20(x0, x1, ty_Ordering) 30.44/13.00 new_ltEs20(x0, x1, ty_Bool) 30.44/13.00 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.00 new_primPlusNat1(Succ(x0), Zero) 30.44/13.00 new_ltEs4(Left(x0), Right(x1), x2, x3) 30.44/13.00 new_ltEs4(Right(x0), Left(x1), x2, x3) 30.44/13.00 new_esEs29(x0, x1, app(ty_[], x2)) 30.44/13.00 new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_primMulNat0(Succ(x0), Zero) 30.44/13.00 new_compare18(x0, x1, x2, x3) 30.44/13.00 new_primCmpInt(Pos(Zero), Pos(Zero)) 30.44/13.00 new_compare31(x0, x1, ty_Integer) 30.44/13.00 new_lt12(x0, x1, ty_@0) 30.44/13.00 new_esEs19(x0, x1, ty_Ordering) 30.44/13.00 new_esEs10(GT, GT) 30.44/13.00 new_esEs20(x0, x1, app(ty_Maybe, x2)) 30.44/13.00 new_lt16(x0, x1, x2, x3) 30.44/13.00 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 30.44/13.00 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 30.44/13.00 new_compare25(x0, x1, True, x2, x3) 30.44/13.00 new_primMulInt(Pos(x0), Pos(x1)) 30.44/13.00 new_compare16(x0, x1, False, x2, x3, x4) 30.44/13.00 new_esEs14(@0, @0) 30.44/13.00 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 30.44/13.00 new_primPlusNat1(Zero, Succ(x0)) 30.44/13.00 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.44/13.00 new_esEs30(x0, x1, app(ty_Ratio, x2)) 30.44/13.00 new_primPlusNat0(x0, x1) 30.44/13.00 new_ltEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.44/13.00 new_esEs10(LT, EQ) 30.44/13.00 new_esEs10(EQ, LT) 30.44/13.00 new_compare24(Just(x0), Nothing, False, x1) 30.44/13.00 new_compare26(x0, x1, False) 30.44/13.00 new_esEs18(x0, x1, app(ty_Maybe, x2)) 30.44/13.00 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 30.44/13.00 new_esEs18(x0, x1, ty_Int) 30.44/13.00 new_primMulInt(Pos(x0), Neg(x1)) 30.44/13.00 new_primMulInt(Neg(x0), Pos(x1)) 30.44/13.00 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 30.44/13.00 new_esEs19(x0, x1, ty_Float) 30.44/13.00 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.00 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.44/13.00 new_esEs5(Left(x0), Right(x1), x2, x3) 30.44/13.00 new_esEs5(Right(x0), Left(x1), x2, x3) 30.44/13.00 new_esEs29(x0, x1, app(ty_Ratio, x2)) 30.44/13.00 new_lt13(x0, x1, app(ty_Ratio, x2)) 30.44/13.00 new_esEs6(Just(x0), Just(x1), ty_Double) 30.44/13.00 new_compare110(x0, x1, True, x2, x3) 30.44/13.00 new_ltEs18(x0, x1, ty_Ordering) 30.44/13.00 new_compare6(x0, x1) 30.44/13.00 new_ltEs20(x0, x1, app(ty_[], x2)) 30.44/13.00 new_esEs26(x0, x1, ty_Bool) 30.44/13.00 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 30.44/13.00 new_lt20(x0, x1, ty_Bool) 30.44/13.00 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 30.44/13.00 new_ltEs15(EQ, LT) 30.44/13.00 new_ltEs15(LT, EQ) 30.44/13.00 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.00 new_ltEs20(x0, x1, ty_Float) 30.44/13.00 new_compare11(x0, x1, True, x2, x3) 30.44/13.00 new_esEs30(x0, x1, app(ty_[], x2)) 30.44/13.00 new_esEs30(x0, x1, ty_Ordering) 30.44/13.00 new_esEs19(x0, x1, ty_Char) 30.44/13.00 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_ltEs15(GT, GT) 30.44/13.00 new_compare5(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 30.44/13.00 new_ltEs20(x0, x1, ty_Int) 30.44/13.00 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.00 new_compare31(x0, x1, ty_Bool) 30.44/13.00 new_esEs16([], [], x0) 30.44/13.00 new_esEs29(x0, x1, ty_Float) 30.44/13.00 new_ltEs4(Right(x0), Right(x1), x2, ty_@0) 30.44/13.00 new_fsEs(x0) 30.44/13.00 new_lt9(x0, x1) 30.44/13.00 new_ltEs11(False, False) 30.44/13.00 new_esEs19(x0, x1, ty_Int) 30.44/13.00 new_ltEs18(x0, x1, ty_Double) 30.44/13.00 new_compare111(x0, x1, False) 30.44/13.00 new_lt13(x0, x1, ty_Bool) 30.44/13.00 new_esEs26(x0, x1, app(ty_Maybe, x2)) 30.44/13.00 new_esEs26(x0, x1, ty_Int) 30.44/13.00 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.00 new_primEqNat0(Zero, Zero) 30.44/13.00 new_compare24(Just(x0), Just(x1), False, x2) 30.44/13.00 new_ltEs4(Left(x0), Left(x1), ty_Float, x2) 30.44/13.00 new_compare19(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 30.44/13.00 new_compare19(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 30.44/13.00 new_lt13(x0, x1, ty_Float) 30.44/13.00 new_esEs25(x0, x1, ty_Float) 30.44/13.00 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.44/13.00 new_esEs20(x0, x1, ty_@0) 30.44/13.00 new_ltEs19(x0, x1, app(ty_[], x2)) 30.44/13.00 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.00 new_not(False) 30.44/13.00 new_esEs24(x0, x1, ty_Integer) 30.44/13.00 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 30.44/13.00 new_lt7(x0, x1) 30.44/13.00 new_esEs23(x0, x1, ty_Double) 30.44/13.00 new_compare31(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.00 new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.44/13.00 new_esEs18(x0, x1, ty_Char) 30.44/13.00 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 30.44/13.00 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.00 new_ltEs19(x0, x1, ty_Double) 30.44/13.00 new_esEs13(:%(x0, x1), :%(x2, x3), x4) 30.44/13.00 new_compare14(x0, x1, False) 30.44/13.00 new_ltEs8(x0, x1) 30.44/13.00 new_esEs28(x0, x1, ty_Double) 30.44/13.00 new_esEs19(x0, x1, ty_Integer) 30.44/13.00 new_esEs21(x0, x1, ty_Integer) 30.44/13.00 new_ltEs15(LT, LT) 30.44/13.00 new_ltEs12(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.44/13.00 new_esEs26(x0, x1, ty_Float) 30.44/13.00 new_esEs25(x0, x1, app(ty_[], x2)) 30.44/13.00 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.00 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.00 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.44/13.00 new_lt13(x0, x1, ty_Int) 30.44/13.00 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.00 new_compare(:(x0, x1), :(x2, x3), x4) 30.44/13.00 new_lt6(x0, x1, x2) 30.44/13.00 new_esEs26(x0, x1, ty_Char) 30.44/13.00 new_lt20(x0, x1, ty_Float) 30.44/13.00 new_lt19(x0, x1) 30.44/13.00 new_asAs(True, x0) 30.44/13.00 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.00 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.44/13.00 new_lt13(x0, x1, ty_Char) 30.44/13.00 new_esEs23(x0, x1, ty_@0) 30.44/13.00 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.00 new_ltEs16(x0, x1) 30.44/13.00 new_compare31(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.00 new_esEs20(x0, x1, ty_Double) 30.44/13.00 new_esEs18(x0, x1, ty_Float) 30.44/13.00 new_esEs28(x0, x1, ty_@0) 30.44/13.00 new_compare10(x0, x1, False, x2) 30.44/13.00 new_esEs24(x0, x1, app(ty_[], x2)) 30.44/13.00 new_compare31(x0, x1, ty_Float) 30.44/13.00 new_esEs24(x0, x1, ty_Ordering) 30.44/13.00 30.44/13.00 We have to consider all minimal (P,Q,R)-chains. 30.44/13.00 ---------------------------------------- 30.44/13.00 30.44/13.00 (40) QDPSizeChangeProof (EQUIVALENT) 30.44/13.00 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.44/13.00 30.44/13.00 From the DPs we obtained the following set of size-change graphs: 30.44/13.00 *new_addToFM_C1(xuu31, xuu32, xuu33, xuu34, xuu401, True, h, ba) -> new_addToFM_C(xuu34, Nothing, xuu401, h, ba) 30.44/13.00 The graph contains the following edges 4 >= 1, 5 >= 3, 7 >= 4, 8 >= 5 30.44/13.00 30.44/13.00 30.44/13.00 *new_addToFM_C(Branch(Nothing, xuu31, xuu32, xuu33, xuu34), Nothing, xuu401, h, ba) -> new_addToFM_C1(xuu31, xuu32, xuu33, xuu34, xuu401, new_esEs10(new_compare24(Nothing, Nothing, True, h), GT), h, ba) 30.44/13.00 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 3 >= 5, 4 >= 7, 5 >= 8 30.44/13.00 30.44/13.00 30.44/13.00 *new_addToFM_C(Branch(Just(xuu300), xuu31, xuu32, xuu33, xuu34), Nothing, xuu401, h, ba) -> new_addToFM_C2(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, new_esEs10(new_compare24(Nothing, Just(xuu300), False, h), LT), h, ba) 30.44/13.00 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 3 >= 6, 4 >= 8, 5 >= 9 30.44/13.00 30.44/13.00 30.44/13.00 *new_addToFM_C2(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, False, h, ba) -> new_addToFM_C10(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, new_esEs10(new_compare24(Nothing, Just(xuu300), False, h), GT), h, ba) 30.44/13.00 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9 30.44/13.00 30.44/13.00 30.44/13.00 *new_addToFM_C2(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, True, h, ba) -> new_addToFM_C(xuu33, Nothing, xuu401, h, ba) 30.44/13.00 The graph contains the following edges 4 >= 1, 6 >= 3, 8 >= 4, 9 >= 5 30.44/13.00 30.44/13.00 30.44/13.00 *new_addToFM_C10(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, True, h, ba) -> new_addToFM_C(xuu34, Nothing, xuu401, h, ba) 30.44/13.00 The graph contains the following edges 5 >= 1, 6 >= 3, 8 >= 4, 9 >= 5 30.44/13.00 30.44/13.00 30.44/13.00 ---------------------------------------- 30.44/13.00 30.44/13.00 (41) 30.44/13.00 YES 30.44/13.00 30.44/13.00 ---------------------------------------- 30.44/13.00 30.44/13.00 (42) 30.44/13.00 Obligation: 30.44/13.00 Q DP problem: 30.44/13.00 The TRS P consists of the following rules: 30.44/13.00 30.44/13.00 new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, app(ty_Maybe, ga), dh) -> new_esEs2(xuu40001, xuu3001, ga) 30.44/13.00 new_esEs1(Left(xuu40000), Left(xuu3000), app(app(ty_Either, bab), bac), hf) -> new_esEs1(xuu40000, xuu3000, bab, bac) 30.44/13.00 new_esEs3(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(app(ty_Either, bdf), bdg)) -> new_esEs1(xuu40000, xuu3000, bdf, bdg) 30.44/13.00 new_esEs1(Left(xuu40000), Left(xuu3000), app(ty_[], bae), hf) -> new_esEs3(xuu40000, xuu3000, bae) 30.44/13.00 new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(ty_Maybe, ef), dg, dh) -> new_esEs2(xuu40000, xuu3000, ef) 30.44/13.00 new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, app(app(app(ty_@3, fc), fd), ff), dh) -> new_esEs0(xuu40001, xuu3001, fc, fd, ff) 30.44/13.00 new_esEs2(Just(xuu40000), Just(xuu3000), app(app(ty_@2, bbh), bca)) -> new_esEs(xuu40000, xuu3000, bbh, bca) 30.44/13.00 new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(app(ty_@2, h), ba), bb) -> new_esEs(xuu40000, xuu3000, h, ba) 30.44/13.00 new_esEs3(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(ty_Maybe, bdh)) -> new_esEs2(xuu40000, xuu3000, bdh) 30.44/13.00 new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), cb, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs0(xuu40001, xuu3001, ce, cf, cg) 30.44/13.00 new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), cb, app(ty_[], dd)) -> new_esEs3(xuu40001, xuu3001, dd) 30.44/13.00 new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), cb, app(ty_Maybe, dc)) -> new_esEs2(xuu40001, xuu3001, dc) 30.44/13.00 new_esEs3(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(ty_[], bea)) -> new_esEs3(xuu40000, xuu3000, bea) 30.44/13.00 new_esEs2(Just(xuu40000), Just(xuu3000), app(ty_Maybe, bcg)) -> new_esEs2(xuu40000, xuu3000, bcg) 30.44/13.00 new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(app(ty_@2, de), df), dg, dh) -> new_esEs(xuu40000, xuu3000, de, df) 30.44/13.00 new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(app(ty_Either, ed), ee), dg, dh) -> new_esEs1(xuu40000, xuu3000, ed, ee) 30.44/13.00 new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(ty_Maybe, bh), bb) -> new_esEs2(xuu40000, xuu3000, bh) 30.44/13.00 new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, dg, app(ty_[], hc)) -> new_esEs3(xuu40002, xuu3002, hc) 30.44/13.00 new_esEs2(Just(xuu40000), Just(xuu3000), app(ty_[], bch)) -> new_esEs3(xuu40000, xuu3000, bch) 30.44/13.00 new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, dg, app(app(app(ty_@3, ge), gf), gg)) -> new_esEs0(xuu40002, xuu3002, ge, gf, gg) 30.44/13.00 new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), cb, app(app(ty_@2, cc), cd)) -> new_esEs(xuu40001, xuu3001, cc, cd) 30.44/13.00 new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, dg, app(ty_Maybe, hb)) -> new_esEs2(xuu40002, xuu3002, hb) 30.44/13.00 new_esEs1(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, hg), hh), baa), hf) -> new_esEs0(xuu40000, xuu3000, hg, hh, baa) 30.44/13.00 new_esEs3(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(app(ty_@2, bda), bdb)) -> new_esEs(xuu40000, xuu3000, bda, bdb) 30.44/13.00 new_esEs1(Left(xuu40000), Left(xuu3000), app(app(ty_@2, hd), he), hf) -> new_esEs(xuu40000, xuu3000, hd, he) 30.44/13.00 new_esEs1(Left(xuu40000), Left(xuu3000), app(ty_Maybe, bad), hf) -> new_esEs2(xuu40000, xuu3000, bad) 30.44/13.00 new_esEs2(Just(xuu40000), Just(xuu3000), app(app(ty_Either, bce), bcf)) -> new_esEs1(xuu40000, xuu3000, bce, bcf) 30.44/13.00 new_esEs3(:(xuu40000, xuu40001), :(xuu3000, xuu3001), beb) -> new_esEs3(xuu40001, xuu3001, beb) 30.44/13.00 new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), cb, app(app(ty_Either, da), db)) -> new_esEs1(xuu40001, xuu3001, da, db) 30.44/13.00 new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(app(ty_Either, bf), bg), bb) -> new_esEs1(xuu40000, xuu3000, bf, bg) 30.44/13.00 new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, app(ty_[], gb), dh) -> new_esEs3(xuu40001, xuu3001, gb) 30.44/13.00 new_esEs3(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs0(xuu40000, xuu3000, bdc, bdd, bde) 30.44/13.00 new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, app(app(ty_Either, fg), fh), dh) -> new_esEs1(xuu40001, xuu3001, fg, fh) 30.44/13.00 new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(ty_[], eg), dg, dh) -> new_esEs3(xuu40000, xuu3000, eg) 30.44/13.00 new_esEs1(Right(xuu40000), Right(xuu3000), baf, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs0(xuu40000, xuu3000, bba, bbb, bbc) 30.44/13.00 new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, app(app(ty_@2, fa), fb), dh) -> new_esEs(xuu40001, xuu3001, fa, fb) 30.44/13.00 new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(ty_[], ca), bb) -> new_esEs3(xuu40000, xuu3000, ca) 30.44/13.00 new_esEs1(Right(xuu40000), Right(xuu3000), baf, app(ty_[], bbg)) -> new_esEs3(xuu40000, xuu3000, bbg) 30.44/13.00 new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, dg, app(app(ty_@2, gc), gd)) -> new_esEs(xuu40002, xuu3002, gc, gd) 30.44/13.00 new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(app(app(ty_@3, bc), bd), be), bb) -> new_esEs0(xuu40000, xuu3000, bc, bd, be) 30.44/13.00 new_esEs1(Right(xuu40000), Right(xuu3000), baf, app(app(ty_@2, bag), bah)) -> new_esEs(xuu40000, xuu3000, bag, bah) 30.44/13.00 new_esEs1(Right(xuu40000), Right(xuu3000), baf, app(ty_Maybe, bbf)) -> new_esEs2(xuu40000, xuu3000, bbf) 30.44/13.00 new_esEs1(Right(xuu40000), Right(xuu3000), baf, app(app(ty_Either, bbd), bbe)) -> new_esEs1(xuu40000, xuu3000, bbd, bbe) 30.44/13.00 new_esEs2(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs0(xuu40000, xuu3000, bcb, bcc, bcd) 30.44/13.00 new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(app(app(ty_@3, ea), eb), ec), dg, dh) -> new_esEs0(xuu40000, xuu3000, ea, eb, ec) 30.44/13.00 new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, dg, app(app(ty_Either, gh), ha)) -> new_esEs1(xuu40002, xuu3002, gh, ha) 30.44/13.00 30.44/13.00 R is empty. 30.44/13.00 Q is empty. 30.44/13.00 We have to consider all minimal (P,Q,R)-chains. 30.44/13.00 ---------------------------------------- 30.44/13.00 30.44/13.00 (43) QDPSizeChangeProof (EQUIVALENT) 30.44/13.00 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.44/13.00 30.44/13.00 From the DPs we obtained the following set of size-change graphs: 30.44/13.00 *new_esEs2(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs0(xuu40000, xuu3000, bcb, bcc, bcd) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs2(Just(xuu40000), Just(xuu3000), app(app(ty_Either, bce), bcf)) -> new_esEs1(xuu40000, xuu3000, bce, bcf) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs2(Just(xuu40000), Just(xuu3000), app(ty_[], bch)) -> new_esEs3(xuu40000, xuu3000, bch) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs3(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs0(xuu40000, xuu3000, bdc, bdd, bde) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs3(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(app(ty_Either, bdf), bdg)) -> new_esEs1(xuu40000, xuu3000, bdf, bdg) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs2(Just(xuu40000), Just(xuu3000), app(ty_Maybe, bcg)) -> new_esEs2(xuu40000, xuu3000, bcg) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs2(Just(xuu40000), Just(xuu3000), app(app(ty_@2, bbh), bca)) -> new_esEs(xuu40000, xuu3000, bbh, bca) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs3(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(ty_Maybe, bdh)) -> new_esEs2(xuu40000, xuu3000, bdh) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs3(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(app(ty_@2, bda), bdb)) -> new_esEs(xuu40000, xuu3000, bda, bdb) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs1(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, hg), hh), baa), hf) -> new_esEs0(xuu40000, xuu3000, hg, hh, baa) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs1(Right(xuu40000), Right(xuu3000), baf, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs0(xuu40000, xuu3000, bba, bbb, bbc) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, app(app(app(ty_@3, fc), fd), ff), dh) -> new_esEs0(xuu40001, xuu3001, fc, fd, ff) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, dg, app(app(app(ty_@3, ge), gf), gg)) -> new_esEs0(xuu40002, xuu3002, ge, gf, gg) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(app(app(ty_@3, ea), eb), ec), dg, dh) -> new_esEs0(xuu40000, xuu3000, ea, eb, ec) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), cb, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs0(xuu40001, xuu3001, ce, cf, cg) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(app(app(ty_@3, bc), bd), be), bb) -> new_esEs0(xuu40000, xuu3000, bc, bd, be) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs1(Left(xuu40000), Left(xuu3000), app(app(ty_Either, bab), bac), hf) -> new_esEs1(xuu40000, xuu3000, bab, bac) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs1(Right(xuu40000), Right(xuu3000), baf, app(app(ty_Either, bbd), bbe)) -> new_esEs1(xuu40000, xuu3000, bbd, bbe) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs1(Left(xuu40000), Left(xuu3000), app(ty_[], bae), hf) -> new_esEs3(xuu40000, xuu3000, bae) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs1(Right(xuu40000), Right(xuu3000), baf, app(ty_[], bbg)) -> new_esEs3(xuu40000, xuu3000, bbg) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs1(Left(xuu40000), Left(xuu3000), app(ty_Maybe, bad), hf) -> new_esEs2(xuu40000, xuu3000, bad) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs1(Right(xuu40000), Right(xuu3000), baf, app(ty_Maybe, bbf)) -> new_esEs2(xuu40000, xuu3000, bbf) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs1(Left(xuu40000), Left(xuu3000), app(app(ty_@2, hd), he), hf) -> new_esEs(xuu40000, xuu3000, hd, he) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs1(Right(xuu40000), Right(xuu3000), baf, app(app(ty_@2, bag), bah)) -> new_esEs(xuu40000, xuu3000, bag, bah) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(app(ty_Either, ed), ee), dg, dh) -> new_esEs1(xuu40000, xuu3000, ed, ee) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, app(app(ty_Either, fg), fh), dh) -> new_esEs1(xuu40001, xuu3001, fg, fh) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, dg, app(app(ty_Either, gh), ha)) -> new_esEs1(xuu40002, xuu3002, gh, ha) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), cb, app(app(ty_Either, da), db)) -> new_esEs1(xuu40001, xuu3001, da, db) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(app(ty_Either, bf), bg), bb) -> new_esEs1(xuu40000, xuu3000, bf, bg) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs3(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(ty_[], bea)) -> new_esEs3(xuu40000, xuu3000, bea) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs3(:(xuu40000, xuu40001), :(xuu3000, xuu3001), beb) -> new_esEs3(xuu40001, xuu3001, beb) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, dg, app(ty_[], hc)) -> new_esEs3(xuu40002, xuu3002, hc) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, app(ty_[], gb), dh) -> new_esEs3(xuu40001, xuu3001, gb) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(ty_[], eg), dg, dh) -> new_esEs3(xuu40000, xuu3000, eg) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), cb, app(ty_[], dd)) -> new_esEs3(xuu40001, xuu3001, dd) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(ty_[], ca), bb) -> new_esEs3(xuu40000, xuu3000, ca) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, app(ty_Maybe, ga), dh) -> new_esEs2(xuu40001, xuu3001, ga) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(ty_Maybe, ef), dg, dh) -> new_esEs2(xuu40000, xuu3000, ef) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, dg, app(ty_Maybe, hb)) -> new_esEs2(xuu40002, xuu3002, hb) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(app(ty_@2, de), df), dg, dh) -> new_esEs(xuu40000, xuu3000, de, df) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, app(app(ty_@2, fa), fb), dh) -> new_esEs(xuu40001, xuu3001, fa, fb) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs0(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), eh, dg, app(app(ty_@2, gc), gd)) -> new_esEs(xuu40002, xuu3002, gc, gd) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), cb, app(ty_Maybe, dc)) -> new_esEs2(xuu40001, xuu3001, dc) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(ty_Maybe, bh), bb) -> new_esEs2(xuu40000, xuu3000, bh) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(app(ty_@2, h), ba), bb) -> new_esEs(xuu40000, xuu3000, h, ba) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.44/13.00 30.44/13.00 30.44/13.00 *new_esEs(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), cb, app(app(ty_@2, cc), cd)) -> new_esEs(xuu40001, xuu3001, cc, cd) 30.44/13.00 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.44/13.00 30.44/13.00 30.44/13.00 ---------------------------------------- 30.44/13.00 30.44/13.00 (44) 30.44/13.00 YES 30.44/13.00 30.44/13.00 ---------------------------------------- 30.44/13.00 30.44/13.00 (45) 30.44/13.00 Obligation: 30.44/13.00 Q DP problem: 30.44/13.00 The TRS P consists of the following rules: 30.44/13.00 30.44/13.00 new_primCompAux(xuu30000, xuu31000, xuu168, app(ty_[], ba)) -> new_compare0(xuu30000, xuu31000, ba) 30.44/13.00 new_compare22(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, ce), app(ty_Maybe, eh)), eb)) -> new_lt2(xuu30001, xuu31001, eh) 30.44/13.00 new_compare20(xuu30000, xuu31000, False, cb, cc, cd) -> new_ltEs0(xuu30000, xuu31000, cb, cc, cd) 30.44/13.00 new_ltEs3(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), bbg, app(app(ty_Either, bcd), bce)) -> new_ltEs1(xuu30001, xuu31001, bcd, bce) 30.44/13.00 new_ltEs0(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), ce, cf, app(app(app(ty_@3, da), db), dc)) -> new_ltEs0(xuu30002, xuu31002, da, db, dc) 30.44/13.00 new_lt2(xuu30000, xuu31000, fg) -> new_compare22(xuu30000, xuu31000, new_esEs6(xuu30000, xuu31000, fg), fg) 30.44/13.00 new_compare22(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, ce), app(app(ty_Either, ef), eg)), eb)) -> new_lt1(xuu30001, xuu31001, ef, eg) 30.44/13.00 new_compare22(Just(Right(xuu30000)), Just(Right(xuu31000)), False, app(app(ty_Either, hd), app(app(ty_Either, baa), bab))) -> new_ltEs1(xuu30000, xuu31000, baa, bab) 30.44/13.00 new_compare22(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, app(app(ty_@2, bea), beb)), bdb)) -> new_lt3(xuu30000, xuu31000, bea, beb) 30.44/13.00 new_compare22(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, ce), cf), app(app(ty_@2, dg), dh))) -> new_ltEs3(xuu30002, xuu31002, dg, dh) 30.44/13.00 new_ltEs1(Right(xuu30000), Right(xuu31000), hd, app(ty_[], he)) -> new_ltEs(xuu30000, xuu31000, he) 30.44/13.01 new_ltEs1(Left(xuu30000), Left(xuu31000), app(ty_Maybe, ha), gc) -> new_ltEs2(xuu30000, xuu31000, ha) 30.44/13.01 new_ltEs1(Left(xuu30000), Left(xuu31000), app(ty_[], gb), gc) -> new_ltEs(xuu30000, xuu31000, gb) 30.44/13.01 new_compare22(Just(Just(xuu30000)), Just(Just(xuu31000)), False, app(ty_Maybe, app(app(ty_Either, bbb), bbc))) -> new_ltEs1(xuu30000, xuu31000, bbb, bbc) 30.44/13.01 new_ltEs3(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), bbg, app(app(ty_@2, bcg), bch)) -> new_ltEs3(xuu30001, xuu31001, bcg, bch) 30.44/13.01 new_ltEs1(Right(xuu30000), Right(xuu31000), hd, app(app(ty_Either, baa), bab)) -> new_ltEs1(xuu30000, xuu31000, baa, bab) 30.44/13.01 new_ltEs1(Left(xuu30000), Left(xuu31000), app(app(ty_@2, hb), hc), gc) -> new_ltEs3(xuu30000, xuu31000, hb, hc) 30.44/13.01 new_compare22(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, bbg), app(app(app(ty_@3, bca), bcb), bcc))) -> new_ltEs0(xuu30001, xuu31001, bca, bcb, bcc) 30.44/13.01 new_compare22(Just(Just(xuu30000)), Just(Just(xuu31000)), False, app(ty_Maybe, app(app(ty_@2, bbe), bbf))) -> new_ltEs3(xuu30000, xuu31000, bbe, bbf) 30.44/13.01 new_compare22(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, bbg), app(ty_Maybe, bcf))) -> new_ltEs2(xuu30001, xuu31001, bcf) 30.44/13.01 new_ltEs3(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), app(app(ty_@2, bea), beb), bdb) -> new_lt3(xuu30000, xuu31000, bea, beb) 30.44/13.01 new_ltEs3(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), bbg, app(ty_Maybe, bcf)) -> new_ltEs2(xuu30001, xuu31001, bcf) 30.44/13.01 new_compare22(Just(Right(xuu30000)), Just(Right(xuu31000)), False, app(app(ty_Either, hd), app(ty_Maybe, bac))) -> new_ltEs2(xuu30000, xuu31000, bac) 30.44/13.01 new_ltEs(:(xuu30000, xuu30001), :(xuu31000, xuu31001), h) -> new_compare0(xuu30001, xuu31001, h) 30.44/13.01 new_compare22(Just(Right(xuu30000)), Just(Right(xuu31000)), False, app(app(ty_Either, hd), app(app(ty_@2, bad), bae))) -> new_ltEs3(xuu30000, xuu31000, bad, bae) 30.44/13.01 new_compare22(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, ce), cf), app(ty_[], cg))) -> new_ltEs(xuu30002, xuu31002, cg) 30.44/13.01 new_ltEs0(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), app(app(app(ty_@3, cb), cc), cd), cf, eb) -> new_compare20(xuu30000, xuu31000, new_esEs4(xuu30000, xuu31000, cb, cc, cd), cb, cc, cd) 30.44/13.01 new_compare23(xuu30000, xuu31000, False, fh, ga) -> new_ltEs3(xuu30000, xuu31000, fh, ga) 30.44/13.01 new_compare22(Just(Left(xuu30000)), Just(Left(xuu31000)), False, app(app(ty_Either, app(app(app(ty_@3, gd), ge), gf)), gc)) -> new_ltEs0(xuu30000, xuu31000, gd, ge, gf) 30.44/13.01 new_ltEs0(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), ce, app(ty_[], ea), eb) -> new_lt(xuu30001, xuu31001, ea) 30.44/13.01 new_compare2(xuu30000, xuu31000, fd, ff) -> new_compare21(xuu30000, xuu31000, new_esEs5(xuu30000, xuu31000, fd, ff), fd, ff) 30.44/13.01 new_ltEs1(Right(xuu30000), Right(xuu31000), hd, app(ty_Maybe, bac)) -> new_ltEs2(xuu30000, xuu31000, bac) 30.44/13.01 new_compare22(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, app(app(ty_Either, bdf), bdg)), bdb)) -> new_lt1(xuu30000, xuu31000, bdf, bdg) 30.44/13.01 new_compare22(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, ce), cf), app(app(app(ty_@3, da), db), dc))) -> new_ltEs0(xuu30002, xuu31002, da, db, dc) 30.44/13.01 new_compare22(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, app(ty_[], fc)), cf), eb)) -> new_compare0(xuu30000, xuu31000, fc) 30.44/13.01 new_compare22(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, bbg), app(app(ty_@2, bcg), bch))) -> new_ltEs3(xuu30001, xuu31001, bcg, bch) 30.44/13.01 new_ltEs3(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), app(ty_[], bda), bdb) -> new_lt(xuu30000, xuu31000, bda) 30.44/13.01 new_compare22(Just(Left(xuu30000)), Just(Left(xuu31000)), False, app(app(ty_Either, app(app(ty_Either, gg), gh)), gc)) -> new_ltEs1(xuu30000, xuu31000, gg, gh) 30.44/13.01 new_compare22(Just(Just(xuu30000)), Just(Just(xuu31000)), False, app(ty_Maybe, app(app(app(ty_@3, bag), bah), bba))) -> new_ltEs0(xuu30000, xuu31000, bag, bah, bba) 30.44/13.01 new_compare22(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, app(ty_[], bda)), bdb)) -> new_lt(xuu30000, xuu31000, bda) 30.44/13.01 new_compare22(Just(Just(xuu30000)), Just(Just(xuu31000)), False, app(ty_Maybe, app(ty_[], baf))) -> new_ltEs(xuu30000, xuu31000, baf) 30.44/13.01 new_compare22(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, app(app(ty_Either, fd), ff)), cf), eb)) -> new_compare21(xuu30000, xuu31000, new_esEs5(xuu30000, xuu31000, fd, ff), fd, ff) 30.44/13.01 new_compare22(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, ce), app(ty_[], ea)), eb)) -> new_lt(xuu30001, xuu31001, ea) 30.44/13.01 new_compare22(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, bbg), app(ty_[], bbh))) -> new_ltEs(xuu30001, xuu31001, bbh) 30.44/13.01 new_ltEs(:(xuu30000, xuu30001), :(xuu31000, xuu31001), h) -> new_primCompAux(xuu30000, xuu31000, new_compare(xuu30001, xuu31001, h), h) 30.44/13.01 new_ltEs3(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), bbg, app(app(app(ty_@3, bca), bcb), bcc)) -> new_ltEs0(xuu30001, xuu31001, bca, bcb, bcc) 30.44/13.01 new_compare4(xuu30000, xuu31000, fh, ga) -> new_compare23(xuu30000, xuu31000, new_esEs7(xuu30000, xuu31000, fh, ga), fh, ga) 30.44/13.01 new_compare0(:(xuu30000, xuu30001), :(xuu31000, xuu31001), h) -> new_compare0(xuu30001, xuu31001, h) 30.44/13.01 new_ltEs0(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), ce, cf, app(app(ty_Either, dd), de)) -> new_ltEs1(xuu30002, xuu31002, dd, de) 30.44/13.01 new_ltEs2(Just(xuu30000), Just(xuu31000), app(ty_[], baf)) -> new_ltEs(xuu30000, xuu31000, baf) 30.44/13.01 new_compare22(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, ce), app(app(ty_@2, fa), fb)), eb)) -> new_lt3(xuu30001, xuu31001, fa, fb) 30.44/13.01 new_ltEs2(Just(xuu30000), Just(xuu31000), app(ty_Maybe, bbd)) -> new_ltEs2(xuu30000, xuu31000, bbd) 30.44/13.01 new_compare22(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, ce), app(app(app(ty_@3, ec), ed), ee)), eb)) -> new_lt0(xuu30001, xuu31001, ec, ed, ee) 30.44/13.01 new_compare22(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, app(ty_Maybe, fg)), cf), eb)) -> new_compare22(xuu30000, xuu31000, new_esEs6(xuu30000, xuu31000, fg), fg) 30.44/13.01 new_compare22(Just(Left(xuu30000)), Just(Left(xuu31000)), False, app(app(ty_Either, app(ty_Maybe, ha)), gc)) -> new_ltEs2(xuu30000, xuu31000, ha) 30.44/13.01 new_ltEs0(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), ce, cf, app(ty_[], cg)) -> new_ltEs(xuu30002, xuu31002, cg) 30.44/13.01 new_ltEs0(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), app(ty_Maybe, fg), cf, eb) -> new_compare22(xuu30000, xuu31000, new_esEs6(xuu30000, xuu31000, fg), fg) 30.44/13.01 new_ltEs2(Just(xuu30000), Just(xuu31000), app(app(ty_@2, bbe), bbf)) -> new_ltEs3(xuu30000, xuu31000, bbe, bbf) 30.44/13.01 new_compare21(xuu30000, xuu31000, False, fd, ff) -> new_ltEs1(xuu30000, xuu31000, fd, ff) 30.44/13.01 new_primCompAux(xuu30000, xuu31000, xuu168, app(ty_Maybe, bg)) -> new_compare3(xuu30000, xuu31000, bg) 30.44/13.01 new_ltEs0(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), ce, app(app(ty_@2, fa), fb), eb) -> new_lt3(xuu30001, xuu31001, fa, fb) 30.44/13.01 new_compare22(Just(Left(xuu30000)), Just(Left(xuu31000)), False, app(app(ty_Either, app(ty_[], gb)), gc)) -> new_ltEs(xuu30000, xuu31000, gb) 30.44/13.01 new_ltEs3(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), bbg, app(ty_[], bbh)) -> new_ltEs(xuu30001, xuu31001, bbh) 30.44/13.01 new_ltEs0(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), ce, app(app(ty_Either, ef), eg), eb) -> new_lt1(xuu30001, xuu31001, ef, eg) 30.44/13.01 new_compare22(Just(:(xuu30000, xuu30001)), Just(:(xuu31000, xuu31001)), False, app(ty_[], h)) -> new_primCompAux(xuu30000, xuu31000, new_compare(xuu30001, xuu31001, h), h) 30.44/13.01 new_ltEs0(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), app(ty_[], fc), cf, eb) -> new_compare0(xuu30000, xuu31000, fc) 30.44/13.01 new_compare22(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, app(app(app(ty_@3, bdc), bdd), bde)), bdb)) -> new_lt0(xuu30000, xuu31000, bdc, bdd, bde) 30.44/13.01 new_ltEs2(Just(xuu30000), Just(xuu31000), app(app(app(ty_@3, bag), bah), bba)) -> new_ltEs0(xuu30000, xuu31000, bag, bah, bba) 30.44/13.01 new_compare22(Just(:(xuu30000, xuu30001)), Just(:(xuu31000, xuu31001)), False, app(ty_[], h)) -> new_compare0(xuu30001, xuu31001, h) 30.44/13.01 new_ltEs2(Just(xuu30000), Just(xuu31000), app(app(ty_Either, bbb), bbc)) -> new_ltEs1(xuu30000, xuu31000, bbb, bbc) 30.44/13.01 new_primCompAux(xuu30000, xuu31000, xuu168, app(app(ty_Either, be), bf)) -> new_compare2(xuu30000, xuu31000, be, bf) 30.44/13.01 new_ltEs0(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), app(app(ty_Either, fd), ff), cf, eb) -> new_compare21(xuu30000, xuu31000, new_esEs5(xuu30000, xuu31000, fd, ff), fd, ff) 30.44/13.01 new_ltEs1(Left(xuu30000), Left(xuu31000), app(app(app(ty_@3, gd), ge), gf), gc) -> new_ltEs0(xuu30000, xuu31000, gd, ge, gf) 30.44/13.01 new_compare3(xuu30000, xuu31000, fg) -> new_compare22(xuu30000, xuu31000, new_esEs6(xuu30000, xuu31000, fg), fg) 30.44/13.01 new_ltEs0(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), ce, app(app(app(ty_@3, ec), ed), ee), eb) -> new_lt0(xuu30001, xuu31001, ec, ed, ee) 30.44/13.01 new_ltEs0(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), ce, cf, app(app(ty_@2, dg), dh)) -> new_ltEs3(xuu30002, xuu31002, dg, dh) 30.44/13.01 new_lt0(xuu30000, xuu31000, cb, cc, cd) -> new_compare20(xuu30000, xuu31000, new_esEs4(xuu30000, xuu31000, cb, cc, cd), cb, cc, cd) 30.44/13.01 new_compare1(xuu30000, xuu31000, cb, cc, cd) -> new_compare20(xuu30000, xuu31000, new_esEs4(xuu30000, xuu31000, cb, cc, cd), cb, cc, cd) 30.44/13.01 new_ltEs3(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), app(app(app(ty_@3, bdc), bdd), bde), bdb) -> new_lt0(xuu30000, xuu31000, bdc, bdd, bde) 30.44/13.01 new_compare0(:(xuu30000, xuu30001), :(xuu31000, xuu31001), h) -> new_primCompAux(xuu30000, xuu31000, new_compare(xuu30001, xuu31001, h), h) 30.44/13.01 new_ltEs1(Left(xuu30000), Left(xuu31000), app(app(ty_Either, gg), gh), gc) -> new_ltEs1(xuu30000, xuu31000, gg, gh) 30.44/13.01 new_ltEs0(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), ce, cf, app(ty_Maybe, df)) -> new_ltEs2(xuu30002, xuu31002, df) 30.44/13.01 new_compare22(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, app(app(app(ty_@3, cb), cc), cd)), cf), eb)) -> new_compare20(xuu30000, xuu31000, new_esEs4(xuu30000, xuu31000, cb, cc, cd), cb, cc, cd) 30.44/13.01 new_ltEs3(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), app(ty_Maybe, bdh), bdb) -> new_lt2(xuu30000, xuu31000, bdh) 30.44/13.01 new_compare22(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, bbg), app(app(ty_Either, bcd), bce))) -> new_ltEs1(xuu30001, xuu31001, bcd, bce) 30.44/13.01 new_compare22(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, app(app(ty_@2, fh), ga)), cf), eb)) -> new_compare23(xuu30000, xuu31000, new_esEs7(xuu30000, xuu31000, fh, ga), fh, ga) 30.44/13.01 new_compare22(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, app(ty_Maybe, bdh)), bdb)) -> new_lt2(xuu30000, xuu31000, bdh) 30.44/13.01 new_lt(xuu30000, xuu31000, fc) -> new_compare0(xuu30000, xuu31000, fc) 30.44/13.01 new_ltEs1(Right(xuu30000), Right(xuu31000), hd, app(app(app(ty_@3, hf), hg), hh)) -> new_ltEs0(xuu30000, xuu31000, hf, hg, hh) 30.44/13.01 new_primCompAux(xuu30000, xuu31000, xuu168, app(app(ty_@2, bh), ca)) -> new_compare4(xuu30000, xuu31000, bh, ca) 30.44/13.01 new_compare22(Just(Just(xuu30000)), Just(Just(xuu31000)), False, app(ty_Maybe, app(ty_Maybe, bbd))) -> new_ltEs2(xuu30000, xuu31000, bbd) 30.44/13.01 new_ltEs0(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), ce, app(ty_Maybe, eh), eb) -> new_lt2(xuu30001, xuu31001, eh) 30.44/13.01 new_compare22(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, ce), cf), app(ty_Maybe, df))) -> new_ltEs2(xuu30002, xuu31002, df) 30.44/13.01 new_compare22(Just(Right(xuu30000)), Just(Right(xuu31000)), False, app(app(ty_Either, hd), app(ty_[], he))) -> new_ltEs(xuu30000, xuu31000, he) 30.44/13.01 new_lt1(xuu30000, xuu31000, fd, ff) -> new_compare21(xuu30000, xuu31000, new_esEs5(xuu30000, xuu31000, fd, ff), fd, ff) 30.44/13.01 new_ltEs0(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), app(app(ty_@2, fh), ga), cf, eb) -> new_compare23(xuu30000, xuu31000, new_esEs7(xuu30000, xuu31000, fh, ga), fh, ga) 30.44/13.01 new_lt3(xuu30000, xuu31000, fh, ga) -> new_compare23(xuu30000, xuu31000, new_esEs7(xuu30000, xuu31000, fh, ga), fh, ga) 30.44/13.01 new_compare22(Just(Right(xuu30000)), Just(Right(xuu31000)), False, app(app(ty_Either, hd), app(app(app(ty_@3, hf), hg), hh))) -> new_ltEs0(xuu30000, xuu31000, hf, hg, hh) 30.44/13.01 new_compare22(Just(Left(xuu30000)), Just(Left(xuu31000)), False, app(app(ty_Either, app(app(ty_@2, hb), hc)), gc)) -> new_ltEs3(xuu30000, xuu31000, hb, hc) 30.44/13.01 new_primCompAux(xuu30000, xuu31000, xuu168, app(app(app(ty_@3, bb), bc), bd)) -> new_compare1(xuu30000, xuu31000, bb, bc, bd) 30.44/13.01 new_ltEs1(Right(xuu30000), Right(xuu31000), hd, app(app(ty_@2, bad), bae)) -> new_ltEs3(xuu30000, xuu31000, bad, bae) 30.44/13.01 new_compare22(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, ce), cf), app(app(ty_Either, dd), de))) -> new_ltEs1(xuu30002, xuu31002, dd, de) 30.44/13.01 new_ltEs3(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), app(app(ty_Either, bdf), bdg), bdb) -> new_lt1(xuu30000, xuu31000, bdf, bdg) 30.44/13.01 30.44/13.01 The TRS R consists of the following rules: 30.44/13.01 30.44/13.01 new_ltEs18(xuu3000, xuu3100, ty_Integer) -> new_ltEs17(xuu3000, xuu3100) 30.44/13.01 new_compare28(xuu30000, xuu31000, False, cb, cc, cd) -> new_compare16(xuu30000, xuu31000, new_ltEs6(xuu30000, xuu31000, cb, cc, cd), cb, cc, cd) 30.44/13.01 new_lt7(xuu30000, xuu31000) -> new_esEs10(new_compare17(xuu30000, xuu31000), LT) 30.44/13.01 new_esEs23(xuu30000, xuu31000, ty_Bool) -> new_esEs11(xuu30000, xuu31000) 30.44/13.01 new_esEs27(xuu40001, xuu3001, app(ty_Ratio, daf)) -> new_esEs13(xuu40001, xuu3001, daf) 30.44/13.01 new_primCmpInt(Neg(Succ(xuu3000)), Pos(xuu310)) -> LT 30.44/13.01 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 30.44/13.01 new_esEs27(xuu40001, xuu3001, ty_Int) -> new_esEs9(xuu40001, xuu3001) 30.44/13.01 new_esEs5(Right(xuu40000), Right(xuu3000), bfh, app(ty_Ratio, bgh)) -> new_esEs13(xuu40000, xuu3000, bgh) 30.44/13.01 new_esEs23(xuu30000, xuu31000, app(ty_Maybe, fg)) -> new_esEs6(xuu30000, xuu31000, fg) 30.44/13.01 new_pePe(True, xuu167) -> True 30.44/13.01 new_ltEs19(xuu30002, xuu31002, app(app(app(ty_@3, da), db), dc)) -> new_ltEs6(xuu30002, xuu31002, da, db, dc) 30.44/13.01 new_ltEs20(xuu30001, xuu31001, ty_Ordering) -> new_ltEs15(xuu30001, xuu31001) 30.44/13.01 new_primCmpInt(Pos(Zero), Pos(Succ(xuu3100))) -> new_primCmpNat0(Zero, xuu3100) 30.44/13.01 new_ltEs6(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), ce, cf, eb) -> new_pePe(new_lt13(xuu30000, xuu31000, ce), new_asAs(new_esEs23(xuu30000, xuu31000, ce), new_pePe(new_lt12(xuu30001, xuu31001, cf), new_asAs(new_esEs24(xuu30001, xuu31001, cf), new_ltEs19(xuu30002, xuu31002, eb))))) 30.44/13.01 new_esEs5(Right(xuu40000), Right(xuu3000), bfh, app(ty_[], bhb)) -> new_esEs16(xuu40000, xuu3000, bhb) 30.44/13.01 new_esEs5(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, beh), bfa), bfb), beg) -> new_esEs4(xuu40000, xuu3000, beh, bfa, bfb) 30.44/13.01 new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_Ratio, bfe), beg) -> new_esEs13(xuu40000, xuu3000, bfe) 30.44/13.01 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Double) -> new_ltEs14(xuu30000, xuu31000) 30.44/13.01 new_lt20(xuu30000, xuu31000, ty_Bool) -> new_lt15(xuu30000, xuu31000) 30.44/13.01 new_compare(:(xuu30000, xuu30001), [], h) -> GT 30.44/13.01 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 30.44/13.01 new_esEs27(xuu40001, xuu3001, app(ty_[], dah)) -> new_esEs16(xuu40001, xuu3001, dah) 30.44/13.01 new_esEs27(xuu40001, xuu3001, app(app(ty_Either, dad), dae)) -> new_esEs5(xuu40001, xuu3001, dad, dae) 30.44/13.01 new_primCmpInt(Pos(Zero), Neg(Succ(xuu3100))) -> GT 30.44/13.01 new_compare(:(xuu30000, xuu30001), :(xuu31000, xuu31001), h) -> new_primCompAux0(xuu30000, xuu31000, new_compare(xuu30001, xuu31001, h), h) 30.44/13.01 new_esEs9(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) 30.44/13.01 new_esEs22(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) 30.44/13.01 new_esEs18(xuu40000, xuu3000, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs4(xuu40000, xuu3000, cab, cac, cad) 30.44/13.01 new_ltEs19(xuu30002, xuu31002, app(ty_[], cg)) -> new_ltEs5(xuu30002, xuu31002, cg) 30.44/13.01 new_lt12(xuu30001, xuu31001, ty_Char) -> new_lt7(xuu30001, xuu31001) 30.44/13.01 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Char) -> new_ltEs9(xuu30000, xuu31000) 30.44/13.01 new_esEs26(xuu40000, xuu3000, app(app(ty_@2, cge), cgf)) -> new_esEs7(xuu40000, xuu3000, cge, cgf) 30.44/13.01 new_ltEs4(Right(xuu30000), Right(xuu31000), hd, ty_Int) -> new_ltEs7(xuu30000, xuu31000) 30.44/13.01 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.44/13.01 new_lt13(xuu30000, xuu31000, app(ty_Ratio, bhf)) -> new_lt5(xuu30000, xuu31000, bhf) 30.44/13.01 new_esEs6(Just(xuu40000), Just(xuu3000), app(app(ty_Either, cfc), cfd)) -> new_esEs5(xuu40000, xuu3000, cfc, cfd) 30.44/13.01 new_ltEs15(EQ, LT) -> False 30.44/13.01 new_compare17(Char(xuu30000), Char(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) 30.44/13.01 new_ltEs8(xuu3000, xuu3100) -> new_fsEs(new_compare8(xuu3000, xuu3100)) 30.44/13.01 new_esEs28(xuu40002, xuu3002, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_esEs4(xuu40002, xuu3002, dbc, dbd, dbe) 30.44/13.01 new_primCmpNat1(Succ(xuu30000), Succ(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) 30.44/13.01 new_esEs23(xuu30000, xuu31000, app(app(ty_Either, fd), ff)) -> new_esEs5(xuu30000, xuu31000, fd, ff) 30.44/13.01 new_ltEs19(xuu30002, xuu31002, ty_Ordering) -> new_ltEs15(xuu30002, xuu31002) 30.44/13.01 new_compare26(xuu30000, xuu31000, True) -> EQ 30.44/13.01 new_compare24(Nothing, Just(xuu3100), False, bhc) -> LT 30.44/13.01 new_esEs18(xuu40000, xuu3000, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.44/13.01 new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False 30.44/13.01 new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False 30.44/13.01 new_ltEs4(Left(xuu30000), Left(xuu31000), app(app(ty_@2, hb), hc), gc) -> new_ltEs13(xuu30000, xuu31000, hb, hc) 30.44/13.01 new_ltEs15(GT, LT) -> False 30.44/13.01 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.44/13.01 new_esEs24(xuu30001, xuu31001, ty_Double) -> new_esEs17(xuu30001, xuu31001) 30.44/13.01 new_compare25(xuu30000, xuu31000, False, fd, ff) -> new_compare11(xuu30000, xuu31000, new_ltEs4(xuu30000, xuu31000, fd, ff), fd, ff) 30.44/13.01 new_ltEs12(Just(xuu30000), Just(xuu31000), app(app(ty_Either, bbb), bbc)) -> new_ltEs4(xuu30000, xuu31000, bbb, bbc) 30.44/13.01 new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_Maybe, bff), beg) -> new_esEs6(xuu40000, xuu3000, bff) 30.44/13.01 new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.44/13.01 new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) 30.44/13.01 new_esEs27(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) 30.44/13.01 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Char, beg) -> new_esEs12(xuu40000, xuu3000) 30.44/13.01 new_esEs10(GT, GT) -> True 30.44/13.01 new_ltEs4(Left(xuu30000), Left(xuu31000), app(ty_Maybe, ha), gc) -> new_ltEs12(xuu30000, xuu31000, ha) 30.44/13.01 new_esEs5(Right(xuu40000), Right(xuu3000), bfh, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.44/13.01 new_not(True) -> False 30.44/13.01 new_esEs5(Left(xuu40000), Left(xuu3000), app(ty_[], bfg), beg) -> new_esEs16(xuu40000, xuu3000, bfg) 30.44/13.01 new_lt13(xuu30000, xuu31000, app(app(app(ty_@3, cb), cc), cd)) -> new_lt11(xuu30000, xuu31000, cb, cc, cd) 30.44/13.01 new_esEs28(xuu40002, xuu3002, ty_Bool) -> new_esEs11(xuu40002, xuu3002) 30.44/13.01 new_ltEs5(xuu3000, xuu3100, h) -> new_fsEs(new_compare(xuu3000, xuu3100, h)) 30.44/13.01 new_primCompAux00(xuu182, LT) -> LT 30.44/13.01 new_lt12(xuu30001, xuu31001, ty_Double) -> new_lt17(xuu30001, xuu31001) 30.44/13.01 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Float) -> new_ltEs16(xuu30000, xuu31000) 30.44/13.01 new_ltEs20(xuu30001, xuu31001, ty_Integer) -> new_ltEs17(xuu30001, xuu31001) 30.44/13.01 new_esEs25(xuu30000, xuu31000, ty_Ordering) -> new_esEs10(xuu30000, xuu31000) 30.44/13.01 new_esEs23(xuu30000, xuu31000, app(ty_Ratio, bhf)) -> new_esEs13(xuu30000, xuu31000, bhf) 30.44/13.01 new_esEs27(xuu40001, xuu3001, ty_Bool) -> new_esEs11(xuu40001, xuu3001) 30.44/13.01 new_esEs26(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.44/13.01 new_esEs5(Right(xuu40000), Right(xuu3000), bfh, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.44/13.01 new_lt12(xuu30001, xuu31001, app(app(app(ty_@3, ec), ed), ee)) -> new_lt11(xuu30001, xuu31001, ec, ed, ee) 30.44/13.01 new_lt13(xuu30000, xuu31000, app(ty_Maybe, fg)) -> new_lt6(xuu30000, xuu31000, fg) 30.44/13.01 new_esEs5(Right(xuu40000), Right(xuu3000), bfh, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.44/13.01 new_esEs19(xuu40000, xuu3000, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.44/13.01 new_esEs25(xuu30000, xuu31000, ty_Float) -> new_esEs8(xuu30000, xuu31000) 30.44/13.01 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Double, beg) -> new_esEs17(xuu40000, xuu3000) 30.44/13.01 new_lt19(xuu30000, xuu31000) -> new_esEs10(new_compare7(xuu30000, xuu31000), LT) 30.44/13.01 new_compare31(xuu30000, xuu31000, app(app(app(ty_@3, bb), bc), bd)) -> new_compare29(xuu30000, xuu31000, bb, bc, bd) 30.44/13.01 new_ltEs20(xuu30001, xuu31001, app(app(app(ty_@3, bca), bcb), bcc)) -> new_ltEs6(xuu30001, xuu31001, bca, bcb, bcc) 30.44/13.01 new_esEs5(Left(xuu40000), Left(xuu3000), app(app(ty_@2, bee), bef), beg) -> new_esEs7(xuu40000, xuu3000, bee, bef) 30.44/13.01 new_primEqNat0(Succ(xuu400000), Zero) -> False 30.44/13.01 new_primEqNat0(Zero, Succ(xuu30000)) -> False 30.44/13.01 new_esEs5(Right(xuu40000), Right(xuu3000), bfh, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.44/13.01 new_esEs19(xuu40000, xuu3000, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.44/13.01 new_esEs14(@0, @0) -> True 30.44/13.01 new_lt12(xuu30001, xuu31001, app(app(ty_@2, fa), fb)) -> new_lt16(xuu30001, xuu31001, fa, fb) 30.44/13.01 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Bool, gc) -> new_ltEs11(xuu30000, xuu31000) 30.44/13.01 new_esEs26(xuu40000, xuu3000, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.44/13.01 new_lt11(xuu30000, xuu31000, cb, cc, cd) -> new_esEs10(new_compare29(xuu30000, xuu31000, cb, cc, cd), LT) 30.44/13.01 new_esEs23(xuu30000, xuu31000, ty_Int) -> new_esEs9(xuu30000, xuu31000) 30.44/13.01 new_ltEs15(GT, EQ) -> False 30.44/13.01 new_lt20(xuu30000, xuu31000, app(ty_[], bda)) -> new_lt14(xuu30000, xuu31000, bda) 30.44/13.01 new_esEs26(xuu40000, xuu3000, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.44/13.01 new_lt20(xuu30000, xuu31000, ty_Integer) -> new_lt19(xuu30000, xuu31000) 30.44/13.01 new_primCompAux00(xuu182, GT) -> GT 30.44/13.01 new_primCmpInt(Neg(Zero), Neg(Succ(xuu3100))) -> new_primCmpNat2(xuu3100, Zero) 30.44/13.01 new_esEs10(EQ, EQ) -> True 30.44/13.01 new_esEs6(Just(xuu40000), Just(xuu3000), app(ty_Ratio, cfe)) -> new_esEs13(xuu40000, xuu3000, cfe) 30.44/13.01 new_lt16(xuu30000, xuu31000, fh, ga) -> new_esEs10(new_compare15(xuu30000, xuu31000, fh, ga), LT) 30.44/13.01 new_esEs17(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs9(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) 30.44/13.01 new_esEs24(xuu30001, xuu31001, app(app(app(ty_@3, ec), ed), ee)) -> new_esEs4(xuu30001, xuu31001, ec, ed, ee) 30.44/13.01 new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.44/13.01 new_esEs23(xuu30000, xuu31000, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs4(xuu30000, xuu31000, cb, cc, cd) 30.44/13.01 new_compare14(xuu30000, xuu31000, True) -> LT 30.44/13.01 new_primCmpInt(Pos(Succ(xuu3000)), Neg(xuu310)) -> GT 30.44/13.01 new_lt13(xuu30000, xuu31000, ty_Integer) -> new_lt19(xuu30000, xuu31000) 30.44/13.01 new_ltEs18(xuu3000, xuu3100, ty_Bool) -> new_ltEs11(xuu3000, xuu3100) 30.44/13.01 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_@0) -> new_ltEs8(xuu30000, xuu31000) 30.44/13.01 new_esEs28(xuu40002, xuu3002, ty_Double) -> new_esEs17(xuu40002, xuu3002) 30.44/13.01 new_lt13(xuu30000, xuu31000, ty_Char) -> new_lt7(xuu30000, xuu31000) 30.44/13.01 new_compare110(xuu30000, xuu31000, True, fh, ga) -> LT 30.44/13.01 new_ltEs4(Right(xuu30000), Right(xuu31000), hd, app(ty_Ratio, bed)) -> new_ltEs10(xuu30000, xuu31000, bed) 30.44/13.01 new_esEs23(xuu30000, xuu31000, ty_Double) -> new_esEs17(xuu30000, xuu31000) 30.44/13.01 new_lt20(xuu30000, xuu31000, app(app(ty_Either, bdf), bdg)) -> new_lt8(xuu30000, xuu31000, bdf, bdg) 30.44/13.01 new_lt13(xuu30000, xuu31000, ty_Double) -> new_lt17(xuu30000, xuu31000) 30.44/13.01 new_primPlusNat1(Succ(xuu25200), Succ(xuu9400)) -> Succ(Succ(new_primPlusNat1(xuu25200, xuu9400))) 30.44/13.01 new_primCompAux0(xuu30000, xuu31000, xuu168, h) -> new_primCompAux00(xuu168, new_compare31(xuu30000, xuu31000, h)) 30.44/13.01 new_esEs26(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.44/13.01 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Integer, gc) -> new_ltEs17(xuu30000, xuu31000) 30.44/13.01 new_esEs10(LT, EQ) -> False 30.44/13.01 new_esEs10(EQ, LT) -> False 30.44/13.01 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.44/13.01 new_esEs20(xuu40001, xuu3001, ty_Ordering) -> new_esEs10(xuu40001, xuu3001) 30.44/13.01 new_compare13(xuu30000, xuu31000, fg) -> new_compare24(xuu30000, xuu31000, new_esEs6(xuu30000, xuu31000, fg), fg) 30.44/13.01 new_primCmpNat0(Succ(xuu3100), xuu3000) -> new_primCmpNat1(xuu3100, xuu3000) 30.44/13.01 new_compare210(xuu30000, xuu31000, True) -> EQ 30.44/13.01 new_esEs20(xuu40001, xuu3001, ty_Float) -> new_esEs8(xuu40001, xuu3001) 30.44/13.01 new_esEs28(xuu40002, xuu3002, ty_Char) -> new_esEs12(xuu40002, xuu3002) 30.44/13.01 new_lt9(xuu300, xuu310) -> new_esEs10(new_compare6(xuu300, xuu310), LT) 30.44/13.01 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Bool) -> new_ltEs11(xuu30000, xuu31000) 30.44/13.01 new_esEs28(xuu40002, xuu3002, app(ty_[], dcb)) -> new_esEs16(xuu40002, xuu3002, dcb) 30.44/13.01 new_esEs27(xuu40001, xuu3001, app(app(ty_@2, chg), chh)) -> new_esEs7(xuu40001, xuu3001, chg, chh) 30.44/13.01 new_ltEs4(Right(xuu30000), Right(xuu31000), hd, ty_Char) -> new_ltEs9(xuu30000, xuu31000) 30.44/13.01 new_ltEs18(xuu3000, xuu3100, app(ty_Maybe, bhe)) -> new_ltEs12(xuu3000, xuu3100, bhe) 30.44/13.01 new_esEs19(xuu40000, xuu3000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs4(xuu40000, xuu3000, cbf, cbg, cbh) 30.44/13.01 new_pePe(False, xuu167) -> xuu167 30.44/13.01 new_esEs27(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) 30.44/13.01 new_ltEs4(Left(xuu30000), Left(xuu31000), app(ty_Ratio, bec), gc) -> new_ltEs10(xuu30000, xuu31000, bec) 30.44/13.01 new_ltEs18(xuu3000, xuu3100, app(app(app(ty_@3, ce), cf), eb)) -> new_ltEs6(xuu3000, xuu3100, ce, cf, eb) 30.44/13.01 new_esEs11(False, True) -> False 30.44/13.01 new_esEs11(True, False) -> False 30.44/13.01 new_compare25(xuu30000, xuu31000, True, fd, ff) -> EQ 30.44/13.01 new_ltEs4(Left(xuu30000), Left(xuu31000), app(app(app(ty_@3, gd), ge), gf), gc) -> new_ltEs6(xuu30000, xuu31000, gd, ge, gf) 30.44/13.01 new_lt12(xuu30001, xuu31001, ty_Int) -> new_lt9(xuu30001, xuu31001) 30.44/13.01 new_compare26(xuu30000, xuu31000, False) -> new_compare111(xuu30000, xuu31000, new_ltEs11(xuu30000, xuu31000)) 30.44/13.01 new_ltEs4(Right(xuu30000), Right(xuu31000), hd, ty_Double) -> new_ltEs14(xuu30000, xuu31000) 30.44/13.01 new_ltEs19(xuu30002, xuu31002, ty_Integer) -> new_ltEs17(xuu30002, xuu31002) 30.44/13.01 new_compare31(xuu30000, xuu31000, ty_Float) -> new_compare19(xuu30000, xuu31000) 30.44/13.01 new_lt6(xuu30000, xuu31000, fg) -> new_esEs10(new_compare13(xuu30000, xuu31000, fg), LT) 30.44/13.01 new_compare7(Integer(xuu30000), Integer(xuu31000)) -> new_primCmpInt(xuu30000, xuu31000) 30.44/13.01 new_compare10(xuu134, xuu135, False, dcc) -> GT 30.44/13.01 new_compare11(xuu30000, xuu31000, False, fd, ff) -> GT 30.44/13.01 new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False 30.44/13.01 new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False 30.44/13.01 new_compare24(xuu300, xuu310, True, bhc) -> EQ 30.44/13.01 new_esEs19(xuu40000, xuu3000, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.44/13.01 new_esEs19(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.44/13.01 new_compare24(Just(xuu3000), Just(xuu3100), False, bhc) -> new_compare10(xuu3000, xuu3100, new_ltEs18(xuu3000, xuu3100, bhc), bhc) 30.44/13.01 new_esEs18(xuu40000, xuu3000, app(ty_Ratio, cag)) -> new_esEs13(xuu40000, xuu3000, cag) 30.44/13.01 new_compare31(xuu30000, xuu31000, ty_Int) -> new_compare6(xuu30000, xuu31000) 30.44/13.01 new_ltEs20(xuu30001, xuu31001, app(ty_Ratio, cga)) -> new_ltEs10(xuu30001, xuu31001, cga) 30.44/13.01 new_esEs6(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, ceh), cfa), cfb)) -> new_esEs4(xuu40000, xuu3000, ceh, cfa, cfb) 30.44/13.01 new_esEs5(Right(xuu40000), Right(xuu3000), bfh, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.44/13.01 new_esEs26(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.44/13.01 new_esEs5(Right(xuu40000), Right(xuu3000), bfh, app(app(ty_@2, bga), bgb)) -> new_esEs7(xuu40000, xuu3000, bga, bgb) 30.44/13.01 new_ltEs18(xuu3000, xuu3100, ty_Double) -> new_ltEs14(xuu3000, xuu3100) 30.44/13.01 new_esEs26(xuu40000, xuu3000, app(ty_[], chf)) -> new_esEs16(xuu40000, xuu3000, chf) 30.44/13.01 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Ordering, beg) -> new_esEs10(xuu40000, xuu3000) 30.44/13.01 new_esEs24(xuu30001, xuu31001, app(app(ty_Either, ef), eg)) -> new_esEs5(xuu30001, xuu31001, ef, eg) 30.44/13.01 new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) 30.44/13.01 new_primCmpInt(Neg(Zero), Pos(Succ(xuu3100))) -> LT 30.44/13.01 new_compare9(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Integer) -> new_compare7(new_sr0(xuu30000, xuu31001), new_sr0(xuu31000, xuu30001)) 30.44/13.01 new_compare19(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.44/13.01 new_primMulInt(Pos(xuu400000), Pos(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) 30.44/13.01 new_esEs18(xuu40000, xuu3000, app(ty_[], cba)) -> new_esEs16(xuu40000, xuu3000, cba) 30.44/13.01 new_ltEs19(xuu30002, xuu31002, app(ty_Ratio, ceb)) -> new_ltEs10(xuu30002, xuu31002, ceb) 30.44/13.01 new_esEs24(xuu30001, xuu31001, ty_Ordering) -> new_esEs10(xuu30001, xuu31001) 30.44/13.01 new_ltEs14(xuu3000, xuu3100) -> new_fsEs(new_compare5(xuu3000, xuu3100)) 30.44/13.01 new_compare10(xuu134, xuu135, True, dcc) -> LT 30.44/13.01 new_esEs5(Right(xuu40000), Right(xuu3000), bfh, app(app(app(ty_@3, bgc), bgd), bge)) -> new_esEs4(xuu40000, xuu3000, bgc, bgd, bge) 30.44/13.01 new_esEs24(xuu30001, xuu31001, app(ty_Maybe, eh)) -> new_esEs6(xuu30001, xuu31001, eh) 30.44/13.01 new_primMulNat0(Succ(xuu4000000), Zero) -> Zero 30.44/13.01 new_primMulNat0(Zero, Succ(xuu300100)) -> Zero 30.44/13.01 new_ltEs11(False, False) -> True 30.44/13.01 new_compare31(xuu30000, xuu31000, ty_Bool) -> new_compare12(xuu30000, xuu31000) 30.44/13.01 new_esEs7(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), cbb, cbc) -> new_asAs(new_esEs19(xuu40000, xuu3000, cbb), new_esEs20(xuu40001, xuu3001, cbc)) 30.44/13.01 new_esEs24(xuu30001, xuu31001, ty_Char) -> new_esEs12(xuu30001, xuu31001) 30.44/13.01 new_lt13(xuu30000, xuu31000, ty_Bool) -> new_lt15(xuu30000, xuu31000) 30.44/13.01 new_compare9(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Int) -> new_compare6(new_sr(xuu30000, xuu31001), new_sr(xuu31000, xuu30001)) 30.44/13.01 new_esEs18(xuu40000, xuu3000, ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.44/13.01 new_compare27(xuu30000, xuu31000, False, fh, ga) -> new_compare110(xuu30000, xuu31000, new_ltEs13(xuu30000, xuu31000, fh, ga), fh, ga) 30.44/13.01 new_ltEs17(xuu3000, xuu3100) -> new_fsEs(new_compare7(xuu3000, xuu3100)) 30.44/13.01 new_ltEs18(xuu3000, xuu3100, ty_@0) -> new_ltEs8(xuu3000, xuu3100) 30.44/13.01 new_lt20(xuu30000, xuu31000, app(app(app(ty_@3, bdc), bdd), bde)) -> new_lt11(xuu30000, xuu31000, bdc, bdd, bde) 30.44/13.01 new_esEs5(Left(xuu40000), Left(xuu3000), app(app(ty_Either, bfc), bfd), beg) -> new_esEs5(xuu40000, xuu3000, bfc, bfd) 30.44/13.01 new_compare24(Just(xuu3000), Nothing, False, bhc) -> GT 30.44/13.01 new_compare19(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.44/13.01 new_primCmpNat0(Zero, xuu3000) -> LT 30.44/13.01 new_esEs5(Right(xuu40000), Right(xuu3000), bfh, app(ty_Maybe, bha)) -> new_esEs6(xuu40000, xuu3000, bha) 30.44/13.01 new_esEs18(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.44/13.01 new_esEs22(xuu40001, xuu3001, ty_Int) -> new_esEs9(xuu40001, xuu3001) 30.44/13.01 new_lt8(xuu30000, xuu31000, fd, ff) -> new_esEs10(new_compare18(xuu30000, xuu31000, fd, ff), LT) 30.44/13.01 new_lt15(xuu30000, xuu31000) -> new_esEs10(new_compare12(xuu30000, xuu31000), LT) 30.44/13.01 new_compare111(xuu30000, xuu31000, True) -> LT 30.44/13.01 new_esEs27(xuu40001, xuu3001, ty_Float) -> new_esEs8(xuu40001, xuu3001) 30.44/13.01 new_lt14(xuu30000, xuu31000, fc) -> new_esEs10(new_compare(xuu30000, xuu31000, fc), LT) 30.44/13.01 new_compare31(xuu30000, xuu31000, app(ty_Ratio, cec)) -> new_compare9(xuu30000, xuu31000, cec) 30.44/13.01 new_lt13(xuu30000, xuu31000, ty_Float) -> new_lt10(xuu30000, xuu31000) 30.44/13.01 new_esEs20(xuu40001, xuu3001, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs4(xuu40001, xuu3001, cch, cda, cdb) 30.44/13.01 new_ltEs11(True, True) -> True 30.44/13.01 new_ltEs16(xuu3000, xuu3100) -> new_fsEs(new_compare19(xuu3000, xuu3100)) 30.44/13.01 new_primPlusNat1(Succ(xuu25200), Zero) -> Succ(xuu25200) 30.44/13.01 new_primPlusNat1(Zero, Succ(xuu9400)) -> Succ(xuu9400) 30.44/13.01 new_ltEs4(Right(xuu30000), Right(xuu31000), hd, ty_Ordering) -> new_ltEs15(xuu30000, xuu31000) 30.44/13.01 new_lt13(xuu30000, xuu31000, ty_Ordering) -> new_lt18(xuu30000, xuu31000) 30.44/13.01 new_esEs16([], [], bhg) -> True 30.44/13.01 new_ltEs12(Just(xuu30000), Just(xuu31000), app(app(app(ty_@3, bag), bah), bba)) -> new_ltEs6(xuu30000, xuu31000, bag, bah, bba) 30.44/13.01 new_ltEs20(xuu30001, xuu31001, ty_Double) -> new_ltEs14(xuu30001, xuu31001) 30.44/13.01 new_esEs23(xuu30000, xuu31000, ty_Ordering) -> new_esEs10(xuu30000, xuu31000) 30.44/13.01 new_lt12(xuu30001, xuu31001, ty_Float) -> new_lt10(xuu30001, xuu31001) 30.44/13.01 new_ltEs12(Just(xuu30000), Just(xuu31000), app(ty_Maybe, bbd)) -> new_ltEs12(xuu30000, xuu31000, bbd) 30.44/13.01 new_primMulInt(Neg(xuu400000), Neg(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) 30.44/13.01 new_esEs20(xuu40001, xuu3001, ty_Double) -> new_esEs17(xuu40001, xuu3001) 30.44/13.01 new_esEs25(xuu30000, xuu31000, app(app(ty_@2, bea), beb)) -> new_esEs7(xuu30000, xuu31000, bea, beb) 30.44/13.01 new_esEs25(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) 30.44/13.01 new_lt20(xuu30000, xuu31000, app(ty_Ratio, cfh)) -> new_lt5(xuu30000, xuu31000, cfh) 30.44/13.01 new_compare([], :(xuu31000, xuu31001), h) -> LT 30.44/13.01 new_esEs28(xuu40002, xuu3002, ty_Integer) -> new_esEs15(xuu40002, xuu3002) 30.44/13.01 new_ltEs19(xuu30002, xuu31002, app(app(ty_@2, dg), dh)) -> new_ltEs13(xuu30002, xuu31002, dg, dh) 30.44/13.01 new_esEs6(Just(xuu40000), Just(xuu3000), app(ty_Maybe, cff)) -> new_esEs6(xuu40000, xuu3000, cff) 30.44/13.01 new_esEs6(Nothing, Just(xuu3000), cee) -> False 30.44/13.01 new_esEs6(Just(xuu40000), Nothing, cee) -> False 30.44/13.01 new_ltEs11(False, True) -> True 30.44/13.01 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Float, gc) -> new_ltEs16(xuu30000, xuu31000) 30.44/13.01 new_ltEs4(Right(xuu30000), Right(xuu31000), hd, ty_@0) -> new_ltEs8(xuu30000, xuu31000) 30.44/13.01 new_ltEs19(xuu30002, xuu31002, ty_@0) -> new_ltEs8(xuu30002, xuu31002) 30.44/13.01 new_ltEs15(EQ, GT) -> True 30.44/13.01 new_esEs24(xuu30001, xuu31001, ty_Bool) -> new_esEs11(xuu30001, xuu31001) 30.44/13.01 new_esEs6(Nothing, Nothing, cee) -> True 30.44/13.01 new_ltEs18(xuu3000, xuu3100, ty_Char) -> new_ltEs9(xuu3000, xuu3100) 30.44/13.01 new_esEs11(False, False) -> True 30.44/13.01 new_esEs10(LT, LT) -> True 30.44/13.01 new_ltEs18(xuu3000, xuu3100, ty_Ordering) -> new_ltEs15(xuu3000, xuu3100) 30.44/13.01 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Int, gc) -> new_ltEs7(xuu30000, xuu31000) 30.44/13.01 new_esEs21(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.44/13.01 new_ltEs20(xuu30001, xuu31001, app(app(ty_@2, bcg), bch)) -> new_ltEs13(xuu30001, xuu31001, bcg, bch) 30.44/13.01 new_primCmpNat2(xuu3000, Zero) -> GT 30.44/13.01 new_esEs28(xuu40002, xuu3002, ty_Float) -> new_esEs8(xuu40002, xuu3002) 30.44/13.01 new_lt4(xuu30000, xuu31000) -> new_esEs10(new_compare8(xuu30000, xuu31000), LT) 30.44/13.01 new_compare6(xuu30, xuu31) -> new_primCmpInt(xuu30, xuu31) 30.44/13.01 new_compare31(xuu30000, xuu31000, app(ty_Maybe, bg)) -> new_compare13(xuu30000, xuu31000, bg) 30.44/13.01 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.44/13.01 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Bool, beg) -> new_esEs11(xuu40000, xuu3000) 30.44/13.01 new_lt13(xuu30000, xuu31000, ty_Int) -> new_lt9(xuu30000, xuu31000) 30.44/13.01 new_esEs16(:(xuu40000, xuu40001), :(xuu3000, xuu3001), bhg) -> new_asAs(new_esEs18(xuu40000, xuu3000, bhg), new_esEs16(xuu40001, xuu3001, bhg)) 30.44/13.01 new_compare30(xuu30000, xuu31000) -> new_compare210(xuu30000, xuu31000, new_esEs10(xuu30000, xuu31000)) 30.44/13.01 new_ltEs19(xuu30002, xuu31002, ty_Char) -> new_ltEs9(xuu30002, xuu31002) 30.44/13.01 new_lt12(xuu30001, xuu31001, ty_Bool) -> new_lt15(xuu30001, xuu31001) 30.44/13.01 new_compare31(xuu30000, xuu31000, ty_Integer) -> new_compare7(xuu30000, xuu31000) 30.44/13.01 new_ltEs12(Just(xuu30000), Just(xuu31000), app(ty_[], baf)) -> new_ltEs5(xuu30000, xuu31000, baf) 30.44/13.01 new_esEs26(xuu40000, xuu3000, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs4(xuu40000, xuu3000, cgg, cgh, cha) 30.44/13.01 new_primMulInt(Pos(xuu400000), Neg(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) 30.44/13.01 new_primMulInt(Neg(xuu400000), Pos(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) 30.44/13.01 new_esEs12(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) 30.44/13.01 new_esEs19(xuu40000, xuu3000, app(app(ty_Either, cca), ccb)) -> new_esEs5(xuu40000, xuu3000, cca, ccb) 30.44/13.01 new_lt17(xuu30000, xuu31000) -> new_esEs10(new_compare5(xuu30000, xuu31000), LT) 30.44/13.01 new_esEs26(xuu40000, xuu3000, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.44/13.01 new_esEs20(xuu40001, xuu3001, ty_Integer) -> new_esEs15(xuu40001, xuu3001) 30.44/13.01 new_ltEs20(xuu30001, xuu31001, ty_@0) -> new_ltEs8(xuu30001, xuu31001) 30.44/13.01 new_ltEs4(Right(xuu30000), Right(xuu31000), hd, app(app(app(ty_@3, hf), hg), hh)) -> new_ltEs6(xuu30000, xuu31000, hf, hg, hh) 30.44/13.01 new_ltEs4(Right(xuu30000), Right(xuu31000), hd, app(app(ty_Either, baa), bab)) -> new_ltEs4(xuu30000, xuu31000, baa, bab) 30.44/13.01 new_ltEs4(Left(xuu30000), Left(xuu31000), app(ty_[], gb), gc) -> new_ltEs5(xuu30000, xuu31000, gb) 30.44/13.01 new_primCmpNat1(Succ(xuu30000), Zero) -> GT 30.44/13.01 new_esEs27(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) 30.44/13.01 new_ltEs4(Right(xuu30000), Right(xuu31000), hd, ty_Integer) -> new_ltEs17(xuu30000, xuu31000) 30.44/13.01 new_compare14(xuu30000, xuu31000, False) -> GT 30.44/13.01 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Ordering) -> new_ltEs15(xuu30000, xuu31000) 30.44/13.01 new_ltEs19(xuu30002, xuu31002, ty_Double) -> new_ltEs14(xuu30002, xuu31002) 30.44/13.01 new_sr0(Integer(xuu300000), Integer(xuu310010)) -> Integer(new_primMulInt(xuu300000, xuu310010)) 30.44/13.01 new_ltEs9(xuu3000, xuu3100) -> new_fsEs(new_compare17(xuu3000, xuu3100)) 30.44/13.01 new_primCmpNat2(xuu3000, Succ(xuu3100)) -> new_primCmpNat1(xuu3000, xuu3100) 30.44/13.01 new_esEs28(xuu40002, xuu3002, ty_@0) -> new_esEs14(xuu40002, xuu3002) 30.44/13.01 new_ltEs15(LT, GT) -> True 30.44/13.01 new_ltEs20(xuu30001, xuu31001, app(app(ty_Either, bcd), bce)) -> new_ltEs4(xuu30001, xuu31001, bcd, bce) 30.44/13.01 new_ltEs4(Right(xuu30000), Right(xuu31000), hd, app(ty_[], he)) -> new_ltEs5(xuu30000, xuu31000, he) 30.44/13.01 new_esEs20(xuu40001, xuu3001, app(ty_Ratio, cde)) -> new_esEs13(xuu40001, xuu3001, cde) 30.44/13.01 new_esEs20(xuu40001, xuu3001, ty_Int) -> new_esEs9(xuu40001, xuu3001) 30.44/13.01 new_esEs15(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) 30.44/13.01 new_esEs25(xuu30000, xuu31000, app(ty_Ratio, cfh)) -> new_esEs13(xuu30000, xuu31000, cfh) 30.44/13.01 new_esEs25(xuu30000, xuu31000, ty_Bool) -> new_esEs11(xuu30000, xuu31000) 30.44/13.01 new_compare31(xuu30000, xuu31000, app(ty_[], ba)) -> new_compare(xuu30000, xuu31000, ba) 30.44/13.01 new_esEs25(xuu30000, xuu31000, ty_Int) -> new_esEs9(xuu30000, xuu31000) 30.44/13.01 new_asAs(True, xuu141) -> xuu141 30.44/13.01 new_esEs5(Right(xuu40000), Right(xuu3000), bfh, ty_Double) -> new_esEs17(xuu40000, xuu3000) 30.44/13.01 new_ltEs13(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), bbg, bdb) -> new_pePe(new_lt20(xuu30000, xuu31000, bbg), new_asAs(new_esEs25(xuu30000, xuu31000, bbg), new_ltEs20(xuu30001, xuu31001, bdb))) 30.44/13.01 new_ltEs4(Right(xuu30000), Right(xuu31000), hd, ty_Bool) -> new_ltEs11(xuu30000, xuu31000) 30.44/13.01 new_esEs18(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.44/13.01 new_esEs24(xuu30001, xuu31001, ty_@0) -> new_esEs14(xuu30001, xuu31001) 30.44/13.01 new_compare31(xuu30000, xuu31000, app(app(ty_@2, bh), ca)) -> new_compare15(xuu30000, xuu31000, bh, ca) 30.44/13.01 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Integer, beg) -> new_esEs15(xuu40000, xuu3000) 30.44/13.01 new_lt12(xuu30001, xuu31001, ty_Ordering) -> new_lt18(xuu30001, xuu31001) 30.44/13.01 new_compare18(xuu30000, xuu31000, fd, ff) -> new_compare25(xuu30000, xuu31000, new_esEs5(xuu30000, xuu31000, fd, ff), fd, ff) 30.44/13.01 new_lt13(xuu30000, xuu31000, app(app(ty_Either, fd), ff)) -> new_lt8(xuu30000, xuu31000, fd, ff) 30.44/13.01 new_esEs19(xuu40000, xuu3000, app(ty_Ratio, ccc)) -> new_esEs13(xuu40000, xuu3000, ccc) 30.44/13.01 new_ltEs20(xuu30001, xuu31001, ty_Char) -> new_ltEs9(xuu30001, xuu31001) 30.44/13.01 new_esEs24(xuu30001, xuu31001, ty_Integer) -> new_esEs15(xuu30001, xuu31001) 30.44/13.01 new_esEs19(xuu40000, xuu3000, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.44/13.01 new_ltEs20(xuu30001, xuu31001, ty_Float) -> new_ltEs16(xuu30001, xuu31001) 30.44/13.01 new_lt13(xuu30000, xuu31000, ty_@0) -> new_lt4(xuu30000, xuu31000) 30.44/13.01 new_compare12(xuu30000, xuu31000) -> new_compare26(xuu30000, xuu31000, new_esEs11(xuu30000, xuu31000)) 30.44/13.01 new_esEs19(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.44/13.01 new_esEs18(xuu40000, xuu3000, app(app(ty_@2, bhh), caa)) -> new_esEs7(xuu40000, xuu3000, bhh, caa) 30.44/13.01 new_esEs24(xuu30001, xuu31001, app(app(ty_@2, fa), fb)) -> new_esEs7(xuu30001, xuu31001, fa, fb) 30.44/13.01 new_lt12(xuu30001, xuu31001, app(ty_[], ea)) -> new_lt14(xuu30001, xuu31001, ea) 30.44/13.01 new_ltEs18(xuu3000, xuu3100, app(app(ty_@2, bbg), bdb)) -> new_ltEs13(xuu3000, xuu3100, bbg, bdb) 30.44/13.01 new_lt20(xuu30000, xuu31000, ty_Char) -> new_lt7(xuu30000, xuu31000) 30.44/13.01 new_compare15(xuu30000, xuu31000, fh, ga) -> new_compare27(xuu30000, xuu31000, new_esEs7(xuu30000, xuu31000, fh, ga), fh, ga) 30.44/13.01 new_primCompAux00(xuu182, EQ) -> xuu182 30.44/13.01 new_sr(xuu40000, xuu3001) -> new_primMulInt(xuu40000, xuu3001) 30.44/13.01 new_lt12(xuu30001, xuu31001, app(ty_Maybe, eh)) -> new_lt6(xuu30001, xuu31001, eh) 30.44/13.01 new_esEs25(xuu30000, xuu31000, ty_Integer) -> new_esEs15(xuu30000, xuu31000) 30.44/13.01 new_primMulNat0(Zero, Zero) -> Zero 30.44/13.01 new_lt13(xuu30000, xuu31000, app(app(ty_@2, fh), ga)) -> new_lt16(xuu30000, xuu31000, fh, ga) 30.44/13.01 new_esEs24(xuu30001, xuu31001, app(ty_[], ea)) -> new_esEs16(xuu30001, xuu31001, ea) 30.44/13.01 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Int, beg) -> new_esEs9(xuu40000, xuu3000) 30.44/13.01 new_esEs23(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) 30.44/13.01 new_compare111(xuu30000, xuu31000, False) -> GT 30.44/13.01 new_primCmpNat1(Zero, Zero) -> EQ 30.44/13.01 new_ltEs20(xuu30001, xuu31001, app(ty_Maybe, bcf)) -> new_ltEs12(xuu30001, xuu31001, bcf) 30.44/13.01 new_esEs23(xuu30000, xuu31000, app(app(ty_@2, fh), ga)) -> new_esEs7(xuu30000, xuu31000, fh, ga) 30.44/13.01 new_compare28(xuu30000, xuu31000, True, cb, cc, cd) -> EQ 30.44/13.01 new_ltEs18(xuu3000, xuu3100, app(app(ty_Either, hd), gc)) -> new_ltEs4(xuu3000, xuu3100, hd, gc) 30.44/13.01 new_lt20(xuu30000, xuu31000, ty_Float) -> new_lt10(xuu30000, xuu31000) 30.44/13.01 new_esEs20(xuu40001, xuu3001, app(app(ty_Either, cdc), cdd)) -> new_esEs5(xuu40001, xuu3001, cdc, cdd) 30.44/13.01 new_ltEs11(True, False) -> False 30.44/13.01 new_esEs5(Right(xuu40000), Right(xuu3000), bfh, app(app(ty_Either, bgf), bgg)) -> new_esEs5(xuu40000, xuu3000, bgf, bgg) 30.44/13.01 new_esEs19(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.44/13.01 new_ltEs15(EQ, EQ) -> True 30.44/13.01 new_esEs26(xuu40000, xuu3000, app(ty_Maybe, che)) -> new_esEs6(xuu40000, xuu3000, che) 30.44/13.01 new_fsEs(xuu151) -> new_not(new_esEs10(xuu151, GT)) 30.44/13.01 new_esEs26(xuu40000, xuu3000, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.44/13.01 new_esEs24(xuu30001, xuu31001, app(ty_Ratio, cea)) -> new_esEs13(xuu30001, xuu31001, cea) 30.44/13.01 new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.44/13.01 new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.44/13.01 new_ltEs18(xuu3000, xuu3100, app(ty_Ratio, bhd)) -> new_ltEs10(xuu3000, xuu3100, bhd) 30.44/13.01 new_lt12(xuu30001, xuu31001, ty_@0) -> new_lt4(xuu30001, xuu31001) 30.44/13.01 new_esEs6(Just(xuu40000), Just(xuu3000), app(app(ty_@2, cef), ceg)) -> new_esEs7(xuu40000, xuu3000, cef, ceg) 30.44/13.01 new_esEs18(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.44/13.01 new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False 30.44/13.01 new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False 30.44/13.01 new_esEs24(xuu30001, xuu31001, ty_Int) -> new_esEs9(xuu30001, xuu31001) 30.44/13.01 new_esEs25(xuu30000, xuu31000, app(ty_Maybe, bdh)) -> new_esEs6(xuu30000, xuu31000, bdh) 30.44/13.01 new_compare([], [], h) -> EQ 30.44/13.01 new_ltEs15(LT, EQ) -> True 30.44/13.01 new_esEs20(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) 30.44/13.01 new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) 30.44/13.01 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.44/13.01 new_esEs20(xuu40001, xuu3001, app(ty_[], cdg)) -> new_esEs16(xuu40001, xuu3001, cdg) 30.44/13.01 new_esEs28(xuu40002, xuu3002, app(app(ty_@2, dba), dbb)) -> new_esEs7(xuu40002, xuu3002, dba, dbb) 30.44/13.01 new_ltEs4(Left(xuu30000), Left(xuu31000), app(app(ty_Either, gg), gh), gc) -> new_ltEs4(xuu30000, xuu31000, gg, gh) 30.44/13.01 new_lt13(xuu30000, xuu31000, app(ty_[], fc)) -> new_lt14(xuu30000, xuu31000, fc) 30.44/13.01 new_esEs25(xuu30000, xuu31000, app(app(ty_Either, bdf), bdg)) -> new_esEs5(xuu30000, xuu31000, bdf, bdg) 30.44/13.01 new_esEs20(xuu40001, xuu3001, app(ty_Maybe, cdf)) -> new_esEs6(xuu40001, xuu3001, cdf) 30.44/13.01 new_ltEs19(xuu30002, xuu31002, app(ty_Maybe, df)) -> new_ltEs12(xuu30002, xuu31002, df) 30.44/13.01 new_esEs11(True, True) -> True 30.44/13.01 new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False 30.44/13.01 new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False 30.44/13.01 new_esEs19(xuu40000, xuu3000, app(ty_Maybe, ccd)) -> new_esEs6(xuu40000, xuu3000, ccd) 30.44/13.01 new_compare29(xuu30000, xuu31000, cb, cc, cd) -> new_compare28(xuu30000, xuu31000, new_esEs4(xuu30000, xuu31000, cb, cc, cd), cb, cc, cd) 30.44/13.01 new_compare31(xuu30000, xuu31000, ty_Double) -> new_compare5(xuu30000, xuu31000) 30.44/13.01 new_esEs25(xuu30000, xuu31000, app(ty_[], bda)) -> new_esEs16(xuu30000, xuu31000, bda) 30.44/13.01 new_esEs19(xuu40000, xuu3000, app(ty_[], cce)) -> new_esEs16(xuu40000, xuu3000, cce) 30.44/13.01 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 30.44/13.01 new_ltEs15(GT, GT) -> True 30.44/13.01 new_esEs26(xuu40000, xuu3000, app(app(ty_Either, chb), chc)) -> new_esEs5(xuu40000, xuu3000, chb, chc) 30.44/13.01 new_esEs10(LT, GT) -> False 30.44/13.01 new_esEs10(GT, LT) -> False 30.44/13.01 new_esEs21(xuu40000, xuu3000, ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.44/13.01 new_ltEs10(xuu3000, xuu3100, bhd) -> new_fsEs(new_compare9(xuu3000, xuu3100, bhd)) 30.44/13.01 new_esEs19(xuu40000, xuu3000, app(app(ty_@2, cbd), cbe)) -> new_esEs7(xuu40000, xuu3000, cbd, cbe) 30.44/13.01 new_ltEs7(xuu3000, xuu3100) -> new_fsEs(new_compare6(xuu3000, xuu3100)) 30.44/13.01 new_ltEs12(Just(xuu30000), Just(xuu31000), app(app(ty_@2, bbe), bbf)) -> new_ltEs13(xuu30000, xuu31000, bbe, bbf) 30.44/13.01 new_esEs27(xuu40001, xuu3001, app(app(app(ty_@3, daa), dab), dac)) -> new_esEs4(xuu40001, xuu3001, daa, dab, dac) 30.44/13.01 new_primPlusNat0(xuu104, xuu300100) -> new_primPlusNat1(xuu104, Succ(xuu300100)) 30.44/13.01 new_not(False) -> True 30.44/13.01 new_esEs28(xuu40002, xuu3002, ty_Int) -> new_esEs9(xuu40002, xuu3002) 30.44/13.01 new_compare31(xuu30000, xuu31000, ty_Char) -> new_compare17(xuu30000, xuu31000) 30.44/13.01 new_esEs18(xuu40000, xuu3000, app(app(ty_Either, cae), caf)) -> new_esEs5(xuu40000, xuu3000, cae, caf) 30.44/13.01 new_esEs28(xuu40002, xuu3002, app(ty_Ratio, dbh)) -> new_esEs13(xuu40002, xuu3002, dbh) 30.44/13.01 new_lt20(xuu30000, xuu31000, ty_@0) -> new_lt4(xuu30000, xuu31000) 30.44/13.01 new_esEs25(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) 30.44/13.01 new_esEs5(Right(xuu40000), Right(xuu3000), bfh, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.44/13.01 new_compare19(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) 30.44/13.01 new_compare19(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) 30.44/13.01 new_lt12(xuu30001, xuu31001, app(app(ty_Either, ef), eg)) -> new_lt8(xuu30001, xuu31001, ef, eg) 30.44/13.01 new_esEs25(xuu30000, xuu31000, ty_Double) -> new_esEs17(xuu30000, xuu31000) 30.44/13.01 new_esEs5(Left(xuu40000), Right(xuu3000), bfh, beg) -> False 30.44/13.01 new_esEs5(Right(xuu40000), Left(xuu3000), bfh, beg) -> False 30.44/13.01 new_primCmpInt(Pos(Succ(xuu3000)), Pos(xuu310)) -> new_primCmpNat2(xuu3000, xuu310) 30.44/13.01 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Int) -> new_ltEs7(xuu30000, xuu31000) 30.44/13.01 new_lt12(xuu30001, xuu31001, ty_Integer) -> new_lt19(xuu30001, xuu31001) 30.44/13.01 new_compare27(xuu30000, xuu31000, True, fh, ga) -> EQ 30.44/13.01 new_ltEs4(Left(xuu30000), Right(xuu31000), hd, gc) -> True 30.44/13.01 new_esEs18(xuu40000, xuu3000, app(ty_Maybe, cah)) -> new_esEs6(xuu40000, xuu3000, cah) 30.44/13.01 new_esEs27(xuu40001, xuu3001, ty_Ordering) -> new_esEs10(xuu40001, xuu3001) 30.44/13.01 new_ltEs18(xuu3000, xuu3100, app(ty_[], h)) -> new_ltEs5(xuu3000, xuu3100, h) 30.44/13.01 new_ltEs4(Right(xuu30000), Right(xuu31000), hd, app(app(ty_@2, bad), bae)) -> new_ltEs13(xuu30000, xuu31000, bad, bae) 30.44/13.01 new_lt20(xuu30000, xuu31000, ty_Int) -> new_lt9(xuu30000, xuu31000) 30.44/13.01 new_lt5(xuu30000, xuu31000, bhf) -> new_esEs10(new_compare9(xuu30000, xuu31000, bhf), LT) 30.44/13.01 new_ltEs20(xuu30001, xuu31001, ty_Bool) -> new_ltEs11(xuu30001, xuu31001) 30.44/13.01 new_compare16(xuu30000, xuu31000, False, cb, cc, cd) -> GT 30.44/13.01 new_compare11(xuu30000, xuu31000, True, fd, ff) -> LT 30.44/13.01 new_ltEs19(xuu30002, xuu31002, ty_Int) -> new_ltEs7(xuu30002, xuu31002) 30.44/13.01 new_primCmpNat1(Zero, Succ(xuu31000)) -> LT 30.44/13.01 new_lt12(xuu30001, xuu31001, app(ty_Ratio, cea)) -> new_lt5(xuu30001, xuu31001, cea) 30.44/13.01 new_compare210(xuu30000, xuu31000, False) -> new_compare14(xuu30000, xuu31000, new_ltEs15(xuu30000, xuu31000)) 30.44/13.01 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 30.44/13.01 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 30.44/13.01 new_esEs25(xuu30000, xuu31000, app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs4(xuu30000, xuu31000, bdc, bdd, bde) 30.44/13.01 new_lt20(xuu30000, xuu31000, ty_Double) -> new_lt17(xuu30000, xuu31000) 30.44/13.01 new_lt18(xuu30000, xuu31000) -> new_esEs10(new_compare30(xuu30000, xuu31000), LT) 30.44/13.01 new_primPlusNat1(Zero, Zero) -> Zero 30.44/13.01 new_esEs18(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.44/13.01 new_compare31(xuu30000, xuu31000, ty_Ordering) -> new_compare30(xuu30000, xuu31000) 30.44/13.01 new_lt20(xuu30000, xuu31000, app(app(ty_@2, bea), beb)) -> new_lt16(xuu30000, xuu31000, bea, beb) 30.44/13.01 new_esEs20(xuu40001, xuu3001, ty_Bool) -> new_esEs11(xuu40001, xuu3001) 30.44/13.01 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Double, gc) -> new_ltEs14(xuu30000, xuu31000) 30.44/13.01 new_ltEs19(xuu30002, xuu31002, ty_Bool) -> new_ltEs11(xuu30002, xuu31002) 30.44/13.01 new_ltEs20(xuu30001, xuu31001, ty_Int) -> new_ltEs7(xuu30001, xuu31001) 30.44/13.01 new_esEs5(Left(xuu40000), Left(xuu3000), ty_Float, beg) -> new_esEs8(xuu40000, xuu3000) 30.44/13.01 new_ltEs12(Just(xuu30000), Just(xuu31000), app(ty_Ratio, ced)) -> new_ltEs10(xuu30000, xuu31000, ced) 30.44/13.01 new_esEs27(xuu40001, xuu3001, ty_Double) -> new_esEs17(xuu40001, xuu3001) 30.44/13.01 new_esEs24(xuu30001, xuu31001, ty_Float) -> new_esEs8(xuu30001, xuu31001) 30.44/13.01 new_ltEs15(LT, LT) -> True 30.44/13.01 new_ltEs12(Nothing, Just(xuu31000), bhe) -> True 30.44/13.01 new_esEs10(EQ, GT) -> False 30.44/13.01 new_esEs10(GT, EQ) -> False 30.44/13.01 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Ordering, gc) -> new_ltEs15(xuu30000, xuu31000) 30.44/13.01 new_esEs18(xuu40000, xuu3000, ty_Ordering) -> new_esEs10(xuu40000, xuu3000) 30.44/13.01 new_ltEs19(xuu30002, xuu31002, app(app(ty_Either, dd), de)) -> new_ltEs4(xuu30002, xuu31002, dd, de) 30.44/13.01 new_esEs28(xuu40002, xuu3002, app(ty_Maybe, dca)) -> new_esEs6(xuu40002, xuu3002, dca) 30.44/13.01 new_esEs8(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs9(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) 30.44/13.01 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 30.44/13.01 new_primMulNat0(Succ(xuu4000000), Succ(xuu300100)) -> new_primPlusNat0(new_primMulNat0(xuu4000000, Succ(xuu300100)), xuu300100) 30.44/13.01 new_lt20(xuu30000, xuu31000, ty_Ordering) -> new_lt18(xuu30000, xuu31000) 30.44/13.01 new_compare31(xuu30000, xuu31000, ty_@0) -> new_compare8(xuu30000, xuu31000) 30.44/13.01 new_ltEs4(Right(xuu30000), Right(xuu31000), hd, app(ty_Maybe, bac)) -> new_ltEs12(xuu30000, xuu31000, bac) 30.44/13.01 new_compare16(xuu30000, xuu31000, True, cb, cc, cd) -> LT 30.44/13.01 new_esEs5(Right(xuu40000), Right(xuu3000), bfh, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.44/13.01 new_esEs13(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), cdh) -> new_asAs(new_esEs21(xuu40000, xuu3000, cdh), new_esEs22(xuu40001, xuu3001, cdh)) 30.44/13.01 new_esEs27(xuu40001, xuu3001, app(ty_Maybe, dag)) -> new_esEs6(xuu40001, xuu3001, dag) 30.44/13.01 new_esEs6(Just(xuu40000), Just(xuu3000), app(ty_[], cfg)) -> new_esEs16(xuu40000, xuu3000, cfg) 30.44/13.01 new_esEs5(Left(xuu40000), Left(xuu3000), ty_@0, beg) -> new_esEs14(xuu40000, xuu3000) 30.44/13.01 new_ltEs12(Nothing, Nothing, bhe) -> True 30.44/13.01 new_esEs16(:(xuu40000, xuu40001), [], bhg) -> False 30.44/13.01 new_esEs16([], :(xuu3000, xuu3001), bhg) -> False 30.44/13.01 new_ltEs19(xuu30002, xuu31002, ty_Float) -> new_ltEs16(xuu30002, xuu31002) 30.44/13.01 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_@0, gc) -> new_ltEs8(xuu30000, xuu31000) 30.44/13.01 new_compare31(xuu30000, xuu31000, app(app(ty_Either, be), bf)) -> new_compare18(xuu30000, xuu31000, be, bf) 30.44/13.01 new_esEs23(xuu30000, xuu31000, app(ty_[], fc)) -> new_esEs16(xuu30000, xuu31000, fc) 30.44/13.01 new_ltEs12(Just(xuu30000), Nothing, bhe) -> False 30.44/13.01 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 30.44/13.01 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 30.44/13.01 new_compare8(@0, @0) -> EQ 30.44/13.01 new_lt20(xuu30000, xuu31000, app(ty_Maybe, bdh)) -> new_lt6(xuu30000, xuu31000, bdh) 30.44/13.01 new_compare110(xuu30000, xuu31000, False, fh, ga) -> GT 30.44/13.01 new_esEs4(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), cgb, cgc, cgd) -> new_asAs(new_esEs26(xuu40000, xuu3000, cgb), new_asAs(new_esEs27(xuu40001, xuu3001, cgc), new_esEs28(xuu40002, xuu3002, cgd))) 30.44/13.01 new_esEs23(xuu30000, xuu31000, ty_Integer) -> new_esEs15(xuu30000, xuu31000) 30.44/13.01 new_esEs28(xuu40002, xuu3002, app(app(ty_Either, dbf), dbg)) -> new_esEs5(xuu40002, xuu3002, dbf, dbg) 30.44/13.01 new_primEqNat0(Zero, Zero) -> True 30.44/13.01 new_ltEs18(xuu3000, xuu3100, ty_Float) -> new_ltEs16(xuu3000, xuu3100) 30.44/13.01 new_esEs19(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) 30.44/13.01 new_esEs18(xuu40000, xuu3000, ty_Bool) -> new_esEs11(xuu40000, xuu3000) 30.44/13.01 new_ltEs20(xuu30001, xuu31001, app(ty_[], bbh)) -> new_ltEs5(xuu30001, xuu31001, bbh) 30.44/13.01 new_esEs28(xuu40002, xuu3002, ty_Ordering) -> new_esEs10(xuu40002, xuu3002) 30.44/13.01 new_ltEs4(Right(xuu30000), Right(xuu31000), hd, ty_Float) -> new_ltEs16(xuu30000, xuu31000) 30.44/13.01 new_ltEs12(Just(xuu30000), Just(xuu31000), ty_Integer) -> new_ltEs17(xuu30000, xuu31000) 30.44/13.01 new_esEs6(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs14(xuu40000, xuu3000) 30.44/13.01 new_asAs(False, xuu141) -> False 30.44/13.01 new_esEs23(xuu30000, xuu31000, ty_Float) -> new_esEs8(xuu30000, xuu31000) 30.44/13.01 new_compare24(Nothing, Nothing, False, bhc) -> LT 30.44/13.01 new_esEs20(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) 30.44/13.01 new_esEs26(xuu40000, xuu3000, app(ty_Ratio, chd)) -> new_esEs13(xuu40000, xuu3000, chd) 30.44/13.01 new_lt10(xuu30000, xuu31000) -> new_esEs10(new_compare19(xuu30000, xuu31000), LT) 30.44/13.01 new_esEs26(xuu40000, xuu3000, ty_Int) -> new_esEs9(xuu40000, xuu3000) 30.44/13.01 new_esEs23(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) 30.44/13.01 new_ltEs4(Right(xuu30000), Left(xuu31000), hd, gc) -> False 30.44/13.01 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs8(xuu40000, xuu3000) 30.44/13.01 new_primCmpInt(Neg(Succ(xuu3000)), Neg(xuu310)) -> new_primCmpNat0(xuu310, xuu3000) 30.44/13.01 new_esEs6(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs15(xuu40000, xuu3000) 30.44/13.01 new_ltEs18(xuu3000, xuu3100, ty_Int) -> new_ltEs7(xuu3000, xuu3100) 30.44/13.01 new_ltEs4(Left(xuu30000), Left(xuu31000), ty_Char, gc) -> new_ltEs9(xuu30000, xuu31000) 30.44/13.01 new_esEs20(xuu40001, xuu3001, app(app(ty_@2, ccf), ccg)) -> new_esEs7(xuu40001, xuu3001, ccf, ccg) 30.44/13.01 30.44/13.01 The set Q consists of the following terms: 30.44/13.01 30.44/13.01 new_primPlusNat1(Succ(x0), Succ(x1)) 30.44/13.01 new_compare11(x0, x1, False, x2, x3) 30.44/13.01 new_esEs26(x0, x1, app(ty_Ratio, x2)) 30.44/13.01 new_esEs27(x0, x1, ty_Ordering) 30.44/13.01 new_esEs19(x0, x1, ty_Bool) 30.44/13.01 new_compare([], :(x0, x1), x2) 30.44/13.01 new_compare28(x0, x1, False, x2, x3, x4) 30.44/13.01 new_lt11(x0, x1, x2, x3, x4) 30.44/13.01 new_ltEs18(x0, x1, ty_Bool) 30.44/13.01 new_primCmpNat2(x0, Succ(x1)) 30.44/13.01 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.44/13.01 new_lt20(x0, x1, ty_Int) 30.44/13.01 new_sr0(Integer(x0), Integer(x1)) 30.44/13.01 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 30.44/13.01 new_esEs20(x0, x1, app(ty_Maybe, x2)) 30.44/13.01 new_ltEs17(x0, x1) 30.44/13.01 new_esEs23(x0, x1, ty_Char) 30.44/13.01 new_compare31(x0, x1, ty_Ordering) 30.44/13.01 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.01 new_lt20(x0, x1, ty_Ordering) 30.44/13.01 new_primCmpNat1(Succ(x0), Zero) 30.44/13.01 new_primPlusNat1(Zero, Zero) 30.44/13.01 new_esEs27(x0, x1, ty_Double) 30.44/13.01 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.01 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.01 new_esEs18(x0, x1, app(ty_[], x2)) 30.44/13.01 new_lt8(x0, x1, x2, x3) 30.44/13.01 new_esEs28(x0, x1, ty_Char) 30.44/13.01 new_compare31(x0, x1, ty_Int) 30.44/13.01 new_esEs25(x0, x1, ty_Char) 30.44/13.01 new_primCmpNat1(Zero, Zero) 30.44/13.01 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.01 new_compare24(Just(x0), Nothing, False, x1) 30.44/13.01 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.44/13.01 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 30.44/13.01 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.01 new_ltEs18(x0, x1, ty_@0) 30.44/13.01 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.01 new_compare26(x0, x1, True) 30.44/13.01 new_compare110(x0, x1, False, x2, x3) 30.44/13.01 new_esEs10(EQ, EQ) 30.44/13.01 new_compare31(x0, x1, ty_Char) 30.44/13.01 new_lt20(x0, x1, ty_Double) 30.44/13.01 new_ltEs4(Right(x0), Right(x1), x2, ty_Double) 30.44/13.01 new_primEqInt(Pos(Zero), Pos(Zero)) 30.44/13.01 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 30.44/13.01 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 30.44/13.01 new_primCompAux00(x0, GT) 30.44/13.01 new_esEs25(x0, x1, ty_Int) 30.44/13.01 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 30.44/13.01 new_lt13(x0, x1, ty_Integer) 30.44/13.01 new_esEs24(x0, x1, ty_Bool) 30.44/13.01 new_compare31(x0, x1, ty_Double) 30.44/13.01 new_compare31(x0, x1, app(ty_Maybe, x2)) 30.44/13.01 new_ltEs12(Just(x0), Just(x1), ty_Ordering) 30.44/13.01 new_esEs19(x0, x1, ty_@0) 30.44/13.01 new_ltEs7(x0, x1) 30.44/13.01 new_esEs25(x0, x1, ty_Ordering) 30.44/13.01 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.01 new_ltEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.44/13.01 new_compare25(x0, x1, False, x2, x3) 30.44/13.01 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 30.44/13.01 new_lt18(x0, x1) 30.44/13.01 new_primEqInt(Neg(Zero), Neg(Zero)) 30.44/13.01 new_esEs28(x0, x1, app(ty_Maybe, x2)) 30.44/13.01 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 30.44/13.01 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.44/13.01 new_primCmpNat0(Succ(x0), x1) 30.44/13.01 new_esEs26(x0, x1, app(ty_Maybe, x2)) 30.44/13.01 new_lt20(x0, x1, ty_Char) 30.44/13.01 new_esEs23(x0, x1, ty_Ordering) 30.44/13.01 new_compare210(x0, x1, True) 30.44/13.01 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.44/13.01 new_ltEs19(x0, x1, ty_Float) 30.44/13.01 new_esEs6(Nothing, Nothing, x0) 30.44/13.01 new_ltEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 30.44/13.01 new_lt5(x0, x1, x2) 30.44/13.01 new_ltEs4(Left(x0), Left(x1), ty_Int, x2) 30.44/13.01 new_ltEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.44/13.01 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 30.44/13.01 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.44/13.01 new_esEs25(x0, x1, ty_@0) 30.44/13.01 new_esEs25(x0, x1, ty_Double) 30.44/13.01 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.44/13.01 new_compare27(x0, x1, False, x2, x3) 30.44/13.01 new_lt12(x0, x1, app(ty_Ratio, x2)) 30.44/13.01 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.01 new_esEs6(Nothing, Just(x0), x1) 30.44/13.01 new_compare27(x0, x1, True, x2, x3) 30.44/13.01 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.01 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.01 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.01 new_esEs24(x0, x1, app(ty_[], x2)) 30.44/13.01 new_ltEs11(True, True) 30.44/13.01 new_esEs27(x0, x1, ty_Char) 30.44/13.01 new_ltEs4(Right(x0), Right(x1), x2, ty_Ordering) 30.44/13.01 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 30.44/13.01 new_esEs18(x0, x1, app(ty_Maybe, x2)) 30.44/13.01 new_esEs16(:(x0, x1), :(x2, x3), x4) 30.44/13.01 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.01 new_compare14(x0, x1, True) 30.44/13.01 new_esEs20(x0, x1, app(ty_Ratio, x2)) 30.44/13.01 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.01 new_compare16(x0, x1, True, x2, x3, x4) 30.44/13.01 new_esEs24(x0, x1, ty_Char) 30.44/13.01 new_ltEs12(Just(x0), Just(x1), ty_Int) 30.44/13.01 new_lt13(x0, x1, app(ty_[], x2)) 30.44/13.01 new_compare30(x0, x1) 30.44/13.01 new_ltEs4(Left(x0), Left(x1), ty_Double, x2) 30.44/13.01 new_ltEs18(x0, x1, ty_Integer) 30.44/13.01 new_primEqInt(Pos(Zero), Neg(Zero)) 30.44/13.01 new_primEqInt(Neg(Zero), Pos(Zero)) 30.44/13.01 new_ltEs9(x0, x1) 30.44/13.01 new_esEs27(x0, x1, ty_Int) 30.44/13.01 new_compare7(Integer(x0), Integer(x1)) 30.44/13.01 new_esEs23(x0, x1, ty_Integer) 30.44/13.01 new_esEs26(x0, x1, ty_Ordering) 30.44/13.01 new_ltEs12(Just(x0), Just(x1), ty_Char) 30.44/13.01 new_ltEs4(Left(x0), Left(x1), ty_Char, x2) 30.44/13.01 new_compare8(@0, @0) 30.44/13.01 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.01 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 30.44/13.01 new_ltEs12(Just(x0), Just(x1), ty_Double) 30.44/13.01 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.01 new_esEs27(x0, x1, ty_@0) 30.44/13.01 new_esEs27(x0, x1, app(ty_[], x2)) 30.44/13.01 new_primMulInt(Neg(x0), Neg(x1)) 30.44/13.01 new_compare5(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 30.44/13.01 new_compare5(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 30.44/13.01 new_esEs24(x0, x1, ty_Int) 30.44/13.01 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 30.44/13.01 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 30.44/13.01 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 30.44/13.01 new_esEs25(x0, x1, ty_Bool) 30.44/13.01 new_compare([], [], x0) 30.44/13.01 new_ltEs15(EQ, EQ) 30.44/13.01 new_esEs28(x0, x1, ty_Ordering) 30.44/13.01 new_lt12(x0, x1, ty_Integer) 30.44/13.01 new_lt16(x0, x1, x2, x3) 30.44/13.01 new_esEs24(x0, x1, ty_@0) 30.44/13.01 new_compare11(x0, x1, True, x2, x3) 30.44/13.01 new_esEs22(x0, x1, ty_Integer) 30.44/13.01 new_compare10(x0, x1, True, x2) 30.44/13.01 new_compare28(x0, x1, True, x2, x3, x4) 30.44/13.01 new_esEs18(x0, x1, ty_Ordering) 30.44/13.01 new_esEs20(x0, x1, ty_Integer) 30.44/13.01 new_ltEs18(x0, x1, ty_Float) 30.44/13.01 new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.01 new_esEs27(x0, x1, ty_Bool) 30.44/13.01 new_esEs28(x0, x1, ty_Integer) 30.44/13.01 new_lt20(x0, x1, ty_Integer) 30.44/13.01 new_esEs19(x0, x1, ty_Double) 30.44/13.01 new_esEs6(Just(x0), Just(x1), ty_Float) 30.44/13.01 new_esEs24(x0, x1, ty_Float) 30.44/13.01 new_esEs18(x0, x1, ty_Double) 30.44/13.01 new_esEs18(x0, x1, app(ty_Ratio, x2)) 30.44/13.01 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 30.44/13.01 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 30.44/13.01 new_esEs5(Left(x0), Right(x1), x2, x3) 30.44/13.01 new_esEs5(Right(x0), Left(x1), x2, x3) 30.44/13.01 new_compare(:(x0, x1), [], x2) 30.44/13.01 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.01 new_esEs24(x0, x1, ty_Double) 30.44/13.01 new_compare17(Char(x0), Char(x1)) 30.44/13.01 new_ltEs20(x0, x1, ty_Double) 30.44/13.01 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 30.44/13.01 new_primMulNat0(Zero, Succ(x0)) 30.44/13.01 new_lt13(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.01 new_ltEs15(GT, LT) 30.44/13.01 new_ltEs15(LT, GT) 30.44/13.01 new_esEs9(x0, x1) 30.44/13.01 new_compare18(x0, x1, x2, x3) 30.44/13.01 new_ltEs4(Right(x0), Right(x1), x2, ty_Char) 30.44/13.01 new_esEs23(x0, x1, app(ty_[], x2)) 30.44/13.01 new_compare24(Nothing, Just(x0), False, x1) 30.44/13.01 new_ltEs12(Just(x0), Just(x1), ty_@0) 30.44/13.01 new_ltEs4(Left(x0), Right(x1), x2, x3) 30.44/13.01 new_ltEs4(Right(x0), Left(x1), x2, x3) 30.44/13.01 new_esEs25(x0, x1, app(ty_Maybe, x2)) 30.44/13.01 new_ltEs19(x0, x1, ty_Integer) 30.44/13.01 new_esEs28(x0, x1, ty_Bool) 30.44/13.01 new_ltEs18(x0, x1, ty_Int) 30.44/13.01 new_ltEs19(x0, x1, app(ty_[], x2)) 30.44/13.01 new_compare5(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 30.44/13.01 new_esEs27(x0, x1, app(ty_Maybe, x2)) 30.44/13.01 new_ltEs4(Right(x0), Right(x1), x2, ty_Bool) 30.44/13.01 new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.01 new_esEs6(Just(x0), Just(x1), ty_Int) 30.44/13.01 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 30.44/13.01 new_ltEs18(x0, x1, ty_Char) 30.44/13.01 new_esEs25(x0, x1, ty_Integer) 30.44/13.01 new_primCmpNat1(Zero, Succ(x0)) 30.44/13.01 new_lt12(x0, x1, ty_Bool) 30.44/13.01 new_compare24(Nothing, Nothing, False, x0) 30.44/13.01 new_primCompAux00(x0, EQ) 30.44/13.01 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 30.44/13.01 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 30.44/13.01 new_compare24(x0, x1, True, x2) 30.44/13.01 new_primCmpNat1(Succ(x0), Succ(x1)) 30.44/13.01 new_primEqNat0(Zero, Succ(x0)) 30.44/13.01 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.01 new_ltEs20(x0, x1, ty_Ordering) 30.44/13.01 new_esEs17(Double(x0, x1), Double(x2, x3)) 30.44/13.01 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.44/13.01 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.44/13.01 new_compare31(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.01 new_esEs6(Just(x0), Just(x1), ty_Ordering) 30.44/13.01 new_pePe(True, x0) 30.44/13.01 new_primCmpInt(Neg(Zero), Neg(Zero)) 30.44/13.01 new_compare15(x0, x1, x2, x3) 30.44/13.01 new_compare19(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 30.44/13.01 new_ltEs19(x0, x1, ty_Bool) 30.44/13.01 new_esEs12(Char(x0), Char(x1)) 30.44/13.01 new_compare29(x0, x1, x2, x3, x4) 30.44/13.01 new_primCmpInt(Pos(Zero), Neg(Zero)) 30.44/13.01 new_primCmpInt(Neg(Zero), Pos(Zero)) 30.44/13.01 new_lt13(x0, x1, app(ty_Ratio, x2)) 30.44/13.01 new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) 30.44/13.01 new_esEs23(x0, x1, ty_Bool) 30.44/13.01 new_lt12(x0, x1, ty_Char) 30.44/13.01 new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) 30.44/13.01 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.01 new_esEs24(x0, x1, app(ty_Ratio, x2)) 30.44/13.01 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.01 new_esEs11(False, False) 30.44/13.01 new_esEs10(LT, GT) 30.44/13.01 new_esEs10(GT, LT) 30.44/13.01 new_esEs16([], [], x0) 30.44/13.01 new_esEs23(x0, x1, ty_Float) 30.44/13.01 new_esEs20(x0, x1, ty_Float) 30.44/13.01 new_ltEs4(Right(x0), Right(x1), x2, ty_Int) 30.44/13.01 new_esEs6(Just(x0), Just(x1), ty_Char) 30.44/13.01 new_lt12(x0, x1, app(ty_[], x2)) 30.44/13.01 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 30.44/13.01 new_lt20(x0, x1, ty_@0) 30.44/13.01 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.01 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 30.44/13.01 new_lt13(x0, x1, ty_@0) 30.44/13.01 new_esEs20(x0, x1, ty_Bool) 30.44/13.01 new_lt12(x0, x1, ty_Int) 30.44/13.01 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.01 new_esEs28(x0, x1, app(ty_[], x2)) 30.44/13.01 new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.44/13.01 new_primEqNat0(Succ(x0), Zero) 30.44/13.01 new_lt6(x0, x1, x2) 30.44/13.01 new_esEs27(x0, x1, ty_Integer) 30.44/13.01 new_ltEs12(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.44/13.01 new_lt4(x0, x1) 30.44/13.01 new_compare111(x0, x1, True) 30.44/13.01 new_lt10(x0, x1) 30.44/13.01 new_esEs18(x0, x1, ty_@0) 30.44/13.01 new_primMulNat0(Succ(x0), Succ(x1)) 30.44/13.01 new_ltEs4(Right(x0), Right(x1), x2, ty_Float) 30.44/13.01 new_esEs26(x0, x1, ty_Double) 30.44/13.01 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 30.44/13.01 new_esEs19(x0, x1, app(ty_[], x2)) 30.44/13.01 new_esEs28(x0, x1, ty_Float) 30.44/13.01 new_compare31(x0, x1, ty_@0) 30.44/13.01 new_ltEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.44/13.01 new_compare25(x0, x1, True, x2, x3) 30.44/13.01 new_esEs20(x0, x1, ty_Int) 30.44/13.01 new_esEs6(Just(x0), Just(x1), ty_Bool) 30.44/13.01 new_esEs26(x0, x1, ty_@0) 30.44/13.01 new_esEs28(x0, x1, ty_Int) 30.44/13.01 new_ltEs11(False, True) 30.44/13.01 new_ltEs11(True, False) 30.44/13.01 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 30.44/13.01 new_esEs10(EQ, GT) 30.44/13.01 new_esEs10(GT, EQ) 30.44/13.01 new_ltEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.44/13.01 new_ltEs18(x0, x1, app(ty_[], x2)) 30.44/13.01 new_lt13(x0, x1, ty_Double) 30.44/13.01 new_esEs23(x0, x1, ty_Int) 30.44/13.01 new_compare31(x0, x1, app(ty_[], x2)) 30.44/13.01 new_esEs20(x0, x1, ty_Char) 30.44/13.01 new_ltEs12(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.44/13.01 new_lt12(x0, x1, ty_Float) 30.44/13.01 new_ltEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.44/13.01 new_esEs27(x0, x1, ty_Float) 30.44/13.01 new_ltEs12(Just(x0), Just(x1), app(ty_[], x2)) 30.44/13.01 new_compare13(x0, x1, x2) 30.44/13.01 new_compare12(x0, x1) 30.44/13.01 new_lt12(x0, x1, ty_Double) 30.44/13.01 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.01 new_lt14(x0, x1, x2) 30.44/13.01 new_primMulNat0(Zero, Zero) 30.44/13.01 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.01 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.01 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 30.44/13.01 new_lt12(x0, x1, ty_Ordering) 30.44/13.01 new_ltEs10(x0, x1, x2) 30.44/13.01 new_primCompAux00(x0, LT) 30.44/13.01 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.01 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.01 new_ltEs19(x0, x1, ty_Char) 30.44/13.01 new_compare31(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.01 new_sr(x0, x1) 30.44/13.01 new_asAs(False, x0) 30.44/13.01 new_ltEs19(x0, x1, ty_Int) 30.44/13.01 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 30.44/13.01 new_ltEs4(Left(x0), Left(x1), ty_Float, x2) 30.44/13.01 new_lt13(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.01 new_ltEs14(x0, x1) 30.44/13.01 new_ltEs20(x0, x1, ty_Integer) 30.44/13.01 new_esEs8(Float(x0, x1), Float(x2, x3)) 30.44/13.01 new_esEs6(Just(x0), Just(x1), ty_Integer) 30.44/13.01 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.44/13.01 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.44/13.01 new_lt13(x0, x1, app(ty_Maybe, x2)) 30.44/13.01 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.01 new_compare31(x0, x1, app(ty_Ratio, x2)) 30.44/13.01 new_ltEs19(x0, x1, ty_Ordering) 30.44/13.01 new_ltEs19(x0, x1, ty_@0) 30.44/13.01 new_esEs22(x0, x1, ty_Int) 30.44/13.01 new_ltEs20(x0, x1, ty_@0) 30.44/13.01 new_ltEs12(Just(x0), Just(x1), ty_Integer) 30.44/13.01 new_esEs18(x0, x1, ty_Bool) 30.44/13.01 new_esEs21(x0, x1, ty_Int) 30.44/13.01 new_ltEs12(Just(x0), Just(x1), ty_Float) 30.44/13.01 new_esEs6(Just(x0), Just(x1), ty_@0) 30.44/13.01 new_esEs10(LT, LT) 30.44/13.01 new_not(True) 30.44/13.01 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.01 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.44/13.01 new_compare210(x0, x1, False) 30.44/13.01 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.01 new_lt15(x0, x1) 30.44/13.01 new_pePe(False, x0) 30.44/13.01 new_esEs23(x0, x1, app(ty_Ratio, x2)) 30.44/13.01 new_lt20(x0, x1, app(ty_Maybe, x2)) 30.44/13.01 new_esEs11(True, True) 30.44/13.01 new_ltEs12(Nothing, Nothing, x0) 30.44/13.01 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.44/13.01 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 30.44/13.01 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.01 new_primCmpNat0(Zero, x0) 30.44/13.01 new_esEs15(Integer(x0), Integer(x1)) 30.44/13.01 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.01 new_ltEs15(GT, EQ) 30.44/13.01 new_ltEs15(EQ, GT) 30.44/13.01 new_primCmpNat2(x0, Zero) 30.44/13.01 new_compare(:(x0, x1), :(x2, x3), x4) 30.44/13.01 new_ltEs4(Left(x0), Left(x1), ty_Bool, x2) 30.44/13.01 new_compare19(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 30.44/13.01 new_esEs11(False, True) 30.44/13.01 new_esEs11(True, False) 30.44/13.01 new_esEs26(x0, x1, ty_Integer) 30.44/13.01 new_ltEs20(x0, x1, ty_Char) 30.44/13.01 new_ltEs12(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.44/13.01 new_lt13(x0, x1, ty_Ordering) 30.44/13.01 new_lt17(x0, x1) 30.44/13.01 new_esEs23(x0, x1, app(ty_Maybe, x2)) 30.44/13.01 new_lt20(x0, x1, app(ty_Ratio, x2)) 30.44/13.01 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 30.44/13.01 new_esEs6(Just(x0), Nothing, x1) 30.44/13.01 new_ltEs12(Just(x0), Just(x1), ty_Bool) 30.44/13.01 new_primEqNat0(Succ(x0), Succ(x1)) 30.44/13.01 new_esEs18(x0, x1, ty_Integer) 30.44/13.01 new_esEs20(x0, x1, ty_Ordering) 30.44/13.01 new_ltEs4(Left(x0), Left(x1), ty_@0, x2) 30.44/13.01 new_esEs13(:%(x0, x1), :%(x2, x3), x4) 30.44/13.01 new_esEs26(x0, x1, app(ty_[], x2)) 30.44/13.01 new_ltEs4(Right(x0), Right(x1), x2, ty_Integer) 30.44/13.01 new_ltEs20(x0, x1, ty_Bool) 30.44/13.01 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.44/13.01 new_primPlusNat1(Succ(x0), Zero) 30.44/13.01 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.01 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 30.44/13.01 new_ltEs12(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.44/13.01 new_ltEs20(x0, x1, app(ty_[], x2)) 30.44/13.01 new_primMulNat0(Succ(x0), Zero) 30.44/13.01 new_lt20(x0, x1, app(ty_[], x2)) 30.44/13.01 new_primCmpInt(Pos(Zero), Pos(Zero)) 30.44/13.01 new_compare31(x0, x1, ty_Integer) 30.44/13.01 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.44/13.01 new_esEs25(x0, x1, app(ty_Ratio, x2)) 30.44/13.01 new_lt12(x0, x1, ty_@0) 30.44/13.01 new_esEs19(x0, x1, ty_Ordering) 30.44/13.01 new_ltEs13(@2(x0, x1), @2(x2, x3), x4, x5) 30.44/13.01 new_esEs19(x0, x1, app(ty_Maybe, x2)) 30.44/13.01 new_esEs10(GT, GT) 30.44/13.01 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 30.44/13.01 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 30.44/13.01 new_primMulInt(Pos(x0), Pos(x1)) 30.44/13.01 new_esEs14(@0, @0) 30.44/13.01 new_primPlusNat1(Zero, Succ(x0)) 30.44/13.01 new_ltEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.44/13.01 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 30.44/13.01 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 30.44/13.01 new_primPlusNat0(x0, x1) 30.44/13.01 new_esEs10(LT, EQ) 30.44/13.01 new_esEs10(EQ, LT) 30.44/13.01 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.01 new_compare26(x0, x1, False) 30.44/13.01 new_esEs24(x0, x1, app(ty_Maybe, x2)) 30.44/13.01 new_compare110(x0, x1, True, x2, x3) 30.44/13.01 new_esEs18(x0, x1, ty_Int) 30.44/13.01 new_primMulInt(Pos(x0), Neg(x1)) 30.44/13.01 new_primMulInt(Neg(x0), Pos(x1)) 30.44/13.01 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 30.44/13.01 new_esEs19(x0, x1, ty_Float) 30.44/13.01 new_ltEs5(x0, x1, x2) 30.44/13.01 new_esEs27(x0, x1, app(ty_Ratio, x2)) 30.44/13.01 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 30.44/13.01 new_ltEs4(Right(x0), Right(x1), x2, ty_@0) 30.44/13.01 new_esEs25(x0, x1, app(ty_[], x2)) 30.44/13.01 new_esEs6(Just(x0), Just(x1), ty_Double) 30.44/13.01 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 30.44/13.01 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 30.44/13.01 new_ltEs18(x0, x1, ty_Ordering) 30.44/13.01 new_compare6(x0, x1) 30.44/13.01 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 30.44/13.01 new_esEs26(x0, x1, ty_Bool) 30.44/13.01 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.44/13.01 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.44/13.01 new_lt20(x0, x1, ty_Bool) 30.44/13.01 new_ltEs12(Nothing, Just(x0), x1) 30.44/13.01 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.01 new_ltEs15(EQ, LT) 30.44/13.01 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 30.44/13.01 new_ltEs15(LT, EQ) 30.44/13.01 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 30.44/13.01 new_ltEs20(x0, x1, ty_Float) 30.44/13.01 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.01 new_ltEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.44/13.01 new_esEs19(x0, x1, ty_Char) 30.44/13.01 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.01 new_ltEs15(GT, GT) 30.44/13.01 new_compare5(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 30.44/13.01 new_ltEs20(x0, x1, ty_Int) 30.44/13.01 new_compare31(x0, x1, ty_Bool) 30.44/13.01 new_esEs16(:(x0, x1), [], x2) 30.44/13.01 new_fsEs(x0) 30.44/13.01 new_lt9(x0, x1) 30.44/13.01 new_ltEs11(False, False) 30.44/13.01 new_esEs28(x0, x1, app(ty_Ratio, x2)) 30.44/13.01 new_esEs19(x0, x1, ty_Int) 30.44/13.01 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.44/13.01 new_ltEs18(x0, x1, ty_Double) 30.44/13.01 new_esEs19(x0, x1, app(ty_Ratio, x2)) 30.44/13.01 new_compare111(x0, x1, False) 30.44/13.01 new_ltEs12(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.44/13.01 new_lt13(x0, x1, ty_Bool) 30.44/13.01 new_esEs26(x0, x1, ty_Int) 30.44/13.01 new_primEqNat0(Zero, Zero) 30.44/13.01 new_compare19(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 30.44/13.01 new_compare19(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 30.44/13.01 new_lt13(x0, x1, ty_Float) 30.44/13.01 new_esEs25(x0, x1, ty_Float) 30.44/13.01 new_esEs20(x0, x1, ty_@0) 30.44/13.01 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.44/13.01 new_not(False) 30.44/13.01 new_esEs24(x0, x1, ty_Integer) 30.44/13.01 new_compare16(x0, x1, False, x2, x3, x4) 30.44/13.01 new_primCompAux0(x0, x1, x2, x3) 30.44/13.01 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 30.44/13.01 new_lt7(x0, x1) 30.44/13.01 new_esEs23(x0, x1, ty_Double) 30.44/13.01 new_esEs18(x0, x1, ty_Char) 30.44/13.01 new_ltEs19(x0, x1, ty_Double) 30.44/13.01 new_ltEs4(Left(x0), Left(x1), ty_Integer, x2) 30.44/13.01 new_compare14(x0, x1, False) 30.44/13.01 new_ltEs8(x0, x1) 30.44/13.01 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.44/13.01 new_esEs28(x0, x1, ty_Double) 30.44/13.01 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.01 new_esEs19(x0, x1, ty_Integer) 30.44/13.01 new_esEs21(x0, x1, ty_Integer) 30.44/13.01 new_ltEs15(LT, LT) 30.44/13.01 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.01 new_esEs26(x0, x1, ty_Float) 30.44/13.01 new_ltEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.44/13.01 new_lt12(x0, x1, app(ty_Maybe, x2)) 30.44/13.01 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 30.44/13.01 new_lt13(x0, x1, ty_Int) 30.44/13.01 new_ltEs12(Just(x0), Nothing, x1) 30.44/13.01 new_esEs26(x0, x1, ty_Char) 30.44/13.01 new_lt20(x0, x1, ty_Float) 30.44/13.01 new_lt19(x0, x1) 30.44/13.01 new_compare24(Just(x0), Just(x1), False, x2) 30.44/13.01 new_asAs(True, x0) 30.44/13.01 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 30.44/13.01 new_ltEs4(Left(x0), Left(x1), ty_Ordering, x2) 30.44/13.01 new_lt13(x0, x1, ty_Char) 30.44/13.01 new_esEs23(x0, x1, ty_@0) 30.44/13.01 new_ltEs16(x0, x1) 30.44/13.01 new_esEs20(x0, x1, ty_Double) 30.44/13.01 new_esEs16([], :(x0, x1), x2) 30.44/13.01 new_esEs18(x0, x1, ty_Float) 30.44/13.01 new_esEs28(x0, x1, ty_@0) 30.44/13.01 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 30.44/13.01 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.01 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.44/13.01 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 30.44/13.01 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 30.44/13.01 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.44/13.01 new_compare10(x0, x1, False, x2) 30.44/13.01 new_esEs20(x0, x1, app(ty_[], x2)) 30.44/13.01 new_compare31(x0, x1, ty_Float) 30.44/13.01 new_esEs24(x0, x1, ty_Ordering) 30.44/13.01 30.44/13.01 We have to consider all minimal (P,Q,R)-chains. 30.44/13.01 ---------------------------------------- 30.44/13.01 30.44/13.01 (46) QDPSizeChangeProof (EQUIVALENT) 30.44/13.01 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.44/13.01 30.44/13.01 From the DPs we obtained the following set of size-change graphs: 30.44/13.01 *new_compare0(:(xuu30000, xuu30001), :(xuu31000, xuu31001), h) -> new_primCompAux(xuu30000, xuu31000, new_compare(xuu30001, xuu31001, h), h) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare0(:(xuu30000, xuu30001), :(xuu31000, xuu31001), h) -> new_compare0(xuu30001, xuu31001, h) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 30.44/13.01 30.44/13.01 30.44/13.01 *new_lt2(xuu30000, xuu31000, fg) -> new_compare22(xuu30000, xuu31000, new_esEs6(xuu30000, xuu31000, fg), fg) 30.44/13.01 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs0(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), app(ty_Maybe, fg), cf, eb) -> new_compare22(xuu30000, xuu31000, new_esEs6(xuu30000, xuu31000, fg), fg) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs0(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), app(app(app(ty_@3, cb), cc), cd), cf, eb) -> new_compare20(xuu30000, xuu31000, new_esEs4(xuu30000, xuu31000, cb, cc, cd), cb, cc, cd) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5, 3 > 6 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs0(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), ce, cf, app(app(ty_@2, dg), dh)) -> new_ltEs3(xuu30002, xuu31002, dg, dh) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs0(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), ce, cf, app(app(app(ty_@3, da), db), dc)) -> new_ltEs0(xuu30002, xuu31002, da, db, dc) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(:(xuu30000, xuu30001)), Just(:(xuu31000, xuu31001)), False, app(ty_[], h)) -> new_primCompAux(xuu30000, xuu31000, new_compare(xuu30001, xuu31001, h), h) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs(:(xuu30000, xuu30001), :(xuu31000, xuu31001), h) -> new_primCompAux(xuu30000, xuu31000, new_compare(xuu30001, xuu31001, h), h) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, app(ty_Maybe, fg)), cf), eb)) -> new_compare22(xuu30000, xuu31000, new_esEs6(xuu30000, xuu31000, fg), fg) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare3(xuu30000, xuu31000, fg) -> new_compare22(xuu30000, xuu31000, new_esEs6(xuu30000, xuu31000, fg), fg) 30.44/13.01 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs0(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), ce, app(ty_Maybe, eh), eb) -> new_lt2(xuu30001, xuu31001, eh) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, app(app(app(ty_@3, cb), cc), cd)), cf), eb)) -> new_compare20(xuu30000, xuu31000, new_esEs4(xuu30000, xuu31000, cb, cc, cd), cb, cc, cd) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs3(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), app(ty_Maybe, bdh), bdb) -> new_lt2(xuu30000, xuu31000, bdh) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.44/13.01 30.44/13.01 30.44/13.01 *new_lt1(xuu30000, xuu31000, fd, ff) -> new_compare21(xuu30000, xuu31000, new_esEs5(xuu30000, xuu31000, fd, ff), fd, ff) 30.44/13.01 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 30.44/13.01 30.44/13.01 30.44/13.01 *new_lt3(xuu30000, xuu31000, fh, ga) -> new_compare23(xuu30000, xuu31000, new_esEs7(xuu30000, xuu31000, fh, ga), fh, ga) 30.44/13.01 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs3(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), bbg, app(app(ty_@2, bcg), bch)) -> new_ltEs3(xuu30001, xuu31001, bcg, bch) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs3(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), bbg, app(app(app(ty_@3, bca), bcb), bcc)) -> new_ltEs0(xuu30001, xuu31001, bca, bcb, bcc) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs0(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), ce, cf, app(app(ty_Either, dd), de)) -> new_ltEs1(xuu30002, xuu31002, dd, de) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs3(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), bbg, app(app(ty_Either, bcd), bce)) -> new_ltEs1(xuu30001, xuu31001, bcd, bce) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs(:(xuu30000, xuu30001), :(xuu31000, xuu31001), h) -> new_compare0(xuu30001, xuu31001, h) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs2(Just(xuu30000), Just(xuu31000), app(app(ty_@2, bbe), bbf)) -> new_ltEs3(xuu30000, xuu31000, bbe, bbf) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare23(xuu30000, xuu31000, False, fh, ga) -> new_ltEs3(xuu30000, xuu31000, fh, ga) 30.44/13.01 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs2(Just(xuu30000), Just(xuu31000), app(app(app(ty_@3, bag), bah), bba)) -> new_ltEs0(xuu30000, xuu31000, bag, bah, bba) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare20(xuu30000, xuu31000, False, cb, cc, cd) -> new_ltEs0(xuu30000, xuu31000, cb, cc, cd) 30.44/13.01 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs2(Just(xuu30000), Just(xuu31000), app(app(ty_Either, bbb), bbc)) -> new_ltEs1(xuu30000, xuu31000, bbb, bbc) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare21(xuu30000, xuu31000, False, fd, ff) -> new_ltEs1(xuu30000, xuu31000, fd, ff) 30.44/13.01 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs0(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), ce, cf, app(ty_[], cg)) -> new_ltEs(xuu30002, xuu31002, cg) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs3(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), bbg, app(ty_[], bbh)) -> new_ltEs(xuu30001, xuu31001, bbh) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs2(Just(xuu30000), Just(xuu31000), app(ty_[], baf)) -> new_ltEs(xuu30000, xuu31000, baf) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs2(Just(xuu30000), Just(xuu31000), app(ty_Maybe, bbd)) -> new_ltEs2(xuu30000, xuu31000, bbd) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs0(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), app(app(ty_@2, fh), ga), cf, eb) -> new_compare23(xuu30000, xuu31000, new_esEs7(xuu30000, xuu31000, fh, ga), fh, ga) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, app(app(ty_@2, fh), ga)), cf), eb)) -> new_compare23(xuu30000, xuu31000, new_esEs7(xuu30000, xuu31000, fh, ga), fh, ga) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare4(xuu30000, xuu31000, fh, ga) -> new_compare23(xuu30000, xuu31000, new_esEs7(xuu30000, xuu31000, fh, ga), fh, ga) 30.44/13.01 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 30.44/13.01 30.44/13.01 30.44/13.01 *new_lt(xuu30000, xuu31000, fc) -> new_compare0(xuu30000, xuu31000, fc) 30.44/13.01 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 30.44/13.01 30.44/13.01 30.44/13.01 *new_primCompAux(xuu30000, xuu31000, xuu168, app(app(ty_Either, be), bf)) -> new_compare2(xuu30000, xuu31000, be, bf) 30.44/13.01 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare2(xuu30000, xuu31000, fd, ff) -> new_compare21(xuu30000, xuu31000, new_esEs5(xuu30000, xuu31000, fd, ff), fd, ff) 30.44/13.01 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 30.44/13.01 30.44/13.01 30.44/13.01 *new_primCompAux(xuu30000, xuu31000, xuu168, app(app(ty_@2, bh), ca)) -> new_compare4(xuu30000, xuu31000, bh, ca) 30.44/13.01 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs0(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), app(ty_[], fc), cf, eb) -> new_compare0(xuu30000, xuu31000, fc) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.44/13.01 30.44/13.01 30.44/13.01 *new_primCompAux(xuu30000, xuu31000, xuu168, app(ty_[], ba)) -> new_compare0(xuu30000, xuu31000, ba) 30.44/13.01 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs0(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), ce, cf, app(ty_Maybe, df)) -> new_ltEs2(xuu30002, xuu31002, df) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs3(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), bbg, app(ty_Maybe, bcf)) -> new_ltEs2(xuu30001, xuu31001, bcf) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.44/13.01 30.44/13.01 30.44/13.01 *new_lt0(xuu30000, xuu31000, cb, cc, cd) -> new_compare20(xuu30000, xuu31000, new_esEs4(xuu30000, xuu31000, cb, cc, cd), cb, cc, cd) 30.44/13.01 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare1(xuu30000, xuu31000, cb, cc, cd) -> new_compare20(xuu30000, xuu31000, new_esEs4(xuu30000, xuu31000, cb, cc, cd), cb, cc, cd) 30.44/13.01 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs0(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), app(app(ty_Either, fd), ff), cf, eb) -> new_compare21(xuu30000, xuu31000, new_esEs5(xuu30000, xuu31000, fd, ff), fd, ff) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, app(app(ty_Either, fd), ff)), cf), eb)) -> new_compare21(xuu30000, xuu31000, new_esEs5(xuu30000, xuu31000, fd, ff), fd, ff) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 30.44/13.01 30.44/13.01 30.44/13.01 *new_primCompAux(xuu30000, xuu31000, xuu168, app(ty_Maybe, bg)) -> new_compare3(xuu30000, xuu31000, bg) 30.44/13.01 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 30.44/13.01 30.44/13.01 30.44/13.01 *new_primCompAux(xuu30000, xuu31000, xuu168, app(app(app(ty_@3, bb), bc), bd)) -> new_compare1(xuu30000, xuu31000, bb, bc, bd) 30.44/13.01 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs0(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), ce, app(app(app(ty_@3, ec), ed), ee), eb) -> new_lt0(xuu30001, xuu31001, ec, ed, ee) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs3(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), app(app(app(ty_@3, bdc), bdd), bde), bdb) -> new_lt0(xuu30000, xuu31000, bdc, bdd, bde) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs0(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), ce, app(ty_[], ea), eb) -> new_lt(xuu30001, xuu31001, ea) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs3(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), app(ty_[], bda), bdb) -> new_lt(xuu30000, xuu31000, bda) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs0(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), ce, app(app(ty_Either, ef), eg), eb) -> new_lt1(xuu30001, xuu31001, ef, eg) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs0(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), ce, app(app(ty_@2, fa), fb), eb) -> new_lt3(xuu30001, xuu31001, fa, fb) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs3(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), app(app(ty_Either, bdf), bdg), bdb) -> new_lt1(xuu30000, xuu31000, bdf, bdg) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs3(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), app(app(ty_@2, bea), beb), bdb) -> new_lt3(xuu30000, xuu31000, bea, beb) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs1(Left(xuu30000), Left(xuu31000), app(app(ty_@2, hb), hc), gc) -> new_ltEs3(xuu30000, xuu31000, hb, hc) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs1(Right(xuu30000), Right(xuu31000), hd, app(app(ty_@2, bad), bae)) -> new_ltEs3(xuu30000, xuu31000, bad, bae) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs1(Left(xuu30000), Left(xuu31000), app(app(app(ty_@3, gd), ge), gf), gc) -> new_ltEs0(xuu30000, xuu31000, gd, ge, gf) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs1(Right(xuu30000), Right(xuu31000), hd, app(app(app(ty_@3, hf), hg), hh)) -> new_ltEs0(xuu30000, xuu31000, hf, hg, hh) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs1(Right(xuu30000), Right(xuu31000), hd, app(app(ty_Either, baa), bab)) -> new_ltEs1(xuu30000, xuu31000, baa, bab) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs1(Left(xuu30000), Left(xuu31000), app(app(ty_Either, gg), gh), gc) -> new_ltEs1(xuu30000, xuu31000, gg, gh) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs1(Right(xuu30000), Right(xuu31000), hd, app(ty_[], he)) -> new_ltEs(xuu30000, xuu31000, he) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs1(Left(xuu30000), Left(xuu31000), app(ty_[], gb), gc) -> new_ltEs(xuu30000, xuu31000, gb) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs1(Left(xuu30000), Left(xuu31000), app(ty_Maybe, ha), gc) -> new_ltEs2(xuu30000, xuu31000, ha) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.44/13.01 30.44/13.01 30.44/13.01 *new_ltEs1(Right(xuu30000), Right(xuu31000), hd, app(ty_Maybe, bac)) -> new_ltEs2(xuu30000, xuu31000, bac) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, ce), cf), app(app(ty_@2, dg), dh))) -> new_ltEs3(xuu30002, xuu31002, dg, dh) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(Just(xuu30000)), Just(Just(xuu31000)), False, app(ty_Maybe, app(app(ty_@2, bbe), bbf))) -> new_ltEs3(xuu30000, xuu31000, bbe, bbf) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(Right(xuu30000)), Just(Right(xuu31000)), False, app(app(ty_Either, hd), app(app(ty_@2, bad), bae))) -> new_ltEs3(xuu30000, xuu31000, bad, bae) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, bbg), app(app(ty_@2, bcg), bch))) -> new_ltEs3(xuu30001, xuu31001, bcg, bch) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(Left(xuu30000)), Just(Left(xuu31000)), False, app(app(ty_Either, app(app(ty_@2, hb), hc)), gc)) -> new_ltEs3(xuu30000, xuu31000, hb, hc) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, bbg), app(app(app(ty_@3, bca), bcb), bcc))) -> new_ltEs0(xuu30001, xuu31001, bca, bcb, bcc) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(Left(xuu30000)), Just(Left(xuu31000)), False, app(app(ty_Either, app(app(app(ty_@3, gd), ge), gf)), gc)) -> new_ltEs0(xuu30000, xuu31000, gd, ge, gf) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, ce), cf), app(app(app(ty_@3, da), db), dc))) -> new_ltEs0(xuu30002, xuu31002, da, db, dc) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(Just(xuu30000)), Just(Just(xuu31000)), False, app(ty_Maybe, app(app(app(ty_@3, bag), bah), bba))) -> new_ltEs0(xuu30000, xuu31000, bag, bah, bba) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(Right(xuu30000)), Just(Right(xuu31000)), False, app(app(ty_Either, hd), app(app(app(ty_@3, hf), hg), hh))) -> new_ltEs0(xuu30000, xuu31000, hf, hg, hh) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, ce), app(ty_Maybe, eh)), eb)) -> new_lt2(xuu30001, xuu31001, eh) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, app(ty_Maybe, bdh)), bdb)) -> new_lt2(xuu30000, xuu31000, bdh) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(Right(xuu30000)), Just(Right(xuu31000)), False, app(app(ty_Either, hd), app(app(ty_Either, baa), bab))) -> new_ltEs1(xuu30000, xuu31000, baa, bab) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(Just(xuu30000)), Just(Just(xuu31000)), False, app(ty_Maybe, app(app(ty_Either, bbb), bbc))) -> new_ltEs1(xuu30000, xuu31000, bbb, bbc) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(Left(xuu30000)), Just(Left(xuu31000)), False, app(app(ty_Either, app(app(ty_Either, gg), gh)), gc)) -> new_ltEs1(xuu30000, xuu31000, gg, gh) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, bbg), app(app(ty_Either, bcd), bce))) -> new_ltEs1(xuu30001, xuu31001, bcd, bce) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, ce), cf), app(app(ty_Either, dd), de))) -> new_ltEs1(xuu30002, xuu31002, dd, de) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, ce), cf), app(ty_[], cg))) -> new_ltEs(xuu30002, xuu31002, cg) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(Just(xuu30000)), Just(Just(xuu31000)), False, app(ty_Maybe, app(ty_[], baf))) -> new_ltEs(xuu30000, xuu31000, baf) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, bbg), app(ty_[], bbh))) -> new_ltEs(xuu30001, xuu31001, bbh) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(Left(xuu30000)), Just(Left(xuu31000)), False, app(app(ty_Either, app(ty_[], gb)), gc)) -> new_ltEs(xuu30000, xuu31000, gb) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(Right(xuu30000)), Just(Right(xuu31000)), False, app(app(ty_Either, hd), app(ty_[], he))) -> new_ltEs(xuu30000, xuu31000, he) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, app(ty_[], fc)), cf), eb)) -> new_compare0(xuu30000, xuu31000, fc) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(:(xuu30000, xuu30001)), Just(:(xuu31000, xuu31001)), False, app(ty_[], h)) -> new_compare0(xuu30001, xuu31001, h) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, bbg), app(ty_Maybe, bcf))) -> new_ltEs2(xuu30001, xuu31001, bcf) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(Right(xuu30000)), Just(Right(xuu31000)), False, app(app(ty_Either, hd), app(ty_Maybe, bac))) -> new_ltEs2(xuu30000, xuu31000, bac) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(Left(xuu30000)), Just(Left(xuu31000)), False, app(app(ty_Either, app(ty_Maybe, ha)), gc)) -> new_ltEs2(xuu30000, xuu31000, ha) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(Just(xuu30000)), Just(Just(xuu31000)), False, app(ty_Maybe, app(ty_Maybe, bbd))) -> new_ltEs2(xuu30000, xuu31000, bbd) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, ce), cf), app(ty_Maybe, df))) -> new_ltEs2(xuu30002, xuu31002, df) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, ce), app(app(app(ty_@3, ec), ed), ee)), eb)) -> new_lt0(xuu30001, xuu31001, ec, ed, ee) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, app(app(app(ty_@3, bdc), bdd), bde)), bdb)) -> new_lt0(xuu30000, xuu31000, bdc, bdd, bde) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, app(ty_[], bda)), bdb)) -> new_lt(xuu30000, xuu31000, bda) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, ce), app(ty_[], ea)), eb)) -> new_lt(xuu30001, xuu31001, ea) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, ce), app(app(ty_Either, ef), eg)), eb)) -> new_lt1(xuu30001, xuu31001, ef, eg) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, app(app(ty_Either, bdf), bdg)), bdb)) -> new_lt1(xuu30000, xuu31000, bdf, bdg) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, app(app(ty_@2, bea), beb)), bdb)) -> new_lt3(xuu30000, xuu31000, bea, beb) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.44/13.01 30.44/13.01 30.44/13.01 *new_compare22(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, ce), app(app(ty_@2, fa), fb)), eb)) -> new_lt3(xuu30001, xuu31001, fa, fb) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.44/13.01 30.44/13.01 30.44/13.01 ---------------------------------------- 30.44/13.01 30.44/13.01 (47) 30.44/13.01 YES 30.44/13.01 30.44/13.01 ---------------------------------------- 30.44/13.01 30.44/13.01 (48) 30.44/13.01 Obligation: 30.44/13.01 Q DP problem: 30.44/13.01 The TRS P consists of the following rules: 30.44/13.01 30.44/13.01 new_primMulNat(Succ(xuu4000000), Succ(xuu300100)) -> new_primMulNat(xuu4000000, Succ(xuu300100)) 30.44/13.01 30.44/13.01 R is empty. 30.44/13.01 Q is empty. 30.44/13.01 We have to consider all minimal (P,Q,R)-chains. 30.44/13.01 ---------------------------------------- 30.44/13.01 30.44/13.01 (49) QDPSizeChangeProof (EQUIVALENT) 30.44/13.01 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.44/13.01 30.44/13.01 From the DPs we obtained the following set of size-change graphs: 30.44/13.01 *new_primMulNat(Succ(xuu4000000), Succ(xuu300100)) -> new_primMulNat(xuu4000000, Succ(xuu300100)) 30.44/13.01 The graph contains the following edges 1 > 1, 2 >= 2 30.44/13.01 30.44/13.01 30.44/13.01 ---------------------------------------- 30.44/13.01 30.44/13.01 (50) 30.44/13.01 YES 30.44/13.01 30.44/13.01 ---------------------------------------- 30.44/13.01 30.44/13.01 (51) 30.44/13.01 Obligation: 30.44/13.01 Q DP problem: 30.44/13.01 The TRS P consists of the following rules: 30.44/13.01 30.44/13.01 new_primEqNat(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat(xuu400000, xuu30000) 30.44/13.01 30.44/13.01 R is empty. 30.44/13.01 Q is empty. 30.44/13.01 We have to consider all minimal (P,Q,R)-chains. 30.44/13.01 ---------------------------------------- 30.44/13.01 30.44/13.01 (52) QDPSizeChangeProof (EQUIVALENT) 30.44/13.01 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.44/13.01 30.44/13.01 From the DPs we obtained the following set of size-change graphs: 30.44/13.01 *new_primEqNat(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat(xuu400000, xuu30000) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2 30.44/13.01 30.44/13.01 30.44/13.01 ---------------------------------------- 30.44/13.01 30.44/13.01 (53) 30.44/13.01 YES 30.44/13.01 30.44/13.01 ---------------------------------------- 30.44/13.01 30.44/13.01 (54) 30.44/13.01 Obligation: 30.44/13.01 Q DP problem: 30.44/13.01 The TRS P consists of the following rules: 30.44/13.01 30.44/13.01 new_primMinusNat(Succ(xuu25200), Succ(xuu9400)) -> new_primMinusNat(xuu25200, xuu9400) 30.44/13.01 30.44/13.01 R is empty. 30.44/13.01 Q is empty. 30.44/13.01 We have to consider all minimal (P,Q,R)-chains. 30.44/13.01 ---------------------------------------- 30.44/13.01 30.44/13.01 (55) QDPSizeChangeProof (EQUIVALENT) 30.44/13.01 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.44/13.01 30.44/13.01 From the DPs we obtained the following set of size-change graphs: 30.44/13.01 *new_primMinusNat(Succ(xuu25200), Succ(xuu9400)) -> new_primMinusNat(xuu25200, xuu9400) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2 30.44/13.01 30.44/13.01 30.44/13.01 ---------------------------------------- 30.44/13.01 30.44/13.01 (56) 30.44/13.01 YES 30.44/13.01 30.44/13.01 ---------------------------------------- 30.44/13.01 30.44/13.01 (57) 30.44/13.01 Obligation: 30.44/13.01 Q DP problem: 30.44/13.01 The TRS P consists of the following rules: 30.44/13.01 30.44/13.01 new_primPlusNat(Succ(xuu25200), Succ(xuu9400)) -> new_primPlusNat(xuu25200, xuu9400) 30.44/13.01 30.44/13.01 R is empty. 30.44/13.01 Q is empty. 30.44/13.01 We have to consider all minimal (P,Q,R)-chains. 30.44/13.01 ---------------------------------------- 30.44/13.01 30.44/13.01 (58) QDPSizeChangeProof (EQUIVALENT) 30.44/13.01 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.44/13.01 30.44/13.01 From the DPs we obtained the following set of size-change graphs: 30.44/13.01 *new_primPlusNat(Succ(xuu25200), Succ(xuu9400)) -> new_primPlusNat(xuu25200, xuu9400) 30.44/13.01 The graph contains the following edges 1 > 1, 2 > 2 30.44/13.01 30.44/13.01 30.44/13.01 ---------------------------------------- 30.44/13.01 30.44/13.01 (59) 30.44/13.01 YES 30.47/13.06 EOF