22.52/9.86 YES 25.31/10.58 proof of /export/starexec/sandbox2/benchmark/theBenchmark.hs 25.31/10.58 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 25.31/10.58 25.31/10.58 25.31/10.58 H-Termination with start terms of the given HASKELL could be proven: 25.31/10.58 25.31/10.58 (0) HASKELL 25.31/10.58 (1) LR [EQUIVALENT, 0 ms] 25.31/10.58 (2) HASKELL 25.31/10.58 (3) CR [EQUIVALENT, 0 ms] 25.31/10.58 (4) HASKELL 25.31/10.58 (5) IFR [EQUIVALENT, 0 ms] 25.31/10.58 (6) HASKELL 25.31/10.58 (7) BR [EQUIVALENT, 10 ms] 25.31/10.58 (8) HASKELL 25.31/10.58 (9) COR [EQUIVALENT, 0 ms] 25.31/10.58 (10) HASKELL 25.31/10.58 (11) LetRed [EQUIVALENT, 5 ms] 25.31/10.58 (12) HASKELL 25.31/10.58 (13) NumRed [SOUND, 0 ms] 25.31/10.58 (14) HASKELL 25.31/10.58 (15) Narrow [SOUND, 0 ms] 25.31/10.58 (16) AND 25.31/10.58 (17) QDP 25.31/10.58 (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] 25.31/10.58 (19) YES 25.31/10.58 (20) QDP 25.31/10.58 (21) QDPSizeChangeProof [EQUIVALENT, 0 ms] 25.31/10.58 (22) YES 25.31/10.58 (23) QDP 25.31/10.58 (24) QDPSizeChangeProof [EQUIVALENT, 27 ms] 25.31/10.58 (25) YES 25.31/10.58 (26) QDP 25.31/10.58 (27) QDPSizeChangeProof [EQUIVALENT, 0 ms] 25.31/10.58 (28) YES 25.31/10.58 (29) QDP 25.31/10.58 (30) DependencyGraphProof [EQUIVALENT, 1 ms] 25.31/10.58 (31) AND 25.31/10.58 (32) QDP 25.31/10.58 (33) TransformationProof [EQUIVALENT, 1372 ms] 25.31/10.58 (34) QDP 25.31/10.58 (35) DependencyGraphProof [EQUIVALENT, 0 ms] 25.31/10.58 (36) QDP 25.31/10.58 (37) TransformationProof [EQUIVALENT, 0 ms] 25.31/10.58 (38) QDP 25.31/10.58 (39) TransformationProof [EQUIVALENT, 0 ms] 25.31/10.58 (40) QDP 25.31/10.58 (41) TransformationProof [EQUIVALENT, 0 ms] 25.31/10.58 (42) QDP 25.31/10.58 (43) QDPSizeChangeProof [EQUIVALENT, 0 ms] 25.31/10.58 (44) YES 25.31/10.58 (45) QDP 25.31/10.58 (46) QDPSizeChangeProof [EQUIVALENT, 0 ms] 25.31/10.58 (47) YES 25.31/10.58 (48) QDP 25.31/10.58 (49) QDPSizeChangeProof [EQUIVALENT, 0 ms] 25.31/10.58 (50) YES 25.31/10.58 (51) QDP 25.31/10.58 (52) QDPSizeChangeProof [EQUIVALENT, 0 ms] 25.31/10.58 (53) YES 25.31/10.58 (54) QDP 25.31/10.58 (55) QDPSizeChangeProof [EQUIVALENT, 0 ms] 25.31/10.58 (56) YES 25.31/10.58 (57) QDP 25.31/10.58 (58) QDPSizeChangeProof [EQUIVALENT, 0 ms] 25.31/10.58 (59) YES 25.31/10.58 25.31/10.58 25.31/10.58 ---------------------------------------- 25.31/10.58 25.31/10.58 (0) 25.31/10.58 Obligation: 25.31/10.58 mainModule Main 25.31/10.58 module FiniteMap where { 25.31/10.58 import qualified Main; 25.31/10.58 import qualified Maybe; 25.31/10.58 import qualified Prelude; 25.31/10.58 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 25.31/10.58 25.31/10.58 instance (Eq a, Eq b) => Eq FiniteMap b a where { 25.31/10.58 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 25.31/10.58 } 25.31/10.58 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 25.31/10.58 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 25.31/10.58 add fmap (key,elt) = addToFM_C combiner fmap key elt; 25.31/10.58 }; 25.31/10.58 25.31/10.58 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 25.31/10.58 addToFM_C combiner EmptyFM key elt = unitFM key elt; 25.31/10.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 25.31/10.58 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 25.31/10.58 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 25.31/10.58 25.31/10.58 emptyFM :: FiniteMap b a; 25.31/10.58 emptyFM = EmptyFM; 25.31/10.58 25.31/10.58 findMax :: FiniteMap a b -> (a,b); 25.31/10.58 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 25.31/10.58 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 25.31/10.58 25.31/10.58 findMin :: FiniteMap b a -> (b,a); 25.31/10.58 findMin (Branch key elt _ EmptyFM _) = (key,elt); 25.31/10.58 findMin (Branch key elt _ fm_l _) = findMin fm_l; 25.31/10.58 25.31/10.58 fmToList :: FiniteMap b a -> [(b,a)]; 25.31/10.58 fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; 25.31/10.58 25.31/10.58 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 25.31/10.58 foldFM k z EmptyFM = z; 25.31/10.58 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 25.31/10.58 25.31/10.58 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 25.31/10.58 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 25.31/10.58 | size_r > sIZE_RATIO * size_l = case fm_R of { 25.31/10.58 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 25.31/10.58 | otherwise -> double_L fm_L fm_R; 25.31/10.58 } 25.31/10.58 | size_l > sIZE_RATIO * size_r = case fm_L of { 25.31/10.58 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 25.31/10.58 | otherwise -> double_R fm_L fm_R; 25.31/10.58 } 25.31/10.58 | otherwise = mkBranch 2 key elt fm_L fm_R where { 25.31/10.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); 25.31/10.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); 25.31/10.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; 25.31/10.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); 25.31/10.58 size_l = sizeFM fm_L; 25.31/10.58 size_r = sizeFM fm_R; 25.31/10.58 }; 25.31/10.58 25.31/10.58 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 25.31/10.58 mkBranch which key elt fm_l fm_r = let { 25.31/10.58 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 25.31/10.58 } in result where { 25.31/10.58 balance_ok = True; 25.31/10.58 left_ok = case fm_l of { 25.31/10.58 EmptyFM-> True; 25.31/10.58 Branch left_key _ _ _ _-> let { 25.31/10.58 biggest_left_key = fst (findMax fm_l); 25.31/10.58 } in biggest_left_key < key; 25.31/10.58 } ; 25.31/10.58 left_size = sizeFM fm_l; 25.31/10.58 right_ok = case fm_r of { 25.31/10.58 EmptyFM-> True; 25.31/10.58 Branch right_key _ _ _ _-> let { 25.31/10.58 smallest_right_key = fst (findMin fm_r); 25.31/10.58 } in key < smallest_right_key; 25.31/10.58 } ; 25.31/10.58 right_size = sizeFM fm_r; 25.31/10.58 unbox :: Int -> Int; 25.31/10.58 unbox x = x; 25.31/10.58 }; 25.31/10.58 25.31/10.58 sIZE_RATIO :: Int; 25.31/10.58 sIZE_RATIO = 5; 25.31/10.58 25.31/10.58 sizeFM :: FiniteMap b a -> Int; 25.31/10.58 sizeFM EmptyFM = 0; 25.31/10.58 sizeFM (Branch _ _ size _ _) = size; 25.31/10.58 25.31/10.58 unitFM :: b -> a -> FiniteMap b a; 25.31/10.58 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 25.31/10.58 25.31/10.58 } 25.31/10.58 module Maybe where { 25.31/10.58 import qualified FiniteMap; 25.31/10.58 import qualified Main; 25.31/10.58 import qualified Prelude; 25.31/10.58 } 25.31/10.58 module Main where { 25.31/10.58 import qualified FiniteMap; 25.31/10.58 import qualified Maybe; 25.31/10.58 import qualified Prelude; 25.31/10.58 } 25.31/10.58 25.31/10.58 ---------------------------------------- 25.31/10.58 25.31/10.58 (1) LR (EQUIVALENT) 25.31/10.58 Lambda Reductions: 25.31/10.58 The following Lambda expression 25.31/10.58 "\keyeltrest->(key,elt) : rest" 25.31/10.58 is transformed to 25.31/10.58 "fmToList0 key elt rest = (key,elt) : rest; 25.31/10.58 " 25.31/10.58 25.31/10.58 ---------------------------------------- 25.31/10.58 25.31/10.58 (2) 25.31/10.58 Obligation: 25.31/10.58 mainModule Main 25.31/10.58 module FiniteMap where { 25.31/10.58 import qualified Main; 25.31/10.58 import qualified Maybe; 25.31/10.58 import qualified Prelude; 25.31/10.58 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 25.31/10.58 25.31/10.58 instance (Eq a, Eq b) => Eq FiniteMap b a where { 25.31/10.58 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 25.31/10.58 } 25.31/10.58 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 25.31/10.58 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 25.31/10.58 add fmap (key,elt) = addToFM_C combiner fmap key elt; 25.31/10.58 }; 25.31/10.58 25.31/10.58 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 25.31/10.58 addToFM_C combiner EmptyFM key elt = unitFM key elt; 25.31/10.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 25.31/10.58 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 25.31/10.58 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 25.31/10.58 25.31/10.58 emptyFM :: FiniteMap b a; 25.31/10.58 emptyFM = EmptyFM; 25.31/10.58 25.31/10.58 findMax :: FiniteMap a b -> (a,b); 25.31/10.58 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 25.31/10.58 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 25.31/10.58 25.31/10.58 findMin :: FiniteMap b a -> (b,a); 25.31/10.58 findMin (Branch key elt _ EmptyFM _) = (key,elt); 25.31/10.58 findMin (Branch key elt _ fm_l _) = findMin fm_l; 25.31/10.58 25.31/10.58 fmToList :: FiniteMap a b -> [(a,b)]; 25.31/10.58 fmToList fm = foldFM fmToList0 [] fm; 25.31/10.58 25.31/10.58 fmToList0 key elt rest = (key,elt) : rest; 25.31/10.58 25.31/10.58 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 25.31/10.58 foldFM k z EmptyFM = z; 25.31/10.58 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 25.31/10.58 25.31/10.58 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 25.31/10.58 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 25.31/10.58 | size_r > sIZE_RATIO * size_l = case fm_R of { 25.31/10.58 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 25.31/10.58 | otherwise -> double_L fm_L fm_R; 25.31/10.58 } 25.31/10.58 | size_l > sIZE_RATIO * size_r = case fm_L of { 26.44/10.88 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 26.44/10.88 | otherwise -> double_R fm_L fm_R; 26.44/10.88 } 26.44/10.88 | otherwise = mkBranch 2 key elt fm_L fm_R where { 26.44/10.88 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); 26.44/10.88 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); 26.44/10.88 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; 26.44/10.88 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); 26.44/10.88 size_l = sizeFM fm_L; 26.44/10.88 size_r = sizeFM fm_R; 26.44/10.88 }; 26.44/10.88 26.44/10.88 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 26.44/10.88 mkBranch which key elt fm_l fm_r = let { 26.44/10.88 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 26.44/10.88 } in result where { 26.44/10.88 balance_ok = True; 26.44/10.88 left_ok = case fm_l of { 26.44/10.88 EmptyFM-> True; 26.44/10.88 Branch left_key _ _ _ _-> let { 26.44/10.88 biggest_left_key = fst (findMax fm_l); 26.44/10.88 } in biggest_left_key < key; 26.44/10.88 } ; 26.44/10.88 left_size = sizeFM fm_l; 26.44/10.88 right_ok = case fm_r of { 26.44/10.88 EmptyFM-> True; 26.44/10.88 Branch right_key _ _ _ _-> let { 26.44/10.88 smallest_right_key = fst (findMin fm_r); 26.44/10.88 } in key < smallest_right_key; 26.44/10.88 } ; 26.44/10.88 right_size = sizeFM fm_r; 26.44/10.88 unbox :: Int -> Int; 26.44/10.88 unbox x = x; 26.44/10.88 }; 26.44/10.88 26.44/10.88 sIZE_RATIO :: Int; 26.44/10.88 sIZE_RATIO = 5; 26.44/10.88 26.44/10.88 sizeFM :: FiniteMap b a -> Int; 26.44/10.88 sizeFM EmptyFM = 0; 26.44/10.88 sizeFM (Branch _ _ size _ _) = size; 26.44/10.88 26.44/10.88 unitFM :: a -> b -> FiniteMap a b; 26.44/10.88 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 26.44/10.88 26.44/10.88 } 26.44/10.88 module Maybe where { 26.44/10.88 import qualified FiniteMap; 26.44/10.88 import qualified Main; 26.44/10.88 import qualified Prelude; 26.44/10.88 } 26.44/10.88 module Main where { 26.44/10.88 import qualified FiniteMap; 26.44/10.88 import qualified Maybe; 26.44/10.88 import qualified Prelude; 26.44/10.88 } 26.44/10.88 26.44/10.88 ---------------------------------------- 26.44/10.88 26.44/10.88 (3) CR (EQUIVALENT) 26.44/10.88 Case Reductions: 26.44/10.88 The following Case expression 26.44/10.88 "case compare x y of { 26.44/10.88 EQ -> o; 26.44/10.88 LT -> LT; 26.44/10.88 GT -> GT} 26.44/10.88 " 26.44/10.88 is transformed to 26.44/10.88 "primCompAux0 o EQ = o; 26.44/10.88 primCompAux0 o LT = LT; 26.44/10.88 primCompAux0 o GT = GT; 26.44/10.88 " 26.44/10.88 The following Case expression 26.44/10.88 "case fm_r of { 26.44/10.88 EmptyFM -> True; 26.44/10.88 Branch right_key _ _ _ _ -> let { 26.44/10.88 smallest_right_key = fst (findMin fm_r); 26.44/10.88 } in key < smallest_right_key} 26.44/10.88 " 26.44/10.88 is transformed to 26.44/10.88 "right_ok0 fm_r key EmptyFM = True; 26.44/10.88 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 26.44/10.88 smallest_right_key = fst (findMin fm_r); 26.44/10.88 } in key < smallest_right_key; 26.44/10.88 " 26.44/10.88 The following Case expression 26.44/10.88 "case fm_l of { 26.44/10.88 EmptyFM -> True; 26.44/10.88 Branch left_key _ _ _ _ -> let { 26.44/10.88 biggest_left_key = fst (findMax fm_l); 26.44/10.88 } in biggest_left_key < key} 26.44/10.88 " 26.44/10.88 is transformed to 26.44/10.88 "left_ok0 fm_l key EmptyFM = True; 26.44/10.88 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 26.44/10.88 biggest_left_key = fst (findMax fm_l); 26.44/10.88 } in biggest_left_key < key; 26.44/10.88 " 26.44/10.88 The following Case expression 26.44/10.88 "case fm_R of { 26.44/10.88 Branch _ _ _ fm_rl fm_rr |sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R} 26.44/10.88 " 26.44/10.88 is transformed to 26.44/10.88 "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; 26.44/10.88 " 26.44/10.88 The following Case expression 26.44/10.88 "case fm_L of { 26.44/10.88 Branch _ _ _ fm_ll fm_lr |sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R} 26.44/10.88 " 26.44/10.88 is transformed to 26.44/10.88 "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; 26.44/10.88 " 26.44/10.88 26.44/10.88 ---------------------------------------- 26.44/10.88 26.44/10.88 (4) 26.44/10.88 Obligation: 26.44/10.88 mainModule Main 26.44/10.88 module FiniteMap where { 26.44/10.88 import qualified Main; 26.44/10.88 import qualified Maybe; 26.44/10.88 import qualified Prelude; 26.44/10.88 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 26.44/10.88 26.44/10.88 instance (Eq a, Eq b) => Eq FiniteMap a b where { 26.44/10.88 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 26.44/10.88 } 26.44/10.88 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 26.44/10.88 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 26.44/10.88 add fmap (key,elt) = addToFM_C combiner fmap key elt; 26.44/10.88 }; 26.44/10.88 26.44/10.88 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 26.44/10.88 addToFM_C combiner EmptyFM key elt = unitFM key elt; 26.44/10.88 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 26.44/10.88 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 26.44/10.88 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 26.44/10.88 26.44/10.88 emptyFM :: FiniteMap a b; 26.44/10.88 emptyFM = EmptyFM; 26.44/10.88 26.44/10.88 findMax :: FiniteMap b a -> (b,a); 26.44/10.88 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 26.44/10.88 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 26.44/10.88 26.44/10.88 findMin :: FiniteMap a b -> (a,b); 26.44/10.88 findMin (Branch key elt _ EmptyFM _) = (key,elt); 26.44/10.88 findMin (Branch key elt _ fm_l _) = findMin fm_l; 26.44/10.88 26.44/10.88 fmToList :: FiniteMap b a -> [(b,a)]; 26.44/10.88 fmToList fm = foldFM fmToList0 [] fm; 26.44/10.88 26.44/10.88 fmToList0 key elt rest = (key,elt) : rest; 26.44/10.88 26.44/10.88 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 26.44/10.88 foldFM k z EmptyFM = z; 26.44/10.88 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 26.44/10.88 26.44/10.88 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 26.44/10.88 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 26.44/10.88 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 26.44/10.88 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 26.44/10.88 | otherwise = mkBranch 2 key elt fm_L fm_R where { 26.44/10.88 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); 26.44/10.88 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); 26.44/10.88 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 26.44/10.88 | otherwise = double_L fm_L fm_R; 26.44/10.88 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 26.44/10.88 | otherwise = double_R fm_L fm_R; 26.44/10.88 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; 26.44/10.88 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); 26.44/10.88 size_l = sizeFM fm_L; 26.44/10.88 size_r = sizeFM fm_R; 26.44/10.88 }; 26.44/10.88 26.44/10.88 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 26.44/10.88 mkBranch which key elt fm_l fm_r = let { 26.44/10.88 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 26.44/10.88 } in result where { 26.44/10.88 balance_ok = True; 26.44/10.88 left_ok = left_ok0 fm_l key fm_l; 26.44/10.88 left_ok0 fm_l key EmptyFM = True; 26.44/10.88 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 26.44/10.88 biggest_left_key = fst (findMax fm_l); 26.44/10.88 } in biggest_left_key < key; 26.44/10.88 left_size = sizeFM fm_l; 26.44/10.88 right_ok = right_ok0 fm_r key fm_r; 26.44/10.88 right_ok0 fm_r key EmptyFM = True; 26.44/10.88 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 26.44/10.88 smallest_right_key = fst (findMin fm_r); 26.44/10.88 } in key < smallest_right_key; 26.44/10.88 right_size = sizeFM fm_r; 26.44/10.88 unbox :: Int -> Int; 26.44/10.88 unbox x = x; 26.44/10.88 }; 26.44/10.88 26.44/10.88 sIZE_RATIO :: Int; 26.44/10.88 sIZE_RATIO = 5; 26.44/10.88 26.44/10.88 sizeFM :: FiniteMap a b -> Int; 26.44/10.88 sizeFM EmptyFM = 0; 26.44/10.88 sizeFM (Branch _ _ size _ _) = size; 26.44/10.88 26.44/10.88 unitFM :: b -> a -> FiniteMap b a; 26.44/10.88 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 26.44/10.88 26.44/10.88 } 26.44/10.88 module Maybe where { 26.44/10.88 import qualified FiniteMap; 26.44/10.88 import qualified Main; 26.44/10.88 import qualified Prelude; 26.44/10.88 } 26.44/10.88 module Main where { 26.44/10.88 import qualified FiniteMap; 26.44/10.88 import qualified Maybe; 26.44/10.88 import qualified Prelude; 26.44/10.88 } 26.44/10.88 26.44/10.88 ---------------------------------------- 26.44/10.88 26.44/10.88 (5) IFR (EQUIVALENT) 26.44/10.88 If Reductions: 26.44/10.88 The following If expression 26.44/10.88 "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" 26.44/10.88 is transformed to 26.44/10.88 "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); 26.44/10.88 primDivNatS0 x y False = Zero; 26.44/10.88 " 26.44/10.88 The following If expression 26.44/10.88 "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" 26.44/10.88 is transformed to 26.44/10.88 "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); 26.44/10.88 primModNatS0 x y False = Succ x; 26.44/10.88 " 26.44/10.88 26.44/10.88 ---------------------------------------- 26.44/10.88 26.44/10.88 (6) 26.44/10.88 Obligation: 26.44/10.88 mainModule Main 26.44/10.88 module FiniteMap where { 26.44/10.88 import qualified Main; 26.44/10.88 import qualified Maybe; 26.44/10.88 import qualified Prelude; 26.44/10.88 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 26.44/10.88 26.44/10.88 instance (Eq a, Eq b) => Eq FiniteMap a b where { 26.44/10.88 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 26.44/10.88 } 26.44/10.88 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 26.44/10.88 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 26.44/10.88 add fmap (key,elt) = addToFM_C combiner fmap key elt; 26.44/10.88 }; 26.44/10.88 26.44/10.88 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 26.44/10.88 addToFM_C combiner EmptyFM key elt = unitFM key elt; 26.44/10.88 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 26.44/10.88 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 26.44/10.88 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 26.44/10.88 26.44/10.88 emptyFM :: FiniteMap b a; 26.44/10.88 emptyFM = EmptyFM; 26.44/10.88 26.44/10.88 findMax :: FiniteMap b a -> (b,a); 26.44/10.88 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 26.44/10.88 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 26.44/10.88 26.44/10.88 findMin :: FiniteMap b a -> (b,a); 26.44/10.88 findMin (Branch key elt _ EmptyFM _) = (key,elt); 26.44/10.88 findMin (Branch key elt _ fm_l _) = findMin fm_l; 26.44/10.88 26.44/10.88 fmToList :: FiniteMap b a -> [(b,a)]; 26.44/10.88 fmToList fm = foldFM fmToList0 [] fm; 26.44/10.88 26.44/10.88 fmToList0 key elt rest = (key,elt) : rest; 26.44/10.88 26.44/10.88 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 26.44/10.88 foldFM k z EmptyFM = z; 26.44/10.88 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 26.44/10.88 26.44/10.88 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 26.44/10.88 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 26.44/10.88 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 26.44/10.88 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 26.44/10.88 | otherwise = mkBranch 2 key elt fm_L fm_R where { 26.44/10.88 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); 26.44/10.88 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); 26.44/10.88 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 26.44/10.88 | otherwise = double_L fm_L fm_R; 26.44/10.88 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 26.44/10.88 | otherwise = double_R fm_L fm_R; 26.44/10.88 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; 26.44/10.88 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); 26.44/10.88 size_l = sizeFM fm_L; 26.44/10.88 size_r = sizeFM fm_R; 26.44/10.88 }; 26.44/10.88 26.44/10.88 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 26.44/10.88 mkBranch which key elt fm_l fm_r = let { 26.44/10.88 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 26.44/10.88 } in result where { 26.44/10.88 balance_ok = True; 26.44/10.88 left_ok = left_ok0 fm_l key fm_l; 26.44/10.88 left_ok0 fm_l key EmptyFM = True; 26.44/10.88 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 26.44/10.88 biggest_left_key = fst (findMax fm_l); 26.44/10.88 } in biggest_left_key < key; 26.44/10.88 left_size = sizeFM fm_l; 26.44/10.88 right_ok = right_ok0 fm_r key fm_r; 26.44/10.88 right_ok0 fm_r key EmptyFM = True; 26.44/10.88 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 26.44/10.88 smallest_right_key = fst (findMin fm_r); 26.44/10.88 } in key < smallest_right_key; 26.44/10.88 right_size = sizeFM fm_r; 26.44/10.88 unbox :: Int -> Int; 26.44/10.88 unbox x = x; 26.44/10.88 }; 26.44/10.88 26.44/10.88 sIZE_RATIO :: Int; 26.44/10.88 sIZE_RATIO = 5; 26.44/10.88 26.44/10.88 sizeFM :: FiniteMap b a -> Int; 26.44/10.88 sizeFM EmptyFM = 0; 26.44/10.88 sizeFM (Branch _ _ size _ _) = size; 26.44/10.88 26.44/10.88 unitFM :: b -> a -> FiniteMap b a; 26.44/10.88 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 26.44/10.88 26.44/10.88 } 26.44/10.88 module Maybe where { 26.44/10.88 import qualified FiniteMap; 26.44/10.88 import qualified Main; 26.44/10.88 import qualified Prelude; 26.44/10.88 } 26.44/10.88 module Main where { 26.44/10.88 import qualified FiniteMap; 26.44/10.88 import qualified Maybe; 26.44/10.88 import qualified Prelude; 26.44/10.88 } 26.44/10.88 26.44/10.88 ---------------------------------------- 26.44/10.88 26.44/10.88 (7) BR (EQUIVALENT) 26.44/10.88 Replaced joker patterns by fresh variables and removed binding patterns. 26.44/10.88 ---------------------------------------- 26.44/10.88 26.44/10.88 (8) 26.44/10.88 Obligation: 26.44/10.88 mainModule Main 26.44/10.88 module FiniteMap where { 26.44/10.88 import qualified Main; 26.44/10.88 import qualified Maybe; 26.44/10.88 import qualified Prelude; 26.44/10.88 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 26.44/10.88 26.44/10.88 instance (Eq a, Eq b) => Eq FiniteMap a b where { 26.44/10.88 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 26.44/10.88 } 26.44/10.88 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 26.44/10.88 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 26.44/10.88 add fmap (key,elt) = addToFM_C combiner fmap key elt; 26.44/10.88 }; 26.44/10.88 26.44/10.88 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 26.44/10.88 addToFM_C combiner EmptyFM key elt = unitFM key elt; 26.44/10.88 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 26.44/10.88 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 26.44/10.88 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 26.44/10.88 26.44/10.88 emptyFM :: FiniteMap a b; 26.44/10.88 emptyFM = EmptyFM; 26.44/10.88 26.44/10.88 findMax :: FiniteMap b a -> (b,a); 26.44/10.88 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 26.44/10.88 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 26.44/10.88 26.44/10.88 findMin :: FiniteMap a b -> (a,b); 26.44/10.88 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 26.44/10.88 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 26.44/10.88 26.44/10.88 fmToList :: FiniteMap a b -> [(a,b)]; 26.44/10.88 fmToList fm = foldFM fmToList0 [] fm; 26.44/10.88 26.44/10.88 fmToList0 key elt rest = (key,elt) : rest; 26.44/10.88 26.44/10.88 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 26.44/10.88 foldFM k z EmptyFM = z; 26.44/10.88 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 26.44/10.88 26.44/10.88 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 26.44/10.88 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 26.44/10.88 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 26.44/10.88 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 26.44/10.88 | otherwise = mkBranch 2 key elt fm_L fm_R where { 26.44/10.88 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); 26.44/10.88 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); 26.44/10.88 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 26.44/10.88 | otherwise = double_L fm_L fm_R; 26.44/10.88 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 26.44/10.88 | otherwise = double_R fm_L fm_R; 26.44/10.88 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; 26.44/10.88 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); 26.44/10.88 size_l = sizeFM fm_L; 26.44/10.88 size_r = sizeFM fm_R; 26.44/10.88 }; 26.44/10.88 26.44/10.88 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 26.44/10.88 mkBranch which key elt fm_l fm_r = let { 26.44/10.88 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 26.44/10.88 } in result where { 26.44/10.88 balance_ok = True; 26.44/10.88 left_ok = left_ok0 fm_l key fm_l; 26.44/10.88 left_ok0 fm_l key EmptyFM = True; 26.44/10.88 left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { 26.44/10.88 biggest_left_key = fst (findMax fm_l); 26.44/10.88 } in biggest_left_key < key; 26.44/10.88 left_size = sizeFM fm_l; 26.44/10.88 right_ok = right_ok0 fm_r key fm_r; 26.44/10.88 right_ok0 fm_r key EmptyFM = True; 26.44/10.88 right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { 26.44/10.88 smallest_right_key = fst (findMin fm_r); 26.44/10.88 } in key < smallest_right_key; 26.44/10.88 right_size = sizeFM fm_r; 26.44/10.88 unbox :: Int -> Int; 26.44/10.88 unbox x = x; 26.44/10.88 }; 26.44/10.88 26.44/10.88 sIZE_RATIO :: Int; 26.44/10.88 sIZE_RATIO = 5; 26.44/10.88 26.44/10.88 sizeFM :: FiniteMap a b -> Int; 26.44/10.88 sizeFM EmptyFM = 0; 26.44/10.88 sizeFM (Branch vyu vyv size vyw vyx) = size; 26.44/10.88 26.44/10.88 unitFM :: a -> b -> FiniteMap a b; 26.44/10.88 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 26.44/10.88 26.44/10.88 } 26.44/10.88 module Maybe where { 26.44/10.89 import qualified FiniteMap; 26.44/10.89 import qualified Main; 26.44/10.89 import qualified Prelude; 26.44/10.89 } 26.44/10.89 module Main where { 26.44/10.89 import qualified FiniteMap; 26.44/10.89 import qualified Maybe; 26.44/10.89 import qualified Prelude; 26.44/10.89 } 26.44/10.89 26.44/10.89 ---------------------------------------- 26.44/10.89 26.44/10.89 (9) COR (EQUIVALENT) 26.44/10.89 Cond Reductions: 26.44/10.89 The following Function with conditions 26.44/10.89 "compare x y|x == yEQ|x <= yLT|otherwiseGT; 26.44/10.89 " 26.44/10.89 is transformed to 26.44/10.89 "compare x y = compare3 x y; 26.44/10.89 " 26.44/10.89 "compare2 x y True = EQ; 26.44/10.89 compare2 x y False = compare1 x y (x <= y); 26.44/10.89 " 26.44/10.89 "compare1 x y True = LT; 26.44/10.89 compare1 x y False = compare0 x y otherwise; 26.44/10.89 " 26.44/10.89 "compare0 x y True = GT; 26.44/10.89 " 26.44/10.89 "compare3 x y = compare2 x y (x == y); 26.44/10.89 " 26.44/10.89 The following Function with conditions 26.44/10.89 "absReal x|x >= 0x|otherwise`negate` x; 26.44/10.89 " 26.44/10.89 is transformed to 26.44/10.89 "absReal x = absReal2 x; 26.44/10.89 " 26.44/10.89 "absReal0 x True = `negate` x; 26.44/10.89 " 26.44/10.89 "absReal1 x True = x; 26.44/10.89 absReal1 x False = absReal0 x otherwise; 26.44/10.89 " 26.44/10.89 "absReal2 x = absReal1 x (x >= 0); 26.44/10.89 " 26.44/10.89 The following Function with conditions 26.44/10.89 "gcd' x 0 = x; 26.44/10.89 gcd' x y = gcd' y (x `rem` y); 26.44/10.89 " 26.44/10.89 is transformed to 26.44/10.89 "gcd' x vzw = gcd'2 x vzw; 26.44/10.89 gcd' x y = gcd'0 x y; 26.44/10.89 " 26.44/10.89 "gcd'0 x y = gcd' y (x `rem` y); 26.44/10.89 " 26.44/10.89 "gcd'1 True x vzw = x; 26.44/10.89 gcd'1 vzx vzy vzz = gcd'0 vzy vzz; 26.44/10.89 " 26.44/10.89 "gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; 26.44/10.89 gcd'2 wuu wuv = gcd'0 wuu wuv; 26.44/10.89 " 26.44/10.89 The following Function with conditions 26.44/10.89 "gcd 0 0 = error []; 26.44/10.89 gcd x y = gcd' (abs x) (abs y) where { 26.44/10.89 gcd' x 0 = x; 26.44/10.89 gcd' x y = gcd' y (x `rem` y); 26.44/10.89 } 26.44/10.89 ; 26.44/10.89 " 26.44/10.89 is transformed to 26.44/10.89 "gcd wuw wux = gcd3 wuw wux; 26.44/10.89 gcd x y = gcd0 x y; 26.44/10.89 " 26.44/10.89 "gcd0 x y = gcd' (abs x) (abs y) where { 26.44/10.89 gcd' x vzw = gcd'2 x vzw; 26.44/10.89 gcd' x y = gcd'0 x y; 26.44/10.89 ; 26.44/10.89 gcd'0 x y = gcd' y (x `rem` y); 26.44/10.89 ; 26.44/10.89 gcd'1 True x vzw = x; 26.44/10.89 gcd'1 vzx vzy vzz = gcd'0 vzy vzz; 26.44/10.89 ; 26.44/10.89 gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; 26.44/10.89 gcd'2 wuu wuv = gcd'0 wuu wuv; 26.44/10.89 } 26.44/10.89 ; 26.44/10.89 " 26.44/10.89 "gcd1 True wuw wux = error []; 26.44/10.89 gcd1 wuy wuz wvu = gcd0 wuz wvu; 26.44/10.89 " 26.44/10.89 "gcd2 True wuw wux = gcd1 (wux == 0) wuw wux; 26.44/10.89 gcd2 wvv wvw wvx = gcd0 wvw wvx; 26.44/10.89 " 26.44/10.89 "gcd3 wuw wux = gcd2 (wuw == 0) wuw wux; 26.44/10.89 gcd3 wvy wvz = gcd0 wvy wvz; 26.44/10.89 " 26.44/10.89 The following Function with conditions 26.44/10.89 "undefined |Falseundefined; 26.44/10.89 " 26.44/10.89 is transformed to 26.44/10.89 "undefined = undefined1; 26.44/10.89 " 26.44/10.89 "undefined0 True = undefined; 26.44/10.89 " 26.44/10.89 "undefined1 = undefined0 False; 26.44/10.89 " 26.44/10.89 The following Function with conditions 26.44/10.89 "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { 26.44/10.89 d = gcd x y; 26.44/10.89 } 26.44/10.89 ; 26.44/10.89 " 26.44/10.89 is transformed to 26.44/10.89 "reduce x y = reduce2 x y; 26.44/10.89 " 26.44/10.89 "reduce2 x y = reduce1 x y (y == 0) where { 26.44/10.89 d = gcd x y; 26.44/10.89 ; 26.44/10.89 reduce0 x y True = x `quot` d :% (y `quot` d); 26.44/10.89 ; 26.44/10.89 reduce1 x y True = error []; 26.44/10.89 reduce1 x y False = reduce0 x y otherwise; 26.44/10.89 } 26.44/10.89 ; 26.44/10.89 " 26.44/10.89 The following Function with conditions 26.44/10.89 "addToFM_C combiner EmptyFM key elt = unitFM key elt; 26.44/10.89 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; 26.44/10.89 " 26.44/10.89 is transformed to 26.44/10.89 "addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 26.44/10.89 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; 26.44/10.89 " 26.44/10.89 "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; 26.44/10.89 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); 26.44/10.89 " 26.44/10.89 "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; 26.44/10.89 " 26.44/10.89 "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); 26.44/10.89 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; 26.44/10.89 " 26.44/10.89 "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); 26.44/10.89 " 26.44/10.89 "addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 26.44/10.89 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 26.44/10.89 " 26.44/10.89 The following Function with conditions 26.44/10.89 "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; 26.44/10.89 " 26.44/10.89 is transformed to 26.44/10.89 "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); 26.44/10.89 " 26.44/10.89 "mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 26.44/10.89 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; 26.44/10.89 " 26.44/10.89 "mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 26.44/10.89 " 26.44/10.89 "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); 26.44/10.89 " 26.44/10.89 The following Function with conditions 26.44/10.89 "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; 26.44/10.89 " 26.44/10.89 is transformed to 26.44/10.89 "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); 26.44/10.89 " 26.44/10.89 "mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 26.44/10.89 " 26.44/10.89 "mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 26.44/10.89 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; 26.44/10.89 " 26.44/10.89 "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); 26.44/10.89 " 26.44/10.89 The following Function with conditions 26.44/10.89 "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 { 26.44/10.89 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); 26.44/10.89 ; 26.44/10.89 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); 26.44/10.89 ; 26.44/10.89 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; 26.44/10.89 ; 26.44/10.89 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; 26.44/10.89 ; 26.44/10.89 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; 26.44/10.89 ; 26.44/10.89 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); 26.44/10.89 ; 26.44/10.89 size_l = sizeFM fm_L; 26.44/10.89 ; 26.44/10.89 size_r = sizeFM fm_R; 26.44/10.89 } 26.44/10.89 ; 26.44/10.89 " 26.44/10.89 is transformed to 26.44/10.89 "mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 26.44/10.89 " 26.44/10.89 "mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 26.44/10.89 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); 26.44/10.89 ; 26.44/10.89 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); 26.44/10.89 ; 26.44/10.89 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); 26.44/10.89 ; 26.44/10.89 mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 26.44/10.89 ; 26.44/10.89 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 26.44/10.89 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; 26.44/10.89 ; 26.44/10.89 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); 26.44/10.89 ; 26.44/10.89 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); 26.44/10.89 ; 26.44/10.89 mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 26.44/10.89 ; 26.44/10.89 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 26.44/10.89 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; 26.44/10.89 ; 26.44/10.89 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); 26.44/10.89 ; 26.44/10.89 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 26.44/10.89 ; 26.44/10.89 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 26.44/10.89 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 26.44/10.89 ; 26.44/10.89 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 26.44/10.89 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 26.44/10.89 ; 26.44/10.89 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 26.44/10.89 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 26.44/10.89 ; 26.44/10.89 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; 26.44/10.89 ; 26.44/10.89 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); 26.44/10.89 ; 26.44/10.89 size_l = sizeFM fm_L; 26.44/10.89 ; 26.44/10.89 size_r = sizeFM fm_R; 26.44/10.89 } 26.44/10.89 ; 26.44/10.89 " 26.44/10.89 26.44/10.89 ---------------------------------------- 26.44/10.89 26.44/10.89 (10) 26.44/10.89 Obligation: 26.44/10.89 mainModule Main 26.44/10.89 module FiniteMap where { 26.44/10.89 import qualified Main; 26.44/10.89 import qualified Maybe; 26.44/10.89 import qualified Prelude; 26.44/10.89 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 26.44/10.89 26.44/10.89 instance (Eq a, Eq b) => Eq FiniteMap a b where { 26.44/10.89 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 26.44/10.89 } 26.44/10.89 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 26.44/10.89 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 26.44/10.89 add fmap (key,elt) = addToFM_C combiner fmap key elt; 26.44/10.89 }; 26.44/10.89 26.44/10.89 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 26.44/10.89 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 26.44/10.89 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; 26.44/10.89 26.44/10.89 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; 26.44/10.89 26.44/10.89 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); 26.44/10.89 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; 26.44/10.89 26.44/10.89 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; 26.44/10.89 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); 26.44/10.89 26.44/10.89 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); 26.44/10.89 26.44/10.89 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 26.44/10.89 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 26.44/10.89 26.44/10.89 emptyFM :: FiniteMap b a; 26.44/10.89 emptyFM = EmptyFM; 26.44/10.89 26.44/10.89 findMax :: FiniteMap b a -> (b,a); 26.44/10.89 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 26.44/10.89 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 26.44/10.89 26.44/10.89 findMin :: FiniteMap a b -> (a,b); 26.44/10.89 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 26.44/10.89 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 26.44/10.89 26.44/10.89 fmToList :: FiniteMap b a -> [(b,a)]; 26.44/10.89 fmToList fm = foldFM fmToList0 [] fm; 26.44/10.89 26.44/10.89 fmToList0 key elt rest = (key,elt) : rest; 26.44/10.89 26.44/10.89 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 26.44/10.89 foldFM k z EmptyFM = z; 26.44/10.89 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 26.44/10.89 26.44/10.89 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 26.44/10.89 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 26.44/10.89 26.44/10.89 mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 26.44/10.89 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); 26.44/10.89 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); 26.44/10.89 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); 26.44/10.89 mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 26.44/10.89 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 26.44/10.89 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; 26.44/10.89 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); 26.44/10.89 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); 26.44/10.89 mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 26.44/10.89 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 26.44/10.89 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; 26.44/10.89 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); 26.44/10.89 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 26.44/10.89 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 26.44/10.89 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 26.44/10.89 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 26.44/10.89 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 26.44/10.89 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 26.44/10.89 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 26.44/10.89 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; 26.44/10.89 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); 26.44/10.89 size_l = sizeFM fm_L; 26.44/10.89 size_r = sizeFM fm_R; 26.44/10.89 }; 26.44/10.89 26.44/10.89 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 26.44/10.89 mkBranch which key elt fm_l fm_r = let { 26.44/10.89 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 26.44/10.89 } in result where { 26.44/10.89 balance_ok = True; 26.44/10.89 left_ok = left_ok0 fm_l key fm_l; 26.44/10.89 left_ok0 fm_l key EmptyFM = True; 26.44/10.89 left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { 26.44/10.89 biggest_left_key = fst (findMax fm_l); 26.44/10.89 } in biggest_left_key < key; 26.44/10.89 left_size = sizeFM fm_l; 26.44/10.89 right_ok = right_ok0 fm_r key fm_r; 26.44/10.89 right_ok0 fm_r key EmptyFM = True; 26.44/10.89 right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { 26.44/10.89 smallest_right_key = fst (findMin fm_r); 26.44/10.89 } in key < smallest_right_key; 26.44/10.89 right_size = sizeFM fm_r; 26.44/10.89 unbox :: Int -> Int; 26.44/10.89 unbox x = x; 26.44/10.89 }; 26.44/10.89 26.44/10.89 sIZE_RATIO :: Int; 26.44/10.89 sIZE_RATIO = 5; 26.44/10.89 26.44/10.89 sizeFM :: FiniteMap b a -> Int; 26.44/10.89 sizeFM EmptyFM = 0; 26.44/10.89 sizeFM (Branch vyu vyv size vyw vyx) = size; 26.44/10.89 26.44/10.89 unitFM :: b -> a -> FiniteMap b a; 26.44/10.89 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 26.44/10.89 26.44/10.89 } 26.44/10.89 module Maybe where { 26.44/10.89 import qualified FiniteMap; 26.44/10.89 import qualified Main; 26.44/10.89 import qualified Prelude; 26.44/10.89 } 26.44/10.89 module Main where { 26.44/10.89 import qualified FiniteMap; 26.44/10.89 import qualified Maybe; 26.44/10.89 import qualified Prelude; 26.44/10.89 } 26.44/10.89 26.44/10.89 ---------------------------------------- 26.44/10.89 26.44/10.89 (11) LetRed (EQUIVALENT) 26.44/10.89 Let/Where Reductions: 26.44/10.89 The bindings of the following Let/Where expression 26.44/10.89 "gcd' (abs x) (abs y) where { 26.44/10.89 gcd' x vzw = gcd'2 x vzw; 26.44/10.89 gcd' x y = gcd'0 x y; 26.44/10.89 ; 26.44/10.89 gcd'0 x y = gcd' y (x `rem` y); 26.44/10.89 ; 26.44/10.89 gcd'1 True x vzw = x; 26.44/10.89 gcd'1 vzx vzy vzz = gcd'0 vzy vzz; 26.44/10.89 ; 26.44/10.89 gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; 26.44/10.89 gcd'2 wuu wuv = gcd'0 wuu wuv; 26.44/10.89 } 26.44/10.89 " 26.44/10.89 are unpacked to the following functions on top level 26.44/10.89 "gcd0Gcd'2 x vzw = gcd0Gcd'1 (vzw == 0) x vzw; 26.44/10.89 gcd0Gcd'2 wuu wuv = gcd0Gcd'0 wuu wuv; 26.44/10.89 " 26.44/10.89 "gcd0Gcd'1 True x vzw = x; 26.44/10.89 gcd0Gcd'1 vzx vzy vzz = gcd0Gcd'0 vzy vzz; 26.44/10.89 " 26.44/10.89 "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); 26.44/10.89 " 26.44/10.89 "gcd0Gcd' x vzw = gcd0Gcd'2 x vzw; 26.44/10.89 gcd0Gcd' x y = gcd0Gcd'0 x y; 26.44/10.89 " 26.44/10.89 The bindings of the following Let/Where expression 26.44/10.89 "reduce1 x y (y == 0) where { 26.44/10.89 d = gcd x y; 26.44/10.89 ; 26.44/10.89 reduce0 x y True = x `quot` d :% (y `quot` d); 26.44/10.89 ; 26.44/10.89 reduce1 x y True = error []; 26.44/10.89 reduce1 x y False = reduce0 x y otherwise; 26.44/10.89 } 26.44/10.89 " 26.44/10.89 are unpacked to the following functions on top level 26.44/10.89 "reduce2Reduce1 wxw wxx x y True = error []; 26.44/10.89 reduce2Reduce1 wxw wxx x y False = reduce2Reduce0 wxw wxx x y otherwise; 26.44/10.89 " 26.44/10.89 "reduce2Reduce0 wxw wxx x y True = x `quot` reduce2D wxw wxx :% (y `quot` reduce2D wxw wxx); 26.44/10.89 " 26.44/10.89 "reduce2D wxw wxx = gcd wxw wxx; 26.44/10.89 " 26.44/10.89 The bindings of the following Let/Where expression 26.44/10.89 "mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 26.44/10.89 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); 26.44/10.89 ; 26.44/10.89 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); 26.44/10.89 ; 26.44/10.89 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); 26.44/10.89 ; 26.44/10.89 mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 26.44/10.89 ; 26.44/10.89 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 26.44/10.89 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; 26.44/10.89 ; 26.44/10.89 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); 26.44/10.89 ; 26.44/10.89 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); 26.44/10.89 ; 26.44/10.89 mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 26.44/10.89 ; 26.44/10.89 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 26.44/10.89 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; 26.44/10.89 ; 26.44/10.89 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); 26.44/10.89 ; 26.44/10.89 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 26.44/10.89 ; 26.44/10.89 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 26.44/10.89 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 26.44/10.89 ; 26.44/10.89 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 26.44/10.89 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 26.44/10.89 ; 26.44/10.89 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 26.44/10.89 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 26.44/10.89 ; 26.44/10.89 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; 26.44/10.89 ; 26.44/10.89 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); 26.44/10.89 ; 26.44/10.89 size_l = sizeFM fm_L; 26.44/10.89 ; 26.44/10.89 size_r = sizeFM fm_R; 26.44/10.89 } 26.44/10.89 " 26.44/10.89 are unpacked to the following functions on top level 26.44/10.89 "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; 26.44/10.89 " 26.44/10.89 "mkBalBranch6Single_R wxy wxz wyu wyv (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 wxy wxz fm_lr fm_r); 26.44/10.89 " 26.44/10.89 "mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; 26.44/10.89 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; 26.44/10.89 " 26.44/10.89 "mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyu; 26.44/10.89 " 26.44/10.89 "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); 26.44/10.89 " 26.44/10.89 "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; 26.44/10.89 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; 26.44/10.89 " 26.44/10.89 "mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyv; 26.44/10.89 " 26.44/10.89 "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); 26.44/10.89 " 26.44/10.89 "mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 26.44/10.89 " 26.44/10.89 "mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 26.44/10.89 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); 26.44/10.89 " 26.44/10.89 "mkBalBranch6Single_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 wxy wxz fm_l fm_rl) fm_rr; 26.44/10.89 " 26.44/10.89 "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); 26.44/10.89 " 26.44/10.89 "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; 26.44/10.89 " 26.44/10.89 "mkBalBranch6Double_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 wxy wxz fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 26.44/10.89 " 26.44/10.89 "mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 26.44/10.89 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); 26.44/10.89 " 26.44/10.89 "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; 26.44/10.89 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; 26.44/10.89 " 26.44/10.89 "mkBalBranch6Double_R wxy wxz wyu wyv (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 wxy wxz fm_lrr fm_r); 26.44/10.89 " 26.44/10.89 "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); 26.44/10.89 " 26.44/10.89 The bindings of the following Let/Where expression 26.44/10.89 "foldl add fm key_elt_pairs where { 26.44/10.89 add fmap (key,elt) = addToFM_C combiner fmap key elt; 26.44/10.89 } 26.44/10.89 " 26.44/10.89 are unpacked to the following functions on top level 26.44/10.89 "addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; 26.44/10.89 " 26.44/10.89 The bindings of the following Let/Where expression 26.44/10.89 "let { 26.44/10.89 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 26.44/10.89 } in result where { 26.44/10.89 balance_ok = True; 26.44/10.89 ; 26.44/10.89 left_ok = left_ok0 fm_l key fm_l; 26.44/10.89 ; 26.44/10.89 left_ok0 fm_l key EmptyFM = True; 26.44/10.89 left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { 26.44/10.89 biggest_left_key = fst (findMax fm_l); 26.44/10.89 } in biggest_left_key < key; 26.44/10.89 ; 26.44/10.89 left_size = sizeFM fm_l; 26.44/10.89 ; 26.44/10.89 right_ok = right_ok0 fm_r key fm_r; 26.44/10.89 ; 26.44/10.89 right_ok0 fm_r key EmptyFM = True; 26.44/10.89 right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { 26.44/10.89 smallest_right_key = fst (findMin fm_r); 26.44/10.89 } in key < smallest_right_key; 26.44/10.89 ; 26.44/10.89 right_size = sizeFM fm_r; 26.44/10.89 ; 26.44/10.89 unbox x = x; 26.44/10.89 } 26.44/10.89 " 26.44/10.89 are unpacked to the following functions on top level 26.44/10.89 "mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; 26.44/10.89 mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 26.44/10.89 " 26.44/10.89 "mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; 26.44/10.89 " 26.44/10.89 "mkBranchBalance_ok wyx wyy wyz = True; 26.44/10.89 " 26.44/10.89 "mkBranchUnbox wyx wyy wyz x = x; 26.44/10.89 " 26.44/10.89 "mkBranchRight_size wyx wyy wyz = sizeFM wyx; 26.44/10.89 " 26.44/10.89 "mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; 26.44/10.89 mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; 26.44/10.89 " 26.44/10.89 "mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; 26.44/10.89 " 26.44/10.89 "mkBranchLeft_size wyx wyy wyz = sizeFM wyz; 26.44/10.89 " 26.44/10.89 The bindings of the following Let/Where expression 26.44/10.89 "let { 26.44/10.89 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 26.44/10.89 } in result" 26.44/10.89 are unpacked to the following functions on top level 26.44/10.89 "mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzu wzx (1 + mkBranchLeft_size wzw wzu wzx + mkBranchRight_size wzw wzu wzx)) wzx wzw; 26.44/10.89 " 26.44/10.89 The bindings of the following Let/Where expression 26.44/10.89 "let { 26.44/10.89 biggest_left_key = fst (findMax fm_l); 26.44/10.89 } in biggest_left_key < key" 26.44/10.89 are unpacked to the following functions on top level 26.44/10.89 "mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); 26.44/10.89 " 26.44/10.89 The bindings of the following Let/Where expression 26.44/10.89 "let { 26.44/10.89 smallest_right_key = fst (findMin fm_r); 26.44/10.89 } in key < smallest_right_key" 26.44/10.89 are unpacked to the following functions on top level 26.44/10.89 "mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); 26.44/10.89 " 26.44/10.89 26.44/10.89 ---------------------------------------- 26.44/10.89 26.44/10.89 (12) 26.44/10.89 Obligation: 26.44/10.89 mainModule Main 26.44/10.89 module FiniteMap where { 26.44/10.89 import qualified Main; 26.44/10.89 import qualified Maybe; 26.44/10.89 import qualified Prelude; 26.44/10.89 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 26.44/10.89 26.44/10.89 instance (Eq a, Eq b) => Eq FiniteMap b a where { 26.44/10.89 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 26.44/10.89 } 26.44/10.89 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 26.44/10.89 addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; 26.44/10.89 26.44/10.89 addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; 26.44/10.89 26.44/10.89 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 26.44/10.89 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 26.44/10.89 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; 26.44/10.89 26.44/10.89 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; 26.44/10.89 26.44/10.89 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); 26.44/10.89 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; 26.44/10.89 26.44/10.89 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; 26.44/10.89 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); 26.44/10.89 26.44/10.89 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); 26.44/10.89 26.44/10.89 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 26.44/10.89 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 26.44/10.89 26.44/10.89 emptyFM :: FiniteMap a b; 26.44/10.89 emptyFM = EmptyFM; 26.44/10.89 26.44/10.89 findMax :: FiniteMap b a -> (b,a); 26.44/10.89 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 26.44/10.89 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 26.44/10.89 26.44/10.89 findMin :: FiniteMap a b -> (a,b); 26.44/10.89 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 26.44/10.89 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 26.44/10.89 26.44/10.89 fmToList :: FiniteMap b a -> [(b,a)]; 26.44/10.89 fmToList fm = foldFM fmToList0 [] fm; 26.44/10.89 26.44/10.89 fmToList0 key elt rest = (key,elt) : rest; 26.44/10.89 26.44/10.89 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 26.44/10.89 foldFM k z EmptyFM = z; 26.44/10.89 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 26.44/10.89 26.44/10.89 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 26.44/10.89 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 26.44/10.89 26.44/10.89 mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_R fm_L key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_R fm_L + mkBalBranch6Size_r key elt fm_R fm_L < 2); 26.44/10.89 26.44/10.89 mkBalBranch6Double_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 wxy wxz fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 26.44/10.89 26.44/10.89 mkBalBranch6Double_R wxy wxz wyu wyv (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 wxy wxz fm_lrr fm_r); 26.44/10.89 26.44/10.89 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); 26.44/10.89 26.44/10.89 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; 26.44/10.89 26.44/10.89 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; 26.44/10.89 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; 26.44/10.89 26.44/10.89 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); 26.44/10.89 26.44/10.89 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); 26.44/10.89 26.44/10.89 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; 26.44/10.89 26.44/10.89 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; 26.44/10.89 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; 26.44/10.89 26.44/10.89 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); 26.44/10.89 26.44/10.89 mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 26.44/10.89 26.44/10.89 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; 26.44/10.89 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; 26.44/10.89 26.44/10.89 mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 26.44/10.89 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); 26.44/10.89 26.44/10.89 mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 26.44/10.89 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); 26.44/10.89 26.44/10.89 mkBalBranch6Single_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 wxy wxz fm_l fm_rl) fm_rr; 26.44/10.89 26.44/10.89 mkBalBranch6Single_R wxy wxz wyu wyv (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 wxy wxz fm_lr fm_r); 26.44/10.89 26.44/10.89 mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyv; 26.44/10.89 26.44/10.89 mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyu; 26.44/10.89 26.44/10.89 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 26.44/10.89 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; 26.44/10.89 26.44/10.89 mkBranchBalance_ok wyx wyy wyz = True; 26.44/10.89 26.44/10.89 mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; 26.44/10.89 26.44/10.89 mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; 26.44/10.89 mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 26.44/10.89 26.44/10.89 mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); 26.44/10.89 26.44/10.89 mkBranchLeft_size wyx wyy wyz = sizeFM wyz; 26.44/10.89 26.44/10.89 mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzu wzx (1 + mkBranchLeft_size wzw wzu wzx + mkBranchRight_size wzw wzu wzx)) wzx wzw; 26.44/10.89 26.44/10.89 mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; 26.44/10.89 26.44/10.89 mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; 26.44/10.89 mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; 26.44/10.89 26.44/10.89 mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); 26.44/10.89 26.44/10.89 mkBranchRight_size wyx wyy wyz = sizeFM wyx; 26.44/10.89 26.44/10.89 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 26.44/10.89 mkBranchUnbox wyx wyy wyz x = x; 26.44/10.89 26.44/10.89 sIZE_RATIO :: Int; 26.44/10.89 sIZE_RATIO = 5; 26.44/10.89 26.44/10.89 sizeFM :: FiniteMap a b -> Int; 26.44/10.89 sizeFM EmptyFM = 0; 26.44/10.89 sizeFM (Branch vyu vyv size vyw vyx) = size; 26.44/10.89 26.44/10.89 unitFM :: b -> a -> FiniteMap b a; 26.44/10.89 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 26.44/10.89 26.44/10.89 } 26.44/10.89 module Maybe where { 26.44/10.89 import qualified FiniteMap; 26.44/10.89 import qualified Main; 26.44/10.89 import qualified Prelude; 26.44/10.89 } 26.44/10.89 module Main where { 26.44/10.89 import qualified FiniteMap; 26.44/10.89 import qualified Maybe; 26.44/10.89 import qualified Prelude; 26.44/10.89 } 26.44/10.89 26.44/10.89 ---------------------------------------- 26.44/10.89 26.44/10.89 (13) NumRed (SOUND) 26.44/10.89 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 26.44/10.89 ---------------------------------------- 26.44/10.89 26.44/10.89 (14) 26.44/10.89 Obligation: 26.44/10.89 mainModule Main 26.44/10.89 module FiniteMap where { 26.44/10.89 import qualified Main; 26.44/10.89 import qualified Maybe; 26.44/10.89 import qualified Prelude; 26.44/10.89 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 26.44/10.89 26.44/10.89 instance (Eq a, Eq b) => Eq FiniteMap a b where { 26.44/10.89 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 26.44/10.89 } 26.44/10.89 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 26.44/10.89 addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; 26.44/10.89 26.44/10.89 addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; 26.44/10.89 26.44/10.89 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 26.44/10.89 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 26.44/10.89 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; 26.44/10.89 26.44/10.89 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; 26.44/10.89 26.44/10.89 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); 26.44/10.89 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; 26.44/10.89 26.44/10.89 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; 26.44/10.89 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); 26.44/10.89 26.44/10.89 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); 26.44/10.89 26.44/10.89 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 26.44/10.89 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 26.44/10.89 26.44/10.89 emptyFM :: FiniteMap a b; 26.44/10.89 emptyFM = EmptyFM; 26.44/10.89 26.44/10.89 findMax :: FiniteMap b a -> (b,a); 26.44/10.89 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 26.44/10.89 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 26.44/10.89 26.44/10.89 findMin :: FiniteMap b a -> (b,a); 26.44/10.89 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 26.44/10.89 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 26.44/10.89 26.44/10.89 fmToList :: FiniteMap a b -> [(a,b)]; 26.44/10.89 fmToList fm = foldFM fmToList0 [] fm; 26.44/10.89 26.44/10.89 fmToList0 key elt rest = (key,elt) : rest; 26.44/10.89 26.44/10.89 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 26.44/10.89 foldFM k z EmptyFM = z; 26.44/10.89 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 26.44/10.89 26.44/10.89 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 26.44/10.89 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 26.44/10.89 26.44/10.89 mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_R fm_L key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_R fm_L + mkBalBranch6Size_r key elt fm_R fm_L < Pos (Succ (Succ Zero))); 26.44/10.89 26.44/10.89 mkBalBranch6Double_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) key_rl elt_rl (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) wxy wxz fm_l fm_rll) (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) key_r elt_r fm_rlr fm_rr); 26.44/10.89 26.44/10.89 mkBalBranch6Double_R wxy wxz wyu wyv (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) key_lr elt_lr (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) key_l elt_l fm_ll fm_lrl) (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) wxy wxz fm_lrr fm_r); 26.44/10.89 26.44/10.89 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); 26.44/10.89 26.44/10.89 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; 26.44/10.89 26.44/10.89 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; 26.44/10.89 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; 26.44/10.89 26.44/10.89 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); 26.44/10.89 26.44/10.89 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); 26.44/10.89 26.44/10.89 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; 26.44/10.89 26.44/10.89 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; 26.44/10.89 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; 26.44/10.89 26.44/10.89 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); 26.44/10.89 26.44/10.89 mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ (Succ Zero))) key elt fm_L fm_R; 26.44/10.89 26.44/10.89 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; 26.44/10.89 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; 26.44/10.89 26.44/10.89 mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 26.44/10.89 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); 26.44/10.89 26.44/10.89 mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ Zero)) key elt fm_L fm_R; 26.44/10.89 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); 26.44/10.89 26.44/10.89 mkBalBranch6Single_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch (Pos (Succ (Succ (Succ Zero)))) key_r elt_r (mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) wxy wxz fm_l fm_rl) fm_rr; 26.44/10.89 26.44/10.89 mkBalBranch6Single_R wxy wxz wyu wyv (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) key_l elt_l fm_ll (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) wxy wxz fm_lr fm_r); 26.44/10.89 26.44/10.89 mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyv; 26.44/10.89 26.44/10.89 mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyu; 26.44/10.89 26.44/10.89 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 26.44/10.89 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; 26.44/10.89 26.44/10.89 mkBranchBalance_ok wyx wyy wyz = True; 26.44/10.89 26.44/10.89 mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; 26.44/10.89 26.44/10.89 mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; 26.44/10.89 mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 26.44/10.89 26.44/10.89 mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); 26.44/10.89 26.44/10.89 mkBranchLeft_size wyx wyy wyz = sizeFM wyz; 26.44/10.89 26.44/10.89 mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzu wzx (Pos (Succ Zero) + mkBranchLeft_size wzw wzu wzx + mkBranchRight_size wzw wzu wzx)) wzx wzw; 26.44/10.89 26.44/10.89 mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; 26.44/10.89 26.44/10.89 mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; 26.44/10.89 mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; 26.44/10.89 26.44/10.89 mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); 26.44/10.89 26.44/10.89 mkBranchRight_size wyx wyy wyz = sizeFM wyx; 26.44/10.89 26.44/10.89 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 26.44/10.89 mkBranchUnbox wyx wyy wyz x = x; 26.44/10.89 26.44/10.89 sIZE_RATIO :: Int; 26.44/10.89 sIZE_RATIO = Pos (Succ (Succ (Succ (Succ (Succ Zero))))); 26.44/10.89 26.44/10.89 sizeFM :: FiniteMap b a -> Int; 26.44/10.89 sizeFM EmptyFM = Pos Zero; 26.44/10.89 sizeFM (Branch vyu vyv size vyw vyx) = size; 26.44/10.89 26.44/10.89 unitFM :: a -> b -> FiniteMap a b; 26.44/10.89 unitFM key elt = Branch key elt (Pos (Succ Zero)) emptyFM emptyFM; 26.44/10.89 26.44/10.89 } 26.44/10.89 module Maybe where { 26.44/10.89 import qualified FiniteMap; 26.44/10.89 import qualified Main; 26.44/10.89 import qualified Prelude; 26.44/10.89 } 26.44/10.89 module Main where { 26.44/10.89 import qualified FiniteMap; 26.44/10.89 import qualified Maybe; 26.44/10.89 import qualified Prelude; 26.44/10.89 } 26.44/10.89 26.44/10.89 ---------------------------------------- 26.44/10.89 26.44/10.89 (15) Narrow (SOUND) 26.44/10.89 Haskell To QDPs 26.44/10.89 26.44/10.89 digraph dp_graph { 26.44/10.89 node [outthreshold=100, inthreshold=100];1[label="FiniteMap.addListToFM_C",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 26.44/10.89 3[label="FiniteMap.addListToFM_C xuu3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 26.44/10.89 4[label="FiniteMap.addListToFM_C xuu3 xuu4",fontsize=16,color="grey",shape="box"];4 -> 5[label="",style="dashed", color="grey", weight=3]; 26.44/10.89 5[label="FiniteMap.addListToFM_C xuu3 xuu4 xuu5",fontsize=16,color="black",shape="triangle"];5 -> 6[label="",style="solid", color="black", weight=3]; 26.44/10.89 6[label="foldl (FiniteMap.addListToFM_CAdd xuu3) xuu4 xuu5",fontsize=16,color="burlywood",shape="triangle"];4059[label="xuu5/xuu50 : xuu51",fontsize=10,color="white",style="solid",shape="box"];6 -> 4059[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4059 -> 7[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4060[label="xuu5/[]",fontsize=10,color="white",style="solid",shape="box"];6 -> 4060[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4060 -> 8[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 7[label="foldl (FiniteMap.addListToFM_CAdd xuu3) xuu4 (xuu50 : xuu51)",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 26.44/10.89 8[label="foldl (FiniteMap.addListToFM_CAdd xuu3) xuu4 []",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 26.44/10.89 9 -> 6[label="",style="dashed", color="red", weight=0]; 26.44/10.89 9[label="foldl (FiniteMap.addListToFM_CAdd xuu3) (FiniteMap.addListToFM_CAdd xuu3 xuu4 xuu50) xuu51",fontsize=16,color="magenta"];9 -> 11[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 9 -> 12[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 10[label="xuu4",fontsize=16,color="green",shape="box"];11[label="FiniteMap.addListToFM_CAdd xuu3 xuu4 xuu50",fontsize=16,color="burlywood",shape="box"];4061[label="xuu50/(xuu500,xuu501)",fontsize=10,color="white",style="solid",shape="box"];11 -> 4061[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4061 -> 13[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 12[label="xuu51",fontsize=16,color="green",shape="box"];13[label="FiniteMap.addListToFM_CAdd xuu3 xuu4 (xuu500,xuu501)",fontsize=16,color="black",shape="box"];13 -> 14[label="",style="solid", color="black", weight=3]; 26.44/10.89 14[label="FiniteMap.addToFM_C xuu3 xuu4 xuu500 xuu501",fontsize=16,color="burlywood",shape="triangle"];4062[label="xuu4/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];14 -> 4062[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4062 -> 15[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4063[label="xuu4/FiniteMap.Branch xuu40 xuu41 xuu42 xuu43 xuu44",fontsize=10,color="white",style="solid",shape="box"];14 -> 4063[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4063 -> 16[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 15[label="FiniteMap.addToFM_C xuu3 FiniteMap.EmptyFM xuu500 xuu501",fontsize=16,color="black",shape="box"];15 -> 17[label="",style="solid", color="black", weight=3]; 26.44/10.89 16[label="FiniteMap.addToFM_C xuu3 (FiniteMap.Branch xuu40 xuu41 xuu42 xuu43 xuu44) xuu500 xuu501",fontsize=16,color="black",shape="box"];16 -> 18[label="",style="solid", color="black", weight=3]; 26.44/10.89 17[label="FiniteMap.addToFM_C4 xuu3 FiniteMap.EmptyFM xuu500 xuu501",fontsize=16,color="black",shape="box"];17 -> 19[label="",style="solid", color="black", weight=3]; 26.44/10.89 18[label="FiniteMap.addToFM_C3 xuu3 (FiniteMap.Branch xuu40 xuu41 xuu42 xuu43 xuu44) xuu500 xuu501",fontsize=16,color="black",shape="box"];18 -> 20[label="",style="solid", color="black", weight=3]; 26.44/10.89 19[label="FiniteMap.unitFM xuu500 xuu501",fontsize=16,color="black",shape="box"];19 -> 21[label="",style="solid", color="black", weight=3]; 26.44/10.89 20[label="FiniteMap.addToFM_C2 xuu3 xuu40 xuu41 xuu42 xuu43 xuu44 xuu500 xuu501 (xuu500 < xuu40)",fontsize=16,color="black",shape="box"];20 -> 22[label="",style="solid", color="black", weight=3]; 26.44/10.89 21[label="FiniteMap.Branch xuu500 xuu501 (Pos (Succ Zero)) FiniteMap.emptyFM FiniteMap.emptyFM",fontsize=16,color="green",shape="box"];21 -> 23[label="",style="dashed", color="green", weight=3]; 26.44/10.89 21 -> 24[label="",style="dashed", color="green", weight=3]; 26.44/10.89 22[label="FiniteMap.addToFM_C2 xuu3 xuu40 xuu41 xuu42 xuu43 xuu44 xuu500 xuu501 (compare xuu500 xuu40 == LT)",fontsize=16,color="black",shape="box"];22 -> 25[label="",style="solid", color="black", weight=3]; 26.44/10.89 23[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="triangle"];23 -> 26[label="",style="solid", color="black", weight=3]; 26.44/10.89 24 -> 23[label="",style="dashed", color="red", weight=0]; 26.44/10.89 24[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];25[label="FiniteMap.addToFM_C2 xuu3 xuu40 xuu41 xuu42 xuu43 xuu44 xuu500 xuu501 (compare3 xuu500 xuu40 == LT)",fontsize=16,color="black",shape="box"];25 -> 27[label="",style="solid", color="black", weight=3]; 26.44/10.89 26[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];27[label="FiniteMap.addToFM_C2 xuu3 xuu40 xuu41 xuu42 xuu43 xuu44 xuu500 xuu501 (compare2 xuu500 xuu40 (xuu500 == xuu40) == LT)",fontsize=16,color="burlywood",shape="box"];4064[label="xuu500/Nothing",fontsize=10,color="white",style="solid",shape="box"];27 -> 4064[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4064 -> 28[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4065[label="xuu500/Just xuu5000",fontsize=10,color="white",style="solid",shape="box"];27 -> 4065[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4065 -> 29[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 28[label="FiniteMap.addToFM_C2 xuu3 xuu40 xuu41 xuu42 xuu43 xuu44 Nothing xuu501 (compare2 Nothing xuu40 (Nothing == xuu40) == LT)",fontsize=16,color="burlywood",shape="box"];4066[label="xuu40/Nothing",fontsize=10,color="white",style="solid",shape="box"];28 -> 4066[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4066 -> 30[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4067[label="xuu40/Just xuu400",fontsize=10,color="white",style="solid",shape="box"];28 -> 4067[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4067 -> 31[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 29[label="FiniteMap.addToFM_C2 xuu3 xuu40 xuu41 xuu42 xuu43 xuu44 (Just xuu5000) xuu501 (compare2 (Just xuu5000) xuu40 (Just xuu5000 == xuu40) == LT)",fontsize=16,color="burlywood",shape="box"];4068[label="xuu40/Nothing",fontsize=10,color="white",style="solid",shape="box"];29 -> 4068[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4068 -> 32[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4069[label="xuu40/Just xuu400",fontsize=10,color="white",style="solid",shape="box"];29 -> 4069[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4069 -> 33[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 30[label="FiniteMap.addToFM_C2 xuu3 Nothing xuu41 xuu42 xuu43 xuu44 Nothing xuu501 (compare2 Nothing Nothing (Nothing == Nothing) == LT)",fontsize=16,color="black",shape="box"];30 -> 34[label="",style="solid", color="black", weight=3]; 26.44/10.89 31[label="FiniteMap.addToFM_C2 xuu3 (Just xuu400) xuu41 xuu42 xuu43 xuu44 Nothing xuu501 (compare2 Nothing (Just xuu400) (Nothing == Just xuu400) == LT)",fontsize=16,color="black",shape="box"];31 -> 35[label="",style="solid", color="black", weight=3]; 26.44/10.89 32[label="FiniteMap.addToFM_C2 xuu3 Nothing xuu41 xuu42 xuu43 xuu44 (Just xuu5000) xuu501 (compare2 (Just xuu5000) Nothing (Just xuu5000 == Nothing) == LT)",fontsize=16,color="black",shape="box"];32 -> 36[label="",style="solid", color="black", weight=3]; 26.44/10.89 33[label="FiniteMap.addToFM_C2 xuu3 (Just xuu400) xuu41 xuu42 xuu43 xuu44 (Just xuu5000) xuu501 (compare2 (Just xuu5000) (Just xuu400) (Just xuu5000 == Just xuu400) == LT)",fontsize=16,color="black",shape="box"];33 -> 37[label="",style="solid", color="black", weight=3]; 26.44/10.89 34[label="FiniteMap.addToFM_C2 xuu3 Nothing xuu41 xuu42 xuu43 xuu44 Nothing xuu501 (compare2 Nothing Nothing True == LT)",fontsize=16,color="black",shape="box"];34 -> 38[label="",style="solid", color="black", weight=3]; 26.44/10.89 35 -> 96[label="",style="dashed", color="red", weight=0]; 26.44/10.89 35[label="FiniteMap.addToFM_C2 xuu3 (Just xuu400) xuu41 xuu42 xuu43 xuu44 Nothing xuu501 (compare2 Nothing (Just xuu400) False == LT)",fontsize=16,color="magenta"];35 -> 97[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 36 -> 105[label="",style="dashed", color="red", weight=0]; 26.44/10.89 36[label="FiniteMap.addToFM_C2 xuu3 Nothing xuu41 xuu42 xuu43 xuu44 (Just xuu5000) xuu501 (compare2 (Just xuu5000) Nothing False == LT)",fontsize=16,color="magenta"];36 -> 106[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 37 -> 152[label="",style="dashed", color="red", weight=0]; 26.44/10.89 37[label="FiniteMap.addToFM_C2 xuu3 (Just xuu400) xuu41 xuu42 xuu43 xuu44 (Just xuu5000) xuu501 (compare2 (Just xuu5000) (Just xuu400) (xuu5000 == xuu400) == LT)",fontsize=16,color="magenta"];37 -> 153[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 37 -> 154[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 37 -> 155[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 37 -> 156[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 37 -> 157[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 37 -> 158[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 37 -> 159[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 37 -> 160[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 37 -> 161[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 38[label="FiniteMap.addToFM_C2 xuu3 Nothing xuu41 xuu42 xuu43 xuu44 Nothing xuu501 (EQ == LT)",fontsize=16,color="black",shape="box"];38 -> 51[label="",style="solid", color="black", weight=3]; 26.44/10.89 97 -> 61[label="",style="dashed", color="red", weight=0]; 26.44/10.89 97[label="compare2 Nothing (Just xuu400) False == LT",fontsize=16,color="magenta"];97 -> 101[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 97 -> 102[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 96[label="FiniteMap.addToFM_C2 xuu3 (Just xuu400) xuu41 xuu42 xuu43 xuu44 Nothing xuu501 xuu25",fontsize=16,color="burlywood",shape="triangle"];4070[label="xuu25/False",fontsize=10,color="white",style="solid",shape="box"];96 -> 4070[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4070 -> 103[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4071[label="xuu25/True",fontsize=10,color="white",style="solid",shape="box"];96 -> 4071[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4071 -> 104[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 106 -> 61[label="",style="dashed", color="red", weight=0]; 26.44/10.89 106[label="compare2 (Just xuu5000) Nothing False == LT",fontsize=16,color="magenta"];106 -> 110[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 106 -> 111[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 105[label="FiniteMap.addToFM_C2 xuu3 Nothing xuu41 xuu42 xuu43 xuu44 (Just xuu5000) xuu501 xuu26",fontsize=16,color="burlywood",shape="triangle"];4072[label="xuu26/False",fontsize=10,color="white",style="solid",shape="box"];105 -> 4072[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4072 -> 112[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4073[label="xuu26/True",fontsize=10,color="white",style="solid",shape="box"];105 -> 4073[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4073 -> 113[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 153[label="xuu41",fontsize=16,color="green",shape="box"];154[label="xuu3",fontsize=16,color="green",shape="box"];155[label="xuu42",fontsize=16,color="green",shape="box"];156[label="xuu5000",fontsize=16,color="green",shape="box"];157[label="xuu400",fontsize=16,color="green",shape="box"];158[label="xuu44",fontsize=16,color="green",shape="box"];159[label="xuu43",fontsize=16,color="green",shape="box"];160[label="xuu501",fontsize=16,color="green",shape="box"];161 -> 61[label="",style="dashed", color="red", weight=0]; 26.44/10.89 161[label="compare2 (Just xuu5000) (Just xuu400) (xuu5000 == xuu400) == LT",fontsize=16,color="magenta"];161 -> 165[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 161 -> 166[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 152[label="FiniteMap.addToFM_C2 xuu16 (Just xuu17) xuu18 xuu19 xuu20 xuu21 (Just xuu22) xuu23 xuu27",fontsize=16,color="burlywood",shape="triangle"];4074[label="xuu27/False",fontsize=10,color="white",style="solid",shape="box"];152 -> 4074[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4074 -> 167[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4075[label="xuu27/True",fontsize=10,color="white",style="solid",shape="box"];152 -> 4075[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4075 -> 168[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 51[label="FiniteMap.addToFM_C2 xuu3 Nothing xuu41 xuu42 xuu43 xuu44 Nothing xuu501 False",fontsize=16,color="black",shape="box"];51 -> 70[label="",style="solid", color="black", weight=3]; 26.44/10.89 101[label="LT",fontsize=16,color="green",shape="box"];102 -> 2001[label="",style="dashed", color="red", weight=0]; 26.44/10.89 102[label="compare2 Nothing (Just xuu400) False",fontsize=16,color="magenta"];102 -> 2002[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 102 -> 2003[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 102 -> 2004[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 61[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];4076[label="xuu5000/LT",fontsize=10,color="white",style="solid",shape="box"];61 -> 4076[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4076 -> 82[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4077[label="xuu5000/EQ",fontsize=10,color="white",style="solid",shape="box"];61 -> 4077[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4077 -> 83[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4078[label="xuu5000/GT",fontsize=10,color="white",style="solid",shape="box"];61 -> 4078[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4078 -> 84[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 103[label="FiniteMap.addToFM_C2 xuu3 (Just xuu400) xuu41 xuu42 xuu43 xuu44 Nothing xuu501 False",fontsize=16,color="black",shape="box"];103 -> 115[label="",style="solid", color="black", weight=3]; 26.44/10.89 104[label="FiniteMap.addToFM_C2 xuu3 (Just xuu400) xuu41 xuu42 xuu43 xuu44 Nothing xuu501 True",fontsize=16,color="black",shape="box"];104 -> 116[label="",style="solid", color="black", weight=3]; 26.44/10.89 110[label="LT",fontsize=16,color="green",shape="box"];111 -> 2001[label="",style="dashed", color="red", weight=0]; 26.44/10.89 111[label="compare2 (Just xuu5000) Nothing False",fontsize=16,color="magenta"];111 -> 2005[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 111 -> 2006[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 111 -> 2007[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 112[label="FiniteMap.addToFM_C2 xuu3 Nothing xuu41 xuu42 xuu43 xuu44 (Just xuu5000) xuu501 False",fontsize=16,color="black",shape="box"];112 -> 170[label="",style="solid", color="black", weight=3]; 26.44/10.89 113[label="FiniteMap.addToFM_C2 xuu3 Nothing xuu41 xuu42 xuu43 xuu44 (Just xuu5000) xuu501 True",fontsize=16,color="black",shape="box"];113 -> 171[label="",style="solid", color="black", weight=3]; 26.44/10.89 165[label="LT",fontsize=16,color="green",shape="box"];166 -> 2001[label="",style="dashed", color="red", weight=0]; 26.44/10.89 166[label="compare2 (Just xuu5000) (Just xuu400) (xuu5000 == xuu400)",fontsize=16,color="magenta"];166 -> 2008[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 166 -> 2009[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 166 -> 2010[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 167[label="FiniteMap.addToFM_C2 xuu16 (Just xuu17) xuu18 xuu19 xuu20 xuu21 (Just xuu22) xuu23 False",fontsize=16,color="black",shape="box"];167 -> 180[label="",style="solid", color="black", weight=3]; 26.44/10.89 168[label="FiniteMap.addToFM_C2 xuu16 (Just xuu17) xuu18 xuu19 xuu20 xuu21 (Just xuu22) xuu23 True",fontsize=16,color="black",shape="box"];168 -> 181[label="",style="solid", color="black", weight=3]; 26.44/10.89 70 -> 207[label="",style="dashed", color="red", weight=0]; 26.44/10.89 70[label="FiniteMap.addToFM_C1 xuu3 Nothing xuu41 xuu42 xuu43 xuu44 Nothing xuu501 (Nothing > Nothing)",fontsize=16,color="magenta"];70 -> 208[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 2002[label="Nothing",fontsize=16,color="green",shape="box"];2003[label="Just xuu400",fontsize=16,color="green",shape="box"];2004[label="False",fontsize=16,color="green",shape="box"];2001[label="compare2 xuu330 xuu340 xuu108",fontsize=16,color="burlywood",shape="triangle"];4079[label="xuu108/False",fontsize=10,color="white",style="solid",shape="box"];2001 -> 4079[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4079 -> 2036[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4080[label="xuu108/True",fontsize=10,color="white",style="solid",shape="box"];2001 -> 4080[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4080 -> 2037[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 82[label="LT == xuu400",fontsize=16,color="burlywood",shape="box"];4081[label="xuu400/LT",fontsize=10,color="white",style="solid",shape="box"];82 -> 4081[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4081 -> 117[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4082[label="xuu400/EQ",fontsize=10,color="white",style="solid",shape="box"];82 -> 4082[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4082 -> 118[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4083[label="xuu400/GT",fontsize=10,color="white",style="solid",shape="box"];82 -> 4083[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4083 -> 119[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 83[label="EQ == xuu400",fontsize=16,color="burlywood",shape="box"];4084[label="xuu400/LT",fontsize=10,color="white",style="solid",shape="box"];83 -> 4084[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4084 -> 120[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4085[label="xuu400/EQ",fontsize=10,color="white",style="solid",shape="box"];83 -> 4085[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4085 -> 121[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4086[label="xuu400/GT",fontsize=10,color="white",style="solid",shape="box"];83 -> 4086[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4086 -> 122[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 84[label="GT == xuu400",fontsize=16,color="burlywood",shape="box"];4087[label="xuu400/LT",fontsize=10,color="white",style="solid",shape="box"];84 -> 4087[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4087 -> 123[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4088[label="xuu400/EQ",fontsize=10,color="white",style="solid",shape="box"];84 -> 4088[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4088 -> 124[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4089[label="xuu400/GT",fontsize=10,color="white",style="solid",shape="box"];84 -> 4089[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4089 -> 125[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 115 -> 223[label="",style="dashed", color="red", weight=0]; 26.44/10.89 115[label="FiniteMap.addToFM_C1 xuu3 (Just xuu400) xuu41 xuu42 xuu43 xuu44 Nothing xuu501 (Nothing > Just xuu400)",fontsize=16,color="magenta"];115 -> 224[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 116 -> 174[label="",style="dashed", color="red", weight=0]; 26.44/10.89 116[label="FiniteMap.mkBalBranch (Just xuu400) xuu41 (FiniteMap.addToFM_C xuu3 xuu43 Nothing xuu501) xuu44",fontsize=16,color="magenta"];116 -> 175[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 2005[label="Just xuu5000",fontsize=16,color="green",shape="box"];2006[label="Nothing",fontsize=16,color="green",shape="box"];2007[label="False",fontsize=16,color="green",shape="box"];170 -> 233[label="",style="dashed", color="red", weight=0]; 26.44/10.89 170[label="FiniteMap.addToFM_C1 xuu3 Nothing xuu41 xuu42 xuu43 xuu44 (Just xuu5000) xuu501 (Just xuu5000 > Nothing)",fontsize=16,color="magenta"];170 -> 234[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 171 -> 184[label="",style="dashed", color="red", weight=0]; 26.44/10.89 171[label="FiniteMap.mkBalBranch Nothing xuu41 (FiniteMap.addToFM_C xuu3 xuu43 (Just xuu5000) xuu501) xuu44",fontsize=16,color="magenta"];171 -> 185[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 2008[label="Just xuu5000",fontsize=16,color="green",shape="box"];2009[label="Just xuu400",fontsize=16,color="green",shape="box"];2010[label="xuu5000 == xuu400",fontsize=16,color="blue",shape="box"];4090[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2010 -> 4090[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4090 -> 2038[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4091[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2010 -> 4091[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4091 -> 2039[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4092[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2010 -> 4092[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4092 -> 2040[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4093[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2010 -> 4093[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4093 -> 2041[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4094[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2010 -> 4094[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4094 -> 2042[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4095[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2010 -> 4095[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4095 -> 2043[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4096[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2010 -> 4096[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4096 -> 2044[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4097[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2010 -> 4097[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4097 -> 2045[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4098[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2010 -> 4098[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4098 -> 2046[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4099[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2010 -> 4099[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4099 -> 2047[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4100[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2010 -> 4100[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4100 -> 2048[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4101[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2010 -> 4101[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4101 -> 2049[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4102[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2010 -> 4102[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4102 -> 2050[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4103[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2010 -> 4103[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4103 -> 2051[label="",style="solid", color="blue", weight=3]; 26.44/10.89 180 -> 261[label="",style="dashed", color="red", weight=0]; 26.44/10.89 180[label="FiniteMap.addToFM_C1 xuu16 (Just xuu17) xuu18 xuu19 xuu20 xuu21 (Just xuu22) xuu23 (Just xuu22 > Just xuu17)",fontsize=16,color="magenta"];180 -> 262[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 181 -> 174[label="",style="dashed", color="red", weight=0]; 26.44/10.89 181[label="FiniteMap.mkBalBranch (Just xuu17) xuu18 (FiniteMap.addToFM_C xuu16 xuu20 (Just xuu22) xuu23) xuu21",fontsize=16,color="magenta"];181 -> 203[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 181 -> 204[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 181 -> 205[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 181 -> 206[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 208[label="Nothing > Nothing",fontsize=16,color="black",shape="box"];208 -> 210[label="",style="solid", color="black", weight=3]; 26.44/10.89 207[label="FiniteMap.addToFM_C1 xuu3 Nothing xuu41 xuu42 xuu43 xuu44 Nothing xuu501 xuu37",fontsize=16,color="burlywood",shape="triangle"];4104[label="xuu37/False",fontsize=10,color="white",style="solid",shape="box"];207 -> 4104[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4104 -> 211[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4105[label="xuu37/True",fontsize=10,color="white",style="solid",shape="box"];207 -> 4105[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4105 -> 212[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 2036[label="compare2 xuu330 xuu340 False",fontsize=16,color="black",shape="box"];2036 -> 2058[label="",style="solid", color="black", weight=3]; 26.44/10.89 2037[label="compare2 xuu330 xuu340 True",fontsize=16,color="black",shape="box"];2037 -> 2059[label="",style="solid", color="black", weight=3]; 26.44/10.89 117[label="LT == LT",fontsize=16,color="black",shape="box"];117 -> 214[label="",style="solid", color="black", weight=3]; 26.44/10.89 118[label="LT == EQ",fontsize=16,color="black",shape="box"];118 -> 215[label="",style="solid", color="black", weight=3]; 26.44/10.89 119[label="LT == GT",fontsize=16,color="black",shape="box"];119 -> 216[label="",style="solid", color="black", weight=3]; 26.44/10.89 120[label="EQ == LT",fontsize=16,color="black",shape="box"];120 -> 217[label="",style="solid", color="black", weight=3]; 26.44/10.89 121[label="EQ == EQ",fontsize=16,color="black",shape="box"];121 -> 218[label="",style="solid", color="black", weight=3]; 26.44/10.89 122[label="EQ == GT",fontsize=16,color="black",shape="box"];122 -> 219[label="",style="solid", color="black", weight=3]; 26.44/10.89 123[label="GT == LT",fontsize=16,color="black",shape="box"];123 -> 220[label="",style="solid", color="black", weight=3]; 26.44/10.89 124[label="GT == EQ",fontsize=16,color="black",shape="box"];124 -> 221[label="",style="solid", color="black", weight=3]; 26.44/10.89 125[label="GT == GT",fontsize=16,color="black",shape="box"];125 -> 222[label="",style="solid", color="black", weight=3]; 26.44/10.89 224[label="Nothing > Just xuu400",fontsize=16,color="black",shape="box"];224 -> 226[label="",style="solid", color="black", weight=3]; 26.44/10.89 223[label="FiniteMap.addToFM_C1 xuu3 (Just xuu400) xuu41 xuu42 xuu43 xuu44 Nothing xuu501 xuu38",fontsize=16,color="burlywood",shape="triangle"];4106[label="xuu38/False",fontsize=10,color="white",style="solid",shape="box"];223 -> 4106[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4106 -> 227[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4107[label="xuu38/True",fontsize=10,color="white",style="solid",shape="box"];223 -> 4107[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4107 -> 228[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 175 -> 14[label="",style="dashed", color="red", weight=0]; 26.44/10.89 175[label="FiniteMap.addToFM_C xuu3 xuu43 Nothing xuu501",fontsize=16,color="magenta"];175 -> 229[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 175 -> 230[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 174[label="FiniteMap.mkBalBranch (Just xuu400) xuu41 xuu28 xuu44",fontsize=16,color="black",shape="triangle"];174 -> 231[label="",style="solid", color="black", weight=3]; 26.44/10.89 234[label="Just xuu5000 > Nothing",fontsize=16,color="black",shape="box"];234 -> 236[label="",style="solid", color="black", weight=3]; 26.44/10.89 233[label="FiniteMap.addToFM_C1 xuu3 Nothing xuu41 xuu42 xuu43 xuu44 (Just xuu5000) xuu501 xuu39",fontsize=16,color="burlywood",shape="triangle"];4108[label="xuu39/False",fontsize=10,color="white",style="solid",shape="box"];233 -> 4108[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4108 -> 237[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4109[label="xuu39/True",fontsize=10,color="white",style="solid",shape="box"];233 -> 4109[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4109 -> 238[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 185 -> 14[label="",style="dashed", color="red", weight=0]; 26.44/10.89 185[label="FiniteMap.addToFM_C xuu3 xuu43 (Just xuu5000) xuu501",fontsize=16,color="magenta"];185 -> 239[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 185 -> 240[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 184[label="FiniteMap.mkBalBranch Nothing xuu41 xuu36 xuu44",fontsize=16,color="black",shape="triangle"];184 -> 241[label="",style="solid", color="black", weight=3]; 26.44/10.89 2038[label="xuu5000 == xuu400",fontsize=16,color="black",shape="triangle"];2038 -> 2060[label="",style="solid", color="black", weight=3]; 26.44/10.89 2039[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];4110[label="xuu5000/Left xuu50000",fontsize=10,color="white",style="solid",shape="box"];2039 -> 4110[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4110 -> 2061[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4111[label="xuu5000/Right xuu50000",fontsize=10,color="white",style="solid",shape="box"];2039 -> 4111[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4111 -> 2062[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 2040[label="xuu5000 == xuu400",fontsize=16,color="black",shape="triangle"];2040 -> 2063[label="",style="solid", color="black", weight=3]; 26.44/10.89 2041[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];4112[label="xuu5000/(xuu50000,xuu50001)",fontsize=10,color="white",style="solid",shape="box"];2041 -> 4112[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4112 -> 2064[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 2042[label="xuu5000 == xuu400",fontsize=16,color="black",shape="triangle"];2042 -> 2065[label="",style="solid", color="black", weight=3]; 26.44/10.89 2043[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];4113[label="xuu5000/Nothing",fontsize=10,color="white",style="solid",shape="box"];2043 -> 4113[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4113 -> 2066[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4114[label="xuu5000/Just xuu50000",fontsize=10,color="white",style="solid",shape="box"];2043 -> 4114[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4114 -> 2067[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 2044[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];4115[label="xuu5000/Integer xuu50000",fontsize=10,color="white",style="solid",shape="box"];2044 -> 4115[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4115 -> 2068[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 2045 -> 61[label="",style="dashed", color="red", weight=0]; 26.44/10.89 2045[label="xuu5000 == xuu400",fontsize=16,color="magenta"];2046[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];4116[label="xuu5000/xuu50000 : xuu50001",fontsize=10,color="white",style="solid",shape="box"];2046 -> 4116[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4116 -> 2069[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4117[label="xuu5000/[]",fontsize=10,color="white",style="solid",shape="box"];2046 -> 4117[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4117 -> 2070[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 2047[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];4118[label="xuu5000/False",fontsize=10,color="white",style="solid",shape="box"];2047 -> 4118[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4118 -> 2071[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4119[label="xuu5000/True",fontsize=10,color="white",style="solid",shape="box"];2047 -> 4119[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4119 -> 2072[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 2048[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];4120[label="xuu5000/xuu50000 :% xuu50001",fontsize=10,color="white",style="solid",shape="box"];2048 -> 4120[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4120 -> 2073[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 2049[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];4121[label="xuu5000/(xuu50000,xuu50001,xuu50002)",fontsize=10,color="white",style="solid",shape="box"];2049 -> 4121[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4121 -> 2074[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 2050[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];4122[label="xuu5000/()",fontsize=10,color="white",style="solid",shape="box"];2050 -> 4122[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4122 -> 2075[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 2051[label="xuu5000 == xuu400",fontsize=16,color="black",shape="triangle"];2051 -> 2076[label="",style="solid", color="black", weight=3]; 26.44/10.89 262[label="Just xuu22 > Just xuu17",fontsize=16,color="black",shape="box"];262 -> 264[label="",style="solid", color="black", weight=3]; 26.44/10.89 261[label="FiniteMap.addToFM_C1 xuu16 (Just xuu17) xuu18 xuu19 xuu20 xuu21 (Just xuu22) xuu23 xuu40",fontsize=16,color="burlywood",shape="triangle"];4123[label="xuu40/False",fontsize=10,color="white",style="solid",shape="box"];261 -> 4123[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4123 -> 265[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4124[label="xuu40/True",fontsize=10,color="white",style="solid",shape="box"];261 -> 4124[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4124 -> 266[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 203[label="xuu17",fontsize=16,color="green",shape="box"];204[label="xuu21",fontsize=16,color="green",shape="box"];205 -> 14[label="",style="dashed", color="red", weight=0]; 26.44/10.89 205[label="FiniteMap.addToFM_C xuu16 xuu20 (Just xuu22) xuu23",fontsize=16,color="magenta"];205 -> 267[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 205 -> 268[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 205 -> 269[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 205 -> 270[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 206[label="xuu18",fontsize=16,color="green",shape="box"];210 -> 61[label="",style="dashed", color="red", weight=0]; 26.44/10.89 210[label="compare Nothing Nothing == GT",fontsize=16,color="magenta"];210 -> 271[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 210 -> 272[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 211[label="FiniteMap.addToFM_C1 xuu3 Nothing xuu41 xuu42 xuu43 xuu44 Nothing xuu501 False",fontsize=16,color="black",shape="box"];211 -> 273[label="",style="solid", color="black", weight=3]; 26.44/10.89 212[label="FiniteMap.addToFM_C1 xuu3 Nothing xuu41 xuu42 xuu43 xuu44 Nothing xuu501 True",fontsize=16,color="black",shape="box"];212 -> 274[label="",style="solid", color="black", weight=3]; 26.44/10.89 2058[label="compare1 xuu330 xuu340 (xuu330 <= xuu340)",fontsize=16,color="burlywood",shape="box"];4125[label="xuu330/Nothing",fontsize=10,color="white",style="solid",shape="box"];2058 -> 4125[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4125 -> 2103[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4126[label="xuu330/Just xuu3300",fontsize=10,color="white",style="solid",shape="box"];2058 -> 4126[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4126 -> 2104[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 2059[label="EQ",fontsize=16,color="green",shape="box"];214[label="True",fontsize=16,color="green",shape="box"];215[label="False",fontsize=16,color="green",shape="box"];216[label="False",fontsize=16,color="green",shape="box"];217[label="False",fontsize=16,color="green",shape="box"];218[label="True",fontsize=16,color="green",shape="box"];219[label="False",fontsize=16,color="green",shape="box"];220[label="False",fontsize=16,color="green",shape="box"];221[label="False",fontsize=16,color="green",shape="box"];222[label="True",fontsize=16,color="green",shape="box"];226 -> 61[label="",style="dashed", color="red", weight=0]; 26.44/10.89 226[label="compare Nothing (Just xuu400) == GT",fontsize=16,color="magenta"];226 -> 275[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 226 -> 276[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 227[label="FiniteMap.addToFM_C1 xuu3 (Just xuu400) xuu41 xuu42 xuu43 xuu44 Nothing xuu501 False",fontsize=16,color="black",shape="box"];227 -> 277[label="",style="solid", color="black", weight=3]; 26.44/10.89 228[label="FiniteMap.addToFM_C1 xuu3 (Just xuu400) xuu41 xuu42 xuu43 xuu44 Nothing xuu501 True",fontsize=16,color="black",shape="box"];228 -> 278[label="",style="solid", color="black", weight=3]; 26.44/10.89 229[label="xuu43",fontsize=16,color="green",shape="box"];230[label="Nothing",fontsize=16,color="green",shape="box"];231[label="FiniteMap.mkBalBranch6 (Just xuu400) xuu41 xuu28 xuu44",fontsize=16,color="black",shape="box"];231 -> 279[label="",style="solid", color="black", weight=3]; 26.44/10.89 236 -> 61[label="",style="dashed", color="red", weight=0]; 26.44/10.89 236[label="compare (Just xuu5000) Nothing == GT",fontsize=16,color="magenta"];236 -> 281[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 236 -> 282[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 237[label="FiniteMap.addToFM_C1 xuu3 Nothing xuu41 xuu42 xuu43 xuu44 (Just xuu5000) xuu501 False",fontsize=16,color="black",shape="box"];237 -> 283[label="",style="solid", color="black", weight=3]; 26.44/10.89 238[label="FiniteMap.addToFM_C1 xuu3 Nothing xuu41 xuu42 xuu43 xuu44 (Just xuu5000) xuu501 True",fontsize=16,color="black",shape="box"];238 -> 284[label="",style="solid", color="black", weight=3]; 26.44/10.89 239[label="xuu43",fontsize=16,color="green",shape="box"];240[label="Just xuu5000",fontsize=16,color="green",shape="box"];241[label="FiniteMap.mkBalBranch6 Nothing xuu41 xuu36 xuu44",fontsize=16,color="black",shape="box"];241 -> 285[label="",style="solid", color="black", weight=3]; 26.44/10.89 2060[label="primEqChar xuu5000 xuu400",fontsize=16,color="burlywood",shape="box"];4127[label="xuu5000/Char xuu50000",fontsize=10,color="white",style="solid",shape="box"];2060 -> 4127[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4127 -> 2105[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 2061[label="Left xuu50000 == xuu400",fontsize=16,color="burlywood",shape="box"];4128[label="xuu400/Left xuu4000",fontsize=10,color="white",style="solid",shape="box"];2061 -> 4128[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4128 -> 2106[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4129[label="xuu400/Right xuu4000",fontsize=10,color="white",style="solid",shape="box"];2061 -> 4129[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4129 -> 2107[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 2062[label="Right xuu50000 == xuu400",fontsize=16,color="burlywood",shape="box"];4130[label="xuu400/Left xuu4000",fontsize=10,color="white",style="solid",shape="box"];2062 -> 4130[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4130 -> 2108[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4131[label="xuu400/Right xuu4000",fontsize=10,color="white",style="solid",shape="box"];2062 -> 4131[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4131 -> 2109[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 2063[label="primEqDouble xuu5000 xuu400",fontsize=16,color="burlywood",shape="box"];4132[label="xuu5000/Double xuu50000 xuu50001",fontsize=10,color="white",style="solid",shape="box"];2063 -> 4132[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4132 -> 2110[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 2064[label="(xuu50000,xuu50001) == xuu400",fontsize=16,color="burlywood",shape="box"];4133[label="xuu400/(xuu4000,xuu4001)",fontsize=10,color="white",style="solid",shape="box"];2064 -> 4133[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4133 -> 2111[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 2065[label="primEqFloat xuu5000 xuu400",fontsize=16,color="burlywood",shape="box"];4134[label="xuu5000/Float xuu50000 xuu50001",fontsize=10,color="white",style="solid",shape="box"];2065 -> 4134[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4134 -> 2112[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 2066[label="Nothing == xuu400",fontsize=16,color="burlywood",shape="box"];4135[label="xuu400/Nothing",fontsize=10,color="white",style="solid",shape="box"];2066 -> 4135[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4135 -> 2113[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4136[label="xuu400/Just xuu4000",fontsize=10,color="white",style="solid",shape="box"];2066 -> 4136[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4136 -> 2114[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 2067[label="Just xuu50000 == xuu400",fontsize=16,color="burlywood",shape="box"];4137[label="xuu400/Nothing",fontsize=10,color="white",style="solid",shape="box"];2067 -> 4137[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4137 -> 2115[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4138[label="xuu400/Just xuu4000",fontsize=10,color="white",style="solid",shape="box"];2067 -> 4138[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4138 -> 2116[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 2068[label="Integer xuu50000 == xuu400",fontsize=16,color="burlywood",shape="box"];4139[label="xuu400/Integer xuu4000",fontsize=10,color="white",style="solid",shape="box"];2068 -> 4139[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4139 -> 2117[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 2069[label="xuu50000 : xuu50001 == xuu400",fontsize=16,color="burlywood",shape="box"];4140[label="xuu400/xuu4000 : xuu4001",fontsize=10,color="white",style="solid",shape="box"];2069 -> 4140[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4140 -> 2118[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4141[label="xuu400/[]",fontsize=10,color="white",style="solid",shape="box"];2069 -> 4141[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4141 -> 2119[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 2070[label="[] == xuu400",fontsize=16,color="burlywood",shape="box"];4142[label="xuu400/xuu4000 : xuu4001",fontsize=10,color="white",style="solid",shape="box"];2070 -> 4142[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4142 -> 2120[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4143[label="xuu400/[]",fontsize=10,color="white",style="solid",shape="box"];2070 -> 4143[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4143 -> 2121[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 2071[label="False == xuu400",fontsize=16,color="burlywood",shape="box"];4144[label="xuu400/False",fontsize=10,color="white",style="solid",shape="box"];2071 -> 4144[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4144 -> 2122[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4145[label="xuu400/True",fontsize=10,color="white",style="solid",shape="box"];2071 -> 4145[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4145 -> 2123[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 2072[label="True == xuu400",fontsize=16,color="burlywood",shape="box"];4146[label="xuu400/False",fontsize=10,color="white",style="solid",shape="box"];2072 -> 4146[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4146 -> 2124[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4147[label="xuu400/True",fontsize=10,color="white",style="solid",shape="box"];2072 -> 4147[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4147 -> 2125[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 2073[label="xuu50000 :% xuu50001 == xuu400",fontsize=16,color="burlywood",shape="box"];4148[label="xuu400/xuu4000 :% xuu4001",fontsize=10,color="white",style="solid",shape="box"];2073 -> 4148[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4148 -> 2126[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 2074[label="(xuu50000,xuu50001,xuu50002) == xuu400",fontsize=16,color="burlywood",shape="box"];4149[label="xuu400/(xuu4000,xuu4001,xuu4002)",fontsize=10,color="white",style="solid",shape="box"];2074 -> 4149[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4149 -> 2127[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 2075[label="() == xuu400",fontsize=16,color="burlywood",shape="box"];4150[label="xuu400/()",fontsize=10,color="white",style="solid",shape="box"];2075 -> 4150[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4150 -> 2128[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 2076[label="primEqInt xuu5000 xuu400",fontsize=16,color="burlywood",shape="triangle"];4151[label="xuu5000/Pos xuu50000",fontsize=10,color="white",style="solid",shape="box"];2076 -> 4151[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4151 -> 2129[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4152[label="xuu5000/Neg xuu50000",fontsize=10,color="white",style="solid",shape="box"];2076 -> 4152[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4152 -> 2130[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 264 -> 61[label="",style="dashed", color="red", weight=0]; 26.44/10.89 264[label="compare (Just xuu22) (Just xuu17) == GT",fontsize=16,color="magenta"];264 -> 313[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 264 -> 314[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 265[label="FiniteMap.addToFM_C1 xuu16 (Just xuu17) xuu18 xuu19 xuu20 xuu21 (Just xuu22) xuu23 False",fontsize=16,color="black",shape="box"];265 -> 315[label="",style="solid", color="black", weight=3]; 26.44/10.89 266[label="FiniteMap.addToFM_C1 xuu16 (Just xuu17) xuu18 xuu19 xuu20 xuu21 (Just xuu22) xuu23 True",fontsize=16,color="black",shape="box"];266 -> 316[label="",style="solid", color="black", weight=3]; 26.44/10.89 267[label="xuu20",fontsize=16,color="green",shape="box"];268[label="xuu16",fontsize=16,color="green",shape="box"];269[label="Just xuu22",fontsize=16,color="green",shape="box"];270[label="xuu23",fontsize=16,color="green",shape="box"];271[label="GT",fontsize=16,color="green",shape="box"];272[label="compare Nothing Nothing",fontsize=16,color="black",shape="box"];272 -> 317[label="",style="solid", color="black", weight=3]; 26.44/10.89 273[label="FiniteMap.addToFM_C0 xuu3 Nothing xuu41 xuu42 xuu43 xuu44 Nothing xuu501 otherwise",fontsize=16,color="black",shape="box"];273 -> 318[label="",style="solid", color="black", weight=3]; 26.44/10.89 274 -> 184[label="",style="dashed", color="red", weight=0]; 26.44/10.89 274[label="FiniteMap.mkBalBranch Nothing xuu41 xuu43 (FiniteMap.addToFM_C xuu3 xuu44 Nothing xuu501)",fontsize=16,color="magenta"];274 -> 319[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 274 -> 320[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 2103[label="compare1 Nothing xuu340 (Nothing <= xuu340)",fontsize=16,color="burlywood",shape="box"];4153[label="xuu340/Nothing",fontsize=10,color="white",style="solid",shape="box"];2103 -> 4153[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4153 -> 2197[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4154[label="xuu340/Just xuu3400",fontsize=10,color="white",style="solid",shape="box"];2103 -> 4154[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4154 -> 2198[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 2104[label="compare1 (Just xuu3300) xuu340 (Just xuu3300 <= xuu340)",fontsize=16,color="burlywood",shape="box"];4155[label="xuu340/Nothing",fontsize=10,color="white",style="solid",shape="box"];2104 -> 4155[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4155 -> 2199[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4156[label="xuu340/Just xuu3400",fontsize=10,color="white",style="solid",shape="box"];2104 -> 4156[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4156 -> 2200[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 275[label="GT",fontsize=16,color="green",shape="box"];276[label="compare Nothing (Just xuu400)",fontsize=16,color="black",shape="box"];276 -> 321[label="",style="solid", color="black", weight=3]; 26.44/10.89 277[label="FiniteMap.addToFM_C0 xuu3 (Just xuu400) xuu41 xuu42 xuu43 xuu44 Nothing xuu501 otherwise",fontsize=16,color="black",shape="box"];277 -> 322[label="",style="solid", color="black", weight=3]; 26.44/10.89 278 -> 174[label="",style="dashed", color="red", weight=0]; 26.44/10.89 278[label="FiniteMap.mkBalBranch (Just xuu400) xuu41 xuu43 (FiniteMap.addToFM_C xuu3 xuu44 Nothing xuu501)",fontsize=16,color="magenta"];278 -> 323[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 278 -> 324[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 279 -> 384[label="",style="dashed", color="red", weight=0]; 26.44/10.89 279[label="FiniteMap.mkBalBranch6MkBalBranch5 (Just xuu400) xuu41 xuu44 xuu28 (Just xuu400) xuu41 xuu28 xuu44 (FiniteMap.mkBalBranch6Size_l (Just xuu400) xuu41 xuu44 xuu28 + FiniteMap.mkBalBranch6Size_r (Just xuu400) xuu41 xuu44 xuu28 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];279 -> 385[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 281[label="GT",fontsize=16,color="green",shape="box"];282[label="compare (Just xuu5000) Nothing",fontsize=16,color="black",shape="box"];282 -> 327[label="",style="solid", color="black", weight=3]; 26.44/10.89 283[label="FiniteMap.addToFM_C0 xuu3 Nothing xuu41 xuu42 xuu43 xuu44 (Just xuu5000) xuu501 otherwise",fontsize=16,color="black",shape="box"];283 -> 328[label="",style="solid", color="black", weight=3]; 26.44/10.89 284 -> 184[label="",style="dashed", color="red", weight=0]; 26.44/10.89 284[label="FiniteMap.mkBalBranch Nothing xuu41 xuu43 (FiniteMap.addToFM_C xuu3 xuu44 (Just xuu5000) xuu501)",fontsize=16,color="magenta"];284 -> 329[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 284 -> 330[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 285 -> 394[label="",style="dashed", color="red", weight=0]; 26.44/10.89 285[label="FiniteMap.mkBalBranch6MkBalBranch5 Nothing xuu41 xuu44 xuu36 Nothing xuu41 xuu36 xuu44 (FiniteMap.mkBalBranch6Size_l Nothing xuu41 xuu44 xuu36 + FiniteMap.mkBalBranch6Size_r Nothing xuu41 xuu44 xuu36 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];285 -> 395[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 2105[label="primEqChar (Char xuu50000) xuu400",fontsize=16,color="burlywood",shape="box"];4157[label="xuu400/Char xuu4000",fontsize=10,color="white",style="solid",shape="box"];2105 -> 4157[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4157 -> 2201[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 2106[label="Left xuu50000 == Left xuu4000",fontsize=16,color="black",shape="box"];2106 -> 2202[label="",style="solid", color="black", weight=3]; 26.44/10.89 2107[label="Left xuu50000 == Right xuu4000",fontsize=16,color="black",shape="box"];2107 -> 2203[label="",style="solid", color="black", weight=3]; 26.44/10.89 2108[label="Right xuu50000 == Left xuu4000",fontsize=16,color="black",shape="box"];2108 -> 2204[label="",style="solid", color="black", weight=3]; 26.44/10.89 2109[label="Right xuu50000 == Right xuu4000",fontsize=16,color="black",shape="box"];2109 -> 2205[label="",style="solid", color="black", weight=3]; 26.44/10.89 2110[label="primEqDouble (Double xuu50000 xuu50001) xuu400",fontsize=16,color="burlywood",shape="box"];4158[label="xuu400/Double xuu4000 xuu4001",fontsize=10,color="white",style="solid",shape="box"];2110 -> 4158[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4158 -> 2206[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 2111[label="(xuu50000,xuu50001) == (xuu4000,xuu4001)",fontsize=16,color="black",shape="box"];2111 -> 2207[label="",style="solid", color="black", weight=3]; 26.44/10.89 2112[label="primEqFloat (Float xuu50000 xuu50001) xuu400",fontsize=16,color="burlywood",shape="box"];4159[label="xuu400/Float xuu4000 xuu4001",fontsize=10,color="white",style="solid",shape="box"];2112 -> 4159[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4159 -> 2208[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 2113[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];2113 -> 2209[label="",style="solid", color="black", weight=3]; 26.44/10.89 2114[label="Nothing == Just xuu4000",fontsize=16,color="black",shape="box"];2114 -> 2210[label="",style="solid", color="black", weight=3]; 26.44/10.89 2115[label="Just xuu50000 == Nothing",fontsize=16,color="black",shape="box"];2115 -> 2211[label="",style="solid", color="black", weight=3]; 26.44/10.89 2116[label="Just xuu50000 == Just xuu4000",fontsize=16,color="black",shape="box"];2116 -> 2212[label="",style="solid", color="black", weight=3]; 26.44/10.89 2117[label="Integer xuu50000 == Integer xuu4000",fontsize=16,color="black",shape="box"];2117 -> 2213[label="",style="solid", color="black", weight=3]; 26.44/10.89 2118[label="xuu50000 : xuu50001 == xuu4000 : xuu4001",fontsize=16,color="black",shape="box"];2118 -> 2214[label="",style="solid", color="black", weight=3]; 26.44/10.89 2119[label="xuu50000 : xuu50001 == []",fontsize=16,color="black",shape="box"];2119 -> 2215[label="",style="solid", color="black", weight=3]; 26.44/10.89 2120[label="[] == xuu4000 : xuu4001",fontsize=16,color="black",shape="box"];2120 -> 2216[label="",style="solid", color="black", weight=3]; 26.44/10.89 2121[label="[] == []",fontsize=16,color="black",shape="box"];2121 -> 2217[label="",style="solid", color="black", weight=3]; 26.44/10.89 2122[label="False == False",fontsize=16,color="black",shape="box"];2122 -> 2218[label="",style="solid", color="black", weight=3]; 26.44/10.89 2123[label="False == True",fontsize=16,color="black",shape="box"];2123 -> 2219[label="",style="solid", color="black", weight=3]; 26.44/10.89 2124[label="True == False",fontsize=16,color="black",shape="box"];2124 -> 2220[label="",style="solid", color="black", weight=3]; 26.44/10.89 2125[label="True == True",fontsize=16,color="black",shape="box"];2125 -> 2221[label="",style="solid", color="black", weight=3]; 26.44/10.89 2126[label="xuu50000 :% xuu50001 == xuu4000 :% xuu4001",fontsize=16,color="black",shape="box"];2126 -> 2222[label="",style="solid", color="black", weight=3]; 26.44/10.89 2127[label="(xuu50000,xuu50001,xuu50002) == (xuu4000,xuu4001,xuu4002)",fontsize=16,color="black",shape="box"];2127 -> 2223[label="",style="solid", color="black", weight=3]; 26.44/10.89 2128[label="() == ()",fontsize=16,color="black",shape="box"];2128 -> 2224[label="",style="solid", color="black", weight=3]; 26.44/10.89 2129[label="primEqInt (Pos xuu50000) xuu400",fontsize=16,color="burlywood",shape="box"];4160[label="xuu50000/Succ xuu500000",fontsize=10,color="white",style="solid",shape="box"];2129 -> 4160[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4160 -> 2225[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4161[label="xuu50000/Zero",fontsize=10,color="white",style="solid",shape="box"];2129 -> 4161[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4161 -> 2226[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 2130[label="primEqInt (Neg xuu50000) xuu400",fontsize=16,color="burlywood",shape="box"];4162[label="xuu50000/Succ xuu500000",fontsize=10,color="white",style="solid",shape="box"];2130 -> 4162[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4162 -> 2227[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4163[label="xuu50000/Zero",fontsize=10,color="white",style="solid",shape="box"];2130 -> 4163[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4163 -> 2228[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 313[label="GT",fontsize=16,color="green",shape="box"];314[label="compare (Just xuu22) (Just xuu17)",fontsize=16,color="black",shape="box"];314 -> 370[label="",style="solid", color="black", weight=3]; 26.44/10.89 315[label="FiniteMap.addToFM_C0 xuu16 (Just xuu17) xuu18 xuu19 xuu20 xuu21 (Just xuu22) xuu23 otherwise",fontsize=16,color="black",shape="box"];315 -> 371[label="",style="solid", color="black", weight=3]; 26.44/10.89 316 -> 174[label="",style="dashed", color="red", weight=0]; 26.44/10.89 316[label="FiniteMap.mkBalBranch (Just xuu17) xuu18 xuu20 (FiniteMap.addToFM_C xuu16 xuu21 (Just xuu22) xuu23)",fontsize=16,color="magenta"];316 -> 372[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 316 -> 373[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 316 -> 374[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 316 -> 375[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 317[label="compare3 Nothing Nothing",fontsize=16,color="black",shape="box"];317 -> 376[label="",style="solid", color="black", weight=3]; 26.44/10.89 318[label="FiniteMap.addToFM_C0 xuu3 Nothing xuu41 xuu42 xuu43 xuu44 Nothing xuu501 True",fontsize=16,color="black",shape="box"];318 -> 377[label="",style="solid", color="black", weight=3]; 26.44/10.89 319[label="xuu43",fontsize=16,color="green",shape="box"];320 -> 14[label="",style="dashed", color="red", weight=0]; 26.44/10.89 320[label="FiniteMap.addToFM_C xuu3 xuu44 Nothing xuu501",fontsize=16,color="magenta"];320 -> 378[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 320 -> 379[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 2197[label="compare1 Nothing Nothing (Nothing <= Nothing)",fontsize=16,color="black",shape="box"];2197 -> 2260[label="",style="solid", color="black", weight=3]; 26.44/10.89 2198[label="compare1 Nothing (Just xuu3400) (Nothing <= Just xuu3400)",fontsize=16,color="black",shape="box"];2198 -> 2261[label="",style="solid", color="black", weight=3]; 26.44/10.89 2199[label="compare1 (Just xuu3300) Nothing (Just xuu3300 <= Nothing)",fontsize=16,color="black",shape="box"];2199 -> 2262[label="",style="solid", color="black", weight=3]; 26.44/10.89 2200[label="compare1 (Just xuu3300) (Just xuu3400) (Just xuu3300 <= Just xuu3400)",fontsize=16,color="black",shape="box"];2200 -> 2263[label="",style="solid", color="black", weight=3]; 26.44/10.89 321[label="compare3 Nothing (Just xuu400)",fontsize=16,color="black",shape="box"];321 -> 380[label="",style="solid", color="black", weight=3]; 26.44/10.89 322[label="FiniteMap.addToFM_C0 xuu3 (Just xuu400) xuu41 xuu42 xuu43 xuu44 Nothing xuu501 True",fontsize=16,color="black",shape="box"];322 -> 381[label="",style="solid", color="black", weight=3]; 26.44/10.89 323 -> 14[label="",style="dashed", color="red", weight=0]; 26.44/10.89 323[label="FiniteMap.addToFM_C xuu3 xuu44 Nothing xuu501",fontsize=16,color="magenta"];323 -> 382[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 323 -> 383[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 324[label="xuu43",fontsize=16,color="green",shape="box"];385[label="FiniteMap.mkBalBranch6Size_l (Just xuu400) xuu41 xuu44 xuu28 + FiniteMap.mkBalBranch6Size_r (Just xuu400) xuu41 xuu44 xuu28 < Pos (Succ (Succ Zero))",fontsize=16,color="black",shape="box"];385 -> 387[label="",style="solid", color="black", weight=3]; 26.44/10.89 384[label="FiniteMap.mkBalBranch6MkBalBranch5 (Just xuu400) xuu41 xuu44 xuu28 (Just xuu400) xuu41 xuu28 xuu44 xuu48",fontsize=16,color="burlywood",shape="triangle"];4164[label="xuu48/False",fontsize=10,color="white",style="solid",shape="box"];384 -> 4164[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4164 -> 388[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4165[label="xuu48/True",fontsize=10,color="white",style="solid",shape="box"];384 -> 4165[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4165 -> 389[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 327[label="compare3 (Just xuu5000) Nothing",fontsize=16,color="black",shape="box"];327 -> 390[label="",style="solid", color="black", weight=3]; 26.44/10.89 328[label="FiniteMap.addToFM_C0 xuu3 Nothing xuu41 xuu42 xuu43 xuu44 (Just xuu5000) xuu501 True",fontsize=16,color="black",shape="box"];328 -> 391[label="",style="solid", color="black", weight=3]; 26.44/10.89 329[label="xuu43",fontsize=16,color="green",shape="box"];330 -> 14[label="",style="dashed", color="red", weight=0]; 26.44/10.89 330[label="FiniteMap.addToFM_C xuu3 xuu44 (Just xuu5000) xuu501",fontsize=16,color="magenta"];330 -> 392[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 330 -> 393[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 395[label="FiniteMap.mkBalBranch6Size_l Nothing xuu41 xuu44 xuu36 + FiniteMap.mkBalBranch6Size_r Nothing xuu41 xuu44 xuu36 < Pos (Succ (Succ Zero))",fontsize=16,color="black",shape="box"];395 -> 397[label="",style="solid", color="black", weight=3]; 26.44/10.89 394[label="FiniteMap.mkBalBranch6MkBalBranch5 Nothing xuu41 xuu44 xuu36 Nothing xuu41 xuu36 xuu44 xuu49",fontsize=16,color="burlywood",shape="triangle"];4166[label="xuu49/False",fontsize=10,color="white",style="solid",shape="box"];394 -> 4166[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4166 -> 398[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 4167[label="xuu49/True",fontsize=10,color="white",style="solid",shape="box"];394 -> 4167[label="",style="solid", color="burlywood", weight=9]; 26.44/10.89 4167 -> 399[label="",style="solid", color="burlywood", weight=3]; 26.44/10.89 2201[label="primEqChar (Char xuu50000) (Char xuu4000)",fontsize=16,color="black",shape="box"];2201 -> 2264[label="",style="solid", color="black", weight=3]; 26.44/10.89 2202[label="xuu50000 == xuu4000",fontsize=16,color="blue",shape="box"];4168[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2202 -> 4168[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4168 -> 2265[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4169[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2202 -> 4169[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4169 -> 2266[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4170[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2202 -> 4170[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4170 -> 2267[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4171[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2202 -> 4171[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4171 -> 2268[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4172[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2202 -> 4172[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4172 -> 2269[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4173[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2202 -> 4173[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4173 -> 2270[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4174[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2202 -> 4174[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4174 -> 2271[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4175[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2202 -> 4175[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4175 -> 2272[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4176[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2202 -> 4176[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4176 -> 2273[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4177[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2202 -> 4177[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4177 -> 2274[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4178[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2202 -> 4178[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4178 -> 2275[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4179[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2202 -> 4179[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4179 -> 2276[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4180[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2202 -> 4180[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4180 -> 2277[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4181[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2202 -> 4181[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4181 -> 2278[label="",style="solid", color="blue", weight=3]; 26.44/10.89 2203[label="False",fontsize=16,color="green",shape="box"];2204[label="False",fontsize=16,color="green",shape="box"];2205[label="xuu50000 == xuu4000",fontsize=16,color="blue",shape="box"];4182[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2205 -> 4182[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4182 -> 2279[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4183[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2205 -> 4183[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4183 -> 2280[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4184[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2205 -> 4184[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4184 -> 2281[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4185[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2205 -> 4185[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4185 -> 2282[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4186[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2205 -> 4186[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4186 -> 2283[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4187[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2205 -> 4187[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4187 -> 2284[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4188[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2205 -> 4188[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4188 -> 2285[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4189[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2205 -> 4189[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4189 -> 2286[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4190[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2205 -> 4190[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4190 -> 2287[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4191[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2205 -> 4191[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4191 -> 2288[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4192[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2205 -> 4192[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4192 -> 2289[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4193[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2205 -> 4193[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4193 -> 2290[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4194[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2205 -> 4194[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4194 -> 2291[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4195[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2205 -> 4195[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4195 -> 2292[label="",style="solid", color="blue", weight=3]; 26.44/10.89 2206[label="primEqDouble (Double xuu50000 xuu50001) (Double xuu4000 xuu4001)",fontsize=16,color="black",shape="box"];2206 -> 2293[label="",style="solid", color="black", weight=3]; 26.44/10.89 2207 -> 2421[label="",style="dashed", color="red", weight=0]; 26.44/10.89 2207[label="xuu50000 == xuu4000 && xuu50001 == xuu4001",fontsize=16,color="magenta"];2207 -> 2422[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 2207 -> 2423[label="",style="dashed", color="magenta", weight=3]; 26.44/10.89 2208[label="primEqFloat (Float xuu50000 xuu50001) (Float xuu4000 xuu4001)",fontsize=16,color="black",shape="box"];2208 -> 2304[label="",style="solid", color="black", weight=3]; 26.44/10.89 2209[label="True",fontsize=16,color="green",shape="box"];2210[label="False",fontsize=16,color="green",shape="box"];2211[label="False",fontsize=16,color="green",shape="box"];2212[label="xuu50000 == xuu4000",fontsize=16,color="blue",shape="box"];4196[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 4196[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4196 -> 2305[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4197[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 4197[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4197 -> 2306[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4198[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 4198[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4198 -> 2307[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4199[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 4199[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4199 -> 2308[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4200[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 4200[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4200 -> 2309[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4201[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 4201[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4201 -> 2310[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4202[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 4202[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4202 -> 2311[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4203[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 4203[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4203 -> 2312[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4204[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 4204[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4204 -> 2313[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4205[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 4205[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4205 -> 2314[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4206[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 4206[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4206 -> 2315[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4207[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 4207[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4207 -> 2316[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4208[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 4208[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4208 -> 2317[label="",style="solid", color="blue", weight=3]; 26.44/10.89 4209[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2212 -> 4209[label="",style="solid", color="blue", weight=9]; 26.44/10.89 4209 -> 2318[label="",style="solid", color="blue", weight=3]; 26.44/10.89 2213 -> 2076[label="",style="dashed", color="red", weight=0]; 26.44/10.89 2213[label="primEqInt xuu50000 xuu4000",fontsize=16,color="magenta"];2213 -> 2319[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2213 -> 2320[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2214 -> 2421[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2214[label="xuu50000 == xuu4000 && xuu50001 == xuu4001",fontsize=16,color="magenta"];2214 -> 2424[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2214 -> 2425[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2215[label="False",fontsize=16,color="green",shape="box"];2216[label="False",fontsize=16,color="green",shape="box"];2217[label="True",fontsize=16,color="green",shape="box"];2218[label="True",fontsize=16,color="green",shape="box"];2219[label="False",fontsize=16,color="green",shape="box"];2220[label="False",fontsize=16,color="green",shape="box"];2221[label="True",fontsize=16,color="green",shape="box"];2222 -> 2421[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2222[label="xuu50000 == xuu4000 && xuu50001 == xuu4001",fontsize=16,color="magenta"];2222 -> 2426[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2222 -> 2427[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2223 -> 2421[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2223[label="xuu50000 == xuu4000 && xuu50001 == xuu4001 && xuu50002 == xuu4002",fontsize=16,color="magenta"];2223 -> 2428[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2223 -> 2429[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2224[label="True",fontsize=16,color="green",shape="box"];2225[label="primEqInt (Pos (Succ xuu500000)) xuu400",fontsize=16,color="burlywood",shape="box"];4210[label="xuu400/Pos xuu4000",fontsize=10,color="white",style="solid",shape="box"];2225 -> 4210[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4210 -> 2332[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4211[label="xuu400/Neg xuu4000",fontsize=10,color="white",style="solid",shape="box"];2225 -> 4211[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4211 -> 2333[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2226[label="primEqInt (Pos Zero) xuu400",fontsize=16,color="burlywood",shape="box"];4212[label="xuu400/Pos xuu4000",fontsize=10,color="white",style="solid",shape="box"];2226 -> 4212[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4212 -> 2334[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4213[label="xuu400/Neg xuu4000",fontsize=10,color="white",style="solid",shape="box"];2226 -> 4213[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4213 -> 2335[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2227[label="primEqInt (Neg (Succ xuu500000)) xuu400",fontsize=16,color="burlywood",shape="box"];4214[label="xuu400/Pos xuu4000",fontsize=10,color="white",style="solid",shape="box"];2227 -> 4214[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4214 -> 2336[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4215[label="xuu400/Neg xuu4000",fontsize=10,color="white",style="solid",shape="box"];2227 -> 4215[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4215 -> 2337[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2228[label="primEqInt (Neg Zero) xuu400",fontsize=16,color="burlywood",shape="box"];4216[label="xuu400/Pos xuu4000",fontsize=10,color="white",style="solid",shape="box"];2228 -> 4216[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4216 -> 2338[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4217[label="xuu400/Neg xuu4000",fontsize=10,color="white",style="solid",shape="box"];2228 -> 4217[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4217 -> 2339[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 370[label="compare3 (Just xuu22) (Just xuu17)",fontsize=16,color="black",shape="box"];370 -> 492[label="",style="solid", color="black", weight=3]; 26.44/10.90 371[label="FiniteMap.addToFM_C0 xuu16 (Just xuu17) xuu18 xuu19 xuu20 xuu21 (Just xuu22) xuu23 True",fontsize=16,color="black",shape="box"];371 -> 493[label="",style="solid", color="black", weight=3]; 26.44/10.90 372[label="xuu17",fontsize=16,color="green",shape="box"];373 -> 14[label="",style="dashed", color="red", weight=0]; 26.44/10.90 373[label="FiniteMap.addToFM_C xuu16 xuu21 (Just xuu22) xuu23",fontsize=16,color="magenta"];373 -> 494[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 373 -> 495[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 373 -> 496[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 373 -> 497[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 374[label="xuu20",fontsize=16,color="green",shape="box"];375[label="xuu18",fontsize=16,color="green",shape="box"];376 -> 2001[label="",style="dashed", color="red", weight=0]; 26.44/10.90 376[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="magenta"];376 -> 2020[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 376 -> 2021[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 376 -> 2022[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 377[label="FiniteMap.Branch Nothing (xuu3 xuu41 xuu501) xuu42 xuu43 xuu44",fontsize=16,color="green",shape="box"];377 -> 500[label="",style="dashed", color="green", weight=3]; 26.44/10.90 378[label="xuu44",fontsize=16,color="green",shape="box"];379[label="Nothing",fontsize=16,color="green",shape="box"];2260[label="compare1 Nothing Nothing True",fontsize=16,color="black",shape="box"];2260 -> 2340[label="",style="solid", color="black", weight=3]; 26.44/10.90 2261[label="compare1 Nothing (Just xuu3400) True",fontsize=16,color="black",shape="box"];2261 -> 2341[label="",style="solid", color="black", weight=3]; 26.44/10.90 2262[label="compare1 (Just xuu3300) Nothing False",fontsize=16,color="black",shape="box"];2262 -> 2342[label="",style="solid", color="black", weight=3]; 26.44/10.90 2263 -> 2343[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2263[label="compare1 (Just xuu3300) (Just xuu3400) (xuu3300 <= xuu3400)",fontsize=16,color="magenta"];2263 -> 2344[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2263 -> 2345[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2263 -> 2346[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 380 -> 2001[label="",style="dashed", color="red", weight=0]; 26.44/10.90 380[label="compare2 Nothing (Just xuu400) (Nothing == Just xuu400)",fontsize=16,color="magenta"];380 -> 2023[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 380 -> 2024[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 380 -> 2025[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 381[label="FiniteMap.Branch Nothing (xuu3 xuu41 xuu501) xuu42 xuu43 xuu44",fontsize=16,color="green",shape="box"];381 -> 506[label="",style="dashed", color="green", weight=3]; 26.44/10.90 382[label="xuu44",fontsize=16,color="green",shape="box"];383[label="Nothing",fontsize=16,color="green",shape="box"];387 -> 61[label="",style="dashed", color="red", weight=0]; 26.44/10.90 387[label="compare (FiniteMap.mkBalBranch6Size_l (Just xuu400) xuu41 xuu44 xuu28 + FiniteMap.mkBalBranch6Size_r (Just xuu400) xuu41 xuu44 xuu28) (Pos (Succ (Succ Zero))) == LT",fontsize=16,color="magenta"];387 -> 507[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 387 -> 508[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 388[label="FiniteMap.mkBalBranch6MkBalBranch5 (Just xuu400) xuu41 xuu44 xuu28 (Just xuu400) xuu41 xuu28 xuu44 False",fontsize=16,color="black",shape="box"];388 -> 509[label="",style="solid", color="black", weight=3]; 26.44/10.90 389[label="FiniteMap.mkBalBranch6MkBalBranch5 (Just xuu400) xuu41 xuu44 xuu28 (Just xuu400) xuu41 xuu28 xuu44 True",fontsize=16,color="black",shape="box"];389 -> 510[label="",style="solid", color="black", weight=3]; 26.44/10.90 390 -> 2001[label="",style="dashed", color="red", weight=0]; 26.44/10.90 390[label="compare2 (Just xuu5000) Nothing (Just xuu5000 == Nothing)",fontsize=16,color="magenta"];390 -> 2026[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 390 -> 2027[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 390 -> 2028[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 391[label="FiniteMap.Branch (Just xuu5000) (xuu3 xuu41 xuu501) xuu42 xuu43 xuu44",fontsize=16,color="green",shape="box"];391 -> 518[label="",style="dashed", color="green", weight=3]; 26.44/10.90 392[label="xuu44",fontsize=16,color="green",shape="box"];393[label="Just xuu5000",fontsize=16,color="green",shape="box"];397 -> 61[label="",style="dashed", color="red", weight=0]; 26.44/10.90 397[label="compare (FiniteMap.mkBalBranch6Size_l Nothing xuu41 xuu44 xuu36 + FiniteMap.mkBalBranch6Size_r Nothing xuu41 xuu44 xuu36) (Pos (Succ (Succ Zero))) == LT",fontsize=16,color="magenta"];397 -> 519[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 397 -> 520[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 398[label="FiniteMap.mkBalBranch6MkBalBranch5 Nothing xuu41 xuu44 xuu36 Nothing xuu41 xuu36 xuu44 False",fontsize=16,color="black",shape="box"];398 -> 521[label="",style="solid", color="black", weight=3]; 26.44/10.90 399[label="FiniteMap.mkBalBranch6MkBalBranch5 Nothing xuu41 xuu44 xuu36 Nothing xuu41 xuu36 xuu44 True",fontsize=16,color="black",shape="box"];399 -> 522[label="",style="solid", color="black", weight=3]; 26.44/10.90 2264[label="primEqNat xuu50000 xuu4000",fontsize=16,color="burlywood",shape="triangle"];4218[label="xuu50000/Succ xuu500000",fontsize=10,color="white",style="solid",shape="box"];2264 -> 4218[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4218 -> 2347[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4219[label="xuu50000/Zero",fontsize=10,color="white",style="solid",shape="box"];2264 -> 4219[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4219 -> 2348[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2265 -> 2038[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2265[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2265 -> 2349[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2265 -> 2350[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2266 -> 2039[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2266[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2266 -> 2351[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2266 -> 2352[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2267 -> 2040[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2267[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2267 -> 2353[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2267 -> 2354[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2268 -> 2041[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2268[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2268 -> 2355[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2268 -> 2356[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2269 -> 2042[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2269[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2269 -> 2357[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2269 -> 2358[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2270 -> 2043[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2270[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2270 -> 2359[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2270 -> 2360[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2271 -> 2044[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2271[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2271 -> 2361[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2271 -> 2362[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2272 -> 61[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2272[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2272 -> 2363[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2272 -> 2364[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2273 -> 2046[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2273[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2273 -> 2365[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2273 -> 2366[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2274 -> 2047[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2274[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2274 -> 2367[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2274 -> 2368[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2275 -> 2048[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2275[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2275 -> 2369[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2275 -> 2370[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2276 -> 2049[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2276[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2276 -> 2371[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2276 -> 2372[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2277 -> 2050[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2277[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2277 -> 2373[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2277 -> 2374[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2278 -> 2051[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2278[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2278 -> 2375[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2278 -> 2376[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2279 -> 2038[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2279[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2279 -> 2377[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2279 -> 2378[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2280 -> 2039[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2280[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2280 -> 2379[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2280 -> 2380[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2281 -> 2040[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2281[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2281 -> 2381[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2281 -> 2382[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2282 -> 2041[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2282[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2282 -> 2383[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2282 -> 2384[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2283 -> 2042[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2283[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2283 -> 2385[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2283 -> 2386[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2284 -> 2043[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2284[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2284 -> 2387[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2284 -> 2388[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2285 -> 2044[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2285[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2285 -> 2389[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2285 -> 2390[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2286 -> 61[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2286[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2286 -> 2391[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2286 -> 2392[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2287 -> 2046[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2287[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2287 -> 2393[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2287 -> 2394[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2288 -> 2047[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2288[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2288 -> 2395[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2288 -> 2396[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2289 -> 2048[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2289[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2289 -> 2397[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2289 -> 2398[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2290 -> 2049[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2290[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2290 -> 2399[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2290 -> 2400[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2291 -> 2050[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2291[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2291 -> 2401[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2291 -> 2402[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2292 -> 2051[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2292[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2292 -> 2403[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2292 -> 2404[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2293 -> 2051[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2293[label="xuu50000 * xuu4001 == xuu50001 * xuu4000",fontsize=16,color="magenta"];2293 -> 2405[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2293 -> 2406[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2422[label="xuu50001 == xuu4001",fontsize=16,color="blue",shape="box"];4220[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2422 -> 4220[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4220 -> 2434[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4221[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2422 -> 4221[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4221 -> 2435[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4222[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2422 -> 4222[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4222 -> 2436[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4223[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2422 -> 4223[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4223 -> 2437[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4224[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2422 -> 4224[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4224 -> 2438[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4225[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2422 -> 4225[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4225 -> 2439[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4226[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2422 -> 4226[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4226 -> 2440[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4227[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2422 -> 4227[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4227 -> 2441[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4228[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2422 -> 4228[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4228 -> 2442[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4229[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2422 -> 4229[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4229 -> 2443[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4230[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2422 -> 4230[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4230 -> 2444[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4231[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2422 -> 4231[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4231 -> 2445[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4232[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2422 -> 4232[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4232 -> 2446[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4233[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2422 -> 4233[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4233 -> 2447[label="",style="solid", color="blue", weight=3]; 26.44/10.90 2423[label="xuu50000 == xuu4000",fontsize=16,color="blue",shape="box"];4234[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 4234[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4234 -> 2448[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4235[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 4235[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4235 -> 2449[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4236[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 4236[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4236 -> 2450[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4237[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 4237[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4237 -> 2451[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4238[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 4238[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4238 -> 2452[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4239[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 4239[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4239 -> 2453[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4240[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 4240[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4240 -> 2454[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4241[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 4241[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4241 -> 2455[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4242[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 4242[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4242 -> 2456[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4243[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 4243[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4243 -> 2457[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4244[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 4244[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4244 -> 2458[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4245[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 4245[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4245 -> 2459[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4246[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 4246[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4246 -> 2460[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4247[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 4247[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4247 -> 2461[label="",style="solid", color="blue", weight=3]; 26.44/10.90 2421[label="xuu135 && xuu136",fontsize=16,color="burlywood",shape="triangle"];4248[label="xuu135/False",fontsize=10,color="white",style="solid",shape="box"];2421 -> 4248[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4248 -> 2462[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4249[label="xuu135/True",fontsize=10,color="white",style="solid",shape="box"];2421 -> 4249[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4249 -> 2463[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2304 -> 2051[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2304[label="xuu50000 * xuu4001 == xuu50001 * xuu4000",fontsize=16,color="magenta"];2304 -> 2464[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2304 -> 2465[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2305 -> 2038[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2305[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2305 -> 2466[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2305 -> 2467[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2306 -> 2039[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2306[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2306 -> 2468[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2306 -> 2469[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2307 -> 2040[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2307[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2307 -> 2470[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2307 -> 2471[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2308 -> 2041[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2308[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2308 -> 2472[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2308 -> 2473[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2309 -> 2042[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2309[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2309 -> 2474[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2309 -> 2475[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2310 -> 2043[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2310[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2310 -> 2476[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2310 -> 2477[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2311 -> 2044[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2311[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2311 -> 2478[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2311 -> 2479[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2312 -> 61[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2312[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2312 -> 2480[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2312 -> 2481[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2313 -> 2046[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2313[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2313 -> 2482[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2313 -> 2483[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2314 -> 2047[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2314[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2314 -> 2484[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2314 -> 2485[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2315 -> 2048[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2315[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2315 -> 2486[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2315 -> 2487[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2316 -> 2049[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2316[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2316 -> 2488[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2316 -> 2489[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2317 -> 2050[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2317[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2317 -> 2490[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2317 -> 2491[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2318 -> 2051[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2318[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2318 -> 2492[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2318 -> 2493[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2319[label="xuu4000",fontsize=16,color="green",shape="box"];2320[label="xuu50000",fontsize=16,color="green",shape="box"];2424 -> 2046[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2424[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2424 -> 2494[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2424 -> 2495[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2425[label="xuu50000 == xuu4000",fontsize=16,color="blue",shape="box"];4250[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2425 -> 4250[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4250 -> 2496[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4251[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2425 -> 4251[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4251 -> 2497[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4252[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2425 -> 4252[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4252 -> 2498[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4253[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2425 -> 4253[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4253 -> 2499[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4254[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2425 -> 4254[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4254 -> 2500[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4255[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2425 -> 4255[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4255 -> 2501[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4256[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2425 -> 4256[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4256 -> 2502[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4257[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2425 -> 4257[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4257 -> 2503[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4258[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2425 -> 4258[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4258 -> 2504[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4259[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2425 -> 4259[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4259 -> 2505[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4260[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2425 -> 4260[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4260 -> 2506[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4261[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2425 -> 4261[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4261 -> 2507[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4262[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2425 -> 4262[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4262 -> 2508[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4263[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2425 -> 4263[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4263 -> 2509[label="",style="solid", color="blue", weight=3]; 26.44/10.90 2426[label="xuu50001 == xuu4001",fontsize=16,color="blue",shape="box"];4264[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2426 -> 4264[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4264 -> 2510[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4265[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2426 -> 4265[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4265 -> 2511[label="",style="solid", color="blue", weight=3]; 26.44/10.90 2427[label="xuu50000 == xuu4000",fontsize=16,color="blue",shape="box"];4266[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2427 -> 4266[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4266 -> 2512[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4267[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2427 -> 4267[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4267 -> 2513[label="",style="solid", color="blue", weight=3]; 26.44/10.90 2428 -> 2421[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2428[label="xuu50001 == xuu4001 && xuu50002 == xuu4002",fontsize=16,color="magenta"];2428 -> 2514[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2428 -> 2515[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2429[label="xuu50000 == xuu4000",fontsize=16,color="blue",shape="box"];4268[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2429 -> 4268[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4268 -> 2516[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4269[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2429 -> 4269[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4269 -> 2517[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4270[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2429 -> 4270[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4270 -> 2518[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4271[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2429 -> 4271[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4271 -> 2519[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4272[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2429 -> 4272[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4272 -> 2520[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4273[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2429 -> 4273[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4273 -> 2521[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4274[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2429 -> 4274[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4274 -> 2522[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4275[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2429 -> 4275[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4275 -> 2523[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4276[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2429 -> 4276[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4276 -> 2524[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4277[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2429 -> 4277[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4277 -> 2525[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4278[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2429 -> 4278[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4278 -> 2526[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4279[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2429 -> 4279[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4279 -> 2527[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4280[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2429 -> 4280[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4280 -> 2528[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4281[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2429 -> 4281[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4281 -> 2529[label="",style="solid", color="blue", weight=3]; 26.44/10.90 2332[label="primEqInt (Pos (Succ xuu500000)) (Pos xuu4000)",fontsize=16,color="burlywood",shape="box"];4282[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];2332 -> 4282[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4282 -> 2530[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4283[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2332 -> 4283[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4283 -> 2531[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2333[label="primEqInt (Pos (Succ xuu500000)) (Neg xuu4000)",fontsize=16,color="black",shape="box"];2333 -> 2532[label="",style="solid", color="black", weight=3]; 26.44/10.90 2334[label="primEqInt (Pos Zero) (Pos xuu4000)",fontsize=16,color="burlywood",shape="box"];4284[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];2334 -> 4284[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4284 -> 2533[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4285[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2334 -> 4285[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4285 -> 2534[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2335[label="primEqInt (Pos Zero) (Neg xuu4000)",fontsize=16,color="burlywood",shape="box"];4286[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];2335 -> 4286[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4286 -> 2535[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4287[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2335 -> 4287[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4287 -> 2536[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2336[label="primEqInt (Neg (Succ xuu500000)) (Pos xuu4000)",fontsize=16,color="black",shape="box"];2336 -> 2537[label="",style="solid", color="black", weight=3]; 26.44/10.90 2337[label="primEqInt (Neg (Succ xuu500000)) (Neg xuu4000)",fontsize=16,color="burlywood",shape="box"];4288[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];2337 -> 4288[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4288 -> 2538[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4289[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2337 -> 4289[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4289 -> 2539[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2338[label="primEqInt (Neg Zero) (Pos xuu4000)",fontsize=16,color="burlywood",shape="box"];4290[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];2338 -> 4290[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4290 -> 2540[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4291[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2338 -> 4291[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4291 -> 2541[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2339[label="primEqInt (Neg Zero) (Neg xuu4000)",fontsize=16,color="burlywood",shape="box"];4292[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];2339 -> 4292[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4292 -> 2542[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4293[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2339 -> 4293[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4293 -> 2543[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 492 -> 2001[label="",style="dashed", color="red", weight=0]; 26.44/10.90 492[label="compare2 (Just xuu22) (Just xuu17) (Just xuu22 == Just xuu17)",fontsize=16,color="magenta"];492 -> 2029[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 492 -> 2030[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 492 -> 2031[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 493[label="FiniteMap.Branch (Just xuu22) (xuu16 xuu18 xuu23) xuu19 xuu20 xuu21",fontsize=16,color="green",shape="box"];493 -> 746[label="",style="dashed", color="green", weight=3]; 26.44/10.90 494[label="xuu21",fontsize=16,color="green",shape="box"];495[label="xuu16",fontsize=16,color="green",shape="box"];496[label="Just xuu22",fontsize=16,color="green",shape="box"];497[label="xuu23",fontsize=16,color="green",shape="box"];2020[label="Nothing",fontsize=16,color="green",shape="box"];2021[label="Nothing",fontsize=16,color="green",shape="box"];2022[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];2022 -> 2052[label="",style="solid", color="black", weight=3]; 26.44/10.90 500[label="xuu3 xuu41 xuu501",fontsize=16,color="green",shape="box"];500 -> 751[label="",style="dashed", color="green", weight=3]; 26.44/10.90 500 -> 752[label="",style="dashed", color="green", weight=3]; 26.44/10.90 2340[label="LT",fontsize=16,color="green",shape="box"];2341[label="LT",fontsize=16,color="green",shape="box"];2342[label="compare0 (Just xuu3300) Nothing otherwise",fontsize=16,color="black",shape="box"];2342 -> 2544[label="",style="solid", color="black", weight=3]; 26.44/10.90 2344[label="xuu3300",fontsize=16,color="green",shape="box"];2345[label="xuu3400",fontsize=16,color="green",shape="box"];2346[label="xuu3300 <= xuu3400",fontsize=16,color="blue",shape="box"];4294[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2346 -> 4294[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4294 -> 2545[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4295[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2346 -> 4295[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4295 -> 2546[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4296[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2346 -> 4296[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4296 -> 2547[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4297[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2346 -> 4297[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4297 -> 2548[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4298[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2346 -> 4298[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4298 -> 2549[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4299[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2346 -> 4299[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4299 -> 2550[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4300[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2346 -> 4300[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4300 -> 2551[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4301[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2346 -> 4301[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4301 -> 2552[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4302[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2346 -> 4302[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4302 -> 2553[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4303[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2346 -> 4303[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4303 -> 2554[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4304[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2346 -> 4304[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4304 -> 2555[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4305[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2346 -> 4305[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4305 -> 2556[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4306[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2346 -> 4306[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4306 -> 2557[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4307[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2346 -> 4307[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4307 -> 2558[label="",style="solid", color="blue", weight=3]; 26.44/10.90 2343[label="compare1 (Just xuu129) (Just xuu130) xuu131",fontsize=16,color="burlywood",shape="triangle"];4308[label="xuu131/False",fontsize=10,color="white",style="solid",shape="box"];2343 -> 4308[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4308 -> 2559[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4309[label="xuu131/True",fontsize=10,color="white",style="solid",shape="box"];2343 -> 4309[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4309 -> 2560[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2023[label="Nothing",fontsize=16,color="green",shape="box"];2024[label="Just xuu400",fontsize=16,color="green",shape="box"];2025[label="Nothing == Just xuu400",fontsize=16,color="black",shape="box"];2025 -> 2053[label="",style="solid", color="black", weight=3]; 26.44/10.90 506[label="xuu3 xuu41 xuu501",fontsize=16,color="green",shape="box"];506 -> 755[label="",style="dashed", color="green", weight=3]; 26.44/10.90 506 -> 756[label="",style="dashed", color="green", weight=3]; 26.44/10.90 507[label="LT",fontsize=16,color="green",shape="box"];508[label="compare (FiniteMap.mkBalBranch6Size_l (Just xuu400) xuu41 xuu44 xuu28 + FiniteMap.mkBalBranch6Size_r (Just xuu400) xuu41 xuu44 xuu28) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];508 -> 757[label="",style="solid", color="black", weight=3]; 26.44/10.90 509 -> 986[label="",style="dashed", color="red", weight=0]; 26.44/10.90 509[label="FiniteMap.mkBalBranch6MkBalBranch4 (Just xuu400) xuu41 xuu44 xuu28 (Just xuu400) xuu41 xuu28 xuu44 (FiniteMap.mkBalBranch6Size_r (Just xuu400) xuu41 xuu44 xuu28 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Just xuu400) xuu41 xuu44 xuu28)",fontsize=16,color="magenta"];509 -> 987[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 510 -> 3831[label="",style="dashed", color="red", weight=0]; 26.44/10.90 510[label="FiniteMap.mkBranch (Pos (Succ Zero)) (Just xuu400) xuu41 xuu28 xuu44",fontsize=16,color="magenta"];510 -> 3832[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 510 -> 3833[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 510 -> 3834[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 510 -> 3835[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 510 -> 3836[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2026[label="Just xuu5000",fontsize=16,color="green",shape="box"];2027[label="Nothing",fontsize=16,color="green",shape="box"];2028[label="Just xuu5000 == Nothing",fontsize=16,color="black",shape="box"];2028 -> 2054[label="",style="solid", color="black", weight=3]; 26.44/10.90 518[label="xuu3 xuu41 xuu501",fontsize=16,color="green",shape="box"];518 -> 762[label="",style="dashed", color="green", weight=3]; 26.44/10.90 518 -> 763[label="",style="dashed", color="green", weight=3]; 26.44/10.90 519[label="LT",fontsize=16,color="green",shape="box"];520[label="compare (FiniteMap.mkBalBranch6Size_l Nothing xuu41 xuu44 xuu36 + FiniteMap.mkBalBranch6Size_r Nothing xuu41 xuu44 xuu36) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];520 -> 764[label="",style="solid", color="black", weight=3]; 26.44/10.90 521 -> 1016[label="",style="dashed", color="red", weight=0]; 26.44/10.90 521[label="FiniteMap.mkBalBranch6MkBalBranch4 Nothing xuu41 xuu44 xuu36 Nothing xuu41 xuu36 xuu44 (FiniteMap.mkBalBranch6Size_r Nothing xuu41 xuu44 xuu36 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l Nothing xuu41 xuu44 xuu36)",fontsize=16,color="magenta"];521 -> 1017[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 522 -> 3831[label="",style="dashed", color="red", weight=0]; 26.44/10.90 522[label="FiniteMap.mkBranch (Pos (Succ Zero)) Nothing xuu41 xuu36 xuu44",fontsize=16,color="magenta"];522 -> 3837[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 522 -> 3838[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 522 -> 3839[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 522 -> 3840[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 522 -> 3841[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2347[label="primEqNat (Succ xuu500000) xuu4000",fontsize=16,color="burlywood",shape="box"];4310[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];2347 -> 4310[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4310 -> 2561[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4311[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2347 -> 4311[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4311 -> 2562[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2348[label="primEqNat Zero xuu4000",fontsize=16,color="burlywood",shape="box"];4312[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];2348 -> 4312[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4312 -> 2563[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4313[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2348 -> 4313[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4313 -> 2564[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2349[label="xuu4000",fontsize=16,color="green",shape="box"];2350[label="xuu50000",fontsize=16,color="green",shape="box"];2351[label="xuu4000",fontsize=16,color="green",shape="box"];2352[label="xuu50000",fontsize=16,color="green",shape="box"];2353[label="xuu4000",fontsize=16,color="green",shape="box"];2354[label="xuu50000",fontsize=16,color="green",shape="box"];2355[label="xuu4000",fontsize=16,color="green",shape="box"];2356[label="xuu50000",fontsize=16,color="green",shape="box"];2357[label="xuu4000",fontsize=16,color="green",shape="box"];2358[label="xuu50000",fontsize=16,color="green",shape="box"];2359[label="xuu4000",fontsize=16,color="green",shape="box"];2360[label="xuu50000",fontsize=16,color="green",shape="box"];2361[label="xuu4000",fontsize=16,color="green",shape="box"];2362[label="xuu50000",fontsize=16,color="green",shape="box"];2363[label="xuu4000",fontsize=16,color="green",shape="box"];2364[label="xuu50000",fontsize=16,color="green",shape="box"];2365[label="xuu4000",fontsize=16,color="green",shape="box"];2366[label="xuu50000",fontsize=16,color="green",shape="box"];2367[label="xuu4000",fontsize=16,color="green",shape="box"];2368[label="xuu50000",fontsize=16,color="green",shape="box"];2369[label="xuu4000",fontsize=16,color="green",shape="box"];2370[label="xuu50000",fontsize=16,color="green",shape="box"];2371[label="xuu4000",fontsize=16,color="green",shape="box"];2372[label="xuu50000",fontsize=16,color="green",shape="box"];2373[label="xuu4000",fontsize=16,color="green",shape="box"];2374[label="xuu50000",fontsize=16,color="green",shape="box"];2375[label="xuu4000",fontsize=16,color="green",shape="box"];2376[label="xuu50000",fontsize=16,color="green",shape="box"];2377[label="xuu4000",fontsize=16,color="green",shape="box"];2378[label="xuu50000",fontsize=16,color="green",shape="box"];2379[label="xuu4000",fontsize=16,color="green",shape="box"];2380[label="xuu50000",fontsize=16,color="green",shape="box"];2381[label="xuu4000",fontsize=16,color="green",shape="box"];2382[label="xuu50000",fontsize=16,color="green",shape="box"];2383[label="xuu4000",fontsize=16,color="green",shape="box"];2384[label="xuu50000",fontsize=16,color="green",shape="box"];2385[label="xuu4000",fontsize=16,color="green",shape="box"];2386[label="xuu50000",fontsize=16,color="green",shape="box"];2387[label="xuu4000",fontsize=16,color="green",shape="box"];2388[label="xuu50000",fontsize=16,color="green",shape="box"];2389[label="xuu4000",fontsize=16,color="green",shape="box"];2390[label="xuu50000",fontsize=16,color="green",shape="box"];2391[label="xuu4000",fontsize=16,color="green",shape="box"];2392[label="xuu50000",fontsize=16,color="green",shape="box"];2393[label="xuu4000",fontsize=16,color="green",shape="box"];2394[label="xuu50000",fontsize=16,color="green",shape="box"];2395[label="xuu4000",fontsize=16,color="green",shape="box"];2396[label="xuu50000",fontsize=16,color="green",shape="box"];2397[label="xuu4000",fontsize=16,color="green",shape="box"];2398[label="xuu50000",fontsize=16,color="green",shape="box"];2399[label="xuu4000",fontsize=16,color="green",shape="box"];2400[label="xuu50000",fontsize=16,color="green",shape="box"];2401[label="xuu4000",fontsize=16,color="green",shape="box"];2402[label="xuu50000",fontsize=16,color="green",shape="box"];2403[label="xuu4000",fontsize=16,color="green",shape="box"];2404[label="xuu50000",fontsize=16,color="green",shape="box"];2405 -> 581[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2405[label="xuu50001 * xuu4000",fontsize=16,color="magenta"];2406 -> 581[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2406[label="xuu50000 * xuu4001",fontsize=16,color="magenta"];2406 -> 2565[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2406 -> 2566[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2434 -> 2038[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2434[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2434 -> 2590[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2434 -> 2591[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2435 -> 2039[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2435[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2435 -> 2592[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2435 -> 2593[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2436 -> 2040[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2436[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2436 -> 2594[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2436 -> 2595[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2437 -> 2041[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2437[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2437 -> 2596[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2437 -> 2597[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2438 -> 2042[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2438[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2438 -> 2598[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2438 -> 2599[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2439 -> 2043[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2439[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2439 -> 2600[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2439 -> 2601[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2440 -> 2044[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2440[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2440 -> 2602[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2440 -> 2603[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2441 -> 61[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2441[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2441 -> 2604[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2441 -> 2605[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2442 -> 2046[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2442[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2442 -> 2606[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2442 -> 2607[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2443 -> 2047[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2443[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2443 -> 2608[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2443 -> 2609[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2444 -> 2048[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2444[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2444 -> 2610[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2444 -> 2611[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2445 -> 2049[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2445[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2445 -> 2612[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2445 -> 2613[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2446 -> 2050[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2446[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2446 -> 2614[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2446 -> 2615[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2447 -> 2051[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2447[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2447 -> 2616[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2447 -> 2617[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2448 -> 2038[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2448[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2448 -> 2618[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2448 -> 2619[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2449 -> 2039[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2449[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2449 -> 2620[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2449 -> 2621[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2450 -> 2040[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2450[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2450 -> 2622[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2450 -> 2623[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2451 -> 2041[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2451[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2451 -> 2624[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2451 -> 2625[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2452 -> 2042[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2452[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2452 -> 2626[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2452 -> 2627[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2453 -> 2043[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2453[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2453 -> 2628[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2453 -> 2629[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2454 -> 2044[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2454[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2454 -> 2630[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2454 -> 2631[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2455 -> 61[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2455[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2455 -> 2632[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2455 -> 2633[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2456 -> 2046[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2456[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2456 -> 2634[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2456 -> 2635[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2457 -> 2047[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2457[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2457 -> 2636[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2457 -> 2637[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2458 -> 2048[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2458[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2458 -> 2638[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2458 -> 2639[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2459 -> 2049[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2459[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2459 -> 2640[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2459 -> 2641[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2460 -> 2050[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2460[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2460 -> 2642[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2460 -> 2643[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2461 -> 2051[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2461[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2461 -> 2644[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2461 -> 2645[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2462[label="False && xuu136",fontsize=16,color="black",shape="box"];2462 -> 2646[label="",style="solid", color="black", weight=3]; 26.44/10.90 2463[label="True && xuu136",fontsize=16,color="black",shape="box"];2463 -> 2647[label="",style="solid", color="black", weight=3]; 26.44/10.90 2464 -> 581[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2464[label="xuu50001 * xuu4000",fontsize=16,color="magenta"];2464 -> 2648[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2464 -> 2649[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2465 -> 581[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2465[label="xuu50000 * xuu4001",fontsize=16,color="magenta"];2465 -> 2650[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2465 -> 2651[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2466[label="xuu4000",fontsize=16,color="green",shape="box"];2467[label="xuu50000",fontsize=16,color="green",shape="box"];2468[label="xuu4000",fontsize=16,color="green",shape="box"];2469[label="xuu50000",fontsize=16,color="green",shape="box"];2470[label="xuu4000",fontsize=16,color="green",shape="box"];2471[label="xuu50000",fontsize=16,color="green",shape="box"];2472[label="xuu4000",fontsize=16,color="green",shape="box"];2473[label="xuu50000",fontsize=16,color="green",shape="box"];2474[label="xuu4000",fontsize=16,color="green",shape="box"];2475[label="xuu50000",fontsize=16,color="green",shape="box"];2476[label="xuu4000",fontsize=16,color="green",shape="box"];2477[label="xuu50000",fontsize=16,color="green",shape="box"];2478[label="xuu4000",fontsize=16,color="green",shape="box"];2479[label="xuu50000",fontsize=16,color="green",shape="box"];2480[label="xuu4000",fontsize=16,color="green",shape="box"];2481[label="xuu50000",fontsize=16,color="green",shape="box"];2482[label="xuu4000",fontsize=16,color="green",shape="box"];2483[label="xuu50000",fontsize=16,color="green",shape="box"];2484[label="xuu4000",fontsize=16,color="green",shape="box"];2485[label="xuu50000",fontsize=16,color="green",shape="box"];2486[label="xuu4000",fontsize=16,color="green",shape="box"];2487[label="xuu50000",fontsize=16,color="green",shape="box"];2488[label="xuu4000",fontsize=16,color="green",shape="box"];2489[label="xuu50000",fontsize=16,color="green",shape="box"];2490[label="xuu4000",fontsize=16,color="green",shape="box"];2491[label="xuu50000",fontsize=16,color="green",shape="box"];2492[label="xuu4000",fontsize=16,color="green",shape="box"];2493[label="xuu50000",fontsize=16,color="green",shape="box"];2494[label="xuu4001",fontsize=16,color="green",shape="box"];2495[label="xuu50001",fontsize=16,color="green",shape="box"];2496 -> 2038[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2496[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2496 -> 2652[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2496 -> 2653[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2497 -> 2039[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2497[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2497 -> 2654[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2497 -> 2655[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2498 -> 2040[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2498[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2498 -> 2656[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2498 -> 2657[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2499 -> 2041[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2499[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2499 -> 2658[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2499 -> 2659[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2500 -> 2042[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2500[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2500 -> 2660[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2500 -> 2661[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2501 -> 2043[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2501[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2501 -> 2662[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2501 -> 2663[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2502 -> 2044[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2502[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2502 -> 2664[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2502 -> 2665[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2503 -> 61[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2503[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2503 -> 2666[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2503 -> 2667[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2504 -> 2046[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2504[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2504 -> 2668[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2504 -> 2669[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2505 -> 2047[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2505[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2505 -> 2670[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2505 -> 2671[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2506 -> 2048[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2506[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2506 -> 2672[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2506 -> 2673[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2507 -> 2049[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2507[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2507 -> 2674[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2507 -> 2675[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2508 -> 2050[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2508[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2508 -> 2676[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2508 -> 2677[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2509 -> 2051[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2509[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2509 -> 2678[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2509 -> 2679[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2510 -> 2044[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2510[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2510 -> 2680[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2510 -> 2681[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2511 -> 2051[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2511[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2511 -> 2682[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2511 -> 2683[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2512 -> 2044[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2512[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2512 -> 2684[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2512 -> 2685[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2513 -> 2051[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2513[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2513 -> 2686[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2513 -> 2687[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2514[label="xuu50002 == xuu4002",fontsize=16,color="blue",shape="box"];4314[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2514 -> 4314[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4314 -> 2688[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4315[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2514 -> 4315[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4315 -> 2689[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4316[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2514 -> 4316[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4316 -> 2690[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4317[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2514 -> 4317[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4317 -> 2691[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4318[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2514 -> 4318[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4318 -> 2692[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4319[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2514 -> 4319[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4319 -> 2693[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4320[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2514 -> 4320[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4320 -> 2694[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4321[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2514 -> 4321[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4321 -> 2695[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4322[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2514 -> 4322[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4322 -> 2696[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4323[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2514 -> 4323[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4323 -> 2697[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4324[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2514 -> 4324[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4324 -> 2698[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4325[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2514 -> 4325[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4325 -> 2699[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4326[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2514 -> 4326[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4326 -> 2700[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4327[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2514 -> 4327[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4327 -> 2701[label="",style="solid", color="blue", weight=3]; 26.44/10.90 2515[label="xuu50001 == xuu4001",fontsize=16,color="blue",shape="box"];4328[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2515 -> 4328[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4328 -> 2702[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4329[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2515 -> 4329[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4329 -> 2703[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4330[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2515 -> 4330[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4330 -> 2704[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4331[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2515 -> 4331[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4331 -> 2705[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4332[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2515 -> 4332[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4332 -> 2706[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4333[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2515 -> 4333[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4333 -> 2707[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4334[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2515 -> 4334[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4334 -> 2708[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4335[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2515 -> 4335[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4335 -> 2709[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4336[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2515 -> 4336[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4336 -> 2710[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4337[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2515 -> 4337[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4337 -> 2711[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4338[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2515 -> 4338[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4338 -> 2712[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4339[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2515 -> 4339[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4339 -> 2713[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4340[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2515 -> 4340[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4340 -> 2714[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4341[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2515 -> 4341[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4341 -> 2715[label="",style="solid", color="blue", weight=3]; 26.44/10.90 2516 -> 2038[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2516[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2516 -> 2716[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2516 -> 2717[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2517 -> 2039[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2517[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2517 -> 2718[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2517 -> 2719[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2518 -> 2040[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2518[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2518 -> 2720[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2518 -> 2721[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2519 -> 2041[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2519[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2519 -> 2722[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2519 -> 2723[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2520 -> 2042[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2520[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2520 -> 2724[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2520 -> 2725[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2521 -> 2043[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2521[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2521 -> 2726[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2521 -> 2727[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2522 -> 2044[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2522[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2522 -> 2728[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2522 -> 2729[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2523 -> 61[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2523[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2523 -> 2730[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2523 -> 2731[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2524 -> 2046[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2524[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2524 -> 2732[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2524 -> 2733[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2525 -> 2047[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2525[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2525 -> 2734[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2525 -> 2735[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2526 -> 2048[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2526[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2526 -> 2736[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2526 -> 2737[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2527 -> 2049[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2527[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2527 -> 2738[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2527 -> 2739[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2528 -> 2050[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2528[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2528 -> 2740[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2528 -> 2741[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2529 -> 2051[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2529[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2529 -> 2742[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2529 -> 2743[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2530[label="primEqInt (Pos (Succ xuu500000)) (Pos (Succ xuu40000))",fontsize=16,color="black",shape="box"];2530 -> 2744[label="",style="solid", color="black", weight=3]; 26.44/10.90 2531[label="primEqInt (Pos (Succ xuu500000)) (Pos Zero)",fontsize=16,color="black",shape="box"];2531 -> 2745[label="",style="solid", color="black", weight=3]; 26.44/10.90 2532[label="False",fontsize=16,color="green",shape="box"];2533[label="primEqInt (Pos Zero) (Pos (Succ xuu40000))",fontsize=16,color="black",shape="box"];2533 -> 2746[label="",style="solid", color="black", weight=3]; 26.44/10.90 2534[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2534 -> 2747[label="",style="solid", color="black", weight=3]; 26.44/10.90 2535[label="primEqInt (Pos Zero) (Neg (Succ xuu40000))",fontsize=16,color="black",shape="box"];2535 -> 2748[label="",style="solid", color="black", weight=3]; 26.44/10.90 2536[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2536 -> 2749[label="",style="solid", color="black", weight=3]; 26.44/10.90 2537[label="False",fontsize=16,color="green",shape="box"];2538[label="primEqInt (Neg (Succ xuu500000)) (Neg (Succ xuu40000))",fontsize=16,color="black",shape="box"];2538 -> 2750[label="",style="solid", color="black", weight=3]; 26.44/10.90 2539[label="primEqInt (Neg (Succ xuu500000)) (Neg Zero)",fontsize=16,color="black",shape="box"];2539 -> 2751[label="",style="solid", color="black", weight=3]; 26.44/10.90 2540[label="primEqInt (Neg Zero) (Pos (Succ xuu40000))",fontsize=16,color="black",shape="box"];2540 -> 2752[label="",style="solid", color="black", weight=3]; 26.44/10.90 2541[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2541 -> 2753[label="",style="solid", color="black", weight=3]; 26.44/10.90 2542[label="primEqInt (Neg Zero) (Neg (Succ xuu40000))",fontsize=16,color="black",shape="box"];2542 -> 2754[label="",style="solid", color="black", weight=3]; 26.44/10.90 2543[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2543 -> 2755[label="",style="solid", color="black", weight=3]; 26.44/10.90 2029[label="Just xuu22",fontsize=16,color="green",shape="box"];2030[label="Just xuu17",fontsize=16,color="green",shape="box"];2031[label="Just xuu22 == Just xuu17",fontsize=16,color="black",shape="box"];2031 -> 2055[label="",style="solid", color="black", weight=3]; 26.44/10.90 746[label="xuu16 xuu18 xuu23",fontsize=16,color="green",shape="box"];746 -> 981[label="",style="dashed", color="green", weight=3]; 26.44/10.90 746 -> 982[label="",style="dashed", color="green", weight=3]; 26.44/10.90 2052[label="True",fontsize=16,color="green",shape="box"];751[label="xuu41",fontsize=16,color="green",shape="box"];752[label="xuu501",fontsize=16,color="green",shape="box"];2544[label="compare0 (Just xuu3300) Nothing True",fontsize=16,color="black",shape="box"];2544 -> 2756[label="",style="solid", color="black", weight=3]; 26.44/10.90 2545[label="xuu3300 <= xuu3400",fontsize=16,color="black",shape="triangle"];2545 -> 2757[label="",style="solid", color="black", weight=3]; 26.44/10.90 2546[label="xuu3300 <= xuu3400",fontsize=16,color="burlywood",shape="triangle"];4342[label="xuu3300/(xuu33000,xuu33001)",fontsize=10,color="white",style="solid",shape="box"];2546 -> 4342[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4342 -> 2758[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2547[label="xuu3300 <= xuu3400",fontsize=16,color="burlywood",shape="triangle"];4343[label="xuu3300/Nothing",fontsize=10,color="white",style="solid",shape="box"];2547 -> 4343[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4343 -> 2759[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4344[label="xuu3300/Just xuu33000",fontsize=10,color="white",style="solid",shape="box"];2547 -> 4344[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4344 -> 2760[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2548[label="xuu3300 <= xuu3400",fontsize=16,color="burlywood",shape="triangle"];4345[label="xuu3300/(xuu33000,xuu33001,xuu33002)",fontsize=10,color="white",style="solid",shape="box"];2548 -> 4345[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4345 -> 2761[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2549[label="xuu3300 <= xuu3400",fontsize=16,color="black",shape="triangle"];2549 -> 2762[label="",style="solid", color="black", weight=3]; 26.44/10.90 2550[label="xuu3300 <= xuu3400",fontsize=16,color="black",shape="triangle"];2550 -> 2763[label="",style="solid", color="black", weight=3]; 26.44/10.90 2551[label="xuu3300 <= xuu3400",fontsize=16,color="burlywood",shape="triangle"];4346[label="xuu3300/LT",fontsize=10,color="white",style="solid",shape="box"];2551 -> 4346[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4346 -> 2764[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4347[label="xuu3300/EQ",fontsize=10,color="white",style="solid",shape="box"];2551 -> 4347[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4347 -> 2765[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4348[label="xuu3300/GT",fontsize=10,color="white",style="solid",shape="box"];2551 -> 4348[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4348 -> 2766[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2552[label="xuu3300 <= xuu3400",fontsize=16,color="black",shape="triangle"];2552 -> 2767[label="",style="solid", color="black", weight=3]; 26.44/10.90 2553[label="xuu3300 <= xuu3400",fontsize=16,color="burlywood",shape="triangle"];4349[label="xuu3300/False",fontsize=10,color="white",style="solid",shape="box"];2553 -> 4349[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4349 -> 2768[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4350[label="xuu3300/True",fontsize=10,color="white",style="solid",shape="box"];2553 -> 4350[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4350 -> 2769[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2554[label="xuu3300 <= xuu3400",fontsize=16,color="black",shape="triangle"];2554 -> 2770[label="",style="solid", color="black", weight=3]; 26.44/10.90 2555[label="xuu3300 <= xuu3400",fontsize=16,color="black",shape="triangle"];2555 -> 2771[label="",style="solid", color="black", weight=3]; 26.44/10.90 2556[label="xuu3300 <= xuu3400",fontsize=16,color="black",shape="triangle"];2556 -> 2772[label="",style="solid", color="black", weight=3]; 26.44/10.90 2557[label="xuu3300 <= xuu3400",fontsize=16,color="black",shape="triangle"];2557 -> 2773[label="",style="solid", color="black", weight=3]; 26.44/10.90 2558[label="xuu3300 <= xuu3400",fontsize=16,color="burlywood",shape="triangle"];4351[label="xuu3300/Left xuu33000",fontsize=10,color="white",style="solid",shape="box"];2558 -> 4351[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4351 -> 2774[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4352[label="xuu3300/Right xuu33000",fontsize=10,color="white",style="solid",shape="box"];2558 -> 4352[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4352 -> 2775[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2559[label="compare1 (Just xuu129) (Just xuu130) False",fontsize=16,color="black",shape="box"];2559 -> 2776[label="",style="solid", color="black", weight=3]; 26.44/10.90 2560[label="compare1 (Just xuu129) (Just xuu130) True",fontsize=16,color="black",shape="box"];2560 -> 2777[label="",style="solid", color="black", weight=3]; 26.44/10.90 2053[label="False",fontsize=16,color="green",shape="box"];755[label="xuu41",fontsize=16,color="green",shape="box"];756[label="xuu501",fontsize=16,color="green",shape="box"];757[label="primCmpInt (FiniteMap.mkBalBranch6Size_l (Just xuu400) xuu41 xuu44 xuu28 + FiniteMap.mkBalBranch6Size_r (Just xuu400) xuu41 xuu44 xuu28) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];757 -> 985[label="",style="solid", color="black", weight=3]; 26.44/10.90 987 -> 1502[label="",style="dashed", color="red", weight=0]; 26.44/10.90 987[label="FiniteMap.mkBalBranch6Size_r (Just xuu400) xuu41 xuu44 xuu28 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Just xuu400) xuu41 xuu44 xuu28",fontsize=16,color="magenta"];987 -> 1503[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 987 -> 1504[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 986[label="FiniteMap.mkBalBranch6MkBalBranch4 (Just xuu400) xuu41 xuu44 xuu28 (Just xuu400) xuu41 xuu28 xuu44 xuu67",fontsize=16,color="burlywood",shape="triangle"];4353[label="xuu67/False",fontsize=10,color="white",style="solid",shape="box"];986 -> 4353[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4353 -> 998[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4354[label="xuu67/True",fontsize=10,color="white",style="solid",shape="box"];986 -> 4354[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4354 -> 999[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 3832[label="xuu44",fontsize=16,color="green",shape="box"];3833[label="xuu28",fontsize=16,color="green",shape="box"];3834[label="Zero",fontsize=16,color="green",shape="box"];3835[label="xuu41",fontsize=16,color="green",shape="box"];3836[label="Just xuu400",fontsize=16,color="green",shape="box"];3831[label="FiniteMap.mkBranch (Pos (Succ xuu204)) xuu205 xuu206 xuu207 xuu208",fontsize=16,color="black",shape="triangle"];3831 -> 3962[label="",style="solid", color="black", weight=3]; 26.44/10.90 2054[label="False",fontsize=16,color="green",shape="box"];762[label="xuu41",fontsize=16,color="green",shape="box"];763[label="xuu501",fontsize=16,color="green",shape="box"];764[label="primCmpInt (FiniteMap.mkBalBranch6Size_l Nothing xuu41 xuu44 xuu36 + FiniteMap.mkBalBranch6Size_r Nothing xuu41 xuu44 xuu36) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];764 -> 1015[label="",style="solid", color="black", weight=3]; 26.44/10.90 1017 -> 1502[label="",style="dashed", color="red", weight=0]; 26.44/10.90 1017[label="FiniteMap.mkBalBranch6Size_r Nothing xuu41 xuu44 xuu36 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l Nothing xuu41 xuu44 xuu36",fontsize=16,color="magenta"];1017 -> 1505[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1017 -> 1506[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1016[label="FiniteMap.mkBalBranch6MkBalBranch4 Nothing xuu41 xuu44 xuu36 Nothing xuu41 xuu36 xuu44 xuu70",fontsize=16,color="burlywood",shape="triangle"];4355[label="xuu70/False",fontsize=10,color="white",style="solid",shape="box"];1016 -> 4355[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4355 -> 1022[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4356[label="xuu70/True",fontsize=10,color="white",style="solid",shape="box"];1016 -> 4356[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4356 -> 1023[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 3837[label="xuu44",fontsize=16,color="green",shape="box"];3838[label="xuu36",fontsize=16,color="green",shape="box"];3839[label="Zero",fontsize=16,color="green",shape="box"];3840[label="xuu41",fontsize=16,color="green",shape="box"];3841[label="Nothing",fontsize=16,color="green",shape="box"];2561[label="primEqNat (Succ xuu500000) (Succ xuu40000)",fontsize=16,color="black",shape="box"];2561 -> 2778[label="",style="solid", color="black", weight=3]; 26.44/10.90 2562[label="primEqNat (Succ xuu500000) Zero",fontsize=16,color="black",shape="box"];2562 -> 2779[label="",style="solid", color="black", weight=3]; 26.44/10.90 2563[label="primEqNat Zero (Succ xuu40000)",fontsize=16,color="black",shape="box"];2563 -> 2780[label="",style="solid", color="black", weight=3]; 26.44/10.90 2564[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2564 -> 2781[label="",style="solid", color="black", weight=3]; 26.44/10.90 581[label="xuu50001 * xuu4000",fontsize=16,color="black",shape="triangle"];581 -> 771[label="",style="solid", color="black", weight=3]; 26.44/10.90 2565[label="xuu50000",fontsize=16,color="green",shape="box"];2566[label="xuu4001",fontsize=16,color="green",shape="box"];2590[label="xuu4001",fontsize=16,color="green",shape="box"];2591[label="xuu50001",fontsize=16,color="green",shape="box"];2592[label="xuu4001",fontsize=16,color="green",shape="box"];2593[label="xuu50001",fontsize=16,color="green",shape="box"];2594[label="xuu4001",fontsize=16,color="green",shape="box"];2595[label="xuu50001",fontsize=16,color="green",shape="box"];2596[label="xuu4001",fontsize=16,color="green",shape="box"];2597[label="xuu50001",fontsize=16,color="green",shape="box"];2598[label="xuu4001",fontsize=16,color="green",shape="box"];2599[label="xuu50001",fontsize=16,color="green",shape="box"];2600[label="xuu4001",fontsize=16,color="green",shape="box"];2601[label="xuu50001",fontsize=16,color="green",shape="box"];2602[label="xuu4001",fontsize=16,color="green",shape="box"];2603[label="xuu50001",fontsize=16,color="green",shape="box"];2604[label="xuu4001",fontsize=16,color="green",shape="box"];2605[label="xuu50001",fontsize=16,color="green",shape="box"];2606[label="xuu4001",fontsize=16,color="green",shape="box"];2607[label="xuu50001",fontsize=16,color="green",shape="box"];2608[label="xuu4001",fontsize=16,color="green",shape="box"];2609[label="xuu50001",fontsize=16,color="green",shape="box"];2610[label="xuu4001",fontsize=16,color="green",shape="box"];2611[label="xuu50001",fontsize=16,color="green",shape="box"];2612[label="xuu4001",fontsize=16,color="green",shape="box"];2613[label="xuu50001",fontsize=16,color="green",shape="box"];2614[label="xuu4001",fontsize=16,color="green",shape="box"];2615[label="xuu50001",fontsize=16,color="green",shape="box"];2616[label="xuu4001",fontsize=16,color="green",shape="box"];2617[label="xuu50001",fontsize=16,color="green",shape="box"];2618[label="xuu4000",fontsize=16,color="green",shape="box"];2619[label="xuu50000",fontsize=16,color="green",shape="box"];2620[label="xuu4000",fontsize=16,color="green",shape="box"];2621[label="xuu50000",fontsize=16,color="green",shape="box"];2622[label="xuu4000",fontsize=16,color="green",shape="box"];2623[label="xuu50000",fontsize=16,color="green",shape="box"];2624[label="xuu4000",fontsize=16,color="green",shape="box"];2625[label="xuu50000",fontsize=16,color="green",shape="box"];2626[label="xuu4000",fontsize=16,color="green",shape="box"];2627[label="xuu50000",fontsize=16,color="green",shape="box"];2628[label="xuu4000",fontsize=16,color="green",shape="box"];2629[label="xuu50000",fontsize=16,color="green",shape="box"];2630[label="xuu4000",fontsize=16,color="green",shape="box"];2631[label="xuu50000",fontsize=16,color="green",shape="box"];2632[label="xuu4000",fontsize=16,color="green",shape="box"];2633[label="xuu50000",fontsize=16,color="green",shape="box"];2634[label="xuu4000",fontsize=16,color="green",shape="box"];2635[label="xuu50000",fontsize=16,color="green",shape="box"];2636[label="xuu4000",fontsize=16,color="green",shape="box"];2637[label="xuu50000",fontsize=16,color="green",shape="box"];2638[label="xuu4000",fontsize=16,color="green",shape="box"];2639[label="xuu50000",fontsize=16,color="green",shape="box"];2640[label="xuu4000",fontsize=16,color="green",shape="box"];2641[label="xuu50000",fontsize=16,color="green",shape="box"];2642[label="xuu4000",fontsize=16,color="green",shape="box"];2643[label="xuu50000",fontsize=16,color="green",shape="box"];2644[label="xuu4000",fontsize=16,color="green",shape="box"];2645[label="xuu50000",fontsize=16,color="green",shape="box"];2646[label="False",fontsize=16,color="green",shape="box"];2647[label="xuu136",fontsize=16,color="green",shape="box"];2648[label="xuu50001",fontsize=16,color="green",shape="box"];2649[label="xuu4000",fontsize=16,color="green",shape="box"];2650[label="xuu50000",fontsize=16,color="green",shape="box"];2651[label="xuu4001",fontsize=16,color="green",shape="box"];2652[label="xuu4000",fontsize=16,color="green",shape="box"];2653[label="xuu50000",fontsize=16,color="green",shape="box"];2654[label="xuu4000",fontsize=16,color="green",shape="box"];2655[label="xuu50000",fontsize=16,color="green",shape="box"];2656[label="xuu4000",fontsize=16,color="green",shape="box"];2657[label="xuu50000",fontsize=16,color="green",shape="box"];2658[label="xuu4000",fontsize=16,color="green",shape="box"];2659[label="xuu50000",fontsize=16,color="green",shape="box"];2660[label="xuu4000",fontsize=16,color="green",shape="box"];2661[label="xuu50000",fontsize=16,color="green",shape="box"];2662[label="xuu4000",fontsize=16,color="green",shape="box"];2663[label="xuu50000",fontsize=16,color="green",shape="box"];2664[label="xuu4000",fontsize=16,color="green",shape="box"];2665[label="xuu50000",fontsize=16,color="green",shape="box"];2666[label="xuu4000",fontsize=16,color="green",shape="box"];2667[label="xuu50000",fontsize=16,color="green",shape="box"];2668[label="xuu4000",fontsize=16,color="green",shape="box"];2669[label="xuu50000",fontsize=16,color="green",shape="box"];2670[label="xuu4000",fontsize=16,color="green",shape="box"];2671[label="xuu50000",fontsize=16,color="green",shape="box"];2672[label="xuu4000",fontsize=16,color="green",shape="box"];2673[label="xuu50000",fontsize=16,color="green",shape="box"];2674[label="xuu4000",fontsize=16,color="green",shape="box"];2675[label="xuu50000",fontsize=16,color="green",shape="box"];2676[label="xuu4000",fontsize=16,color="green",shape="box"];2677[label="xuu50000",fontsize=16,color="green",shape="box"];2678[label="xuu4000",fontsize=16,color="green",shape="box"];2679[label="xuu50000",fontsize=16,color="green",shape="box"];2680[label="xuu4001",fontsize=16,color="green",shape="box"];2681[label="xuu50001",fontsize=16,color="green",shape="box"];2682[label="xuu4001",fontsize=16,color="green",shape="box"];2683[label="xuu50001",fontsize=16,color="green",shape="box"];2684[label="xuu4000",fontsize=16,color="green",shape="box"];2685[label="xuu50000",fontsize=16,color="green",shape="box"];2686[label="xuu4000",fontsize=16,color="green",shape="box"];2687[label="xuu50000",fontsize=16,color="green",shape="box"];2688 -> 2038[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2688[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2688 -> 2800[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2688 -> 2801[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2689 -> 2039[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2689[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2689 -> 2802[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2689 -> 2803[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2690 -> 2040[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2690[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2690 -> 2804[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2690 -> 2805[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2691 -> 2041[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2691[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2691 -> 2806[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2691 -> 2807[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2692 -> 2042[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2692[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2692 -> 2808[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2692 -> 2809[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2693 -> 2043[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2693[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2693 -> 2810[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2693 -> 2811[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2694 -> 2044[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2694[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2694 -> 2812[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2694 -> 2813[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2695 -> 61[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2695[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2695 -> 2814[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2695 -> 2815[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2696 -> 2046[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2696[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2696 -> 2816[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2696 -> 2817[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2697 -> 2047[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2697[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2697 -> 2818[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2697 -> 2819[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2698 -> 2048[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2698[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2698 -> 2820[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2698 -> 2821[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2699 -> 2049[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2699[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2699 -> 2822[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2699 -> 2823[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2700 -> 2050[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2700[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2700 -> 2824[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2700 -> 2825[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2701 -> 2051[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2701[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2701 -> 2826[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2701 -> 2827[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2702 -> 2038[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2702[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2702 -> 2828[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2702 -> 2829[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2703 -> 2039[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2703[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2703 -> 2830[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2703 -> 2831[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2704 -> 2040[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2704[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2704 -> 2832[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2704 -> 2833[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2705 -> 2041[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2705[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2705 -> 2834[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2705 -> 2835[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2706 -> 2042[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2706[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2706 -> 2836[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2706 -> 2837[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2707 -> 2043[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2707[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2707 -> 2838[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2707 -> 2839[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2708 -> 2044[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2708[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2708 -> 2840[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2708 -> 2841[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2709 -> 61[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2709[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2709 -> 2842[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2709 -> 2843[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2710 -> 2046[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2710[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2710 -> 2844[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2710 -> 2845[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2711 -> 2047[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2711[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2711 -> 2846[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2711 -> 2847[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2712 -> 2048[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2712[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2712 -> 2848[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2712 -> 2849[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2713 -> 2049[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2713[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2713 -> 2850[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2713 -> 2851[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2714 -> 2050[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2714[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2714 -> 2852[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2714 -> 2853[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2715 -> 2051[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2715[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2715 -> 2854[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2715 -> 2855[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2716[label="xuu4000",fontsize=16,color="green",shape="box"];2717[label="xuu50000",fontsize=16,color="green",shape="box"];2718[label="xuu4000",fontsize=16,color="green",shape="box"];2719[label="xuu50000",fontsize=16,color="green",shape="box"];2720[label="xuu4000",fontsize=16,color="green",shape="box"];2721[label="xuu50000",fontsize=16,color="green",shape="box"];2722[label="xuu4000",fontsize=16,color="green",shape="box"];2723[label="xuu50000",fontsize=16,color="green",shape="box"];2724[label="xuu4000",fontsize=16,color="green",shape="box"];2725[label="xuu50000",fontsize=16,color="green",shape="box"];2726[label="xuu4000",fontsize=16,color="green",shape="box"];2727[label="xuu50000",fontsize=16,color="green",shape="box"];2728[label="xuu4000",fontsize=16,color="green",shape="box"];2729[label="xuu50000",fontsize=16,color="green",shape="box"];2730[label="xuu4000",fontsize=16,color="green",shape="box"];2731[label="xuu50000",fontsize=16,color="green",shape="box"];2732[label="xuu4000",fontsize=16,color="green",shape="box"];2733[label="xuu50000",fontsize=16,color="green",shape="box"];2734[label="xuu4000",fontsize=16,color="green",shape="box"];2735[label="xuu50000",fontsize=16,color="green",shape="box"];2736[label="xuu4000",fontsize=16,color="green",shape="box"];2737[label="xuu50000",fontsize=16,color="green",shape="box"];2738[label="xuu4000",fontsize=16,color="green",shape="box"];2739[label="xuu50000",fontsize=16,color="green",shape="box"];2740[label="xuu4000",fontsize=16,color="green",shape="box"];2741[label="xuu50000",fontsize=16,color="green",shape="box"];2742[label="xuu4000",fontsize=16,color="green",shape="box"];2743[label="xuu50000",fontsize=16,color="green",shape="box"];2744 -> 2264[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2744[label="primEqNat xuu500000 xuu40000",fontsize=16,color="magenta"];2744 -> 2856[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2744 -> 2857[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2745[label="False",fontsize=16,color="green",shape="box"];2746[label="False",fontsize=16,color="green",shape="box"];2747[label="True",fontsize=16,color="green",shape="box"];2748[label="False",fontsize=16,color="green",shape="box"];2749[label="True",fontsize=16,color="green",shape="box"];2750 -> 2264[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2750[label="primEqNat xuu500000 xuu40000",fontsize=16,color="magenta"];2750 -> 2858[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2750 -> 2859[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2751[label="False",fontsize=16,color="green",shape="box"];2752[label="False",fontsize=16,color="green",shape="box"];2753[label="True",fontsize=16,color="green",shape="box"];2754[label="False",fontsize=16,color="green",shape="box"];2755[label="True",fontsize=16,color="green",shape="box"];2055[label="xuu22 == xuu17",fontsize=16,color="blue",shape="box"];4357[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2055 -> 4357[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4357 -> 2077[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4358[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2055 -> 4358[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4358 -> 2078[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4359[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2055 -> 4359[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4359 -> 2079[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4360[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2055 -> 4360[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4360 -> 2080[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4361[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2055 -> 4361[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4361 -> 2081[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4362[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2055 -> 4362[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4362 -> 2082[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4363[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2055 -> 4363[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4363 -> 2083[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4364[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2055 -> 4364[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4364 -> 2084[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4365[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2055 -> 4365[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4365 -> 2085[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4366[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2055 -> 4366[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4366 -> 2086[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4367[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2055 -> 4367[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4367 -> 2087[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4368[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2055 -> 4368[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4368 -> 2088[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4369[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2055 -> 4369[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4369 -> 2089[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4370[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2055 -> 4370[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4370 -> 2090[label="",style="solid", color="blue", weight=3]; 26.44/10.90 981[label="xuu18",fontsize=16,color="green",shape="box"];982[label="xuu23",fontsize=16,color="green",shape="box"];2756[label="GT",fontsize=16,color="green",shape="box"];2757 -> 2878[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2757[label="compare xuu3300 xuu3400 /= GT",fontsize=16,color="magenta"];2757 -> 2879[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2758[label="(xuu33000,xuu33001) <= xuu3400",fontsize=16,color="burlywood",shape="box"];4371[label="xuu3400/(xuu34000,xuu34001)",fontsize=10,color="white",style="solid",shape="box"];2758 -> 4371[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4371 -> 2861[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2759[label="Nothing <= xuu3400",fontsize=16,color="burlywood",shape="box"];4372[label="xuu3400/Nothing",fontsize=10,color="white",style="solid",shape="box"];2759 -> 4372[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4372 -> 2862[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4373[label="xuu3400/Just xuu34000",fontsize=10,color="white",style="solid",shape="box"];2759 -> 4373[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4373 -> 2863[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2760[label="Just xuu33000 <= xuu3400",fontsize=16,color="burlywood",shape="box"];4374[label="xuu3400/Nothing",fontsize=10,color="white",style="solid",shape="box"];2760 -> 4374[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4374 -> 2864[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4375[label="xuu3400/Just xuu34000",fontsize=10,color="white",style="solid",shape="box"];2760 -> 4375[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4375 -> 2865[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2761[label="(xuu33000,xuu33001,xuu33002) <= xuu3400",fontsize=16,color="burlywood",shape="box"];4376[label="xuu3400/(xuu34000,xuu34001,xuu34002)",fontsize=10,color="white",style="solid",shape="box"];2761 -> 4376[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4376 -> 2866[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2762 -> 2878[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2762[label="compare xuu3300 xuu3400 /= GT",fontsize=16,color="magenta"];2762 -> 2880[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2763 -> 2878[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2763[label="compare xuu3300 xuu3400 /= GT",fontsize=16,color="magenta"];2763 -> 2881[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2764[label="LT <= xuu3400",fontsize=16,color="burlywood",shape="box"];4377[label="xuu3400/LT",fontsize=10,color="white",style="solid",shape="box"];2764 -> 4377[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4377 -> 2869[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4378[label="xuu3400/EQ",fontsize=10,color="white",style="solid",shape="box"];2764 -> 4378[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4378 -> 2870[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4379[label="xuu3400/GT",fontsize=10,color="white",style="solid",shape="box"];2764 -> 4379[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4379 -> 2871[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2765[label="EQ <= xuu3400",fontsize=16,color="burlywood",shape="box"];4380[label="xuu3400/LT",fontsize=10,color="white",style="solid",shape="box"];2765 -> 4380[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4380 -> 2872[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4381[label="xuu3400/EQ",fontsize=10,color="white",style="solid",shape="box"];2765 -> 4381[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4381 -> 2873[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4382[label="xuu3400/GT",fontsize=10,color="white",style="solid",shape="box"];2765 -> 4382[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4382 -> 2874[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2766[label="GT <= xuu3400",fontsize=16,color="burlywood",shape="box"];4383[label="xuu3400/LT",fontsize=10,color="white",style="solid",shape="box"];2766 -> 4383[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4383 -> 2875[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4384[label="xuu3400/EQ",fontsize=10,color="white",style="solid",shape="box"];2766 -> 4384[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4384 -> 2876[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4385[label="xuu3400/GT",fontsize=10,color="white",style="solid",shape="box"];2766 -> 4385[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4385 -> 2877[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2767 -> 2878[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2767[label="compare xuu3300 xuu3400 /= GT",fontsize=16,color="magenta"];2767 -> 2882[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2768[label="False <= xuu3400",fontsize=16,color="burlywood",shape="box"];4386[label="xuu3400/False",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4386[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4386 -> 2887[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4387[label="xuu3400/True",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4387[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4387 -> 2888[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2769[label="True <= xuu3400",fontsize=16,color="burlywood",shape="box"];4388[label="xuu3400/False",fontsize=10,color="white",style="solid",shape="box"];2769 -> 4388[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4388 -> 2889[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4389[label="xuu3400/True",fontsize=10,color="white",style="solid",shape="box"];2769 -> 4389[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4389 -> 2890[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2770 -> 2878[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2770[label="compare xuu3300 xuu3400 /= GT",fontsize=16,color="magenta"];2770 -> 2883[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2771 -> 2878[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2771[label="compare xuu3300 xuu3400 /= GT",fontsize=16,color="magenta"];2771 -> 2884[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2772 -> 2878[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2772[label="compare xuu3300 xuu3400 /= GT",fontsize=16,color="magenta"];2772 -> 2885[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2773 -> 2878[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2773[label="compare xuu3300 xuu3400 /= GT",fontsize=16,color="magenta"];2773 -> 2886[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2774[label="Left xuu33000 <= xuu3400",fontsize=16,color="burlywood",shape="box"];4390[label="xuu3400/Left xuu34000",fontsize=10,color="white",style="solid",shape="box"];2774 -> 4390[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4390 -> 2891[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4391[label="xuu3400/Right xuu34000",fontsize=10,color="white",style="solid",shape="box"];2774 -> 4391[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4391 -> 2892[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2775[label="Right xuu33000 <= xuu3400",fontsize=16,color="burlywood",shape="box"];4392[label="xuu3400/Left xuu34000",fontsize=10,color="white",style="solid",shape="box"];2775 -> 4392[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4392 -> 2893[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4393[label="xuu3400/Right xuu34000",fontsize=10,color="white",style="solid",shape="box"];2775 -> 4393[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4393 -> 2894[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2776[label="compare0 (Just xuu129) (Just xuu130) otherwise",fontsize=16,color="black",shape="box"];2776 -> 2895[label="",style="solid", color="black", weight=3]; 26.44/10.90 2777[label="LT",fontsize=16,color="green",shape="box"];985[label="primCmpInt (primPlusInt (FiniteMap.mkBalBranch6Size_l (Just xuu400) xuu41 xuu44 xuu28) (FiniteMap.mkBalBranch6Size_r (Just xuu400) xuu41 xuu44 xuu28)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];985 -> 1121[label="",style="solid", color="black", weight=3]; 26.44/10.90 1503[label="FiniteMap.mkBalBranch6Size_r (Just xuu400) xuu41 xuu44 xuu28",fontsize=16,color="black",shape="triangle"];1503 -> 1513[label="",style="solid", color="black", weight=3]; 26.44/10.90 1504 -> 581[label="",style="dashed", color="red", weight=0]; 26.44/10.90 1504[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Just xuu400) xuu41 xuu44 xuu28",fontsize=16,color="magenta"];1504 -> 1514[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1504 -> 1515[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1502[label="xuu90 > xuu89",fontsize=16,color="black",shape="triangle"];1502 -> 1516[label="",style="solid", color="black", weight=3]; 26.44/10.90 998[label="FiniteMap.mkBalBranch6MkBalBranch4 (Just xuu400) xuu41 xuu44 xuu28 (Just xuu400) xuu41 xuu28 xuu44 False",fontsize=16,color="black",shape="box"];998 -> 1125[label="",style="solid", color="black", weight=3]; 26.44/10.90 999[label="FiniteMap.mkBalBranch6MkBalBranch4 (Just xuu400) xuu41 xuu44 xuu28 (Just xuu400) xuu41 xuu28 xuu44 True",fontsize=16,color="black",shape="box"];999 -> 1126[label="",style="solid", color="black", weight=3]; 26.44/10.90 3962[label="FiniteMap.mkBranchResult xuu205 xuu206 xuu208 xuu207",fontsize=16,color="black",shape="box"];3962 -> 4033[label="",style="solid", color="black", weight=3]; 26.44/10.90 1015[label="primCmpInt (primPlusInt (FiniteMap.mkBalBranch6Size_l Nothing xuu41 xuu44 xuu36) (FiniteMap.mkBalBranch6Size_r Nothing xuu41 xuu44 xuu36)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1015 -> 1156[label="",style="solid", color="black", weight=3]; 26.44/10.90 1505[label="FiniteMap.mkBalBranch6Size_r Nothing xuu41 xuu44 xuu36",fontsize=16,color="black",shape="triangle"];1505 -> 1517[label="",style="solid", color="black", weight=3]; 26.44/10.90 1506 -> 581[label="",style="dashed", color="red", weight=0]; 26.44/10.90 1506[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l Nothing xuu41 xuu44 xuu36",fontsize=16,color="magenta"];1506 -> 1518[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1506 -> 1519[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1022[label="FiniteMap.mkBalBranch6MkBalBranch4 Nothing xuu41 xuu44 xuu36 Nothing xuu41 xuu36 xuu44 False",fontsize=16,color="black",shape="box"];1022 -> 1160[label="",style="solid", color="black", weight=3]; 26.44/10.90 1023[label="FiniteMap.mkBalBranch6MkBalBranch4 Nothing xuu41 xuu44 xuu36 Nothing xuu41 xuu36 xuu44 True",fontsize=16,color="black",shape="box"];1023 -> 1161[label="",style="solid", color="black", weight=3]; 26.44/10.90 2778 -> 2264[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2778[label="primEqNat xuu500000 xuu40000",fontsize=16,color="magenta"];2778 -> 2896[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2778 -> 2897[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2779[label="False",fontsize=16,color="green",shape="box"];2780[label="False",fontsize=16,color="green",shape="box"];2781[label="True",fontsize=16,color="green",shape="box"];771[label="primMulInt xuu50001 xuu4000",fontsize=16,color="burlywood",shape="triangle"];4394[label="xuu50001/Pos xuu500010",fontsize=10,color="white",style="solid",shape="box"];771 -> 4394[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4394 -> 1029[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4395[label="xuu50001/Neg xuu500010",fontsize=10,color="white",style="solid",shape="box"];771 -> 4395[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4395 -> 1030[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2800[label="xuu4002",fontsize=16,color="green",shape="box"];2801[label="xuu50002",fontsize=16,color="green",shape="box"];2802[label="xuu4002",fontsize=16,color="green",shape="box"];2803[label="xuu50002",fontsize=16,color="green",shape="box"];2804[label="xuu4002",fontsize=16,color="green",shape="box"];2805[label="xuu50002",fontsize=16,color="green",shape="box"];2806[label="xuu4002",fontsize=16,color="green",shape="box"];2807[label="xuu50002",fontsize=16,color="green",shape="box"];2808[label="xuu4002",fontsize=16,color="green",shape="box"];2809[label="xuu50002",fontsize=16,color="green",shape="box"];2810[label="xuu4002",fontsize=16,color="green",shape="box"];2811[label="xuu50002",fontsize=16,color="green",shape="box"];2812[label="xuu4002",fontsize=16,color="green",shape="box"];2813[label="xuu50002",fontsize=16,color="green",shape="box"];2814[label="xuu4002",fontsize=16,color="green",shape="box"];2815[label="xuu50002",fontsize=16,color="green",shape="box"];2816[label="xuu4002",fontsize=16,color="green",shape="box"];2817[label="xuu50002",fontsize=16,color="green",shape="box"];2818[label="xuu4002",fontsize=16,color="green",shape="box"];2819[label="xuu50002",fontsize=16,color="green",shape="box"];2820[label="xuu4002",fontsize=16,color="green",shape="box"];2821[label="xuu50002",fontsize=16,color="green",shape="box"];2822[label="xuu4002",fontsize=16,color="green",shape="box"];2823[label="xuu50002",fontsize=16,color="green",shape="box"];2824[label="xuu4002",fontsize=16,color="green",shape="box"];2825[label="xuu50002",fontsize=16,color="green",shape="box"];2826[label="xuu4002",fontsize=16,color="green",shape="box"];2827[label="xuu50002",fontsize=16,color="green",shape="box"];2828[label="xuu4001",fontsize=16,color="green",shape="box"];2829[label="xuu50001",fontsize=16,color="green",shape="box"];2830[label="xuu4001",fontsize=16,color="green",shape="box"];2831[label="xuu50001",fontsize=16,color="green",shape="box"];2832[label="xuu4001",fontsize=16,color="green",shape="box"];2833[label="xuu50001",fontsize=16,color="green",shape="box"];2834[label="xuu4001",fontsize=16,color="green",shape="box"];2835[label="xuu50001",fontsize=16,color="green",shape="box"];2836[label="xuu4001",fontsize=16,color="green",shape="box"];2837[label="xuu50001",fontsize=16,color="green",shape="box"];2838[label="xuu4001",fontsize=16,color="green",shape="box"];2839[label="xuu50001",fontsize=16,color="green",shape="box"];2840[label="xuu4001",fontsize=16,color="green",shape="box"];2841[label="xuu50001",fontsize=16,color="green",shape="box"];2842[label="xuu4001",fontsize=16,color="green",shape="box"];2843[label="xuu50001",fontsize=16,color="green",shape="box"];2844[label="xuu4001",fontsize=16,color="green",shape="box"];2845[label="xuu50001",fontsize=16,color="green",shape="box"];2846[label="xuu4001",fontsize=16,color="green",shape="box"];2847[label="xuu50001",fontsize=16,color="green",shape="box"];2848[label="xuu4001",fontsize=16,color="green",shape="box"];2849[label="xuu50001",fontsize=16,color="green",shape="box"];2850[label="xuu4001",fontsize=16,color="green",shape="box"];2851[label="xuu50001",fontsize=16,color="green",shape="box"];2852[label="xuu4001",fontsize=16,color="green",shape="box"];2853[label="xuu50001",fontsize=16,color="green",shape="box"];2854[label="xuu4001",fontsize=16,color="green",shape="box"];2855[label="xuu50001",fontsize=16,color="green",shape="box"];2856[label="xuu500000",fontsize=16,color="green",shape="box"];2857[label="xuu40000",fontsize=16,color="green",shape="box"];2858[label="xuu500000",fontsize=16,color="green",shape="box"];2859[label="xuu40000",fontsize=16,color="green",shape="box"];2077 -> 2038[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2077[label="xuu22 == xuu17",fontsize=16,color="magenta"];2077 -> 2131[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2077 -> 2132[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2078 -> 2039[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2078[label="xuu22 == xuu17",fontsize=16,color="magenta"];2078 -> 2133[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2078 -> 2134[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2079 -> 2040[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2079[label="xuu22 == xuu17",fontsize=16,color="magenta"];2079 -> 2135[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2079 -> 2136[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2080 -> 2041[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2080[label="xuu22 == xuu17",fontsize=16,color="magenta"];2080 -> 2137[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2080 -> 2138[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2081 -> 2042[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2081[label="xuu22 == xuu17",fontsize=16,color="magenta"];2081 -> 2139[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2081 -> 2140[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2082 -> 2043[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2082[label="xuu22 == xuu17",fontsize=16,color="magenta"];2082 -> 2141[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2082 -> 2142[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2083 -> 2044[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2083[label="xuu22 == xuu17",fontsize=16,color="magenta"];2083 -> 2143[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2083 -> 2144[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2084 -> 61[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2084[label="xuu22 == xuu17",fontsize=16,color="magenta"];2084 -> 2145[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2084 -> 2146[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2085 -> 2046[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2085[label="xuu22 == xuu17",fontsize=16,color="magenta"];2085 -> 2147[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2085 -> 2148[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2086 -> 2047[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2086[label="xuu22 == xuu17",fontsize=16,color="magenta"];2086 -> 2149[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2086 -> 2150[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2087 -> 2048[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2087[label="xuu22 == xuu17",fontsize=16,color="magenta"];2087 -> 2151[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2087 -> 2152[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2088 -> 2049[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2088[label="xuu22 == xuu17",fontsize=16,color="magenta"];2088 -> 2153[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2088 -> 2154[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2089 -> 2050[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2089[label="xuu22 == xuu17",fontsize=16,color="magenta"];2089 -> 2155[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2089 -> 2156[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2090 -> 2051[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2090[label="xuu22 == xuu17",fontsize=16,color="magenta"];2090 -> 2157[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2090 -> 2158[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2879[label="compare xuu3300 xuu3400",fontsize=16,color="burlywood",shape="triangle"];4396[label="xuu3300/xuu33000 :% xuu33001",fontsize=10,color="white",style="solid",shape="box"];2879 -> 4396[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4396 -> 2898[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2878[label="xuu146 /= GT",fontsize=16,color="black",shape="triangle"];2878 -> 2899[label="",style="solid", color="black", weight=3]; 26.44/10.90 2861[label="(xuu33000,xuu33001) <= (xuu34000,xuu34001)",fontsize=16,color="black",shape="box"];2861 -> 2900[label="",style="solid", color="black", weight=3]; 26.44/10.90 2862[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2862 -> 2901[label="",style="solid", color="black", weight=3]; 26.44/10.90 2863[label="Nothing <= Just xuu34000",fontsize=16,color="black",shape="box"];2863 -> 2902[label="",style="solid", color="black", weight=3]; 26.44/10.90 2864[label="Just xuu33000 <= Nothing",fontsize=16,color="black",shape="box"];2864 -> 2903[label="",style="solid", color="black", weight=3]; 26.44/10.90 2865[label="Just xuu33000 <= Just xuu34000",fontsize=16,color="black",shape="box"];2865 -> 2904[label="",style="solid", color="black", weight=3]; 26.44/10.90 2866[label="(xuu33000,xuu33001,xuu33002) <= (xuu34000,xuu34001,xuu34002)",fontsize=16,color="black",shape="box"];2866 -> 2905[label="",style="solid", color="black", weight=3]; 26.44/10.90 2880[label="compare xuu3300 xuu3400",fontsize=16,color="burlywood",shape="triangle"];4397[label="xuu3300/Integer xuu33000",fontsize=10,color="white",style="solid",shape="box"];2880 -> 4397[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4397 -> 2906[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2881[label="compare xuu3300 xuu3400",fontsize=16,color="black",shape="triangle"];2881 -> 2907[label="",style="solid", color="black", weight=3]; 26.44/10.90 2869[label="LT <= LT",fontsize=16,color="black",shape="box"];2869 -> 2908[label="",style="solid", color="black", weight=3]; 26.44/10.90 2870[label="LT <= EQ",fontsize=16,color="black",shape="box"];2870 -> 2909[label="",style="solid", color="black", weight=3]; 26.44/10.90 2871[label="LT <= GT",fontsize=16,color="black",shape="box"];2871 -> 2910[label="",style="solid", color="black", weight=3]; 26.44/10.90 2872[label="EQ <= LT",fontsize=16,color="black",shape="box"];2872 -> 2911[label="",style="solid", color="black", weight=3]; 26.44/10.90 2873[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2873 -> 2912[label="",style="solid", color="black", weight=3]; 26.44/10.90 2874[label="EQ <= GT",fontsize=16,color="black",shape="box"];2874 -> 2913[label="",style="solid", color="black", weight=3]; 26.44/10.90 2875[label="GT <= LT",fontsize=16,color="black",shape="box"];2875 -> 2914[label="",style="solid", color="black", weight=3]; 26.44/10.90 2876[label="GT <= EQ",fontsize=16,color="black",shape="box"];2876 -> 2915[label="",style="solid", color="black", weight=3]; 26.44/10.90 2877[label="GT <= GT",fontsize=16,color="black",shape="box"];2877 -> 2916[label="",style="solid", color="black", weight=3]; 26.44/10.90 2882 -> 1183[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2882[label="compare xuu3300 xuu3400",fontsize=16,color="magenta"];2882 -> 2917[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2882 -> 2918[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2887[label="False <= False",fontsize=16,color="black",shape="box"];2887 -> 2937[label="",style="solid", color="black", weight=3]; 26.44/10.90 2888[label="False <= True",fontsize=16,color="black",shape="box"];2888 -> 2938[label="",style="solid", color="black", weight=3]; 26.44/10.90 2889[label="True <= False",fontsize=16,color="black",shape="box"];2889 -> 2939[label="",style="solid", color="black", weight=3]; 26.44/10.90 2890[label="True <= True",fontsize=16,color="black",shape="box"];2890 -> 2940[label="",style="solid", color="black", weight=3]; 26.44/10.90 2883[label="compare xuu3300 xuu3400",fontsize=16,color="burlywood",shape="triangle"];4398[label="xuu3300/xuu33000 : xuu33001",fontsize=10,color="white",style="solid",shape="box"];2883 -> 4398[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4398 -> 2919[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4399[label="xuu3300/[]",fontsize=10,color="white",style="solid",shape="box"];2883 -> 4399[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4399 -> 2920[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2884[label="compare xuu3300 xuu3400",fontsize=16,color="burlywood",shape="triangle"];4400[label="xuu3300/()",fontsize=10,color="white",style="solid",shape="box"];2884 -> 4400[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4400 -> 2921[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2885[label="compare xuu3300 xuu3400",fontsize=16,color="black",shape="triangle"];2885 -> 2922[label="",style="solid", color="black", weight=3]; 26.44/10.90 2886[label="compare xuu3300 xuu3400",fontsize=16,color="black",shape="triangle"];2886 -> 2923[label="",style="solid", color="black", weight=3]; 26.44/10.90 2891[label="Left xuu33000 <= Left xuu34000",fontsize=16,color="black",shape="box"];2891 -> 2941[label="",style="solid", color="black", weight=3]; 26.44/10.90 2892[label="Left xuu33000 <= Right xuu34000",fontsize=16,color="black",shape="box"];2892 -> 2942[label="",style="solid", color="black", weight=3]; 26.44/10.90 2893[label="Right xuu33000 <= Left xuu34000",fontsize=16,color="black",shape="box"];2893 -> 2943[label="",style="solid", color="black", weight=3]; 26.44/10.90 2894[label="Right xuu33000 <= Right xuu34000",fontsize=16,color="black",shape="box"];2894 -> 2944[label="",style="solid", color="black", weight=3]; 26.44/10.90 2895[label="compare0 (Just xuu129) (Just xuu130) True",fontsize=16,color="black",shape="box"];2895 -> 2945[label="",style="solid", color="black", weight=3]; 26.44/10.90 1121[label="primCmpInt (primPlusInt (FiniteMap.sizeFM xuu28) (FiniteMap.mkBalBranch6Size_r (Just xuu400) xuu41 xuu44 xuu28)) (Pos (Succ (Succ Zero)))",fontsize=16,color="burlywood",shape="box"];4401[label="xuu28/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1121 -> 4401[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4401 -> 1224[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4402[label="xuu28/FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284",fontsize=10,color="white",style="solid",shape="box"];1121 -> 4402[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4402 -> 1225[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 1513[label="FiniteMap.sizeFM xuu44",fontsize=16,color="burlywood",shape="triangle"];4403[label="xuu44/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1513 -> 4403[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4403 -> 1536[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4404[label="xuu44/FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444",fontsize=10,color="white",style="solid",shape="box"];1513 -> 4404[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4404 -> 1537[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 1514[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];1514 -> 1538[label="",style="solid", color="black", weight=3]; 26.44/10.90 1515 -> 1511[label="",style="dashed", color="red", weight=0]; 26.44/10.90 1515[label="FiniteMap.mkBalBranch6Size_l (Just xuu400) xuu41 xuu44 xuu28",fontsize=16,color="magenta"];1516 -> 61[label="",style="dashed", color="red", weight=0]; 26.44/10.90 1516[label="compare xuu90 xuu89 == GT",fontsize=16,color="magenta"];1516 -> 1539[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1516 -> 1540[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1125 -> 1498[label="",style="dashed", color="red", weight=0]; 26.44/10.90 1125[label="FiniteMap.mkBalBranch6MkBalBranch3 (Just xuu400) xuu41 xuu44 xuu28 (Just xuu400) xuu41 xuu28 xuu44 (FiniteMap.mkBalBranch6Size_l (Just xuu400) xuu41 xuu44 xuu28 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Just xuu400) xuu41 xuu44 xuu28)",fontsize=16,color="magenta"];1125 -> 1499[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1126[label="FiniteMap.mkBalBranch6MkBalBranch0 (Just xuu400) xuu41 xuu44 xuu28 xuu28 xuu44 xuu44",fontsize=16,color="burlywood",shape="box"];4405[label="xuu44/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1126 -> 4405[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4405 -> 1233[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4406[label="xuu44/FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444",fontsize=10,color="white",style="solid",shape="box"];1126 -> 4406[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4406 -> 1234[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4033[label="FiniteMap.Branch xuu205 xuu206 (FiniteMap.mkBranchUnbox xuu208 xuu205 xuu207 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu208 xuu205 xuu207 + FiniteMap.mkBranchRight_size xuu208 xuu205 xuu207)) xuu207 xuu208",fontsize=16,color="green",shape="box"];4033 -> 4039[label="",style="dashed", color="green", weight=3]; 26.44/10.90 1156[label="primCmpInt (primPlusInt (FiniteMap.sizeFM xuu36) (FiniteMap.mkBalBranch6Size_r Nothing xuu41 xuu44 xuu36)) (Pos (Succ (Succ Zero)))",fontsize=16,color="burlywood",shape="box"];4407[label="xuu36/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1156 -> 4407[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4407 -> 1236[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4408[label="xuu36/FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364",fontsize=10,color="white",style="solid",shape="box"];1156 -> 4408[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4408 -> 1237[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 1517 -> 1513[label="",style="dashed", color="red", weight=0]; 26.44/10.90 1517[label="FiniteMap.sizeFM xuu44",fontsize=16,color="magenta"];1518 -> 1514[label="",style="dashed", color="red", weight=0]; 26.44/10.90 1518[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1519[label="FiniteMap.mkBalBranch6Size_l Nothing xuu41 xuu44 xuu36",fontsize=16,color="black",shape="triangle"];1519 -> 1541[label="",style="solid", color="black", weight=3]; 26.44/10.90 1160 -> 1532[label="",style="dashed", color="red", weight=0]; 26.44/10.90 1160[label="FiniteMap.mkBalBranch6MkBalBranch3 Nothing xuu41 xuu44 xuu36 Nothing xuu41 xuu36 xuu44 (FiniteMap.mkBalBranch6Size_l Nothing xuu41 xuu44 xuu36 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r Nothing xuu41 xuu44 xuu36)",fontsize=16,color="magenta"];1160 -> 1533[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1161[label="FiniteMap.mkBalBranch6MkBalBranch0 Nothing xuu41 xuu44 xuu36 xuu36 xuu44 xuu44",fontsize=16,color="burlywood",shape="box"];4409[label="xuu44/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1161 -> 4409[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4409 -> 1244[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4410[label="xuu44/FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444",fontsize=10,color="white",style="solid",shape="box"];1161 -> 4410[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4410 -> 1245[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2896[label="xuu500000",fontsize=16,color="green",shape="box"];2897[label="xuu40000",fontsize=16,color="green",shape="box"];1029[label="primMulInt (Pos xuu500010) xuu4000",fontsize=16,color="burlywood",shape="box"];4411[label="xuu4000/Pos xuu40000",fontsize=10,color="white",style="solid",shape="box"];1029 -> 4411[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4411 -> 1165[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4412[label="xuu4000/Neg xuu40000",fontsize=10,color="white",style="solid",shape="box"];1029 -> 4412[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4412 -> 1166[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 1030[label="primMulInt (Neg xuu500010) xuu4000",fontsize=16,color="burlywood",shape="box"];4413[label="xuu4000/Pos xuu40000",fontsize=10,color="white",style="solid",shape="box"];1030 -> 4413[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4413 -> 1167[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4414[label="xuu4000/Neg xuu40000",fontsize=10,color="white",style="solid",shape="box"];1030 -> 4414[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4414 -> 1168[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2131[label="xuu17",fontsize=16,color="green",shape="box"];2132[label="xuu22",fontsize=16,color="green",shape="box"];2133[label="xuu17",fontsize=16,color="green",shape="box"];2134[label="xuu22",fontsize=16,color="green",shape="box"];2135[label="xuu17",fontsize=16,color="green",shape="box"];2136[label="xuu22",fontsize=16,color="green",shape="box"];2137[label="xuu17",fontsize=16,color="green",shape="box"];2138[label="xuu22",fontsize=16,color="green",shape="box"];2139[label="xuu17",fontsize=16,color="green",shape="box"];2140[label="xuu22",fontsize=16,color="green",shape="box"];2141[label="xuu17",fontsize=16,color="green",shape="box"];2142[label="xuu22",fontsize=16,color="green",shape="box"];2143[label="xuu17",fontsize=16,color="green",shape="box"];2144[label="xuu22",fontsize=16,color="green",shape="box"];2145[label="xuu17",fontsize=16,color="green",shape="box"];2146[label="xuu22",fontsize=16,color="green",shape="box"];2147[label="xuu17",fontsize=16,color="green",shape="box"];2148[label="xuu22",fontsize=16,color="green",shape="box"];2149[label="xuu17",fontsize=16,color="green",shape="box"];2150[label="xuu22",fontsize=16,color="green",shape="box"];2151[label="xuu17",fontsize=16,color="green",shape="box"];2152[label="xuu22",fontsize=16,color="green",shape="box"];2153[label="xuu17",fontsize=16,color="green",shape="box"];2154[label="xuu22",fontsize=16,color="green",shape="box"];2155[label="xuu17",fontsize=16,color="green",shape="box"];2156[label="xuu22",fontsize=16,color="green",shape="box"];2157[label="xuu17",fontsize=16,color="green",shape="box"];2158[label="xuu22",fontsize=16,color="green",shape="box"];2898[label="compare (xuu33000 :% xuu33001) xuu3400",fontsize=16,color="burlywood",shape="box"];4415[label="xuu3400/xuu34000 :% xuu34001",fontsize=10,color="white",style="solid",shape="box"];2898 -> 4415[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4415 -> 2946[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2899 -> 2947[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2899[label="not (xuu146 == GT)",fontsize=16,color="magenta"];2899 -> 2948[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2900 -> 3012[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2900[label="xuu33000 < xuu34000 || xuu33000 == xuu34000 && xuu33001 <= xuu34001",fontsize=16,color="magenta"];2900 -> 3013[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2900 -> 3014[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2901[label="True",fontsize=16,color="green",shape="box"];2902[label="True",fontsize=16,color="green",shape="box"];2903[label="False",fontsize=16,color="green",shape="box"];2904[label="xuu33000 <= xuu34000",fontsize=16,color="blue",shape="box"];4416[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2904 -> 4416[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4416 -> 2954[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4417[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2904 -> 4417[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4417 -> 2955[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4418[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2904 -> 4418[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4418 -> 2956[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4419[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2904 -> 4419[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4419 -> 2957[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4420[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2904 -> 4420[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4420 -> 2958[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4421[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2904 -> 4421[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4421 -> 2959[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4422[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2904 -> 4422[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4422 -> 2960[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4423[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2904 -> 4423[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4423 -> 2961[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4424[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2904 -> 4424[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4424 -> 2962[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4425[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2904 -> 4425[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4425 -> 2963[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4426[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2904 -> 4426[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4426 -> 2964[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4427[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2904 -> 4427[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4427 -> 2965[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4428[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2904 -> 4428[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4428 -> 2966[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4429[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2904 -> 4429[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4429 -> 2967[label="",style="solid", color="blue", weight=3]; 26.44/10.90 2905 -> 3012[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2905[label="xuu33000 < xuu34000 || xuu33000 == xuu34000 && (xuu33001 < xuu34001 || xuu33001 == xuu34001 && xuu33002 <= xuu34002)",fontsize=16,color="magenta"];2905 -> 3015[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2905 -> 3016[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2906[label="compare (Integer xuu33000) xuu3400",fontsize=16,color="burlywood",shape="box"];4430[label="xuu3400/Integer xuu34000",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4430[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4430 -> 2968[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2907[label="primCmpChar xuu3300 xuu3400",fontsize=16,color="burlywood",shape="box"];4431[label="xuu3300/Char xuu33000",fontsize=10,color="white",style="solid",shape="box"];2907 -> 4431[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4431 -> 2969[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2908[label="True",fontsize=16,color="green",shape="box"];2909[label="True",fontsize=16,color="green",shape="box"];2910[label="True",fontsize=16,color="green",shape="box"];2911[label="False",fontsize=16,color="green",shape="box"];2912[label="True",fontsize=16,color="green",shape="box"];2913[label="True",fontsize=16,color="green",shape="box"];2914[label="False",fontsize=16,color="green",shape="box"];2915[label="False",fontsize=16,color="green",shape="box"];2916[label="True",fontsize=16,color="green",shape="box"];2917[label="xuu3400",fontsize=16,color="green",shape="box"];2918[label="xuu3300",fontsize=16,color="green",shape="box"];1183[label="compare xuu33 xuu34",fontsize=16,color="black",shape="triangle"];1183 -> 1299[label="",style="solid", color="black", weight=3]; 26.44/10.90 2937[label="True",fontsize=16,color="green",shape="box"];2938[label="True",fontsize=16,color="green",shape="box"];2939[label="False",fontsize=16,color="green",shape="box"];2940[label="True",fontsize=16,color="green",shape="box"];2919[label="compare (xuu33000 : xuu33001) xuu3400",fontsize=16,color="burlywood",shape="box"];4432[label="xuu3400/xuu34000 : xuu34001",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4432[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4432 -> 2970[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4433[label="xuu3400/[]",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4433[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4433 -> 2971[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2920[label="compare [] xuu3400",fontsize=16,color="burlywood",shape="box"];4434[label="xuu3400/xuu34000 : xuu34001",fontsize=10,color="white",style="solid",shape="box"];2920 -> 4434[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4434 -> 2972[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4435[label="xuu3400/[]",fontsize=10,color="white",style="solid",shape="box"];2920 -> 4435[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4435 -> 2973[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2921[label="compare () xuu3400",fontsize=16,color="burlywood",shape="box"];4436[label="xuu3400/()",fontsize=10,color="white",style="solid",shape="box"];2921 -> 4436[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4436 -> 2974[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2922[label="primCmpDouble xuu3300 xuu3400",fontsize=16,color="burlywood",shape="box"];4437[label="xuu3300/Double xuu33000 xuu33001",fontsize=10,color="white",style="solid",shape="box"];2922 -> 4437[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4437 -> 2975[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2923[label="primCmpFloat xuu3300 xuu3400",fontsize=16,color="burlywood",shape="box"];4438[label="xuu3300/Float xuu33000 xuu33001",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4438[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4438 -> 2976[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2941[label="xuu33000 <= xuu34000",fontsize=16,color="blue",shape="box"];4439[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4439[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4439 -> 2977[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4440[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4440[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4440 -> 2978[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4441[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4441[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4441 -> 2979[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4442[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4442[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4442 -> 2980[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4443[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4443[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4443 -> 2981[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4444[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4444[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4444 -> 2982[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4445[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4445[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4445 -> 2983[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4446[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4446[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4446 -> 2984[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4447[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4447[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4447 -> 2985[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4448[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4448[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4448 -> 2986[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4449[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4449[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4449 -> 2987[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4450[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4450[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4450 -> 2988[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4451[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4451[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4451 -> 2989[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4452[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4452[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4452 -> 2990[label="",style="solid", color="blue", weight=3]; 26.44/10.90 2942[label="True",fontsize=16,color="green",shape="box"];2943[label="False",fontsize=16,color="green",shape="box"];2944[label="xuu33000 <= xuu34000",fontsize=16,color="blue",shape="box"];4453[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4453[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4453 -> 2991[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4454[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4454[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4454 -> 2992[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4455[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4455[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4455 -> 2993[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4456[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4456[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4456 -> 2994[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4457[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4457[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4457 -> 2995[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4458[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4458[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4458 -> 2996[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4459[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4459[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4459 -> 2997[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4460[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4460[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4460 -> 2998[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4461[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4461[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4461 -> 2999[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4462[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4462[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4462 -> 3000[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4463[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4463[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4463 -> 3001[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4464[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4464[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4464 -> 3002[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4465[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4465[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4465 -> 3003[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4466[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4466[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4466 -> 3004[label="",style="solid", color="blue", weight=3]; 26.44/10.90 2945[label="GT",fontsize=16,color="green",shape="box"];1224[label="primCmpInt (primPlusInt (FiniteMap.sizeFM FiniteMap.EmptyFM) (FiniteMap.mkBalBranch6Size_r (Just xuu400) xuu41 xuu44 FiniteMap.EmptyFM)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1224 -> 1363[label="",style="solid", color="black", weight=3]; 26.44/10.90 1225[label="primCmpInt (primPlusInt (FiniteMap.sizeFM (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284)) (FiniteMap.mkBalBranch6Size_r (Just xuu400) xuu41 xuu44 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284))) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1225 -> 1364[label="",style="solid", color="black", weight=3]; 26.44/10.90 1536[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1536 -> 1704[label="",style="solid", color="black", weight=3]; 26.44/10.90 1537[label="FiniteMap.sizeFM (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444)",fontsize=16,color="black",shape="box"];1537 -> 1705[label="",style="solid", color="black", weight=3]; 26.44/10.90 1538[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];1511[label="FiniteMap.mkBalBranch6Size_l (Just xuu400) xuu41 xuu44 xuu28",fontsize=16,color="black",shape="triangle"];1511 -> 1522[label="",style="solid", color="black", weight=3]; 26.44/10.90 1539[label="GT",fontsize=16,color="green",shape="box"];1540 -> 1183[label="",style="dashed", color="red", weight=0]; 26.44/10.90 1540[label="compare xuu90 xuu89",fontsize=16,color="magenta"];1540 -> 1706[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1540 -> 1707[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1499 -> 1502[label="",style="dashed", color="red", weight=0]; 26.44/10.90 1499[label="FiniteMap.mkBalBranch6Size_l (Just xuu400) xuu41 xuu44 xuu28 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Just xuu400) xuu41 xuu44 xuu28",fontsize=16,color="magenta"];1499 -> 1511[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1499 -> 1512[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1498[label="FiniteMap.mkBalBranch6MkBalBranch3 (Just xuu400) xuu41 xuu44 xuu28 (Just xuu400) xuu41 xuu28 xuu44 xuu87",fontsize=16,color="burlywood",shape="triangle"];4467[label="xuu87/False",fontsize=10,color="white",style="solid",shape="box"];1498 -> 4467[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4467 -> 1520[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4468[label="xuu87/True",fontsize=10,color="white",style="solid",shape="box"];1498 -> 4468[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4468 -> 1521[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 1233[label="FiniteMap.mkBalBranch6MkBalBranch0 (Just xuu400) xuu41 FiniteMap.EmptyFM xuu28 xuu28 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1233 -> 1372[label="",style="solid", color="black", weight=3]; 26.44/10.90 1234[label="FiniteMap.mkBalBranch6MkBalBranch0 (Just xuu400) xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu28 xuu28 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444)",fontsize=16,color="black",shape="box"];1234 -> 1373[label="",style="solid", color="black", weight=3]; 26.44/10.90 4039[label="FiniteMap.mkBranchUnbox xuu208 xuu205 xuu207 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu208 xuu205 xuu207 + FiniteMap.mkBranchRight_size xuu208 xuu205 xuu207)",fontsize=16,color="black",shape="box"];4039 -> 4045[label="",style="solid", color="black", weight=3]; 26.44/10.90 1236[label="primCmpInt (primPlusInt (FiniteMap.sizeFM FiniteMap.EmptyFM) (FiniteMap.mkBalBranch6Size_r Nothing xuu41 xuu44 FiniteMap.EmptyFM)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1236 -> 1375[label="",style="solid", color="black", weight=3]; 26.44/10.90 1237[label="primCmpInt (primPlusInt (FiniteMap.sizeFM (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364)) (FiniteMap.mkBalBranch6Size_r Nothing xuu41 xuu44 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364))) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1237 -> 1376[label="",style="solid", color="black", weight=3]; 26.44/10.90 1541 -> 1513[label="",style="dashed", color="red", weight=0]; 26.44/10.90 1541[label="FiniteMap.sizeFM xuu36",fontsize=16,color="magenta"];1541 -> 1708[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1533 -> 1502[label="",style="dashed", color="red", weight=0]; 26.44/10.90 1533[label="FiniteMap.mkBalBranch6Size_l Nothing xuu41 xuu44 xuu36 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r Nothing xuu41 xuu44 xuu36",fontsize=16,color="magenta"];1533 -> 1542[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1533 -> 1543[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1532[label="FiniteMap.mkBalBranch6MkBalBranch3 Nothing xuu41 xuu44 xuu36 Nothing xuu41 xuu36 xuu44 xuu93",fontsize=16,color="burlywood",shape="triangle"];4469[label="xuu93/False",fontsize=10,color="white",style="solid",shape="box"];1532 -> 4469[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4469 -> 1544[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4470[label="xuu93/True",fontsize=10,color="white",style="solid",shape="box"];1532 -> 4470[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4470 -> 1545[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 1244[label="FiniteMap.mkBalBranch6MkBalBranch0 Nothing xuu41 FiniteMap.EmptyFM xuu36 xuu36 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1244 -> 1383[label="",style="solid", color="black", weight=3]; 26.44/10.90 1245[label="FiniteMap.mkBalBranch6MkBalBranch0 Nothing xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu36 xuu36 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444)",fontsize=16,color="black",shape="box"];1245 -> 1384[label="",style="solid", color="black", weight=3]; 26.44/10.90 1165[label="primMulInt (Pos xuu500010) (Pos xuu40000)",fontsize=16,color="black",shape="box"];1165 -> 1247[label="",style="solid", color="black", weight=3]; 26.44/10.90 1166[label="primMulInt (Pos xuu500010) (Neg xuu40000)",fontsize=16,color="black",shape="box"];1166 -> 1248[label="",style="solid", color="black", weight=3]; 26.44/10.90 1167[label="primMulInt (Neg xuu500010) (Pos xuu40000)",fontsize=16,color="black",shape="box"];1167 -> 1249[label="",style="solid", color="black", weight=3]; 26.44/10.90 1168[label="primMulInt (Neg xuu500010) (Neg xuu40000)",fontsize=16,color="black",shape="box"];1168 -> 1250[label="",style="solid", color="black", weight=3]; 26.44/10.90 2946[label="compare (xuu33000 :% xuu33001) (xuu34000 :% xuu34001)",fontsize=16,color="black",shape="box"];2946 -> 3005[label="",style="solid", color="black", weight=3]; 26.44/10.90 2948 -> 61[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2948[label="xuu146 == GT",fontsize=16,color="magenta"];2948 -> 3006[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2948 -> 3007[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2947[label="not xuu155",fontsize=16,color="burlywood",shape="triangle"];4471[label="xuu155/False",fontsize=10,color="white",style="solid",shape="box"];2947 -> 4471[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4471 -> 3008[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4472[label="xuu155/True",fontsize=10,color="white",style="solid",shape="box"];2947 -> 4472[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4472 -> 3009[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 3013 -> 2421[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3013[label="xuu33000 == xuu34000 && xuu33001 <= xuu34001",fontsize=16,color="magenta"];3013 -> 3019[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3013 -> 3020[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3014[label="xuu33000 < xuu34000",fontsize=16,color="blue",shape="box"];4473[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3014 -> 4473[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4473 -> 3021[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4474[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3014 -> 4474[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4474 -> 3022[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4475[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3014 -> 4475[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4475 -> 3023[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4476[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3014 -> 4476[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4476 -> 3024[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4477[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3014 -> 4477[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4477 -> 3025[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4478[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3014 -> 4478[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4478 -> 3026[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4479[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3014 -> 4479[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4479 -> 3027[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4480[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3014 -> 4480[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4480 -> 3028[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4481[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3014 -> 4481[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4481 -> 3029[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4482[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3014 -> 4482[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4482 -> 3030[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4483[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3014 -> 4483[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4483 -> 3031[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4484[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3014 -> 4484[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4484 -> 3032[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4485[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3014 -> 4485[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4485 -> 3033[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4486[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3014 -> 4486[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4486 -> 3034[label="",style="solid", color="blue", weight=3]; 26.44/10.90 3012[label="xuu160 || xuu161",fontsize=16,color="burlywood",shape="triangle"];4487[label="xuu160/False",fontsize=10,color="white",style="solid",shape="box"];3012 -> 4487[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4487 -> 3035[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4488[label="xuu160/True",fontsize=10,color="white",style="solid",shape="box"];3012 -> 4488[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4488 -> 3036[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2954 -> 2545[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2954[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2954 -> 3037[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2954 -> 3038[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2955 -> 2546[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2955[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2955 -> 3039[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2955 -> 3040[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2956 -> 2547[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2956[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2956 -> 3041[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2956 -> 3042[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2957 -> 2548[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2957[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2957 -> 3043[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2957 -> 3044[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2958 -> 2549[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2958[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2958 -> 3045[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2958 -> 3046[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2959 -> 2550[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2959[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2959 -> 3047[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2959 -> 3048[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2960 -> 2551[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2960[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2960 -> 3049[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2960 -> 3050[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2961 -> 2552[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2961[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2961 -> 3051[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2961 -> 3052[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2962 -> 2553[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2962[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2962 -> 3053[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2962 -> 3054[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2963 -> 2554[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2963[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2963 -> 3055[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2963 -> 3056[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2964 -> 2555[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2964[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2964 -> 3057[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2964 -> 3058[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2965 -> 2556[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2965[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2965 -> 3059[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2965 -> 3060[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2966 -> 2557[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2966[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2966 -> 3061[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2966 -> 3062[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2967 -> 2558[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2967[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2967 -> 3063[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2967 -> 3064[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3015 -> 2421[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3015[label="xuu33000 == xuu34000 && (xuu33001 < xuu34001 || xuu33001 == xuu34001 && xuu33002 <= xuu34002)",fontsize=16,color="magenta"];3015 -> 3065[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3015 -> 3066[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3016[label="xuu33000 < xuu34000",fontsize=16,color="blue",shape="box"];4489[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3016 -> 4489[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4489 -> 3067[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4490[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3016 -> 4490[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4490 -> 3068[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4491[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3016 -> 4491[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4491 -> 3069[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4492[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3016 -> 4492[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4492 -> 3070[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4493[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3016 -> 4493[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4493 -> 3071[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4494[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3016 -> 4494[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4494 -> 3072[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4495[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3016 -> 4495[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4495 -> 3073[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4496[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3016 -> 4496[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4496 -> 3074[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4497[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3016 -> 4497[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4497 -> 3075[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4498[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3016 -> 4498[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4498 -> 3076[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4499[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3016 -> 4499[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4499 -> 3077[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4500[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3016 -> 4500[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4500 -> 3078[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4501[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3016 -> 4501[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4501 -> 3079[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4502[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3016 -> 4502[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4502 -> 3080[label="",style="solid", color="blue", weight=3]; 26.44/10.90 2968[label="compare (Integer xuu33000) (Integer xuu34000)",fontsize=16,color="black",shape="box"];2968 -> 3081[label="",style="solid", color="black", weight=3]; 26.44/10.90 2969[label="primCmpChar (Char xuu33000) xuu3400",fontsize=16,color="burlywood",shape="box"];4503[label="xuu3400/Char xuu34000",fontsize=10,color="white",style="solid",shape="box"];2969 -> 4503[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4503 -> 3082[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 1299[label="primCmpInt xuu33 xuu34",fontsize=16,color="burlywood",shape="triangle"];4504[label="xuu33/Pos xuu330",fontsize=10,color="white",style="solid",shape="box"];1299 -> 4504[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4504 -> 1481[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4505[label="xuu33/Neg xuu330",fontsize=10,color="white",style="solid",shape="box"];1299 -> 4505[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4505 -> 1482[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2970[label="compare (xuu33000 : xuu33001) (xuu34000 : xuu34001)",fontsize=16,color="black",shape="box"];2970 -> 3083[label="",style="solid", color="black", weight=3]; 26.44/10.90 2971[label="compare (xuu33000 : xuu33001) []",fontsize=16,color="black",shape="box"];2971 -> 3084[label="",style="solid", color="black", weight=3]; 26.44/10.90 2972[label="compare [] (xuu34000 : xuu34001)",fontsize=16,color="black",shape="box"];2972 -> 3085[label="",style="solid", color="black", weight=3]; 26.44/10.90 2973[label="compare [] []",fontsize=16,color="black",shape="box"];2973 -> 3086[label="",style="solid", color="black", weight=3]; 26.44/10.90 2974[label="compare () ()",fontsize=16,color="black",shape="box"];2974 -> 3087[label="",style="solid", color="black", weight=3]; 26.44/10.90 2975[label="primCmpDouble (Double xuu33000 xuu33001) xuu3400",fontsize=16,color="burlywood",shape="box"];4506[label="xuu33001/Pos xuu330010",fontsize=10,color="white",style="solid",shape="box"];2975 -> 4506[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4506 -> 3088[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4507[label="xuu33001/Neg xuu330010",fontsize=10,color="white",style="solid",shape="box"];2975 -> 4507[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4507 -> 3089[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2976[label="primCmpFloat (Float xuu33000 xuu33001) xuu3400",fontsize=16,color="burlywood",shape="box"];4508[label="xuu33001/Pos xuu330010",fontsize=10,color="white",style="solid",shape="box"];2976 -> 4508[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4508 -> 3090[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4509[label="xuu33001/Neg xuu330010",fontsize=10,color="white",style="solid",shape="box"];2976 -> 4509[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4509 -> 3091[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 2977 -> 2545[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2977[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2977 -> 3092[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2977 -> 3093[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2978 -> 2546[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2978[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2978 -> 3094[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2978 -> 3095[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2979 -> 2547[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2979[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2979 -> 3096[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2979 -> 3097[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2980 -> 2548[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2980[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2980 -> 3098[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2980 -> 3099[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2981 -> 2549[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2981[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2981 -> 3100[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2981 -> 3101[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2982 -> 2550[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2982[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2982 -> 3102[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2982 -> 3103[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2983 -> 2551[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2983[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2983 -> 3104[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2983 -> 3105[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2984 -> 2552[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2984[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2984 -> 3106[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2984 -> 3107[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2985 -> 2553[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2985[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2985 -> 3108[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2985 -> 3109[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2986 -> 2554[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2986[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2986 -> 3110[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2986 -> 3111[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2987 -> 2555[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2987[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2987 -> 3112[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2987 -> 3113[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2988 -> 2556[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2988[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2988 -> 3114[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2988 -> 3115[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2989 -> 2557[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2989[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2989 -> 3116[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2989 -> 3117[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2990 -> 2558[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2990[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2990 -> 3118[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2990 -> 3119[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2991 -> 2545[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2991[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2991 -> 3120[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2991 -> 3121[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2992 -> 2546[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2992[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2992 -> 3122[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2992 -> 3123[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2993 -> 2547[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2993[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2993 -> 3124[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2993 -> 3125[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2994 -> 2548[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2994[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2994 -> 3126[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2994 -> 3127[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2995 -> 2549[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2995[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2995 -> 3128[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2995 -> 3129[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2996 -> 2550[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2996[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2996 -> 3130[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2996 -> 3131[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2997 -> 2551[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2997[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2997 -> 3132[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2997 -> 3133[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2998 -> 2552[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2998[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2998 -> 3134[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2998 -> 3135[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2999 -> 2553[label="",style="dashed", color="red", weight=0]; 26.44/10.90 2999[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2999 -> 3136[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 2999 -> 3137[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3000 -> 2554[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3000[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];3000 -> 3138[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3000 -> 3139[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3001 -> 2555[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3001[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];3001 -> 3140[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3001 -> 3141[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3002 -> 2556[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3002[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];3002 -> 3142[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3002 -> 3143[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3003 -> 2557[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3003[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];3003 -> 3144[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3003 -> 3145[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3004 -> 2558[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3004[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];3004 -> 3146[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3004 -> 3147[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1363 -> 1299[label="",style="dashed", color="red", weight=0]; 26.44/10.90 1363[label="primCmpInt (primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r (Just xuu400) xuu41 xuu44 FiniteMap.EmptyFM)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1363 -> 1491[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1363 -> 1492[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1364 -> 1299[label="",style="dashed", color="red", weight=0]; 26.44/10.90 1364[label="primCmpInt (primPlusInt xuu282 (FiniteMap.mkBalBranch6Size_r (Just xuu400) xuu41 xuu44 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284))) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1364 -> 1493[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1364 -> 1494[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1704[label="Pos Zero",fontsize=16,color="green",shape="box"];1705[label="xuu442",fontsize=16,color="green",shape="box"];1522 -> 1513[label="",style="dashed", color="red", weight=0]; 26.44/10.90 1522[label="FiniteMap.sizeFM xuu28",fontsize=16,color="magenta"];1522 -> 1709[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1706[label="xuu89",fontsize=16,color="green",shape="box"];1707[label="xuu90",fontsize=16,color="green",shape="box"];1512 -> 581[label="",style="dashed", color="red", weight=0]; 26.44/10.90 1512[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Just xuu400) xuu41 xuu44 xuu28",fontsize=16,color="magenta"];1512 -> 1523[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1512 -> 1524[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1520[label="FiniteMap.mkBalBranch6MkBalBranch3 (Just xuu400) xuu41 xuu44 xuu28 (Just xuu400) xuu41 xuu28 xuu44 False",fontsize=16,color="black",shape="box"];1520 -> 1546[label="",style="solid", color="black", weight=3]; 26.44/10.90 1521[label="FiniteMap.mkBalBranch6MkBalBranch3 (Just xuu400) xuu41 xuu44 xuu28 (Just xuu400) xuu41 xuu28 xuu44 True",fontsize=16,color="black",shape="box"];1521 -> 1547[label="",style="solid", color="black", weight=3]; 26.44/10.90 1372[label="error []",fontsize=16,color="red",shape="box"];1373[label="FiniteMap.mkBalBranch6MkBalBranch02 (Just xuu400) xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu28 xuu28 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444)",fontsize=16,color="black",shape="box"];1373 -> 1525[label="",style="solid", color="black", weight=3]; 26.44/10.90 4045[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu208 xuu205 xuu207 + FiniteMap.mkBranchRight_size xuu208 xuu205 xuu207",fontsize=16,color="black",shape="box"];4045 -> 4046[label="",style="solid", color="black", weight=3]; 26.44/10.90 1375 -> 1299[label="",style="dashed", color="red", weight=0]; 26.44/10.90 1375[label="primCmpInt (primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r Nothing xuu41 xuu44 FiniteMap.EmptyFM)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1375 -> 1527[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1375 -> 1528[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1376 -> 1299[label="",style="dashed", color="red", weight=0]; 26.44/10.90 1376[label="primCmpInt (primPlusInt xuu362 (FiniteMap.mkBalBranch6Size_r Nothing xuu41 xuu44 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364))) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1376 -> 1529[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1376 -> 1530[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1708[label="xuu36",fontsize=16,color="green",shape="box"];1542 -> 1519[label="",style="dashed", color="red", weight=0]; 26.44/10.90 1542[label="FiniteMap.mkBalBranch6Size_l Nothing xuu41 xuu44 xuu36",fontsize=16,color="magenta"];1543 -> 581[label="",style="dashed", color="red", weight=0]; 26.44/10.90 1543[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r Nothing xuu41 xuu44 xuu36",fontsize=16,color="magenta"];1543 -> 1710[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1543 -> 1711[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1544[label="FiniteMap.mkBalBranch6MkBalBranch3 Nothing xuu41 xuu44 xuu36 Nothing xuu41 xuu36 xuu44 False",fontsize=16,color="black",shape="box"];1544 -> 1712[label="",style="solid", color="black", weight=3]; 26.44/10.90 1545[label="FiniteMap.mkBalBranch6MkBalBranch3 Nothing xuu41 xuu44 xuu36 Nothing xuu41 xuu36 xuu44 True",fontsize=16,color="black",shape="box"];1545 -> 1713[label="",style="solid", color="black", weight=3]; 26.44/10.90 1383[label="error []",fontsize=16,color="red",shape="box"];1384[label="FiniteMap.mkBalBranch6MkBalBranch02 Nothing xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu36 xuu36 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444)",fontsize=16,color="black",shape="box"];1384 -> 1548[label="",style="solid", color="black", weight=3]; 26.44/10.90 1247[label="Pos (primMulNat xuu500010 xuu40000)",fontsize=16,color="green",shape="box"];1247 -> 1386[label="",style="dashed", color="green", weight=3]; 26.44/10.90 1248[label="Neg (primMulNat xuu500010 xuu40000)",fontsize=16,color="green",shape="box"];1248 -> 1387[label="",style="dashed", color="green", weight=3]; 26.44/10.90 1249[label="Neg (primMulNat xuu500010 xuu40000)",fontsize=16,color="green",shape="box"];1249 -> 1388[label="",style="dashed", color="green", weight=3]; 26.44/10.90 1250[label="Pos (primMulNat xuu500010 xuu40000)",fontsize=16,color="green",shape="box"];1250 -> 1389[label="",style="dashed", color="green", weight=3]; 26.44/10.90 3005[label="compare (xuu33000 * xuu34001) (xuu34000 * xuu33001)",fontsize=16,color="blue",shape="box"];4510[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3005 -> 4510[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4510 -> 3148[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4511[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3005 -> 4511[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4511 -> 3149[label="",style="solid", color="blue", weight=3]; 26.44/10.90 3006[label="GT",fontsize=16,color="green",shape="box"];3007[label="xuu146",fontsize=16,color="green",shape="box"];3008[label="not False",fontsize=16,color="black",shape="box"];3008 -> 3150[label="",style="solid", color="black", weight=3]; 26.44/10.90 3009[label="not True",fontsize=16,color="black",shape="box"];3009 -> 3151[label="",style="solid", color="black", weight=3]; 26.44/10.90 3019[label="xuu33001 <= xuu34001",fontsize=16,color="blue",shape="box"];4512[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3019 -> 4512[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4512 -> 3180[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4513[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3019 -> 4513[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4513 -> 3181[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4514[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3019 -> 4514[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4514 -> 3182[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4515[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3019 -> 4515[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4515 -> 3183[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4516[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3019 -> 4516[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4516 -> 3184[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4517[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3019 -> 4517[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4517 -> 3185[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4518[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3019 -> 4518[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4518 -> 3186[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4519[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3019 -> 4519[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4519 -> 3187[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4520[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3019 -> 4520[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4520 -> 3188[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4521[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3019 -> 4521[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4521 -> 3189[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4522[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3019 -> 4522[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4522 -> 3190[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4523[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3019 -> 4523[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4523 -> 3191[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4524[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3019 -> 4524[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4524 -> 3192[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4525[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3019 -> 4525[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4525 -> 3193[label="",style="solid", color="blue", weight=3]; 26.44/10.90 3020[label="xuu33000 == xuu34000",fontsize=16,color="blue",shape="box"];4526[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3020 -> 4526[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4526 -> 3194[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4527[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3020 -> 4527[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4527 -> 3195[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4528[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3020 -> 4528[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4528 -> 3196[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4529[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3020 -> 4529[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4529 -> 3197[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4530[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3020 -> 4530[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4530 -> 3198[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4531[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3020 -> 4531[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4531 -> 3199[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4532[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3020 -> 4532[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4532 -> 3200[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4533[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3020 -> 4533[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4533 -> 3201[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4534[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3020 -> 4534[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4534 -> 3202[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4535[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3020 -> 4535[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4535 -> 3203[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4536[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3020 -> 4536[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4536 -> 3204[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4537[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3020 -> 4537[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4537 -> 3205[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4538[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3020 -> 4538[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4538 -> 3206[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4539[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3020 -> 4539[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4539 -> 3207[label="",style="solid", color="blue", weight=3]; 26.44/10.90 3021[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];3021 -> 3208[label="",style="solid", color="black", weight=3]; 26.44/10.90 3022[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];3022 -> 3209[label="",style="solid", color="black", weight=3]; 26.44/10.90 3023[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];3023 -> 3210[label="",style="solid", color="black", weight=3]; 26.44/10.90 3024[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];3024 -> 3211[label="",style="solid", color="black", weight=3]; 26.44/10.90 3025[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];3025 -> 3212[label="",style="solid", color="black", weight=3]; 26.44/10.90 3026[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];3026 -> 3213[label="",style="solid", color="black", weight=3]; 26.44/10.90 3027[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];3027 -> 3214[label="",style="solid", color="black", weight=3]; 26.44/10.90 3028 -> 1270[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3028[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3028 -> 3215[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3028 -> 3216[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3029[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];3029 -> 3217[label="",style="solid", color="black", weight=3]; 26.44/10.90 3030[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];3030 -> 3218[label="",style="solid", color="black", weight=3]; 26.44/10.90 3031[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];3031 -> 3219[label="",style="solid", color="black", weight=3]; 26.44/10.90 3032[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];3032 -> 3220[label="",style="solid", color="black", weight=3]; 26.44/10.90 3033[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];3033 -> 3221[label="",style="solid", color="black", weight=3]; 26.44/10.90 3034[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];3034 -> 3222[label="",style="solid", color="black", weight=3]; 26.44/10.90 3035[label="False || xuu161",fontsize=16,color="black",shape="box"];3035 -> 3223[label="",style="solid", color="black", weight=3]; 26.44/10.90 3036[label="True || xuu161",fontsize=16,color="black",shape="box"];3036 -> 3224[label="",style="solid", color="black", weight=3]; 26.44/10.90 3037[label="xuu33000",fontsize=16,color="green",shape="box"];3038[label="xuu34000",fontsize=16,color="green",shape="box"];3039[label="xuu33000",fontsize=16,color="green",shape="box"];3040[label="xuu34000",fontsize=16,color="green",shape="box"];3041[label="xuu33000",fontsize=16,color="green",shape="box"];3042[label="xuu34000",fontsize=16,color="green",shape="box"];3043[label="xuu33000",fontsize=16,color="green",shape="box"];3044[label="xuu34000",fontsize=16,color="green",shape="box"];3045[label="xuu33000",fontsize=16,color="green",shape="box"];3046[label="xuu34000",fontsize=16,color="green",shape="box"];3047[label="xuu33000",fontsize=16,color="green",shape="box"];3048[label="xuu34000",fontsize=16,color="green",shape="box"];3049[label="xuu33000",fontsize=16,color="green",shape="box"];3050[label="xuu34000",fontsize=16,color="green",shape="box"];3051[label="xuu33000",fontsize=16,color="green",shape="box"];3052[label="xuu34000",fontsize=16,color="green",shape="box"];3053[label="xuu33000",fontsize=16,color="green",shape="box"];3054[label="xuu34000",fontsize=16,color="green",shape="box"];3055[label="xuu33000",fontsize=16,color="green",shape="box"];3056[label="xuu34000",fontsize=16,color="green",shape="box"];3057[label="xuu33000",fontsize=16,color="green",shape="box"];3058[label="xuu34000",fontsize=16,color="green",shape="box"];3059[label="xuu33000",fontsize=16,color="green",shape="box"];3060[label="xuu34000",fontsize=16,color="green",shape="box"];3061[label="xuu33000",fontsize=16,color="green",shape="box"];3062[label="xuu34000",fontsize=16,color="green",shape="box"];3063[label="xuu33000",fontsize=16,color="green",shape="box"];3064[label="xuu34000",fontsize=16,color="green",shape="box"];3065 -> 3012[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3065[label="xuu33001 < xuu34001 || xuu33001 == xuu34001 && xuu33002 <= xuu34002",fontsize=16,color="magenta"];3065 -> 3225[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3065 -> 3226[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3066[label="xuu33000 == xuu34000",fontsize=16,color="blue",shape="box"];4540[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3066 -> 4540[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4540 -> 3227[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4541[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3066 -> 4541[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4541 -> 3228[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4542[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3066 -> 4542[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4542 -> 3229[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4543[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3066 -> 4543[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4543 -> 3230[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4544[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3066 -> 4544[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4544 -> 3231[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4545[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3066 -> 4545[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4545 -> 3232[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4546[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3066 -> 4546[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4546 -> 3233[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4547[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3066 -> 4547[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4547 -> 3234[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4548[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3066 -> 4548[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4548 -> 3235[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4549[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3066 -> 4549[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4549 -> 3236[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4550[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3066 -> 4550[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4550 -> 3237[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4551[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3066 -> 4551[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4551 -> 3238[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4552[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3066 -> 4552[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4552 -> 3239[label="",style="solid", color="blue", weight=3]; 26.44/10.90 4553[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3066 -> 4553[label="",style="solid", color="blue", weight=9]; 26.44/10.90 4553 -> 3240[label="",style="solid", color="blue", weight=3]; 26.44/10.90 3067 -> 3021[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3067[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3067 -> 3241[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3067 -> 3242[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3068 -> 3022[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3068[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3068 -> 3243[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3068 -> 3244[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3069 -> 3023[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3069[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3069 -> 3245[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3069 -> 3246[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3070 -> 3024[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3070[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3070 -> 3247[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3070 -> 3248[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3071 -> 3025[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3071[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3071 -> 3249[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3071 -> 3250[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3072 -> 3026[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3072[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3072 -> 3251[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3072 -> 3252[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3073 -> 3027[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3073[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3073 -> 3253[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3073 -> 3254[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3074 -> 1270[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3074[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3074 -> 3255[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3074 -> 3256[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3075 -> 3029[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3075[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3075 -> 3257[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3075 -> 3258[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3076 -> 3030[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3076[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3076 -> 3259[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3076 -> 3260[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3077 -> 3031[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3077[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3077 -> 3261[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3077 -> 3262[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3078 -> 3032[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3078[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3078 -> 3263[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3078 -> 3264[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3079 -> 3033[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3079[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3079 -> 3265[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3079 -> 3266[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3080 -> 3034[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3080[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3080 -> 3267[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3080 -> 3268[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3081 -> 1299[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3081[label="primCmpInt xuu33000 xuu34000",fontsize=16,color="magenta"];3081 -> 3269[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3081 -> 3270[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3082[label="primCmpChar (Char xuu33000) (Char xuu34000)",fontsize=16,color="black",shape="box"];3082 -> 3271[label="",style="solid", color="black", weight=3]; 26.44/10.90 1481[label="primCmpInt (Pos xuu330) xuu34",fontsize=16,color="burlywood",shape="box"];4554[label="xuu330/Succ xuu3300",fontsize=10,color="white",style="solid",shape="box"];1481 -> 4554[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4554 -> 1687[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4555[label="xuu330/Zero",fontsize=10,color="white",style="solid",shape="box"];1481 -> 4555[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4555 -> 1688[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 1482[label="primCmpInt (Neg xuu330) xuu34",fontsize=16,color="burlywood",shape="box"];4556[label="xuu330/Succ xuu3300",fontsize=10,color="white",style="solid",shape="box"];1482 -> 4556[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4556 -> 1689[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4557[label="xuu330/Zero",fontsize=10,color="white",style="solid",shape="box"];1482 -> 4557[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4557 -> 1690[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 3083 -> 3272[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3083[label="primCompAux xuu33000 xuu34000 (compare xuu33001 xuu34001)",fontsize=16,color="magenta"];3083 -> 3273[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3084[label="GT",fontsize=16,color="green",shape="box"];3085[label="LT",fontsize=16,color="green",shape="box"];3086[label="EQ",fontsize=16,color="green",shape="box"];3087[label="EQ",fontsize=16,color="green",shape="box"];3088[label="primCmpDouble (Double xuu33000 (Pos xuu330010)) xuu3400",fontsize=16,color="burlywood",shape="box"];4558[label="xuu3400/Double xuu34000 xuu34001",fontsize=10,color="white",style="solid",shape="box"];3088 -> 4558[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4558 -> 3274[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 3089[label="primCmpDouble (Double xuu33000 (Neg xuu330010)) xuu3400",fontsize=16,color="burlywood",shape="box"];4559[label="xuu3400/Double xuu34000 xuu34001",fontsize=10,color="white",style="solid",shape="box"];3089 -> 4559[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4559 -> 3275[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 3090[label="primCmpFloat (Float xuu33000 (Pos xuu330010)) xuu3400",fontsize=16,color="burlywood",shape="box"];4560[label="xuu3400/Float xuu34000 xuu34001",fontsize=10,color="white",style="solid",shape="box"];3090 -> 4560[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4560 -> 3276[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 3091[label="primCmpFloat (Float xuu33000 (Neg xuu330010)) xuu3400",fontsize=16,color="burlywood",shape="box"];4561[label="xuu3400/Float xuu34000 xuu34001",fontsize=10,color="white",style="solid",shape="box"];3091 -> 4561[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4561 -> 3277[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 3092[label="xuu33000",fontsize=16,color="green",shape="box"];3093[label="xuu34000",fontsize=16,color="green",shape="box"];3094[label="xuu33000",fontsize=16,color="green",shape="box"];3095[label="xuu34000",fontsize=16,color="green",shape="box"];3096[label="xuu33000",fontsize=16,color="green",shape="box"];3097[label="xuu34000",fontsize=16,color="green",shape="box"];3098[label="xuu33000",fontsize=16,color="green",shape="box"];3099[label="xuu34000",fontsize=16,color="green",shape="box"];3100[label="xuu33000",fontsize=16,color="green",shape="box"];3101[label="xuu34000",fontsize=16,color="green",shape="box"];3102[label="xuu33000",fontsize=16,color="green",shape="box"];3103[label="xuu34000",fontsize=16,color="green",shape="box"];3104[label="xuu33000",fontsize=16,color="green",shape="box"];3105[label="xuu34000",fontsize=16,color="green",shape="box"];3106[label="xuu33000",fontsize=16,color="green",shape="box"];3107[label="xuu34000",fontsize=16,color="green",shape="box"];3108[label="xuu33000",fontsize=16,color="green",shape="box"];3109[label="xuu34000",fontsize=16,color="green",shape="box"];3110[label="xuu33000",fontsize=16,color="green",shape="box"];3111[label="xuu34000",fontsize=16,color="green",shape="box"];3112[label="xuu33000",fontsize=16,color="green",shape="box"];3113[label="xuu34000",fontsize=16,color="green",shape="box"];3114[label="xuu33000",fontsize=16,color="green",shape="box"];3115[label="xuu34000",fontsize=16,color="green",shape="box"];3116[label="xuu33000",fontsize=16,color="green",shape="box"];3117[label="xuu34000",fontsize=16,color="green",shape="box"];3118[label="xuu33000",fontsize=16,color="green",shape="box"];3119[label="xuu34000",fontsize=16,color="green",shape="box"];3120[label="xuu33000",fontsize=16,color="green",shape="box"];3121[label="xuu34000",fontsize=16,color="green",shape="box"];3122[label="xuu33000",fontsize=16,color="green",shape="box"];3123[label="xuu34000",fontsize=16,color="green",shape="box"];3124[label="xuu33000",fontsize=16,color="green",shape="box"];3125[label="xuu34000",fontsize=16,color="green",shape="box"];3126[label="xuu33000",fontsize=16,color="green",shape="box"];3127[label="xuu34000",fontsize=16,color="green",shape="box"];3128[label="xuu33000",fontsize=16,color="green",shape="box"];3129[label="xuu34000",fontsize=16,color="green",shape="box"];3130[label="xuu33000",fontsize=16,color="green",shape="box"];3131[label="xuu34000",fontsize=16,color="green",shape="box"];3132[label="xuu33000",fontsize=16,color="green",shape="box"];3133[label="xuu34000",fontsize=16,color="green",shape="box"];3134[label="xuu33000",fontsize=16,color="green",shape="box"];3135[label="xuu34000",fontsize=16,color="green",shape="box"];3136[label="xuu33000",fontsize=16,color="green",shape="box"];3137[label="xuu34000",fontsize=16,color="green",shape="box"];3138[label="xuu33000",fontsize=16,color="green",shape="box"];3139[label="xuu34000",fontsize=16,color="green",shape="box"];3140[label="xuu33000",fontsize=16,color="green",shape="box"];3141[label="xuu34000",fontsize=16,color="green",shape="box"];3142[label="xuu33000",fontsize=16,color="green",shape="box"];3143[label="xuu34000",fontsize=16,color="green",shape="box"];3144[label="xuu33000",fontsize=16,color="green",shape="box"];3145[label="xuu34000",fontsize=16,color="green",shape="box"];3146[label="xuu33000",fontsize=16,color="green",shape="box"];3147[label="xuu34000",fontsize=16,color="green",shape="box"];1491[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1492 -> 1714[label="",style="dashed", color="red", weight=0]; 26.44/10.90 1492[label="primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r (Just xuu400) xuu41 xuu44 FiniteMap.EmptyFM)",fontsize=16,color="magenta"];1492 -> 1719[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1492 -> 1720[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1493[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1494 -> 1714[label="",style="dashed", color="red", weight=0]; 26.44/10.90 1494[label="primPlusInt xuu282 (FiniteMap.mkBalBranch6Size_r (Just xuu400) xuu41 xuu44 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284))",fontsize=16,color="magenta"];1494 -> 1721[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1709[label="xuu28",fontsize=16,color="green",shape="box"];1523 -> 1514[label="",style="dashed", color="red", weight=0]; 26.44/10.90 1523[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1524 -> 1503[label="",style="dashed", color="red", weight=0]; 26.44/10.90 1524[label="FiniteMap.mkBalBranch6Size_r (Just xuu400) xuu41 xuu44 xuu28",fontsize=16,color="magenta"];1546[label="FiniteMap.mkBalBranch6MkBalBranch2 (Just xuu400) xuu41 xuu44 xuu28 (Just xuu400) xuu41 xuu28 xuu44 otherwise",fontsize=16,color="black",shape="box"];1546 -> 1732[label="",style="solid", color="black", weight=3]; 26.44/10.90 1547[label="FiniteMap.mkBalBranch6MkBalBranch1 (Just xuu400) xuu41 xuu44 xuu28 xuu28 xuu44 xuu28",fontsize=16,color="burlywood",shape="box"];4562[label="xuu28/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1547 -> 4562[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4562 -> 1733[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4563[label="xuu28/FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284",fontsize=10,color="white",style="solid",shape="box"];1547 -> 4563[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4563 -> 1734[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 1525 -> 1735[label="",style="dashed", color="red", weight=0]; 26.44/10.90 1525[label="FiniteMap.mkBalBranch6MkBalBranch01 (Just xuu400) xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu28 xuu28 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu440 xuu441 xuu442 xuu443 xuu444 (FiniteMap.sizeFM xuu443 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu444)",fontsize=16,color="magenta"];1525 -> 1736[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 4046 -> 1714[label="",style="dashed", color="red", weight=0]; 26.44/10.90 4046[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu208 xuu205 xuu207) (FiniteMap.mkBranchRight_size xuu208 xuu205 xuu207)",fontsize=16,color="magenta"];4046 -> 4047[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 4046 -> 4048[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1527[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1528 -> 1714[label="",style="dashed", color="red", weight=0]; 26.44/10.90 1528[label="primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r Nothing xuu41 xuu44 FiniteMap.EmptyFM)",fontsize=16,color="magenta"];1528 -> 1724[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1528 -> 1725[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1529[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1530 -> 1714[label="",style="dashed", color="red", weight=0]; 26.44/10.90 1530[label="primPlusInt xuu362 (FiniteMap.mkBalBranch6Size_r Nothing xuu41 xuu44 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364))",fontsize=16,color="magenta"];1530 -> 1726[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1530 -> 1727[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1710 -> 1514[label="",style="dashed", color="red", weight=0]; 26.44/10.90 1710[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1711 -> 1505[label="",style="dashed", color="red", weight=0]; 26.44/10.90 1711[label="FiniteMap.mkBalBranch6Size_r Nothing xuu41 xuu44 xuu36",fontsize=16,color="magenta"];1712[label="FiniteMap.mkBalBranch6MkBalBranch2 Nothing xuu41 xuu44 xuu36 Nothing xuu41 xuu36 xuu44 otherwise",fontsize=16,color="black",shape="box"];1712 -> 1741[label="",style="solid", color="black", weight=3]; 26.44/10.90 1713[label="FiniteMap.mkBalBranch6MkBalBranch1 Nothing xuu41 xuu44 xuu36 xuu36 xuu44 xuu36",fontsize=16,color="burlywood",shape="box"];4564[label="xuu36/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1713 -> 4564[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4564 -> 1742[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4565[label="xuu36/FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364",fontsize=10,color="white",style="solid",shape="box"];1713 -> 4565[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4565 -> 1743[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 1548 -> 1744[label="",style="dashed", color="red", weight=0]; 26.44/10.90 1548[label="FiniteMap.mkBalBranch6MkBalBranch01 Nothing xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu36 xuu36 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu440 xuu441 xuu442 xuu443 xuu444 (FiniteMap.sizeFM xuu443 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu444)",fontsize=16,color="magenta"];1548 -> 1745[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1386[label="primMulNat xuu500010 xuu40000",fontsize=16,color="burlywood",shape="triangle"];4566[label="xuu500010/Succ xuu5000100",fontsize=10,color="white",style="solid",shape="box"];1386 -> 4566[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4566 -> 1550[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 4567[label="xuu500010/Zero",fontsize=10,color="white",style="solid",shape="box"];1386 -> 4567[label="",style="solid", color="burlywood", weight=9]; 26.44/10.90 4567 -> 1551[label="",style="solid", color="burlywood", weight=3]; 26.44/10.90 1387 -> 1386[label="",style="dashed", color="red", weight=0]; 26.44/10.90 1387[label="primMulNat xuu500010 xuu40000",fontsize=16,color="magenta"];1387 -> 1552[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1388 -> 1386[label="",style="dashed", color="red", weight=0]; 26.44/10.90 1388[label="primMulNat xuu500010 xuu40000",fontsize=16,color="magenta"];1388 -> 1553[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1389 -> 1386[label="",style="dashed", color="red", weight=0]; 26.44/10.90 1389[label="primMulNat xuu500010 xuu40000",fontsize=16,color="magenta"];1389 -> 1554[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 1389 -> 1555[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3148 -> 2880[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3148[label="compare (xuu33000 * xuu34001) (xuu34000 * xuu33001)",fontsize=16,color="magenta"];3148 -> 3278[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3148 -> 3279[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3149 -> 1183[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3149[label="compare (xuu33000 * xuu34001) (xuu34000 * xuu33001)",fontsize=16,color="magenta"];3149 -> 3280[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3149 -> 3281[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3150[label="True",fontsize=16,color="green",shape="box"];3151[label="False",fontsize=16,color="green",shape="box"];3180 -> 2545[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3180[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3180 -> 3282[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3180 -> 3283[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3181 -> 2546[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3181[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3181 -> 3284[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3181 -> 3285[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3182 -> 2547[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3182[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3182 -> 3286[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3182 -> 3287[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3183 -> 2548[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3183[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3183 -> 3288[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3183 -> 3289[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3184 -> 2549[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3184[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3184 -> 3290[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3184 -> 3291[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3185 -> 2550[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3185[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3185 -> 3292[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3185 -> 3293[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3186 -> 2551[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3186[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3186 -> 3294[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3186 -> 3295[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3187 -> 2552[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3187[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3187 -> 3296[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3187 -> 3297[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3188 -> 2553[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3188[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3188 -> 3298[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3188 -> 3299[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3189 -> 2554[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3189[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3189 -> 3300[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3189 -> 3301[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3190 -> 2555[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3190[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3190 -> 3302[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3190 -> 3303[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3191 -> 2556[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3191[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3191 -> 3304[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3191 -> 3305[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3192 -> 2557[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3192[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3192 -> 3306[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3192 -> 3307[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3193 -> 2558[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3193[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3193 -> 3308[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3193 -> 3309[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3194 -> 2048[label="",style="dashed", color="red", weight=0]; 26.44/10.90 3194[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3194 -> 3310[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3194 -> 3311[label="",style="dashed", color="magenta", weight=3]; 26.44/10.90 3195 -> 2041[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3195[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3195 -> 3312[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3195 -> 3313[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3196 -> 2043[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3196[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3196 -> 3314[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3196 -> 3315[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3197 -> 2049[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3197[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3197 -> 3316[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3197 -> 3317[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3198 -> 2044[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3198[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3198 -> 3318[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3198 -> 3319[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3199 -> 2038[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3199[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3199 -> 3320[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3199 -> 3321[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3200 -> 61[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3200[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3200 -> 3322[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3200 -> 3323[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3201 -> 2051[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3201[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3201 -> 3324[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3201 -> 3325[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3202 -> 2047[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3202[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3202 -> 3326[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3202 -> 3327[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3203 -> 2046[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3203[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3203 -> 3328[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3203 -> 3329[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3204 -> 2050[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3204[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3204 -> 3330[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3204 -> 3331[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3205 -> 2040[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3205[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3205 -> 3332[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3205 -> 3333[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3206 -> 2042[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3206[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3206 -> 3334[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3206 -> 3335[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3207 -> 2039[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3207[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3207 -> 3336[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3207 -> 3337[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3208 -> 61[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3208[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3208 -> 3338[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3208 -> 3339[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3209 -> 61[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3209[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3209 -> 3340[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3209 -> 3341[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3210 -> 61[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3210[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3210 -> 3342[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3210 -> 3343[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3211 -> 61[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3211[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3211 -> 3344[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3211 -> 3345[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3212 -> 61[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3212[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3212 -> 3346[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3212 -> 3347[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3213 -> 61[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3213[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3213 -> 3348[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3213 -> 3349[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3214 -> 61[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3214[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3214 -> 3350[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3214 -> 3351[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3215[label="xuu33000",fontsize=16,color="green",shape="box"];3216[label="xuu34000",fontsize=16,color="green",shape="box"];1270[label="xuu330 < xuu340",fontsize=16,color="black",shape="triangle"];1270 -> 1398[label="",style="solid", color="black", weight=3]; 26.44/10.91 3217 -> 61[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3217[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3217 -> 3352[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3217 -> 3353[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3218 -> 61[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3218[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3218 -> 3354[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3218 -> 3355[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3219 -> 61[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3219[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3219 -> 3356[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3219 -> 3357[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3220 -> 61[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3220[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3220 -> 3358[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3220 -> 3359[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3221 -> 61[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3221[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3221 -> 3360[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3221 -> 3361[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3222 -> 61[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3222[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3222 -> 3362[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3222 -> 3363[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3223[label="xuu161",fontsize=16,color="green",shape="box"];3224[label="True",fontsize=16,color="green",shape="box"];3225 -> 2421[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3225[label="xuu33001 == xuu34001 && xuu33002 <= xuu34002",fontsize=16,color="magenta"];3225 -> 3364[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3225 -> 3365[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3226[label="xuu33001 < xuu34001",fontsize=16,color="blue",shape="box"];4568[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3226 -> 4568[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4568 -> 3366[label="",style="solid", color="blue", weight=3]; 26.44/10.91 4569[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3226 -> 4569[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4569 -> 3367[label="",style="solid", color="blue", weight=3]; 26.44/10.91 4570[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3226 -> 4570[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4570 -> 3368[label="",style="solid", color="blue", weight=3]; 26.44/10.91 4571[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3226 -> 4571[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4571 -> 3369[label="",style="solid", color="blue", weight=3]; 26.44/10.91 4572[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3226 -> 4572[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4572 -> 3370[label="",style="solid", color="blue", weight=3]; 26.44/10.91 4573[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3226 -> 4573[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4573 -> 3371[label="",style="solid", color="blue", weight=3]; 26.44/10.91 4574[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3226 -> 4574[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4574 -> 3372[label="",style="solid", color="blue", weight=3]; 26.44/10.91 4575[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3226 -> 4575[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4575 -> 3373[label="",style="solid", color="blue", weight=3]; 26.44/10.91 4576[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3226 -> 4576[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4576 -> 3374[label="",style="solid", color="blue", weight=3]; 26.44/10.91 4577[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3226 -> 4577[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4577 -> 3375[label="",style="solid", color="blue", weight=3]; 26.44/10.91 4578[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3226 -> 4578[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4578 -> 3376[label="",style="solid", color="blue", weight=3]; 26.44/10.91 4579[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3226 -> 4579[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4579 -> 3377[label="",style="solid", color="blue", weight=3]; 26.44/10.91 4580[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3226 -> 4580[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4580 -> 3378[label="",style="solid", color="blue", weight=3]; 26.44/10.91 4581[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3226 -> 4581[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4581 -> 3379[label="",style="solid", color="blue", weight=3]; 26.44/10.91 3227 -> 2048[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3227[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3227 -> 3380[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3227 -> 3381[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3228 -> 2041[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3228[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3228 -> 3382[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3228 -> 3383[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3229 -> 2043[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3229[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3229 -> 3384[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3229 -> 3385[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3230 -> 2049[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3230[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3230 -> 3386[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3230 -> 3387[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3231 -> 2044[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3231[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3231 -> 3388[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3231 -> 3389[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3232 -> 2038[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3232[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3232 -> 3390[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3232 -> 3391[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3233 -> 61[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3233[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3233 -> 3392[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3233 -> 3393[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3234 -> 2051[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3234[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3234 -> 3394[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3234 -> 3395[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3235 -> 2047[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3235[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3235 -> 3396[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3235 -> 3397[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3236 -> 2046[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3236[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3236 -> 3398[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3236 -> 3399[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3237 -> 2050[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3237[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3237 -> 3400[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3237 -> 3401[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3238 -> 2040[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3238[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3238 -> 3402[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3238 -> 3403[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3239 -> 2042[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3239[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3239 -> 3404[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3239 -> 3405[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3240 -> 2039[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3240[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3240 -> 3406[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3240 -> 3407[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3241[label="xuu34000",fontsize=16,color="green",shape="box"];3242[label="xuu33000",fontsize=16,color="green",shape="box"];3243[label="xuu34000",fontsize=16,color="green",shape="box"];3244[label="xuu33000",fontsize=16,color="green",shape="box"];3245[label="xuu34000",fontsize=16,color="green",shape="box"];3246[label="xuu33000",fontsize=16,color="green",shape="box"];3247[label="xuu34000",fontsize=16,color="green",shape="box"];3248[label="xuu33000",fontsize=16,color="green",shape="box"];3249[label="xuu34000",fontsize=16,color="green",shape="box"];3250[label="xuu33000",fontsize=16,color="green",shape="box"];3251[label="xuu34000",fontsize=16,color="green",shape="box"];3252[label="xuu33000",fontsize=16,color="green",shape="box"];3253[label="xuu34000",fontsize=16,color="green",shape="box"];3254[label="xuu33000",fontsize=16,color="green",shape="box"];3255[label="xuu33000",fontsize=16,color="green",shape="box"];3256[label="xuu34000",fontsize=16,color="green",shape="box"];3257[label="xuu34000",fontsize=16,color="green",shape="box"];3258[label="xuu33000",fontsize=16,color="green",shape="box"];3259[label="xuu34000",fontsize=16,color="green",shape="box"];3260[label="xuu33000",fontsize=16,color="green",shape="box"];3261[label="xuu34000",fontsize=16,color="green",shape="box"];3262[label="xuu33000",fontsize=16,color="green",shape="box"];3263[label="xuu34000",fontsize=16,color="green",shape="box"];3264[label="xuu33000",fontsize=16,color="green",shape="box"];3265[label="xuu34000",fontsize=16,color="green",shape="box"];3266[label="xuu33000",fontsize=16,color="green",shape="box"];3267[label="xuu34000",fontsize=16,color="green",shape="box"];3268[label="xuu33000",fontsize=16,color="green",shape="box"];3269[label="xuu34000",fontsize=16,color="green",shape="box"];3270[label="xuu33000",fontsize=16,color="green",shape="box"];3271 -> 2231[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3271[label="primCmpNat xuu33000 xuu34000",fontsize=16,color="magenta"];3271 -> 3408[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3271 -> 3409[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 1687[label="primCmpInt (Pos (Succ xuu3300)) xuu34",fontsize=16,color="burlywood",shape="box"];4582[label="xuu34/Pos xuu340",fontsize=10,color="white",style="solid",shape="box"];1687 -> 4582[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4582 -> 1835[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 4583[label="xuu34/Neg xuu340",fontsize=10,color="white",style="solid",shape="box"];1687 -> 4583[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4583 -> 1836[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 1688[label="primCmpInt (Pos Zero) xuu34",fontsize=16,color="burlywood",shape="box"];4584[label="xuu34/Pos xuu340",fontsize=10,color="white",style="solid",shape="box"];1688 -> 4584[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4584 -> 1837[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 4585[label="xuu34/Neg xuu340",fontsize=10,color="white",style="solid",shape="box"];1688 -> 4585[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4585 -> 1838[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 1689[label="primCmpInt (Neg (Succ xuu3300)) xuu34",fontsize=16,color="burlywood",shape="box"];4586[label="xuu34/Pos xuu340",fontsize=10,color="white",style="solid",shape="box"];1689 -> 4586[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4586 -> 1839[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 4587[label="xuu34/Neg xuu340",fontsize=10,color="white",style="solid",shape="box"];1689 -> 4587[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4587 -> 1840[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 1690[label="primCmpInt (Neg Zero) xuu34",fontsize=16,color="burlywood",shape="box"];4588[label="xuu34/Pos xuu340",fontsize=10,color="white",style="solid",shape="box"];1690 -> 4588[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4588 -> 1841[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 4589[label="xuu34/Neg xuu340",fontsize=10,color="white",style="solid",shape="box"];1690 -> 4589[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4589 -> 1842[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 3273 -> 2883[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3273[label="compare xuu33001 xuu34001",fontsize=16,color="magenta"];3273 -> 3410[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3273 -> 3411[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3272[label="primCompAux xuu33000 xuu34000 xuu172",fontsize=16,color="black",shape="triangle"];3272 -> 3412[label="",style="solid", color="black", weight=3]; 26.44/10.91 3274[label="primCmpDouble (Double xuu33000 (Pos xuu330010)) (Double xuu34000 xuu34001)",fontsize=16,color="burlywood",shape="box"];4590[label="xuu34001/Pos xuu340010",fontsize=10,color="white",style="solid",shape="box"];3274 -> 4590[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4590 -> 3431[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 4591[label="xuu34001/Neg xuu340010",fontsize=10,color="white",style="solid",shape="box"];3274 -> 4591[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4591 -> 3432[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 3275[label="primCmpDouble (Double xuu33000 (Neg xuu330010)) (Double xuu34000 xuu34001)",fontsize=16,color="burlywood",shape="box"];4592[label="xuu34001/Pos xuu340010",fontsize=10,color="white",style="solid",shape="box"];3275 -> 4592[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4592 -> 3433[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 4593[label="xuu34001/Neg xuu340010",fontsize=10,color="white",style="solid",shape="box"];3275 -> 4593[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4593 -> 3434[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 3276[label="primCmpFloat (Float xuu33000 (Pos xuu330010)) (Float xuu34000 xuu34001)",fontsize=16,color="burlywood",shape="box"];4594[label="xuu34001/Pos xuu340010",fontsize=10,color="white",style="solid",shape="box"];3276 -> 4594[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4594 -> 3435[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 4595[label="xuu34001/Neg xuu340010",fontsize=10,color="white",style="solid",shape="box"];3276 -> 4595[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4595 -> 3436[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 3277[label="primCmpFloat (Float xuu33000 (Neg xuu330010)) (Float xuu34000 xuu34001)",fontsize=16,color="burlywood",shape="box"];4596[label="xuu34001/Pos xuu340010",fontsize=10,color="white",style="solid",shape="box"];3277 -> 4596[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4596 -> 3437[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 4597[label="xuu34001/Neg xuu340010",fontsize=10,color="white",style="solid",shape="box"];3277 -> 4597[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4597 -> 3438[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 1719[label="Pos Zero",fontsize=16,color="green",shape="box"];1720 -> 1503[label="",style="dashed", color="red", weight=0]; 26.44/10.91 1720[label="FiniteMap.mkBalBranch6Size_r (Just xuu400) xuu41 xuu44 FiniteMap.EmptyFM",fontsize=16,color="magenta"];1720 -> 1849[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 1714[label="primPlusInt xuu282 xuu96",fontsize=16,color="burlywood",shape="triangle"];4598[label="xuu282/Pos xuu2820",fontsize=10,color="white",style="solid",shape="box"];1714 -> 4598[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4598 -> 1739[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 4599[label="xuu282/Neg xuu2820",fontsize=10,color="white",style="solid",shape="box"];1714 -> 4599[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4599 -> 1740[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 1721 -> 1503[label="",style="dashed", color="red", weight=0]; 26.44/10.91 1721[label="FiniteMap.mkBalBranch6Size_r (Just xuu400) xuu41 xuu44 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284)",fontsize=16,color="magenta"];1721 -> 1850[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 1732[label="FiniteMap.mkBalBranch6MkBalBranch2 (Just xuu400) xuu41 xuu44 xuu28 (Just xuu400) xuu41 xuu28 xuu44 True",fontsize=16,color="black",shape="box"];1732 -> 1851[label="",style="solid", color="black", weight=3]; 26.44/10.91 1733[label="FiniteMap.mkBalBranch6MkBalBranch1 (Just xuu400) xuu41 xuu44 FiniteMap.EmptyFM FiniteMap.EmptyFM xuu44 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1733 -> 1852[label="",style="solid", color="black", weight=3]; 26.44/10.91 1734[label="FiniteMap.mkBalBranch6MkBalBranch1 (Just xuu400) xuu41 xuu44 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu44 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284)",fontsize=16,color="black",shape="box"];1734 -> 1853[label="",style="solid", color="black", weight=3]; 26.44/10.91 1736 -> 1270[label="",style="dashed", color="red", weight=0]; 26.44/10.91 1736[label="FiniteMap.sizeFM xuu443 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu444",fontsize=16,color="magenta"];1736 -> 1854[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 1736 -> 1855[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 1735[label="FiniteMap.mkBalBranch6MkBalBranch01 (Just xuu400) xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu28 xuu28 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu440 xuu441 xuu442 xuu443 xuu444 xuu97",fontsize=16,color="burlywood",shape="triangle"];4600[label="xuu97/False",fontsize=10,color="white",style="solid",shape="box"];1735 -> 4600[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4600 -> 1856[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 4601[label="xuu97/True",fontsize=10,color="white",style="solid",shape="box"];1735 -> 4601[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4601 -> 1857[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 4047[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu208 xuu205 xuu207",fontsize=16,color="black",shape="box"];4047 -> 4049[label="",style="solid", color="black", weight=3]; 26.44/10.91 4048[label="FiniteMap.mkBranchRight_size xuu208 xuu205 xuu207",fontsize=16,color="black",shape="box"];4048 -> 4050[label="",style="solid", color="black", weight=3]; 26.44/10.91 1724[label="Pos Zero",fontsize=16,color="green",shape="box"];1725 -> 1505[label="",style="dashed", color="red", weight=0]; 26.44/10.91 1725[label="FiniteMap.mkBalBranch6Size_r Nothing xuu41 xuu44 FiniteMap.EmptyFM",fontsize=16,color="magenta"];1725 -> 1864[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 1726[label="xuu362",fontsize=16,color="green",shape="box"];1727 -> 1505[label="",style="dashed", color="red", weight=0]; 26.44/10.91 1727[label="FiniteMap.mkBalBranch6Size_r Nothing xuu41 xuu44 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364)",fontsize=16,color="magenta"];1727 -> 1865[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 1741[label="FiniteMap.mkBalBranch6MkBalBranch2 Nothing xuu41 xuu44 xuu36 Nothing xuu41 xuu36 xuu44 True",fontsize=16,color="black",shape="box"];1741 -> 1866[label="",style="solid", color="black", weight=3]; 26.44/10.91 1742[label="FiniteMap.mkBalBranch6MkBalBranch1 Nothing xuu41 xuu44 FiniteMap.EmptyFM FiniteMap.EmptyFM xuu44 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1742 -> 1867[label="",style="solid", color="black", weight=3]; 26.44/10.91 1743[label="FiniteMap.mkBalBranch6MkBalBranch1 Nothing xuu41 xuu44 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu44 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364)",fontsize=16,color="black",shape="box"];1743 -> 1868[label="",style="solid", color="black", weight=3]; 26.44/10.91 1745 -> 1270[label="",style="dashed", color="red", weight=0]; 26.44/10.91 1745[label="FiniteMap.sizeFM xuu443 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu444",fontsize=16,color="magenta"];1745 -> 1869[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 1745 -> 1870[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 1744[label="FiniteMap.mkBalBranch6MkBalBranch01 Nothing xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu36 xuu36 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu440 xuu441 xuu442 xuu443 xuu444 xuu101",fontsize=16,color="burlywood",shape="triangle"];4602[label="xuu101/False",fontsize=10,color="white",style="solid",shape="box"];1744 -> 4602[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4602 -> 1871[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 4603[label="xuu101/True",fontsize=10,color="white",style="solid",shape="box"];1744 -> 4603[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4603 -> 1872[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 1550[label="primMulNat (Succ xuu5000100) xuu40000",fontsize=16,color="burlywood",shape="box"];4604[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];1550 -> 4604[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4604 -> 1748[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 4605[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1550 -> 4605[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4605 -> 1749[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 1551[label="primMulNat Zero xuu40000",fontsize=16,color="burlywood",shape="box"];4606[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];1551 -> 4606[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4606 -> 1750[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 4607[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1551 -> 4607[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4607 -> 1751[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 1552[label="xuu40000",fontsize=16,color="green",shape="box"];1553[label="xuu500010",fontsize=16,color="green",shape="box"];1554[label="xuu40000",fontsize=16,color="green",shape="box"];1555[label="xuu500010",fontsize=16,color="green",shape="box"];3278[label="xuu33000 * xuu34001",fontsize=16,color="burlywood",shape="triangle"];4608[label="xuu33000/Integer xuu330000",fontsize=10,color="white",style="solid",shape="box"];3278 -> 4608[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4608 -> 3439[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 3279 -> 3278[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3279[label="xuu34000 * xuu33001",fontsize=16,color="magenta"];3279 -> 3440[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3279 -> 3441[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3280 -> 581[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3280[label="xuu34000 * xuu33001",fontsize=16,color="magenta"];3280 -> 3442[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3280 -> 3443[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3281 -> 581[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3281[label="xuu33000 * xuu34001",fontsize=16,color="magenta"];3281 -> 3444[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3281 -> 3445[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3282[label="xuu33001",fontsize=16,color="green",shape="box"];3283[label="xuu34001",fontsize=16,color="green",shape="box"];3284[label="xuu33001",fontsize=16,color="green",shape="box"];3285[label="xuu34001",fontsize=16,color="green",shape="box"];3286[label="xuu33001",fontsize=16,color="green",shape="box"];3287[label="xuu34001",fontsize=16,color="green",shape="box"];3288[label="xuu33001",fontsize=16,color="green",shape="box"];3289[label="xuu34001",fontsize=16,color="green",shape="box"];3290[label="xuu33001",fontsize=16,color="green",shape="box"];3291[label="xuu34001",fontsize=16,color="green",shape="box"];3292[label="xuu33001",fontsize=16,color="green",shape="box"];3293[label="xuu34001",fontsize=16,color="green",shape="box"];3294[label="xuu33001",fontsize=16,color="green",shape="box"];3295[label="xuu34001",fontsize=16,color="green",shape="box"];3296[label="xuu33001",fontsize=16,color="green",shape="box"];3297[label="xuu34001",fontsize=16,color="green",shape="box"];3298[label="xuu33001",fontsize=16,color="green",shape="box"];3299[label="xuu34001",fontsize=16,color="green",shape="box"];3300[label="xuu33001",fontsize=16,color="green",shape="box"];3301[label="xuu34001",fontsize=16,color="green",shape="box"];3302[label="xuu33001",fontsize=16,color="green",shape="box"];3303[label="xuu34001",fontsize=16,color="green",shape="box"];3304[label="xuu33001",fontsize=16,color="green",shape="box"];3305[label="xuu34001",fontsize=16,color="green",shape="box"];3306[label="xuu33001",fontsize=16,color="green",shape="box"];3307[label="xuu34001",fontsize=16,color="green",shape="box"];3308[label="xuu33001",fontsize=16,color="green",shape="box"];3309[label="xuu34001",fontsize=16,color="green",shape="box"];3310[label="xuu34000",fontsize=16,color="green",shape="box"];3311[label="xuu33000",fontsize=16,color="green",shape="box"];3312[label="xuu34000",fontsize=16,color="green",shape="box"];3313[label="xuu33000",fontsize=16,color="green",shape="box"];3314[label="xuu34000",fontsize=16,color="green",shape="box"];3315[label="xuu33000",fontsize=16,color="green",shape="box"];3316[label="xuu34000",fontsize=16,color="green",shape="box"];3317[label="xuu33000",fontsize=16,color="green",shape="box"];3318[label="xuu34000",fontsize=16,color="green",shape="box"];3319[label="xuu33000",fontsize=16,color="green",shape="box"];3320[label="xuu34000",fontsize=16,color="green",shape="box"];3321[label="xuu33000",fontsize=16,color="green",shape="box"];3322[label="xuu34000",fontsize=16,color="green",shape="box"];3323[label="xuu33000",fontsize=16,color="green",shape="box"];3324[label="xuu34000",fontsize=16,color="green",shape="box"];3325[label="xuu33000",fontsize=16,color="green",shape="box"];3326[label="xuu34000",fontsize=16,color="green",shape="box"];3327[label="xuu33000",fontsize=16,color="green",shape="box"];3328[label="xuu34000",fontsize=16,color="green",shape="box"];3329[label="xuu33000",fontsize=16,color="green",shape="box"];3330[label="xuu34000",fontsize=16,color="green",shape="box"];3331[label="xuu33000",fontsize=16,color="green",shape="box"];3332[label="xuu34000",fontsize=16,color="green",shape="box"];3333[label="xuu33000",fontsize=16,color="green",shape="box"];3334[label="xuu34000",fontsize=16,color="green",shape="box"];3335[label="xuu33000",fontsize=16,color="green",shape="box"];3336[label="xuu34000",fontsize=16,color="green",shape="box"];3337[label="xuu33000",fontsize=16,color="green",shape="box"];3338[label="LT",fontsize=16,color="green",shape="box"];3339 -> 2879[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3339[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3339 -> 3446[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3339 -> 3447[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3340[label="LT",fontsize=16,color="green",shape="box"];3341[label="compare xuu33000 xuu34000",fontsize=16,color="black",shape="triangle"];3341 -> 3448[label="",style="solid", color="black", weight=3]; 26.44/10.91 3342[label="LT",fontsize=16,color="green",shape="box"];3343[label="compare xuu33000 xuu34000",fontsize=16,color="black",shape="triangle"];3343 -> 3449[label="",style="solid", color="black", weight=3]; 26.44/10.91 3344[label="LT",fontsize=16,color="green",shape="box"];3345[label="compare xuu33000 xuu34000",fontsize=16,color="black",shape="triangle"];3345 -> 3450[label="",style="solid", color="black", weight=3]; 26.44/10.91 3346[label="LT",fontsize=16,color="green",shape="box"];3347 -> 2880[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3347[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3347 -> 3451[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3347 -> 3452[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3348[label="LT",fontsize=16,color="green",shape="box"];3349 -> 2881[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3349[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3349 -> 3453[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3349 -> 3454[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3350[label="LT",fontsize=16,color="green",shape="box"];3351[label="compare xuu33000 xuu34000",fontsize=16,color="black",shape="triangle"];3351 -> 3455[label="",style="solid", color="black", weight=3]; 26.44/10.91 1398 -> 61[label="",style="dashed", color="red", weight=0]; 26.44/10.91 1398[label="compare xuu330 xuu340 == LT",fontsize=16,color="magenta"];1398 -> 1571[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 1398 -> 1572[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3352[label="LT",fontsize=16,color="green",shape="box"];3353[label="compare xuu33000 xuu34000",fontsize=16,color="black",shape="triangle"];3353 -> 3456[label="",style="solid", color="black", weight=3]; 26.44/10.91 3354[label="LT",fontsize=16,color="green",shape="box"];3355 -> 2883[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3355[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3355 -> 3457[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3355 -> 3458[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3356[label="LT",fontsize=16,color="green",shape="box"];3357 -> 2884[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3357[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3357 -> 3459[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3357 -> 3460[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3358[label="LT",fontsize=16,color="green",shape="box"];3359 -> 2885[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3359[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3359 -> 3461[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3359 -> 3462[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3360[label="LT",fontsize=16,color="green",shape="box"];3361 -> 2886[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3361[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3361 -> 3463[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3361 -> 3464[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3362[label="LT",fontsize=16,color="green",shape="box"];3363[label="compare xuu33000 xuu34000",fontsize=16,color="black",shape="triangle"];3363 -> 3465[label="",style="solid", color="black", weight=3]; 26.44/10.91 3364[label="xuu33002 <= xuu34002",fontsize=16,color="blue",shape="box"];4609[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3364 -> 4609[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4609 -> 3466[label="",style="solid", color="blue", weight=3]; 26.44/10.91 4610[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3364 -> 4610[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4610 -> 3467[label="",style="solid", color="blue", weight=3]; 26.44/10.91 4611[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3364 -> 4611[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4611 -> 3468[label="",style="solid", color="blue", weight=3]; 26.44/10.91 4612[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3364 -> 4612[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4612 -> 3469[label="",style="solid", color="blue", weight=3]; 26.44/10.91 4613[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3364 -> 4613[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4613 -> 3470[label="",style="solid", color="blue", weight=3]; 26.44/10.91 4614[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3364 -> 4614[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4614 -> 3471[label="",style="solid", color="blue", weight=3]; 26.44/10.91 4615[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3364 -> 4615[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4615 -> 3472[label="",style="solid", color="blue", weight=3]; 26.44/10.91 4616[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3364 -> 4616[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4616 -> 3473[label="",style="solid", color="blue", weight=3]; 26.44/10.91 4617[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3364 -> 4617[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4617 -> 3474[label="",style="solid", color="blue", weight=3]; 26.44/10.91 4618[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3364 -> 4618[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4618 -> 3475[label="",style="solid", color="blue", weight=3]; 26.44/10.91 4619[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3364 -> 4619[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4619 -> 3476[label="",style="solid", color="blue", weight=3]; 26.44/10.91 4620[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3364 -> 4620[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4620 -> 3477[label="",style="solid", color="blue", weight=3]; 26.44/10.91 4621[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3364 -> 4621[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4621 -> 3478[label="",style="solid", color="blue", weight=3]; 26.44/10.91 4622[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3364 -> 4622[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4622 -> 3479[label="",style="solid", color="blue", weight=3]; 26.44/10.91 3365[label="xuu33001 == xuu34001",fontsize=16,color="blue",shape="box"];4623[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3365 -> 4623[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4623 -> 3480[label="",style="solid", color="blue", weight=3]; 26.44/10.91 4624[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3365 -> 4624[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4624 -> 3481[label="",style="solid", color="blue", weight=3]; 26.44/10.91 4625[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3365 -> 4625[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4625 -> 3482[label="",style="solid", color="blue", weight=3]; 26.44/10.91 4626[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3365 -> 4626[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4626 -> 3483[label="",style="solid", color="blue", weight=3]; 26.44/10.91 4627[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3365 -> 4627[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4627 -> 3484[label="",style="solid", color="blue", weight=3]; 26.44/10.91 4628[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3365 -> 4628[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4628 -> 3485[label="",style="solid", color="blue", weight=3]; 26.44/10.91 4629[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3365 -> 4629[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4629 -> 3486[label="",style="solid", color="blue", weight=3]; 26.44/10.91 4630[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3365 -> 4630[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4630 -> 3487[label="",style="solid", color="blue", weight=3]; 26.44/10.91 4631[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3365 -> 4631[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4631 -> 3488[label="",style="solid", color="blue", weight=3]; 26.44/10.91 4632[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3365 -> 4632[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4632 -> 3489[label="",style="solid", color="blue", weight=3]; 26.44/10.91 4633[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3365 -> 4633[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4633 -> 3490[label="",style="solid", color="blue", weight=3]; 26.44/10.91 4634[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3365 -> 4634[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4634 -> 3491[label="",style="solid", color="blue", weight=3]; 26.44/10.91 4635[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3365 -> 4635[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4635 -> 3492[label="",style="solid", color="blue", weight=3]; 26.44/10.91 4636[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3365 -> 4636[label="",style="solid", color="blue", weight=9]; 26.44/10.91 4636 -> 3493[label="",style="solid", color="blue", weight=3]; 26.44/10.91 3366 -> 3021[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3366[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3366 -> 3494[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3366 -> 3495[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3367 -> 3022[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3367[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3367 -> 3496[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3367 -> 3497[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3368 -> 3023[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3368[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3368 -> 3498[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3368 -> 3499[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3369 -> 3024[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3369[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3369 -> 3500[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3369 -> 3501[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3370 -> 3025[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3370[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3370 -> 3502[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3370 -> 3503[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3371 -> 3026[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3371[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3371 -> 3504[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3371 -> 3505[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3372 -> 3027[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3372[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3372 -> 3506[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3372 -> 3507[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3373 -> 1270[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3373[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3373 -> 3508[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3373 -> 3509[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3374 -> 3029[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3374[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3374 -> 3510[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3374 -> 3511[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3375 -> 3030[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3375[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3375 -> 3512[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3375 -> 3513[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3376 -> 3031[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3376[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3376 -> 3514[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3376 -> 3515[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3377 -> 3032[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3377[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3377 -> 3516[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3377 -> 3517[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3378 -> 3033[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3378[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3378 -> 3518[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3378 -> 3519[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3379 -> 3034[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3379[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3379 -> 3520[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3379 -> 3521[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3380[label="xuu34000",fontsize=16,color="green",shape="box"];3381[label="xuu33000",fontsize=16,color="green",shape="box"];3382[label="xuu34000",fontsize=16,color="green",shape="box"];3383[label="xuu33000",fontsize=16,color="green",shape="box"];3384[label="xuu34000",fontsize=16,color="green",shape="box"];3385[label="xuu33000",fontsize=16,color="green",shape="box"];3386[label="xuu34000",fontsize=16,color="green",shape="box"];3387[label="xuu33000",fontsize=16,color="green",shape="box"];3388[label="xuu34000",fontsize=16,color="green",shape="box"];3389[label="xuu33000",fontsize=16,color="green",shape="box"];3390[label="xuu34000",fontsize=16,color="green",shape="box"];3391[label="xuu33000",fontsize=16,color="green",shape="box"];3392[label="xuu34000",fontsize=16,color="green",shape="box"];3393[label="xuu33000",fontsize=16,color="green",shape="box"];3394[label="xuu34000",fontsize=16,color="green",shape="box"];3395[label="xuu33000",fontsize=16,color="green",shape="box"];3396[label="xuu34000",fontsize=16,color="green",shape="box"];3397[label="xuu33000",fontsize=16,color="green",shape="box"];3398[label="xuu34000",fontsize=16,color="green",shape="box"];3399[label="xuu33000",fontsize=16,color="green",shape="box"];3400[label="xuu34000",fontsize=16,color="green",shape="box"];3401[label="xuu33000",fontsize=16,color="green",shape="box"];3402[label="xuu34000",fontsize=16,color="green",shape="box"];3403[label="xuu33000",fontsize=16,color="green",shape="box"];3404[label="xuu34000",fontsize=16,color="green",shape="box"];3405[label="xuu33000",fontsize=16,color="green",shape="box"];3406[label="xuu34000",fontsize=16,color="green",shape="box"];3407[label="xuu33000",fontsize=16,color="green",shape="box"];3408[label="xuu33000",fontsize=16,color="green",shape="box"];3409[label="xuu34000",fontsize=16,color="green",shape="box"];2231[label="primCmpNat xuu3300 xuu3400",fontsize=16,color="burlywood",shape="triangle"];4637[label="xuu3300/Succ xuu33000",fontsize=10,color="white",style="solid",shape="box"];2231 -> 4637[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4637 -> 2570[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 4638[label="xuu3300/Zero",fontsize=10,color="white",style="solid",shape="box"];2231 -> 4638[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4638 -> 2571[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 1835[label="primCmpInt (Pos (Succ xuu3300)) (Pos xuu340)",fontsize=16,color="black",shape="box"];1835 -> 1947[label="",style="solid", color="black", weight=3]; 26.44/10.91 1836[label="primCmpInt (Pos (Succ xuu3300)) (Neg xuu340)",fontsize=16,color="black",shape="box"];1836 -> 1948[label="",style="solid", color="black", weight=3]; 26.44/10.91 1837[label="primCmpInt (Pos Zero) (Pos xuu340)",fontsize=16,color="burlywood",shape="box"];4639[label="xuu340/Succ xuu3400",fontsize=10,color="white",style="solid",shape="box"];1837 -> 4639[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4639 -> 1949[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 4640[label="xuu340/Zero",fontsize=10,color="white",style="solid",shape="box"];1837 -> 4640[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4640 -> 1950[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 1838[label="primCmpInt (Pos Zero) (Neg xuu340)",fontsize=16,color="burlywood",shape="box"];4641[label="xuu340/Succ xuu3400",fontsize=10,color="white",style="solid",shape="box"];1838 -> 4641[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4641 -> 1951[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 4642[label="xuu340/Zero",fontsize=10,color="white",style="solid",shape="box"];1838 -> 4642[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4642 -> 1952[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 1839[label="primCmpInt (Neg (Succ xuu3300)) (Pos xuu340)",fontsize=16,color="black",shape="box"];1839 -> 1953[label="",style="solid", color="black", weight=3]; 26.44/10.91 1840[label="primCmpInt (Neg (Succ xuu3300)) (Neg xuu340)",fontsize=16,color="black",shape="box"];1840 -> 1954[label="",style="solid", color="black", weight=3]; 26.44/10.91 1841[label="primCmpInt (Neg Zero) (Pos xuu340)",fontsize=16,color="burlywood",shape="box"];4643[label="xuu340/Succ xuu3400",fontsize=10,color="white",style="solid",shape="box"];1841 -> 4643[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4643 -> 1955[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 4644[label="xuu340/Zero",fontsize=10,color="white",style="solid",shape="box"];1841 -> 4644[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4644 -> 1956[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 1842[label="primCmpInt (Neg Zero) (Neg xuu340)",fontsize=16,color="burlywood",shape="box"];4645[label="xuu340/Succ xuu3400",fontsize=10,color="white",style="solid",shape="box"];1842 -> 4645[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4645 -> 1957[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 4646[label="xuu340/Zero",fontsize=10,color="white",style="solid",shape="box"];1842 -> 4646[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4646 -> 1958[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 3410[label="xuu33001",fontsize=16,color="green",shape="box"];3411[label="xuu34001",fontsize=16,color="green",shape="box"];3412 -> 3522[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3412[label="primCompAux0 xuu172 (compare xuu33000 xuu34000)",fontsize=16,color="magenta"];3412 -> 3523[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3412 -> 3524[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3431[label="primCmpDouble (Double xuu33000 (Pos xuu330010)) (Double xuu34000 (Pos xuu340010))",fontsize=16,color="black",shape="box"];3431 -> 3527[label="",style="solid", color="black", weight=3]; 26.44/10.91 3432[label="primCmpDouble (Double xuu33000 (Pos xuu330010)) (Double xuu34000 (Neg xuu340010))",fontsize=16,color="black",shape="box"];3432 -> 3528[label="",style="solid", color="black", weight=3]; 26.44/10.91 3433[label="primCmpDouble (Double xuu33000 (Neg xuu330010)) (Double xuu34000 (Pos xuu340010))",fontsize=16,color="black",shape="box"];3433 -> 3529[label="",style="solid", color="black", weight=3]; 26.44/10.91 3434[label="primCmpDouble (Double xuu33000 (Neg xuu330010)) (Double xuu34000 (Neg xuu340010))",fontsize=16,color="black",shape="box"];3434 -> 3530[label="",style="solid", color="black", weight=3]; 26.44/10.91 3435[label="primCmpFloat (Float xuu33000 (Pos xuu330010)) (Float xuu34000 (Pos xuu340010))",fontsize=16,color="black",shape="box"];3435 -> 3531[label="",style="solid", color="black", weight=3]; 26.44/10.91 3436[label="primCmpFloat (Float xuu33000 (Pos xuu330010)) (Float xuu34000 (Neg xuu340010))",fontsize=16,color="black",shape="box"];3436 -> 3532[label="",style="solid", color="black", weight=3]; 26.44/10.91 3437[label="primCmpFloat (Float xuu33000 (Neg xuu330010)) (Float xuu34000 (Pos xuu340010))",fontsize=16,color="black",shape="box"];3437 -> 3533[label="",style="solid", color="black", weight=3]; 26.44/10.91 3438[label="primCmpFloat (Float xuu33000 (Neg xuu330010)) (Float xuu34000 (Neg xuu340010))",fontsize=16,color="black",shape="box"];3438 -> 3534[label="",style="solid", color="black", weight=3]; 26.44/10.91 1849[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];1739[label="primPlusInt (Pos xuu2820) xuu96",fontsize=16,color="burlywood",shape="box"];4647[label="xuu96/Pos xuu960",fontsize=10,color="white",style="solid",shape="box"];1739 -> 4647[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4647 -> 1860[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 4648[label="xuu96/Neg xuu960",fontsize=10,color="white",style="solid",shape="box"];1739 -> 4648[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4648 -> 1861[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 1740[label="primPlusInt (Neg xuu2820) xuu96",fontsize=16,color="burlywood",shape="box"];4649[label="xuu96/Pos xuu960",fontsize=10,color="white",style="solid",shape="box"];1740 -> 4649[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4649 -> 1862[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 4650[label="xuu96/Neg xuu960",fontsize=10,color="white",style="solid",shape="box"];1740 -> 4650[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4650 -> 1863[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 1850[label="FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284",fontsize=16,color="green",shape="box"];1851 -> 3831[label="",style="dashed", color="red", weight=0]; 26.44/10.91 1851[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) (Just xuu400) xuu41 xuu28 xuu44",fontsize=16,color="magenta"];1851 -> 3842[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 1851 -> 3843[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 1851 -> 3844[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 1851 -> 3845[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 1851 -> 3846[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 1852[label="error []",fontsize=16,color="red",shape="box"];1853[label="FiniteMap.mkBalBranch6MkBalBranch12 (Just xuu400) xuu41 xuu44 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu44 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284)",fontsize=16,color="black",shape="box"];1853 -> 1971[label="",style="solid", color="black", weight=3]; 26.44/10.91 1854 -> 1513[label="",style="dashed", color="red", weight=0]; 26.44/10.91 1854[label="FiniteMap.sizeFM xuu443",fontsize=16,color="magenta"];1854 -> 1972[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 1855 -> 581[label="",style="dashed", color="red", weight=0]; 26.44/10.91 1855[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu444",fontsize=16,color="magenta"];1855 -> 1973[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 1855 -> 1974[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 1856[label="FiniteMap.mkBalBranch6MkBalBranch01 (Just xuu400) xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu28 xuu28 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu440 xuu441 xuu442 xuu443 xuu444 False",fontsize=16,color="black",shape="box"];1856 -> 1975[label="",style="solid", color="black", weight=3]; 26.44/10.91 1857[label="FiniteMap.mkBalBranch6MkBalBranch01 (Just xuu400) xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu28 xuu28 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu440 xuu441 xuu442 xuu443 xuu444 True",fontsize=16,color="black",shape="box"];1857 -> 1976[label="",style="solid", color="black", weight=3]; 26.44/10.91 4049 -> 1714[label="",style="dashed", color="red", weight=0]; 26.44/10.91 4049[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size xuu208 xuu205 xuu207)",fontsize=16,color="magenta"];4049 -> 4051[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 4049 -> 4052[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 4050[label="FiniteMap.sizeFM xuu208",fontsize=16,color="burlywood",shape="triangle"];4651[label="xuu208/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4050 -> 4651[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4651 -> 4053[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 4652[label="xuu208/FiniteMap.Branch xuu2080 xuu2081 xuu2082 xuu2083 xuu2084",fontsize=10,color="white",style="solid",shape="box"];4050 -> 4652[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4652 -> 4054[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 1864[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];1865[label="FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364",fontsize=16,color="green",shape="box"];1866 -> 3831[label="",style="dashed", color="red", weight=0]; 26.44/10.91 1866[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) Nothing xuu41 xuu36 xuu44",fontsize=16,color="magenta"];1866 -> 3847[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 1866 -> 3848[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 1866 -> 3849[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 1866 -> 3850[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 1866 -> 3851[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 1867[label="error []",fontsize=16,color="red",shape="box"];1868[label="FiniteMap.mkBalBranch6MkBalBranch12 Nothing xuu41 xuu44 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu44 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364)",fontsize=16,color="black",shape="box"];1868 -> 1983[label="",style="solid", color="black", weight=3]; 26.44/10.91 1869 -> 1513[label="",style="dashed", color="red", weight=0]; 26.44/10.91 1869[label="FiniteMap.sizeFM xuu443",fontsize=16,color="magenta"];1869 -> 1984[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 1870 -> 581[label="",style="dashed", color="red", weight=0]; 26.44/10.91 1870[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu444",fontsize=16,color="magenta"];1870 -> 1985[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 1870 -> 1986[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 1871[label="FiniteMap.mkBalBranch6MkBalBranch01 Nothing xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu36 xuu36 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu440 xuu441 xuu442 xuu443 xuu444 False",fontsize=16,color="black",shape="box"];1871 -> 1987[label="",style="solid", color="black", weight=3]; 26.44/10.91 1872[label="FiniteMap.mkBalBranch6MkBalBranch01 Nothing xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu36 xuu36 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu440 xuu441 xuu442 xuu443 xuu444 True",fontsize=16,color="black",shape="box"];1872 -> 1988[label="",style="solid", color="black", weight=3]; 26.44/10.91 1748[label="primMulNat (Succ xuu5000100) (Succ xuu400000)",fontsize=16,color="black",shape="box"];1748 -> 1875[label="",style="solid", color="black", weight=3]; 26.44/10.91 1749[label="primMulNat (Succ xuu5000100) Zero",fontsize=16,color="black",shape="box"];1749 -> 1876[label="",style="solid", color="black", weight=3]; 26.44/10.91 1750[label="primMulNat Zero (Succ xuu400000)",fontsize=16,color="black",shape="box"];1750 -> 1877[label="",style="solid", color="black", weight=3]; 26.44/10.91 1751[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1751 -> 1878[label="",style="solid", color="black", weight=3]; 26.44/10.91 3439[label="Integer xuu330000 * xuu34001",fontsize=16,color="burlywood",shape="box"];4653[label="xuu34001/Integer xuu340010",fontsize=10,color="white",style="solid",shape="box"];3439 -> 4653[label="",style="solid", color="burlywood", weight=9]; 26.44/10.91 4653 -> 3535[label="",style="solid", color="burlywood", weight=3]; 26.44/10.91 3440[label="xuu33001",fontsize=16,color="green",shape="box"];3441[label="xuu34000",fontsize=16,color="green",shape="box"];3442[label="xuu34000",fontsize=16,color="green",shape="box"];3443[label="xuu33001",fontsize=16,color="green",shape="box"];3444[label="xuu33000",fontsize=16,color="green",shape="box"];3445[label="xuu34001",fontsize=16,color="green",shape="box"];3446[label="xuu33000",fontsize=16,color="green",shape="box"];3447[label="xuu34000",fontsize=16,color="green",shape="box"];3448[label="compare3 xuu33000 xuu34000",fontsize=16,color="black",shape="box"];3448 -> 3536[label="",style="solid", color="black", weight=3]; 26.44/10.91 3449[label="compare3 xuu33000 xuu34000",fontsize=16,color="black",shape="box"];3449 -> 3537[label="",style="solid", color="black", weight=3]; 26.44/10.91 3450[label="compare3 xuu33000 xuu34000",fontsize=16,color="black",shape="box"];3450 -> 3538[label="",style="solid", color="black", weight=3]; 26.44/10.91 3451[label="xuu33000",fontsize=16,color="green",shape="box"];3452[label="xuu34000",fontsize=16,color="green",shape="box"];3453[label="xuu33000",fontsize=16,color="green",shape="box"];3454[label="xuu34000",fontsize=16,color="green",shape="box"];3455[label="compare3 xuu33000 xuu34000",fontsize=16,color="black",shape="box"];3455 -> 3539[label="",style="solid", color="black", weight=3]; 26.44/10.91 1571[label="LT",fontsize=16,color="green",shape="box"];1572 -> 1183[label="",style="dashed", color="red", weight=0]; 26.44/10.91 1572[label="compare xuu330 xuu340",fontsize=16,color="magenta"];1572 -> 1764[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 1572 -> 1765[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3456[label="compare3 xuu33000 xuu34000",fontsize=16,color="black",shape="box"];3456 -> 3540[label="",style="solid", color="black", weight=3]; 26.44/10.91 3457[label="xuu33000",fontsize=16,color="green",shape="box"];3458[label="xuu34000",fontsize=16,color="green",shape="box"];3459[label="xuu33000",fontsize=16,color="green",shape="box"];3460[label="xuu34000",fontsize=16,color="green",shape="box"];3461[label="xuu33000",fontsize=16,color="green",shape="box"];3462[label="xuu34000",fontsize=16,color="green",shape="box"];3463[label="xuu33000",fontsize=16,color="green",shape="box"];3464[label="xuu34000",fontsize=16,color="green",shape="box"];3465[label="compare3 xuu33000 xuu34000",fontsize=16,color="black",shape="box"];3465 -> 3541[label="",style="solid", color="black", weight=3]; 26.44/10.91 3466 -> 2545[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3466[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3466 -> 3542[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3466 -> 3543[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3467 -> 2546[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3467[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3467 -> 3544[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3467 -> 3545[label="",style="dashed", color="magenta", weight=3]; 26.44/10.91 3468 -> 2547[label="",style="dashed", color="red", weight=0]; 26.44/10.91 3468[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3468 -> 3546[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3468 -> 3547[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3469 -> 2548[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3469[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3469 -> 3548[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3469 -> 3549[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3470 -> 2549[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3470[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3470 -> 3550[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3470 -> 3551[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3471 -> 2550[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3471[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3471 -> 3552[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3471 -> 3553[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3472 -> 2551[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3472[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3472 -> 3554[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3472 -> 3555[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3473 -> 2552[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3473[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3473 -> 3556[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3473 -> 3557[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3474 -> 2553[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3474[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3474 -> 3558[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3474 -> 3559[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3475 -> 2554[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3475[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3475 -> 3560[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3475 -> 3561[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3476 -> 2555[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3476[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3476 -> 3562[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3476 -> 3563[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3477 -> 2556[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3477[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3477 -> 3564[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3477 -> 3565[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3478 -> 2557[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3478[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3478 -> 3566[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3478 -> 3567[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3479 -> 2558[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3479[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3479 -> 3568[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3479 -> 3569[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3480 -> 2048[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3480[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3480 -> 3570[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3480 -> 3571[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3481 -> 2041[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3481[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3481 -> 3572[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3481 -> 3573[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3482 -> 2043[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3482[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3482 -> 3574[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3482 -> 3575[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3483 -> 2049[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3483[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3483 -> 3576[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3483 -> 3577[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3484 -> 2044[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3484[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3484 -> 3578[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3484 -> 3579[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3485 -> 2038[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3485[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3485 -> 3580[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3485 -> 3581[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3486 -> 61[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3486[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3486 -> 3582[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3486 -> 3583[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3487 -> 2051[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3487[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3487 -> 3584[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3487 -> 3585[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3488 -> 2047[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3488[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3488 -> 3586[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3488 -> 3587[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3489 -> 2046[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3489[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3489 -> 3588[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3489 -> 3589[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3490 -> 2050[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3490[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3490 -> 3590[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3490 -> 3591[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3491 -> 2040[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3491[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3491 -> 3592[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3491 -> 3593[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3492 -> 2042[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3492[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3492 -> 3594[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3492 -> 3595[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3493 -> 2039[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3493[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3493 -> 3596[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3493 -> 3597[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3494[label="xuu34001",fontsize=16,color="green",shape="box"];3495[label="xuu33001",fontsize=16,color="green",shape="box"];3496[label="xuu34001",fontsize=16,color="green",shape="box"];3497[label="xuu33001",fontsize=16,color="green",shape="box"];3498[label="xuu34001",fontsize=16,color="green",shape="box"];3499[label="xuu33001",fontsize=16,color="green",shape="box"];3500[label="xuu34001",fontsize=16,color="green",shape="box"];3501[label="xuu33001",fontsize=16,color="green",shape="box"];3502[label="xuu34001",fontsize=16,color="green",shape="box"];3503[label="xuu33001",fontsize=16,color="green",shape="box"];3504[label="xuu34001",fontsize=16,color="green",shape="box"];3505[label="xuu33001",fontsize=16,color="green",shape="box"];3506[label="xuu34001",fontsize=16,color="green",shape="box"];3507[label="xuu33001",fontsize=16,color="green",shape="box"];3508[label="xuu33001",fontsize=16,color="green",shape="box"];3509[label="xuu34001",fontsize=16,color="green",shape="box"];3510[label="xuu34001",fontsize=16,color="green",shape="box"];3511[label="xuu33001",fontsize=16,color="green",shape="box"];3512[label="xuu34001",fontsize=16,color="green",shape="box"];3513[label="xuu33001",fontsize=16,color="green",shape="box"];3514[label="xuu34001",fontsize=16,color="green",shape="box"];3515[label="xuu33001",fontsize=16,color="green",shape="box"];3516[label="xuu34001",fontsize=16,color="green",shape="box"];3517[label="xuu33001",fontsize=16,color="green",shape="box"];3518[label="xuu34001",fontsize=16,color="green",shape="box"];3519[label="xuu33001",fontsize=16,color="green",shape="box"];3520[label="xuu34001",fontsize=16,color="green",shape="box"];3521[label="xuu33001",fontsize=16,color="green",shape="box"];2570[label="primCmpNat (Succ xuu33000) xuu3400",fontsize=16,color="burlywood",shape="box"];4654[label="xuu3400/Succ xuu34000",fontsize=10,color="white",style="solid",shape="box"];2570 -> 4654[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4654 -> 2786[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 4655[label="xuu3400/Zero",fontsize=10,color="white",style="solid",shape="box"];2570 -> 4655[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4655 -> 2787[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 2571[label="primCmpNat Zero xuu3400",fontsize=16,color="burlywood",shape="box"];4656[label="xuu3400/Succ xuu34000",fontsize=10,color="white",style="solid",shape="box"];2571 -> 4656[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4656 -> 2788[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 4657[label="xuu3400/Zero",fontsize=10,color="white",style="solid",shape="box"];2571 -> 4657[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4657 -> 2789[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 1947[label="primCmpNat (Succ xuu3300) xuu340",fontsize=16,color="burlywood",shape="triangle"];4658[label="xuu340/Succ xuu3400",fontsize=10,color="white",style="solid",shape="box"];1947 -> 4658[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4658 -> 2163[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 4659[label="xuu340/Zero",fontsize=10,color="white",style="solid",shape="box"];1947 -> 4659[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4659 -> 2164[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 1948[label="GT",fontsize=16,color="green",shape="box"];1949[label="primCmpInt (Pos Zero) (Pos (Succ xuu3400))",fontsize=16,color="black",shape="box"];1949 -> 2165[label="",style="solid", color="black", weight=3]; 26.72/10.91 1950[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1950 -> 2166[label="",style="solid", color="black", weight=3]; 26.72/10.91 1951[label="primCmpInt (Pos Zero) (Neg (Succ xuu3400))",fontsize=16,color="black",shape="box"];1951 -> 2167[label="",style="solid", color="black", weight=3]; 26.72/10.91 1952[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1952 -> 2168[label="",style="solid", color="black", weight=3]; 26.72/10.91 1953[label="LT",fontsize=16,color="green",shape="box"];1954[label="primCmpNat xuu340 (Succ xuu3300)",fontsize=16,color="burlywood",shape="triangle"];4660[label="xuu340/Succ xuu3400",fontsize=10,color="white",style="solid",shape="box"];1954 -> 4660[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4660 -> 2169[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 4661[label="xuu340/Zero",fontsize=10,color="white",style="solid",shape="box"];1954 -> 4661[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4661 -> 2170[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 1955[label="primCmpInt (Neg Zero) (Pos (Succ xuu3400))",fontsize=16,color="black",shape="box"];1955 -> 2171[label="",style="solid", color="black", weight=3]; 26.72/10.91 1956[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1956 -> 2172[label="",style="solid", color="black", weight=3]; 26.72/10.91 1957[label="primCmpInt (Neg Zero) (Neg (Succ xuu3400))",fontsize=16,color="black",shape="box"];1957 -> 2173[label="",style="solid", color="black", weight=3]; 26.72/10.91 1958[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1958 -> 2174[label="",style="solid", color="black", weight=3]; 26.72/10.91 3523[label="compare xuu33000 xuu34000",fontsize=16,color="blue",shape="box"];4662[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3523 -> 4662[label="",style="solid", color="blue", weight=9]; 26.72/10.91 4662 -> 3598[label="",style="solid", color="blue", weight=3]; 26.72/10.91 4663[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3523 -> 4663[label="",style="solid", color="blue", weight=9]; 26.72/10.91 4663 -> 3599[label="",style="solid", color="blue", weight=3]; 26.72/10.91 4664[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3523 -> 4664[label="",style="solid", color="blue", weight=9]; 26.72/10.91 4664 -> 3600[label="",style="solid", color="blue", weight=3]; 26.72/10.91 4665[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3523 -> 4665[label="",style="solid", color="blue", weight=9]; 26.72/10.91 4665 -> 3601[label="",style="solid", color="blue", weight=3]; 26.72/10.91 4666[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3523 -> 4666[label="",style="solid", color="blue", weight=9]; 26.72/10.91 4666 -> 3602[label="",style="solid", color="blue", weight=3]; 26.72/10.91 4667[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3523 -> 4667[label="",style="solid", color="blue", weight=9]; 26.72/10.91 4667 -> 3603[label="",style="solid", color="blue", weight=3]; 26.72/10.91 4668[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3523 -> 4668[label="",style="solid", color="blue", weight=9]; 26.72/10.91 4668 -> 3604[label="",style="solid", color="blue", weight=3]; 26.72/10.91 4669[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3523 -> 4669[label="",style="solid", color="blue", weight=9]; 26.72/10.91 4669 -> 3605[label="",style="solid", color="blue", weight=3]; 26.72/10.91 4670[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3523 -> 4670[label="",style="solid", color="blue", weight=9]; 26.72/10.91 4670 -> 3606[label="",style="solid", color="blue", weight=3]; 26.72/10.91 4671[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3523 -> 4671[label="",style="solid", color="blue", weight=9]; 26.72/10.91 4671 -> 3607[label="",style="solid", color="blue", weight=3]; 26.72/10.91 4672[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3523 -> 4672[label="",style="solid", color="blue", weight=9]; 26.72/10.91 4672 -> 3608[label="",style="solid", color="blue", weight=3]; 26.72/10.91 4673[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3523 -> 4673[label="",style="solid", color="blue", weight=9]; 26.72/10.91 4673 -> 3609[label="",style="solid", color="blue", weight=3]; 26.72/10.91 4674[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3523 -> 4674[label="",style="solid", color="blue", weight=9]; 26.72/10.91 4674 -> 3610[label="",style="solid", color="blue", weight=3]; 26.72/10.91 4675[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3523 -> 4675[label="",style="solid", color="blue", weight=9]; 26.72/10.91 4675 -> 3611[label="",style="solid", color="blue", weight=3]; 26.72/10.91 3524[label="xuu172",fontsize=16,color="green",shape="box"];3522[label="primCompAux0 xuu178 xuu179",fontsize=16,color="burlywood",shape="triangle"];4676[label="xuu179/LT",fontsize=10,color="white",style="solid",shape="box"];3522 -> 4676[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4676 -> 3612[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 4677[label="xuu179/EQ",fontsize=10,color="white",style="solid",shape="box"];3522 -> 4677[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4677 -> 3613[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 4678[label="xuu179/GT",fontsize=10,color="white",style="solid",shape="box"];3522 -> 4678[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4678 -> 3614[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 3527 -> 1183[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3527[label="compare (xuu33000 * Pos xuu340010) (Pos xuu330010 * xuu34000)",fontsize=16,color="magenta"];3527 -> 3637[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3527 -> 3638[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3528 -> 1183[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3528[label="compare (xuu33000 * Pos xuu340010) (Neg xuu330010 * xuu34000)",fontsize=16,color="magenta"];3528 -> 3639[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3528 -> 3640[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3529 -> 1183[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3529[label="compare (xuu33000 * Neg xuu340010) (Pos xuu330010 * xuu34000)",fontsize=16,color="magenta"];3529 -> 3641[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3529 -> 3642[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3530 -> 1183[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3530[label="compare (xuu33000 * Neg xuu340010) (Neg xuu330010 * xuu34000)",fontsize=16,color="magenta"];3530 -> 3643[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3530 -> 3644[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3531 -> 1183[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3531[label="compare (xuu33000 * Pos xuu340010) (Pos xuu330010 * xuu34000)",fontsize=16,color="magenta"];3531 -> 3645[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3531 -> 3646[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3532 -> 1183[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3532[label="compare (xuu33000 * Pos xuu340010) (Neg xuu330010 * xuu34000)",fontsize=16,color="magenta"];3532 -> 3647[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3532 -> 3648[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3533 -> 1183[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3533[label="compare (xuu33000 * Neg xuu340010) (Pos xuu330010 * xuu34000)",fontsize=16,color="magenta"];3533 -> 3649[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3533 -> 3650[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3534 -> 1183[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3534[label="compare (xuu33000 * Neg xuu340010) (Neg xuu330010 * xuu34000)",fontsize=16,color="magenta"];3534 -> 3651[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3534 -> 3652[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 1860[label="primPlusInt (Pos xuu2820) (Pos xuu960)",fontsize=16,color="black",shape="box"];1860 -> 1978[label="",style="solid", color="black", weight=3]; 26.72/10.91 1861[label="primPlusInt (Pos xuu2820) (Neg xuu960)",fontsize=16,color="black",shape="box"];1861 -> 1979[label="",style="solid", color="black", weight=3]; 26.72/10.91 1862[label="primPlusInt (Neg xuu2820) (Pos xuu960)",fontsize=16,color="black",shape="box"];1862 -> 1980[label="",style="solid", color="black", weight=3]; 26.72/10.91 1863[label="primPlusInt (Neg xuu2820) (Neg xuu960)",fontsize=16,color="black",shape="box"];1863 -> 1981[label="",style="solid", color="black", weight=3]; 26.72/10.91 3842[label="xuu44",fontsize=16,color="green",shape="box"];3843[label="xuu28",fontsize=16,color="green",shape="box"];3844[label="Succ Zero",fontsize=16,color="green",shape="box"];3845[label="xuu41",fontsize=16,color="green",shape="box"];3846[label="Just xuu400",fontsize=16,color="green",shape="box"];1971 -> 2056[label="",style="dashed", color="red", weight=0]; 26.72/10.91 1971[label="FiniteMap.mkBalBranch6MkBalBranch11 (Just xuu400) xuu41 xuu44 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu44 xuu280 xuu281 xuu282 xuu283 xuu284 (FiniteMap.sizeFM xuu284 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu283)",fontsize=16,color="magenta"];1971 -> 2057[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 1972[label="xuu443",fontsize=16,color="green",shape="box"];1973[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1974 -> 1513[label="",style="dashed", color="red", weight=0]; 26.72/10.91 1974[label="FiniteMap.sizeFM xuu444",fontsize=16,color="magenta"];1974 -> 2091[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 1975[label="FiniteMap.mkBalBranch6MkBalBranch00 (Just xuu400) xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu28 xuu28 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu440 xuu441 xuu442 xuu443 xuu444 otherwise",fontsize=16,color="black",shape="box"];1975 -> 2092[label="",style="solid", color="black", weight=3]; 26.72/10.91 1976[label="FiniteMap.mkBalBranch6Single_L (Just xuu400) xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu28 xuu28 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444)",fontsize=16,color="black",shape="box"];1976 -> 2093[label="",style="solid", color="black", weight=3]; 26.72/10.91 4051[label="Pos (Succ Zero)",fontsize=16,color="green",shape="box"];4052[label="FiniteMap.mkBranchLeft_size xuu208 xuu205 xuu207",fontsize=16,color="black",shape="box"];4052 -> 4055[label="",style="solid", color="black", weight=3]; 26.72/10.91 4053[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];4053 -> 4056[label="",style="solid", color="black", weight=3]; 26.72/10.91 4054[label="FiniteMap.sizeFM (FiniteMap.Branch xuu2080 xuu2081 xuu2082 xuu2083 xuu2084)",fontsize=16,color="black",shape="box"];4054 -> 4057[label="",style="solid", color="black", weight=3]; 26.72/10.91 3847[label="xuu44",fontsize=16,color="green",shape="box"];3848[label="xuu36",fontsize=16,color="green",shape="box"];3849[label="Succ Zero",fontsize=16,color="green",shape="box"];3850[label="xuu41",fontsize=16,color="green",shape="box"];3851[label="Nothing",fontsize=16,color="green",shape="box"];1983 -> 2101[label="",style="dashed", color="red", weight=0]; 26.72/10.91 1983[label="FiniteMap.mkBalBranch6MkBalBranch11 Nothing xuu41 xuu44 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu44 xuu360 xuu361 xuu362 xuu363 xuu364 (FiniteMap.sizeFM xuu364 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu363)",fontsize=16,color="magenta"];1983 -> 2102[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 1984[label="xuu443",fontsize=16,color="green",shape="box"];1985[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1986 -> 1513[label="",style="dashed", color="red", weight=0]; 26.72/10.91 1986[label="FiniteMap.sizeFM xuu444",fontsize=16,color="magenta"];1986 -> 2159[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 1987[label="FiniteMap.mkBalBranch6MkBalBranch00 Nothing xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu36 xuu36 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu440 xuu441 xuu442 xuu443 xuu444 otherwise",fontsize=16,color="black",shape="box"];1987 -> 2160[label="",style="solid", color="black", weight=3]; 26.72/10.91 1988[label="FiniteMap.mkBalBranch6Single_L Nothing xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu36 xuu36 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444)",fontsize=16,color="black",shape="box"];1988 -> 2161[label="",style="solid", color="black", weight=3]; 26.72/10.91 1875 -> 1990[label="",style="dashed", color="red", weight=0]; 26.72/10.91 1875[label="primPlusNat (primMulNat xuu5000100 (Succ xuu400000)) (Succ xuu400000)",fontsize=16,color="magenta"];1875 -> 1991[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 1876[label="Zero",fontsize=16,color="green",shape="box"];1877[label="Zero",fontsize=16,color="green",shape="box"];1878[label="Zero",fontsize=16,color="green",shape="box"];3535[label="Integer xuu330000 * Integer xuu340010",fontsize=16,color="black",shape="box"];3535 -> 3653[label="",style="solid", color="black", weight=3]; 26.72/10.91 3536 -> 3654[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3536[label="compare2 xuu33000 xuu34000 (xuu33000 == xuu34000)",fontsize=16,color="magenta"];3536 -> 3655[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3537 -> 2001[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3537[label="compare2 xuu33000 xuu34000 (xuu33000 == xuu34000)",fontsize=16,color="magenta"];3537 -> 3659[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3537 -> 3660[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3537 -> 3661[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3538 -> 3662[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3538[label="compare2 xuu33000 xuu34000 (xuu33000 == xuu34000)",fontsize=16,color="magenta"];3538 -> 3663[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3539 -> 3665[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3539[label="compare2 xuu33000 xuu34000 (xuu33000 == xuu34000)",fontsize=16,color="magenta"];3539 -> 3666[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 1764[label="xuu340",fontsize=16,color="green",shape="box"];1765[label="xuu330",fontsize=16,color="green",shape="box"];3540 -> 3667[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3540[label="compare2 xuu33000 xuu34000 (xuu33000 == xuu34000)",fontsize=16,color="magenta"];3540 -> 3668[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3541 -> 3669[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3541[label="compare2 xuu33000 xuu34000 (xuu33000 == xuu34000)",fontsize=16,color="magenta"];3541 -> 3670[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3542[label="xuu33002",fontsize=16,color="green",shape="box"];3543[label="xuu34002",fontsize=16,color="green",shape="box"];3544[label="xuu33002",fontsize=16,color="green",shape="box"];3545[label="xuu34002",fontsize=16,color="green",shape="box"];3546[label="xuu33002",fontsize=16,color="green",shape="box"];3547[label="xuu34002",fontsize=16,color="green",shape="box"];3548[label="xuu33002",fontsize=16,color="green",shape="box"];3549[label="xuu34002",fontsize=16,color="green",shape="box"];3550[label="xuu33002",fontsize=16,color="green",shape="box"];3551[label="xuu34002",fontsize=16,color="green",shape="box"];3552[label="xuu33002",fontsize=16,color="green",shape="box"];3553[label="xuu34002",fontsize=16,color="green",shape="box"];3554[label="xuu33002",fontsize=16,color="green",shape="box"];3555[label="xuu34002",fontsize=16,color="green",shape="box"];3556[label="xuu33002",fontsize=16,color="green",shape="box"];3557[label="xuu34002",fontsize=16,color="green",shape="box"];3558[label="xuu33002",fontsize=16,color="green",shape="box"];3559[label="xuu34002",fontsize=16,color="green",shape="box"];3560[label="xuu33002",fontsize=16,color="green",shape="box"];3561[label="xuu34002",fontsize=16,color="green",shape="box"];3562[label="xuu33002",fontsize=16,color="green",shape="box"];3563[label="xuu34002",fontsize=16,color="green",shape="box"];3564[label="xuu33002",fontsize=16,color="green",shape="box"];3565[label="xuu34002",fontsize=16,color="green",shape="box"];3566[label="xuu33002",fontsize=16,color="green",shape="box"];3567[label="xuu34002",fontsize=16,color="green",shape="box"];3568[label="xuu33002",fontsize=16,color="green",shape="box"];3569[label="xuu34002",fontsize=16,color="green",shape="box"];3570[label="xuu34001",fontsize=16,color="green",shape="box"];3571[label="xuu33001",fontsize=16,color="green",shape="box"];3572[label="xuu34001",fontsize=16,color="green",shape="box"];3573[label="xuu33001",fontsize=16,color="green",shape="box"];3574[label="xuu34001",fontsize=16,color="green",shape="box"];3575[label="xuu33001",fontsize=16,color="green",shape="box"];3576[label="xuu34001",fontsize=16,color="green",shape="box"];3577[label="xuu33001",fontsize=16,color="green",shape="box"];3578[label="xuu34001",fontsize=16,color="green",shape="box"];3579[label="xuu33001",fontsize=16,color="green",shape="box"];3580[label="xuu34001",fontsize=16,color="green",shape="box"];3581[label="xuu33001",fontsize=16,color="green",shape="box"];3582[label="xuu34001",fontsize=16,color="green",shape="box"];3583[label="xuu33001",fontsize=16,color="green",shape="box"];3584[label="xuu34001",fontsize=16,color="green",shape="box"];3585[label="xuu33001",fontsize=16,color="green",shape="box"];3586[label="xuu34001",fontsize=16,color="green",shape="box"];3587[label="xuu33001",fontsize=16,color="green",shape="box"];3588[label="xuu34001",fontsize=16,color="green",shape="box"];3589[label="xuu33001",fontsize=16,color="green",shape="box"];3590[label="xuu34001",fontsize=16,color="green",shape="box"];3591[label="xuu33001",fontsize=16,color="green",shape="box"];3592[label="xuu34001",fontsize=16,color="green",shape="box"];3593[label="xuu33001",fontsize=16,color="green",shape="box"];3594[label="xuu34001",fontsize=16,color="green",shape="box"];3595[label="xuu33001",fontsize=16,color="green",shape="box"];3596[label="xuu34001",fontsize=16,color="green",shape="box"];3597[label="xuu33001",fontsize=16,color="green",shape="box"];2786[label="primCmpNat (Succ xuu33000) (Succ xuu34000)",fontsize=16,color="black",shape="box"];2786 -> 3152[label="",style="solid", color="black", weight=3]; 26.72/10.91 2787[label="primCmpNat (Succ xuu33000) Zero",fontsize=16,color="black",shape="box"];2787 -> 3153[label="",style="solid", color="black", weight=3]; 26.72/10.91 2788[label="primCmpNat Zero (Succ xuu34000)",fontsize=16,color="black",shape="box"];2788 -> 3154[label="",style="solid", color="black", weight=3]; 26.72/10.91 2789[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];2789 -> 3155[label="",style="solid", color="black", weight=3]; 26.72/10.91 2163[label="primCmpNat (Succ xuu3300) (Succ xuu3400)",fontsize=16,color="black",shape="box"];2163 -> 2231[label="",style="solid", color="black", weight=3]; 26.72/10.91 2164[label="primCmpNat (Succ xuu3300) Zero",fontsize=16,color="black",shape="box"];2164 -> 2232[label="",style="solid", color="black", weight=3]; 26.72/10.91 2165 -> 1954[label="",style="dashed", color="red", weight=0]; 26.72/10.91 2165[label="primCmpNat Zero (Succ xuu3400)",fontsize=16,color="magenta"];2165 -> 2233[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2165 -> 2234[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2166[label="EQ",fontsize=16,color="green",shape="box"];2167[label="GT",fontsize=16,color="green",shape="box"];2168[label="EQ",fontsize=16,color="green",shape="box"];2169[label="primCmpNat (Succ xuu3400) (Succ xuu3300)",fontsize=16,color="black",shape="box"];2169 -> 2235[label="",style="solid", color="black", weight=3]; 26.72/10.91 2170[label="primCmpNat Zero (Succ xuu3300)",fontsize=16,color="black",shape="box"];2170 -> 2236[label="",style="solid", color="black", weight=3]; 26.72/10.91 2171[label="LT",fontsize=16,color="green",shape="box"];2172[label="EQ",fontsize=16,color="green",shape="box"];2173 -> 1947[label="",style="dashed", color="red", weight=0]; 26.72/10.91 2173[label="primCmpNat (Succ xuu3400) Zero",fontsize=16,color="magenta"];2173 -> 2237[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2173 -> 2238[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2174[label="EQ",fontsize=16,color="green",shape="box"];3598 -> 2879[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3598[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3598 -> 3671[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3598 -> 3672[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3599 -> 3341[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3599[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3599 -> 3673[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3599 -> 3674[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3600 -> 3343[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3600[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3600 -> 3675[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3600 -> 3676[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3601 -> 3345[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3601[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3601 -> 3677[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3601 -> 3678[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3602 -> 2880[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3602[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3602 -> 3679[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3602 -> 3680[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3603 -> 2881[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3603[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3603 -> 3681[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3603 -> 3682[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3604 -> 3351[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3604[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3604 -> 3683[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3604 -> 3684[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3605 -> 1183[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3605[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3605 -> 3685[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3605 -> 3686[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3606 -> 3353[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3606[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3606 -> 3687[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3606 -> 3688[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3607 -> 2883[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3607[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3607 -> 3689[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3607 -> 3690[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3608 -> 2884[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3608[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3608 -> 3691[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3608 -> 3692[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3609 -> 2885[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3609[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3609 -> 3693[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3609 -> 3694[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3610 -> 2886[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3610[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3610 -> 3695[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3610 -> 3696[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3611 -> 3363[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3611[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3611 -> 3697[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3611 -> 3698[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3612[label="primCompAux0 xuu178 LT",fontsize=16,color="black",shape="box"];3612 -> 3699[label="",style="solid", color="black", weight=3]; 26.72/10.91 3613[label="primCompAux0 xuu178 EQ",fontsize=16,color="black",shape="box"];3613 -> 3700[label="",style="solid", color="black", weight=3]; 26.72/10.91 3614[label="primCompAux0 xuu178 GT",fontsize=16,color="black",shape="box"];3614 -> 3701[label="",style="solid", color="black", weight=3]; 26.72/10.91 3637 -> 581[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3637[label="Pos xuu330010 * xuu34000",fontsize=16,color="magenta"];3637 -> 3702[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3637 -> 3703[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3638 -> 581[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3638[label="xuu33000 * Pos xuu340010",fontsize=16,color="magenta"];3638 -> 3704[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3638 -> 3705[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3639 -> 581[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3639[label="Neg xuu330010 * xuu34000",fontsize=16,color="magenta"];3639 -> 3706[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3639 -> 3707[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3640 -> 581[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3640[label="xuu33000 * Pos xuu340010",fontsize=16,color="magenta"];3640 -> 3708[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3640 -> 3709[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3641 -> 581[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3641[label="Pos xuu330010 * xuu34000",fontsize=16,color="magenta"];3641 -> 3710[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3641 -> 3711[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3642 -> 581[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3642[label="xuu33000 * Neg xuu340010",fontsize=16,color="magenta"];3642 -> 3712[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3642 -> 3713[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3643 -> 581[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3643[label="Neg xuu330010 * xuu34000",fontsize=16,color="magenta"];3643 -> 3714[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3643 -> 3715[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3644 -> 581[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3644[label="xuu33000 * Neg xuu340010",fontsize=16,color="magenta"];3644 -> 3716[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3644 -> 3717[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3645 -> 581[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3645[label="Pos xuu330010 * xuu34000",fontsize=16,color="magenta"];3645 -> 3718[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3645 -> 3719[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3646 -> 581[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3646[label="xuu33000 * Pos xuu340010",fontsize=16,color="magenta"];3646 -> 3720[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3646 -> 3721[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3647 -> 581[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3647[label="Neg xuu330010 * xuu34000",fontsize=16,color="magenta"];3647 -> 3722[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3647 -> 3723[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3648 -> 581[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3648[label="xuu33000 * Pos xuu340010",fontsize=16,color="magenta"];3648 -> 3724[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3648 -> 3725[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3649 -> 581[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3649[label="Pos xuu330010 * xuu34000",fontsize=16,color="magenta"];3649 -> 3726[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3649 -> 3727[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3650 -> 581[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3650[label="xuu33000 * Neg xuu340010",fontsize=16,color="magenta"];3650 -> 3728[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3650 -> 3729[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3651 -> 581[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3651[label="Neg xuu330010 * xuu34000",fontsize=16,color="magenta"];3651 -> 3730[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3651 -> 3731[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3652 -> 581[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3652[label="xuu33000 * Neg xuu340010",fontsize=16,color="magenta"];3652 -> 3732[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3652 -> 3733[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 1978[label="Pos (primPlusNat xuu2820 xuu960)",fontsize=16,color="green",shape="box"];1978 -> 2095[label="",style="dashed", color="green", weight=3]; 26.72/10.91 1979[label="primMinusNat xuu2820 xuu960",fontsize=16,color="burlywood",shape="triangle"];4679[label="xuu2820/Succ xuu28200",fontsize=10,color="white",style="solid",shape="box"];1979 -> 4679[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4679 -> 2096[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 4680[label="xuu2820/Zero",fontsize=10,color="white",style="solid",shape="box"];1979 -> 4680[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4680 -> 2097[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 1980 -> 1979[label="",style="dashed", color="red", weight=0]; 26.72/10.91 1980[label="primMinusNat xuu960 xuu2820",fontsize=16,color="magenta"];1980 -> 2098[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 1980 -> 2099[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 1981[label="Neg (primPlusNat xuu2820 xuu960)",fontsize=16,color="green",shape="box"];1981 -> 2100[label="",style="dashed", color="green", weight=3]; 26.72/10.91 2057 -> 1270[label="",style="dashed", color="red", weight=0]; 26.72/10.91 2057[label="FiniteMap.sizeFM xuu284 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu283",fontsize=16,color="magenta"];2057 -> 2175[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2057 -> 2176[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2056[label="FiniteMap.mkBalBranch6MkBalBranch11 (Just xuu400) xuu41 xuu44 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu44 xuu280 xuu281 xuu282 xuu283 xuu284 xuu109",fontsize=16,color="burlywood",shape="triangle"];4681[label="xuu109/False",fontsize=10,color="white",style="solid",shape="box"];2056 -> 4681[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4681 -> 2177[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 4682[label="xuu109/True",fontsize=10,color="white",style="solid",shape="box"];2056 -> 4682[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4682 -> 2178[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 2091[label="xuu444",fontsize=16,color="green",shape="box"];2092[label="FiniteMap.mkBalBranch6MkBalBranch00 (Just xuu400) xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu28 xuu28 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu440 xuu441 xuu442 xuu443 xuu444 True",fontsize=16,color="black",shape="box"];2092 -> 2179[label="",style="solid", color="black", weight=3]; 26.72/10.91 2093 -> 3831[label="",style="dashed", color="red", weight=0]; 26.72/10.91 2093[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu440 xuu441 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (Just xuu400) xuu41 xuu28 xuu443) xuu444",fontsize=16,color="magenta"];2093 -> 3852[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2093 -> 3853[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2093 -> 3854[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2093 -> 3855[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2093 -> 3856[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 4055 -> 4050[label="",style="dashed", color="red", weight=0]; 26.72/10.91 4055[label="FiniteMap.sizeFM xuu207",fontsize=16,color="magenta"];4055 -> 4058[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 4056[label="Pos Zero",fontsize=16,color="green",shape="box"];4057[label="xuu2082",fontsize=16,color="green",shape="box"];2102 -> 1270[label="",style="dashed", color="red", weight=0]; 26.72/10.91 2102[label="FiniteMap.sizeFM xuu364 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu363",fontsize=16,color="magenta"];2102 -> 2189[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2102 -> 2190[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2101[label="FiniteMap.mkBalBranch6MkBalBranch11 Nothing xuu41 xuu44 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu44 xuu360 xuu361 xuu362 xuu363 xuu364 xuu113",fontsize=16,color="burlywood",shape="triangle"];4683[label="xuu113/False",fontsize=10,color="white",style="solid",shape="box"];2101 -> 4683[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4683 -> 2191[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 4684[label="xuu113/True",fontsize=10,color="white",style="solid",shape="box"];2101 -> 4684[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4684 -> 2192[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 2159[label="xuu444",fontsize=16,color="green",shape="box"];2160[label="FiniteMap.mkBalBranch6MkBalBranch00 Nothing xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu36 xuu36 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu440 xuu441 xuu442 xuu443 xuu444 True",fontsize=16,color="black",shape="box"];2160 -> 2229[label="",style="solid", color="black", weight=3]; 26.72/10.91 2161 -> 3831[label="",style="dashed", color="red", weight=0]; 26.72/10.91 2161[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu440 xuu441 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) Nothing xuu41 xuu36 xuu443) xuu444",fontsize=16,color="magenta"];2161 -> 3857[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2161 -> 3858[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2161 -> 3859[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2161 -> 3860[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2161 -> 3861[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 1991 -> 1386[label="",style="dashed", color="red", weight=0]; 26.72/10.91 1991[label="primMulNat xuu5000100 (Succ xuu400000)",fontsize=16,color="magenta"];1991 -> 2193[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 1991 -> 2194[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 1990 -> 2095[label="",style="dashed", color="red", weight=0]; 26.72/10.91 1990[label="primPlusNat xuu106 (Succ xuu400000)",fontsize=16,color="magenta"];1990 -> 2195[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 1990 -> 2196[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3653[label="Integer (primMulInt xuu330000 xuu340010)",fontsize=16,color="green",shape="box"];3653 -> 3735[label="",style="dashed", color="green", weight=3]; 26.72/10.91 3655 -> 2041[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3655[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3655 -> 3736[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3655 -> 3737[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3654[label="compare2 xuu33000 xuu34000 xuu189",fontsize=16,color="burlywood",shape="triangle"];4685[label="xuu189/False",fontsize=10,color="white",style="solid",shape="box"];3654 -> 4685[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4685 -> 3738[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 4686[label="xuu189/True",fontsize=10,color="white",style="solid",shape="box"];3654 -> 4686[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4686 -> 3739[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 3659[label="xuu33000",fontsize=16,color="green",shape="box"];3660[label="xuu34000",fontsize=16,color="green",shape="box"];3661 -> 2043[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3661[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3661 -> 3740[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3661 -> 3741[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3663 -> 2049[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3663[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3663 -> 3742[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3663 -> 3743[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3662[label="compare2 xuu33000 xuu34000 xuu190",fontsize=16,color="burlywood",shape="triangle"];4687[label="xuu190/False",fontsize=10,color="white",style="solid",shape="box"];3662 -> 4687[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4687 -> 3744[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 4688[label="xuu190/True",fontsize=10,color="white",style="solid",shape="box"];3662 -> 4688[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4688 -> 3745[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 3666 -> 61[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3666[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3666 -> 3746[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3666 -> 3747[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3665[label="compare2 xuu33000 xuu34000 xuu191",fontsize=16,color="burlywood",shape="triangle"];4689[label="xuu191/False",fontsize=10,color="white",style="solid",shape="box"];3665 -> 4689[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4689 -> 3748[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 4690[label="xuu191/True",fontsize=10,color="white",style="solid",shape="box"];3665 -> 4690[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4690 -> 3749[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 3668 -> 2047[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3668[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3668 -> 3750[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3668 -> 3751[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3667[label="compare2 xuu33000 xuu34000 xuu192",fontsize=16,color="burlywood",shape="triangle"];4691[label="xuu192/False",fontsize=10,color="white",style="solid",shape="box"];3667 -> 4691[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4691 -> 3752[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 4692[label="xuu192/True",fontsize=10,color="white",style="solid",shape="box"];3667 -> 4692[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4692 -> 3753[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 3670 -> 2039[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3670[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3670 -> 3754[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3670 -> 3755[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3669[label="compare2 xuu33000 xuu34000 xuu193",fontsize=16,color="burlywood",shape="triangle"];4693[label="xuu193/False",fontsize=10,color="white",style="solid",shape="box"];3669 -> 4693[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4693 -> 3756[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 4694[label="xuu193/True",fontsize=10,color="white",style="solid",shape="box"];3669 -> 4694[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4694 -> 3757[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 3152 -> 2231[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3152[label="primCmpNat xuu33000 xuu34000",fontsize=16,color="magenta"];3152 -> 3413[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3152 -> 3414[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3153[label="GT",fontsize=16,color="green",shape="box"];3154[label="LT",fontsize=16,color="green",shape="box"];3155[label="EQ",fontsize=16,color="green",shape="box"];2232[label="GT",fontsize=16,color="green",shape="box"];2233[label="Zero",fontsize=16,color="green",shape="box"];2234[label="xuu3400",fontsize=16,color="green",shape="box"];2235 -> 2231[label="",style="dashed", color="red", weight=0]; 26.72/10.91 2235[label="primCmpNat xuu3400 xuu3300",fontsize=16,color="magenta"];2235 -> 2572[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2235 -> 2573[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2236[label="LT",fontsize=16,color="green",shape="box"];2237[label="Zero",fontsize=16,color="green",shape="box"];2238[label="xuu3400",fontsize=16,color="green",shape="box"];3671[label="xuu33000",fontsize=16,color="green",shape="box"];3672[label="xuu34000",fontsize=16,color="green",shape="box"];3673[label="xuu34000",fontsize=16,color="green",shape="box"];3674[label="xuu33000",fontsize=16,color="green",shape="box"];3675[label="xuu34000",fontsize=16,color="green",shape="box"];3676[label="xuu33000",fontsize=16,color="green",shape="box"];3677[label="xuu34000",fontsize=16,color="green",shape="box"];3678[label="xuu33000",fontsize=16,color="green",shape="box"];3679[label="xuu33000",fontsize=16,color="green",shape="box"];3680[label="xuu34000",fontsize=16,color="green",shape="box"];3681[label="xuu33000",fontsize=16,color="green",shape="box"];3682[label="xuu34000",fontsize=16,color="green",shape="box"];3683[label="xuu34000",fontsize=16,color="green",shape="box"];3684[label="xuu33000",fontsize=16,color="green",shape="box"];3685[label="xuu34000",fontsize=16,color="green",shape="box"];3686[label="xuu33000",fontsize=16,color="green",shape="box"];3687[label="xuu34000",fontsize=16,color="green",shape="box"];3688[label="xuu33000",fontsize=16,color="green",shape="box"];3689[label="xuu33000",fontsize=16,color="green",shape="box"];3690[label="xuu34000",fontsize=16,color="green",shape="box"];3691[label="xuu33000",fontsize=16,color="green",shape="box"];3692[label="xuu34000",fontsize=16,color="green",shape="box"];3693[label="xuu33000",fontsize=16,color="green",shape="box"];3694[label="xuu34000",fontsize=16,color="green",shape="box"];3695[label="xuu33000",fontsize=16,color="green",shape="box"];3696[label="xuu34000",fontsize=16,color="green",shape="box"];3697[label="xuu34000",fontsize=16,color="green",shape="box"];3698[label="xuu33000",fontsize=16,color="green",shape="box"];3699[label="LT",fontsize=16,color="green",shape="box"];3700[label="xuu178",fontsize=16,color="green",shape="box"];3701[label="GT",fontsize=16,color="green",shape="box"];3702[label="Pos xuu330010",fontsize=16,color="green",shape="box"];3703[label="xuu34000",fontsize=16,color="green",shape="box"];3704[label="xuu33000",fontsize=16,color="green",shape="box"];3705[label="Pos xuu340010",fontsize=16,color="green",shape="box"];3706[label="Neg xuu330010",fontsize=16,color="green",shape="box"];3707[label="xuu34000",fontsize=16,color="green",shape="box"];3708[label="xuu33000",fontsize=16,color="green",shape="box"];3709[label="Pos xuu340010",fontsize=16,color="green",shape="box"];3710[label="Pos xuu330010",fontsize=16,color="green",shape="box"];3711[label="xuu34000",fontsize=16,color="green",shape="box"];3712[label="xuu33000",fontsize=16,color="green",shape="box"];3713[label="Neg xuu340010",fontsize=16,color="green",shape="box"];3714[label="Neg xuu330010",fontsize=16,color="green",shape="box"];3715[label="xuu34000",fontsize=16,color="green",shape="box"];3716[label="xuu33000",fontsize=16,color="green",shape="box"];3717[label="Neg xuu340010",fontsize=16,color="green",shape="box"];3718[label="Pos xuu330010",fontsize=16,color="green",shape="box"];3719[label="xuu34000",fontsize=16,color="green",shape="box"];3720[label="xuu33000",fontsize=16,color="green",shape="box"];3721[label="Pos xuu340010",fontsize=16,color="green",shape="box"];3722[label="Neg xuu330010",fontsize=16,color="green",shape="box"];3723[label="xuu34000",fontsize=16,color="green",shape="box"];3724[label="xuu33000",fontsize=16,color="green",shape="box"];3725[label="Pos xuu340010",fontsize=16,color="green",shape="box"];3726[label="Pos xuu330010",fontsize=16,color="green",shape="box"];3727[label="xuu34000",fontsize=16,color="green",shape="box"];3728[label="xuu33000",fontsize=16,color="green",shape="box"];3729[label="Neg xuu340010",fontsize=16,color="green",shape="box"];3730[label="Neg xuu330010",fontsize=16,color="green",shape="box"];3731[label="xuu34000",fontsize=16,color="green",shape="box"];3732[label="xuu33000",fontsize=16,color="green",shape="box"];3733[label="Neg xuu340010",fontsize=16,color="green",shape="box"];2095[label="primPlusNat xuu2820 xuu960",fontsize=16,color="burlywood",shape="triangle"];4695[label="xuu2820/Succ xuu28200",fontsize=10,color="white",style="solid",shape="box"];2095 -> 4695[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4695 -> 2181[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 4696[label="xuu2820/Zero",fontsize=10,color="white",style="solid",shape="box"];2095 -> 4696[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4696 -> 2182[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 2096[label="primMinusNat (Succ xuu28200) xuu960",fontsize=16,color="burlywood",shape="box"];4697[label="xuu960/Succ xuu9600",fontsize=10,color="white",style="solid",shape="box"];2096 -> 4697[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4697 -> 2183[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 4698[label="xuu960/Zero",fontsize=10,color="white",style="solid",shape="box"];2096 -> 4698[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4698 -> 2184[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 2097[label="primMinusNat Zero xuu960",fontsize=16,color="burlywood",shape="box"];4699[label="xuu960/Succ xuu9600",fontsize=10,color="white",style="solid",shape="box"];2097 -> 4699[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4699 -> 2185[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 4700[label="xuu960/Zero",fontsize=10,color="white",style="solid",shape="box"];2097 -> 4700[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4700 -> 2186[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 2098[label="xuu2820",fontsize=16,color="green",shape="box"];2099[label="xuu960",fontsize=16,color="green",shape="box"];2100 -> 2095[label="",style="dashed", color="red", weight=0]; 26.72/10.91 2100[label="primPlusNat xuu2820 xuu960",fontsize=16,color="magenta"];2100 -> 2187[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2100 -> 2188[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2175 -> 1513[label="",style="dashed", color="red", weight=0]; 26.72/10.91 2175[label="FiniteMap.sizeFM xuu284",fontsize=16,color="magenta"];2175 -> 2239[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2176 -> 581[label="",style="dashed", color="red", weight=0]; 26.72/10.91 2176[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu283",fontsize=16,color="magenta"];2176 -> 2240[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2176 -> 2241[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2177[label="FiniteMap.mkBalBranch6MkBalBranch11 (Just xuu400) xuu41 xuu44 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu44 xuu280 xuu281 xuu282 xuu283 xuu284 False",fontsize=16,color="black",shape="box"];2177 -> 2242[label="",style="solid", color="black", weight=3]; 26.72/10.91 2178[label="FiniteMap.mkBalBranch6MkBalBranch11 (Just xuu400) xuu41 xuu44 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu44 xuu280 xuu281 xuu282 xuu283 xuu284 True",fontsize=16,color="black",shape="box"];2178 -> 2243[label="",style="solid", color="black", weight=3]; 26.72/10.91 2179[label="FiniteMap.mkBalBranch6Double_L (Just xuu400) xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu28 xuu28 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444)",fontsize=16,color="burlywood",shape="box"];4701[label="xuu443/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2179 -> 4701[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4701 -> 2244[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 4702[label="xuu443/FiniteMap.Branch xuu4430 xuu4431 xuu4432 xuu4433 xuu4434",fontsize=10,color="white",style="solid",shape="box"];2179 -> 4702[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4702 -> 2245[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 3852[label="xuu444",fontsize=16,color="green",shape="box"];3853 -> 3831[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3853[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (Just xuu400) xuu41 xuu28 xuu443",fontsize=16,color="magenta"];3853 -> 3963[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3853 -> 3964[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3853 -> 3965[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3853 -> 3966[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3853 -> 3967[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3854[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];3855[label="xuu441",fontsize=16,color="green",shape="box"];3856[label="xuu440",fontsize=16,color="green",shape="box"];4058[label="xuu207",fontsize=16,color="green",shape="box"];2189 -> 1513[label="",style="dashed", color="red", weight=0]; 26.72/10.91 2189[label="FiniteMap.sizeFM xuu364",fontsize=16,color="magenta"];2189 -> 2255[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2190 -> 581[label="",style="dashed", color="red", weight=0]; 26.72/10.91 2190[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu363",fontsize=16,color="magenta"];2190 -> 2256[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2190 -> 2257[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2191[label="FiniteMap.mkBalBranch6MkBalBranch11 Nothing xuu41 xuu44 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu44 xuu360 xuu361 xuu362 xuu363 xuu364 False",fontsize=16,color="black",shape="box"];2191 -> 2258[label="",style="solid", color="black", weight=3]; 26.72/10.91 2192[label="FiniteMap.mkBalBranch6MkBalBranch11 Nothing xuu41 xuu44 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu44 xuu360 xuu361 xuu362 xuu363 xuu364 True",fontsize=16,color="black",shape="box"];2192 -> 2259[label="",style="solid", color="black", weight=3]; 26.72/10.91 2229[label="FiniteMap.mkBalBranch6Double_L Nothing xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu36 xuu36 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444)",fontsize=16,color="burlywood",shape="box"];4703[label="xuu443/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2229 -> 4703[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4703 -> 2567[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 4704[label="xuu443/FiniteMap.Branch xuu4430 xuu4431 xuu4432 xuu4433 xuu4434",fontsize=10,color="white",style="solid",shape="box"];2229 -> 4704[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4704 -> 2568[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 3857[label="xuu444",fontsize=16,color="green",shape="box"];3858 -> 3831[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3858[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) Nothing xuu41 xuu36 xuu443",fontsize=16,color="magenta"];3858 -> 3968[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3858 -> 3969[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3858 -> 3970[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3858 -> 3971[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3858 -> 3972[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3859[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];3860[label="xuu441",fontsize=16,color="green",shape="box"];3861[label="xuu440",fontsize=16,color="green",shape="box"];2193[label="Succ xuu400000",fontsize=16,color="green",shape="box"];2194[label="xuu5000100",fontsize=16,color="green",shape="box"];2195[label="xuu106",fontsize=16,color="green",shape="box"];2196[label="Succ xuu400000",fontsize=16,color="green",shape="box"];3735 -> 771[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3735[label="primMulInt xuu330000 xuu340010",fontsize=16,color="magenta"];3735 -> 3771[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3735 -> 3772[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3736[label="xuu34000",fontsize=16,color="green",shape="box"];3737[label="xuu33000",fontsize=16,color="green",shape="box"];3738[label="compare2 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3738 -> 3773[label="",style="solid", color="black", weight=3]; 26.72/10.91 3739[label="compare2 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3739 -> 3774[label="",style="solid", color="black", weight=3]; 26.72/10.91 3740[label="xuu34000",fontsize=16,color="green",shape="box"];3741[label="xuu33000",fontsize=16,color="green",shape="box"];3742[label="xuu34000",fontsize=16,color="green",shape="box"];3743[label="xuu33000",fontsize=16,color="green",shape="box"];3744[label="compare2 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3744 -> 3775[label="",style="solid", color="black", weight=3]; 26.72/10.91 3745[label="compare2 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3745 -> 3776[label="",style="solid", color="black", weight=3]; 26.72/10.91 3746[label="xuu34000",fontsize=16,color="green",shape="box"];3747[label="xuu33000",fontsize=16,color="green",shape="box"];3748[label="compare2 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3748 -> 3777[label="",style="solid", color="black", weight=3]; 26.72/10.91 3749[label="compare2 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3749 -> 3778[label="",style="solid", color="black", weight=3]; 26.72/10.91 3750[label="xuu34000",fontsize=16,color="green",shape="box"];3751[label="xuu33000",fontsize=16,color="green",shape="box"];3752[label="compare2 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3752 -> 3779[label="",style="solid", color="black", weight=3]; 26.72/10.91 3753[label="compare2 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3753 -> 3780[label="",style="solid", color="black", weight=3]; 26.72/10.91 3754[label="xuu34000",fontsize=16,color="green",shape="box"];3755[label="xuu33000",fontsize=16,color="green",shape="box"];3756[label="compare2 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3756 -> 3781[label="",style="solid", color="black", weight=3]; 26.72/10.91 3757[label="compare2 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3757 -> 3782[label="",style="solid", color="black", weight=3]; 26.72/10.91 3413[label="xuu33000",fontsize=16,color="green",shape="box"];3414[label="xuu34000",fontsize=16,color="green",shape="box"];2572[label="xuu3400",fontsize=16,color="green",shape="box"];2573[label="xuu3300",fontsize=16,color="green",shape="box"];2181[label="primPlusNat (Succ xuu28200) xuu960",fontsize=16,color="burlywood",shape="box"];4705[label="xuu960/Succ xuu9600",fontsize=10,color="white",style="solid",shape="box"];2181 -> 4705[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4705 -> 2247[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 4706[label="xuu960/Zero",fontsize=10,color="white",style="solid",shape="box"];2181 -> 4706[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4706 -> 2248[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 2182[label="primPlusNat Zero xuu960",fontsize=16,color="burlywood",shape="box"];4707[label="xuu960/Succ xuu9600",fontsize=10,color="white",style="solid",shape="box"];2182 -> 4707[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4707 -> 2249[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 4708[label="xuu960/Zero",fontsize=10,color="white",style="solid",shape="box"];2182 -> 4708[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4708 -> 2250[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 2183[label="primMinusNat (Succ xuu28200) (Succ xuu9600)",fontsize=16,color="black",shape="box"];2183 -> 2251[label="",style="solid", color="black", weight=3]; 26.72/10.91 2184[label="primMinusNat (Succ xuu28200) Zero",fontsize=16,color="black",shape="box"];2184 -> 2252[label="",style="solid", color="black", weight=3]; 26.72/10.91 2185[label="primMinusNat Zero (Succ xuu9600)",fontsize=16,color="black",shape="box"];2185 -> 2253[label="",style="solid", color="black", weight=3]; 26.72/10.91 2186[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];2186 -> 2254[label="",style="solid", color="black", weight=3]; 26.72/10.91 2187[label="xuu2820",fontsize=16,color="green",shape="box"];2188[label="xuu960",fontsize=16,color="green",shape="box"];2239[label="xuu284",fontsize=16,color="green",shape="box"];2240[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2241 -> 1513[label="",style="dashed", color="red", weight=0]; 26.72/10.91 2241[label="FiniteMap.sizeFM xuu283",fontsize=16,color="magenta"];2241 -> 2574[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2242[label="FiniteMap.mkBalBranch6MkBalBranch10 (Just xuu400) xuu41 xuu44 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu44 xuu280 xuu281 xuu282 xuu283 xuu284 otherwise",fontsize=16,color="black",shape="box"];2242 -> 2575[label="",style="solid", color="black", weight=3]; 26.72/10.91 2243[label="FiniteMap.mkBalBranch6Single_R (Just xuu400) xuu41 xuu44 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu44",fontsize=16,color="black",shape="box"];2243 -> 2576[label="",style="solid", color="black", weight=3]; 26.72/10.91 2244[label="FiniteMap.mkBalBranch6Double_L (Just xuu400) xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 FiniteMap.EmptyFM xuu444) xuu28 xuu28 (FiniteMap.Branch xuu440 xuu441 xuu442 FiniteMap.EmptyFM xuu444)",fontsize=16,color="black",shape="box"];2244 -> 2577[label="",style="solid", color="black", weight=3]; 26.72/10.91 2245[label="FiniteMap.mkBalBranch6Double_L (Just xuu400) xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 (FiniteMap.Branch xuu4430 xuu4431 xuu4432 xuu4433 xuu4434) xuu444) xuu28 xuu28 (FiniteMap.Branch xuu440 xuu441 xuu442 (FiniteMap.Branch xuu4430 xuu4431 xuu4432 xuu4433 xuu4434) xuu444)",fontsize=16,color="black",shape="box"];2245 -> 2578[label="",style="solid", color="black", weight=3]; 26.72/10.91 3963[label="xuu443",fontsize=16,color="green",shape="box"];3964[label="xuu28",fontsize=16,color="green",shape="box"];3965[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3966[label="xuu41",fontsize=16,color="green",shape="box"];3967[label="Just xuu400",fontsize=16,color="green",shape="box"];2255[label="xuu364",fontsize=16,color="green",shape="box"];2256[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2257 -> 1513[label="",style="dashed", color="red", weight=0]; 26.72/10.91 2257[label="FiniteMap.sizeFM xuu363",fontsize=16,color="magenta"];2257 -> 2587[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2258[label="FiniteMap.mkBalBranch6MkBalBranch10 Nothing xuu41 xuu44 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu44 xuu360 xuu361 xuu362 xuu363 xuu364 otherwise",fontsize=16,color="black",shape="box"];2258 -> 2588[label="",style="solid", color="black", weight=3]; 26.72/10.91 2259[label="FiniteMap.mkBalBranch6Single_R Nothing xuu41 xuu44 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu44",fontsize=16,color="black",shape="box"];2259 -> 2589[label="",style="solid", color="black", weight=3]; 26.72/10.91 2567[label="FiniteMap.mkBalBranch6Double_L Nothing xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 FiniteMap.EmptyFM xuu444) xuu36 xuu36 (FiniteMap.Branch xuu440 xuu441 xuu442 FiniteMap.EmptyFM xuu444)",fontsize=16,color="black",shape="box"];2567 -> 2782[label="",style="solid", color="black", weight=3]; 26.72/10.91 2568[label="FiniteMap.mkBalBranch6Double_L Nothing xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 (FiniteMap.Branch xuu4430 xuu4431 xuu4432 xuu4433 xuu4434) xuu444) xuu36 xuu36 (FiniteMap.Branch xuu440 xuu441 xuu442 (FiniteMap.Branch xuu4430 xuu4431 xuu4432 xuu4433 xuu4434) xuu444)",fontsize=16,color="black",shape="box"];2568 -> 2783[label="",style="solid", color="black", weight=3]; 26.72/10.91 3968[label="xuu443",fontsize=16,color="green",shape="box"];3969[label="xuu36",fontsize=16,color="green",shape="box"];3970[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3971[label="xuu41",fontsize=16,color="green",shape="box"];3972[label="Nothing",fontsize=16,color="green",shape="box"];3771[label="xuu330000",fontsize=16,color="green",shape="box"];3772[label="xuu340010",fontsize=16,color="green",shape="box"];3773 -> 3800[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3773[label="compare1 xuu33000 xuu34000 (xuu33000 <= xuu34000)",fontsize=16,color="magenta"];3773 -> 3801[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3774[label="EQ",fontsize=16,color="green",shape="box"];3775 -> 3802[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3775[label="compare1 xuu33000 xuu34000 (xuu33000 <= xuu34000)",fontsize=16,color="magenta"];3775 -> 3803[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3776[label="EQ",fontsize=16,color="green",shape="box"];3777 -> 3804[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3777[label="compare1 xuu33000 xuu34000 (xuu33000 <= xuu34000)",fontsize=16,color="magenta"];3777 -> 3805[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3778[label="EQ",fontsize=16,color="green",shape="box"];3779 -> 3806[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3779[label="compare1 xuu33000 xuu34000 (xuu33000 <= xuu34000)",fontsize=16,color="magenta"];3779 -> 3807[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3780[label="EQ",fontsize=16,color="green",shape="box"];3781 -> 3808[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3781[label="compare1 xuu33000 xuu34000 (xuu33000 <= xuu34000)",fontsize=16,color="magenta"];3781 -> 3809[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3782[label="EQ",fontsize=16,color="green",shape="box"];2247[label="primPlusNat (Succ xuu28200) (Succ xuu9600)",fontsize=16,color="black",shape="box"];2247 -> 2581[label="",style="solid", color="black", weight=3]; 26.72/10.91 2248[label="primPlusNat (Succ xuu28200) Zero",fontsize=16,color="black",shape="box"];2248 -> 2582[label="",style="solid", color="black", weight=3]; 26.72/10.91 2249[label="primPlusNat Zero (Succ xuu9600)",fontsize=16,color="black",shape="box"];2249 -> 2583[label="",style="solid", color="black", weight=3]; 26.72/10.91 2250[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2250 -> 2584[label="",style="solid", color="black", weight=3]; 26.72/10.91 2251 -> 1979[label="",style="dashed", color="red", weight=0]; 26.72/10.91 2251[label="primMinusNat xuu28200 xuu9600",fontsize=16,color="magenta"];2251 -> 2585[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2251 -> 2586[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2252[label="Pos (Succ xuu28200)",fontsize=16,color="green",shape="box"];2253[label="Neg (Succ xuu9600)",fontsize=16,color="green",shape="box"];2254[label="Pos Zero",fontsize=16,color="green",shape="box"];2574[label="xuu283",fontsize=16,color="green",shape="box"];2575[label="FiniteMap.mkBalBranch6MkBalBranch10 (Just xuu400) xuu41 xuu44 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu44 xuu280 xuu281 xuu282 xuu283 xuu284 True",fontsize=16,color="black",shape="box"];2575 -> 2790[label="",style="solid", color="black", weight=3]; 26.72/10.91 2576 -> 3831[label="",style="dashed", color="red", weight=0]; 26.72/10.91 2576[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu280 xuu281 xuu283 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (Just xuu400) xuu41 xuu284 xuu44)",fontsize=16,color="magenta"];2576 -> 3862[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2576 -> 3863[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2576 -> 3864[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2576 -> 3865[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2576 -> 3866[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2577[label="error []",fontsize=16,color="red",shape="box"];2578 -> 3831[label="",style="dashed", color="red", weight=0]; 26.72/10.91 2578[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu4430 xuu4431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (Just xuu400) xuu41 xuu28 xuu4433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu440 xuu441 xuu4434 xuu444)",fontsize=16,color="magenta"];2578 -> 3867[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2578 -> 3868[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2578 -> 3869[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2578 -> 3870[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2578 -> 3871[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2587[label="xuu363",fontsize=16,color="green",shape="box"];2588[label="FiniteMap.mkBalBranch6MkBalBranch10 Nothing xuu41 xuu44 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu44 xuu360 xuu361 xuu362 xuu363 xuu364 True",fontsize=16,color="black",shape="box"];2588 -> 2928[label="",style="solid", color="black", weight=3]; 26.72/10.91 2589 -> 3831[label="",style="dashed", color="red", weight=0]; 26.72/10.91 2589[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu360 xuu361 xuu363 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) Nothing xuu41 xuu364 xuu44)",fontsize=16,color="magenta"];2589 -> 3877[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2589 -> 3878[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2589 -> 3879[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2589 -> 3880[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2589 -> 3881[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2782[label="error []",fontsize=16,color="red",shape="box"];2783 -> 3831[label="",style="dashed", color="red", weight=0]; 26.72/10.91 2783[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu4430 xuu4431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) Nothing xuu41 xuu36 xuu4433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu440 xuu441 xuu4434 xuu444)",fontsize=16,color="magenta"];2783 -> 3882[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2783 -> 3883[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2783 -> 3884[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2783 -> 3885[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2783 -> 3886[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3801 -> 2546[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3801[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];3801 -> 3810[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3801 -> 3811[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3800[label="compare1 xuu33000 xuu34000 xuu198",fontsize=16,color="burlywood",shape="triangle"];4709[label="xuu198/False",fontsize=10,color="white",style="solid",shape="box"];3800 -> 4709[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4709 -> 3812[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 4710[label="xuu198/True",fontsize=10,color="white",style="solid",shape="box"];3800 -> 4710[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4710 -> 3813[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 3803 -> 2548[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3803[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];3803 -> 3814[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3803 -> 3815[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3802[label="compare1 xuu33000 xuu34000 xuu199",fontsize=16,color="burlywood",shape="triangle"];4711[label="xuu199/False",fontsize=10,color="white",style="solid",shape="box"];3802 -> 4711[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4711 -> 3816[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 4712[label="xuu199/True",fontsize=10,color="white",style="solid",shape="box"];3802 -> 4712[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4712 -> 3817[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 3805 -> 2551[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3805[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];3805 -> 3818[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3805 -> 3819[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3804[label="compare1 xuu33000 xuu34000 xuu200",fontsize=16,color="burlywood",shape="triangle"];4713[label="xuu200/False",fontsize=10,color="white",style="solid",shape="box"];3804 -> 4713[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4713 -> 3820[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 4714[label="xuu200/True",fontsize=10,color="white",style="solid",shape="box"];3804 -> 4714[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4714 -> 3821[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 3807 -> 2553[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3807[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];3807 -> 3822[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3807 -> 3823[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3806[label="compare1 xuu33000 xuu34000 xuu201",fontsize=16,color="burlywood",shape="triangle"];4715[label="xuu201/False",fontsize=10,color="white",style="solid",shape="box"];3806 -> 4715[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4715 -> 3824[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 4716[label="xuu201/True",fontsize=10,color="white",style="solid",shape="box"];3806 -> 4716[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4716 -> 3825[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 3809 -> 2558[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3809[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];3809 -> 3826[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3809 -> 3827[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3808[label="compare1 xuu33000 xuu34000 xuu202",fontsize=16,color="burlywood",shape="triangle"];4717[label="xuu202/False",fontsize=10,color="white",style="solid",shape="box"];3808 -> 4717[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4717 -> 3828[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 4718[label="xuu202/True",fontsize=10,color="white",style="solid",shape="box"];3808 -> 4718[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4718 -> 3829[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 2581[label="Succ (Succ (primPlusNat xuu28200 xuu9600))",fontsize=16,color="green",shape="box"];2581 -> 2927[label="",style="dashed", color="green", weight=3]; 26.72/10.91 2582[label="Succ xuu28200",fontsize=16,color="green",shape="box"];2583[label="Succ xuu9600",fontsize=16,color="green",shape="box"];2584[label="Zero",fontsize=16,color="green",shape="box"];2585[label="xuu9600",fontsize=16,color="green",shape="box"];2586[label="xuu28200",fontsize=16,color="green",shape="box"];2790[label="FiniteMap.mkBalBranch6Double_R (Just xuu400) xuu41 xuu44 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu44",fontsize=16,color="burlywood",shape="box"];4719[label="xuu284/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2790 -> 4719[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4719 -> 3159[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 4720[label="xuu284/FiniteMap.Branch xuu2840 xuu2841 xuu2842 xuu2843 xuu2844",fontsize=10,color="white",style="solid",shape="box"];2790 -> 4720[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4720 -> 3160[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 3862 -> 3831[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3862[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (Just xuu400) xuu41 xuu284 xuu44",fontsize=16,color="magenta"];3862 -> 3973[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3862 -> 3974[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3862 -> 3975[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3862 -> 3976[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3862 -> 3977[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3863[label="xuu283",fontsize=16,color="green",shape="box"];3864[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];3865[label="xuu281",fontsize=16,color="green",shape="box"];3866[label="xuu280",fontsize=16,color="green",shape="box"];3867 -> 3831[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3867[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu440 xuu441 xuu4434 xuu444",fontsize=16,color="magenta"];3867 -> 3978[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3867 -> 3979[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3867 -> 3980[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3867 -> 3981[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3867 -> 3982[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3868 -> 3831[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3868[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (Just xuu400) xuu41 xuu28 xuu4433",fontsize=16,color="magenta"];3868 -> 3983[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3868 -> 3984[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3868 -> 3985[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3868 -> 3986[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3868 -> 3987[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3869[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];3870[label="xuu4431",fontsize=16,color="green",shape="box"];3871[label="xuu4430",fontsize=16,color="green",shape="box"];2928[label="FiniteMap.mkBalBranch6Double_R Nothing xuu41 xuu44 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu44",fontsize=16,color="burlywood",shape="box"];4721[label="xuu364/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2928 -> 4721[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4721 -> 3616[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 4722[label="xuu364/FiniteMap.Branch xuu3640 xuu3641 xuu3642 xuu3643 xuu3644",fontsize=10,color="white",style="solid",shape="box"];2928 -> 4722[label="",style="solid", color="burlywood", weight=9]; 26.72/10.91 4722 -> 3617[label="",style="solid", color="burlywood", weight=3]; 26.72/10.91 3877 -> 3831[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3877[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) Nothing xuu41 xuu364 xuu44",fontsize=16,color="magenta"];3877 -> 3988[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3877 -> 3989[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3877 -> 3990[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3877 -> 3991[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3877 -> 3992[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3878[label="xuu363",fontsize=16,color="green",shape="box"];3879[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];3880[label="xuu361",fontsize=16,color="green",shape="box"];3881[label="xuu360",fontsize=16,color="green",shape="box"];3882 -> 3831[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3882[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu440 xuu441 xuu4434 xuu444",fontsize=16,color="magenta"];3882 -> 3993[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3882 -> 3994[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3882 -> 3995[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3882 -> 3996[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3882 -> 3997[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3883 -> 3831[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3883[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) Nothing xuu41 xuu36 xuu4433",fontsize=16,color="magenta"];3883 -> 3998[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3883 -> 3999[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3883 -> 4000[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3883 -> 4001[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3883 -> 4002[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3884[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];3885[label="xuu4431",fontsize=16,color="green",shape="box"];3886[label="xuu4430",fontsize=16,color="green",shape="box"];3810[label="xuu33000",fontsize=16,color="green",shape="box"];3811[label="xuu34000",fontsize=16,color="green",shape="box"];3812[label="compare1 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3812 -> 4003[label="",style="solid", color="black", weight=3]; 26.72/10.91 3813[label="compare1 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3813 -> 4004[label="",style="solid", color="black", weight=3]; 26.72/10.91 3814[label="xuu33000",fontsize=16,color="green",shape="box"];3815[label="xuu34000",fontsize=16,color="green",shape="box"];3816[label="compare1 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3816 -> 4005[label="",style="solid", color="black", weight=3]; 26.72/10.91 3817[label="compare1 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3817 -> 4006[label="",style="solid", color="black", weight=3]; 26.72/10.91 3818[label="xuu33000",fontsize=16,color="green",shape="box"];3819[label="xuu34000",fontsize=16,color="green",shape="box"];3820[label="compare1 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3820 -> 4007[label="",style="solid", color="black", weight=3]; 26.72/10.91 3821[label="compare1 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3821 -> 4008[label="",style="solid", color="black", weight=3]; 26.72/10.91 3822[label="xuu33000",fontsize=16,color="green",shape="box"];3823[label="xuu34000",fontsize=16,color="green",shape="box"];3824[label="compare1 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3824 -> 4009[label="",style="solid", color="black", weight=3]; 26.72/10.91 3825[label="compare1 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3825 -> 4010[label="",style="solid", color="black", weight=3]; 26.72/10.91 3826[label="xuu33000",fontsize=16,color="green",shape="box"];3827[label="xuu34000",fontsize=16,color="green",shape="box"];3828[label="compare1 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3828 -> 4011[label="",style="solid", color="black", weight=3]; 26.72/10.91 3829[label="compare1 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3829 -> 4012[label="",style="solid", color="black", weight=3]; 26.72/10.91 2927 -> 2095[label="",style="dashed", color="red", weight=0]; 26.72/10.91 2927[label="primPlusNat xuu28200 xuu9600",fontsize=16,color="magenta"];2927 -> 3761[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 2927 -> 3762[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3159[label="FiniteMap.mkBalBranch6Double_R (Just xuu400) xuu41 xuu44 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 FiniteMap.EmptyFM) (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 FiniteMap.EmptyFM) xuu44",fontsize=16,color="black",shape="box"];3159 -> 3763[label="",style="solid", color="black", weight=3]; 26.72/10.91 3160[label="FiniteMap.mkBalBranch6Double_R (Just xuu400) xuu41 xuu44 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 (FiniteMap.Branch xuu2840 xuu2841 xuu2842 xuu2843 xuu2844)) (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 (FiniteMap.Branch xuu2840 xuu2841 xuu2842 xuu2843 xuu2844)) xuu44",fontsize=16,color="black",shape="box"];3160 -> 3764[label="",style="solid", color="black", weight=3]; 26.72/10.91 3973[label="xuu44",fontsize=16,color="green",shape="box"];3974[label="xuu284",fontsize=16,color="green",shape="box"];3975[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];3976[label="xuu41",fontsize=16,color="green",shape="box"];3977[label="Just xuu400",fontsize=16,color="green",shape="box"];3978[label="xuu444",fontsize=16,color="green",shape="box"];3979[label="xuu4434",fontsize=16,color="green",shape="box"];3980[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];3981[label="xuu441",fontsize=16,color="green",shape="box"];3982[label="xuu440",fontsize=16,color="green",shape="box"];3983[label="xuu4433",fontsize=16,color="green",shape="box"];3984[label="xuu28",fontsize=16,color="green",shape="box"];3985[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];3986[label="xuu41",fontsize=16,color="green",shape="box"];3987[label="Just xuu400",fontsize=16,color="green",shape="box"];3616[label="FiniteMap.mkBalBranch6Double_R Nothing xuu41 xuu44 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 FiniteMap.EmptyFM) (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 FiniteMap.EmptyFM) xuu44",fontsize=16,color="black",shape="box"];3616 -> 3769[label="",style="solid", color="black", weight=3]; 26.72/10.91 3617[label="FiniteMap.mkBalBranch6Double_R Nothing xuu41 xuu44 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 (FiniteMap.Branch xuu3640 xuu3641 xuu3642 xuu3643 xuu3644)) (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 (FiniteMap.Branch xuu3640 xuu3641 xuu3642 xuu3643 xuu3644)) xuu44",fontsize=16,color="black",shape="box"];3617 -> 3770[label="",style="solid", color="black", weight=3]; 26.72/10.91 3988[label="xuu44",fontsize=16,color="green",shape="box"];3989[label="xuu364",fontsize=16,color="green",shape="box"];3990[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];3991[label="xuu41",fontsize=16,color="green",shape="box"];3992[label="Nothing",fontsize=16,color="green",shape="box"];3993[label="xuu444",fontsize=16,color="green",shape="box"];3994[label="xuu4434",fontsize=16,color="green",shape="box"];3995[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];3996[label="xuu441",fontsize=16,color="green",shape="box"];3997[label="xuu440",fontsize=16,color="green",shape="box"];3998[label="xuu4433",fontsize=16,color="green",shape="box"];3999[label="xuu36",fontsize=16,color="green",shape="box"];4000[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];4001[label="xuu41",fontsize=16,color="green",shape="box"];4002[label="Nothing",fontsize=16,color="green",shape="box"];4003[label="compare0 xuu33000 xuu34000 otherwise",fontsize=16,color="black",shape="box"];4003 -> 4034[label="",style="solid", color="black", weight=3]; 26.72/10.91 4004[label="LT",fontsize=16,color="green",shape="box"];4005[label="compare0 xuu33000 xuu34000 otherwise",fontsize=16,color="black",shape="box"];4005 -> 4035[label="",style="solid", color="black", weight=3]; 26.72/10.91 4006[label="LT",fontsize=16,color="green",shape="box"];4007[label="compare0 xuu33000 xuu34000 otherwise",fontsize=16,color="black",shape="box"];4007 -> 4036[label="",style="solid", color="black", weight=3]; 26.72/10.91 4008[label="LT",fontsize=16,color="green",shape="box"];4009[label="compare0 xuu33000 xuu34000 otherwise",fontsize=16,color="black",shape="box"];4009 -> 4037[label="",style="solid", color="black", weight=3]; 26.72/10.91 4010[label="LT",fontsize=16,color="green",shape="box"];4011[label="compare0 xuu33000 xuu34000 otherwise",fontsize=16,color="black",shape="box"];4011 -> 4038[label="",style="solid", color="black", weight=3]; 26.72/10.91 4012[label="LT",fontsize=16,color="green",shape="box"];3761[label="xuu28200",fontsize=16,color="green",shape="box"];3762[label="xuu9600",fontsize=16,color="green",shape="box"];3763[label="error []",fontsize=16,color="red",shape="box"];3764 -> 3831[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3764[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xuu2840 xuu2841 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu280 xuu281 xuu283 xuu2843) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (Just xuu400) xuu41 xuu2844 xuu44)",fontsize=16,color="magenta"];3764 -> 3922[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3764 -> 3923[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3764 -> 3924[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3764 -> 3925[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3764 -> 3926[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3769[label="error []",fontsize=16,color="red",shape="box"];3770 -> 3831[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3770[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xuu3640 xuu3641 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu360 xuu361 xuu363 xuu3643) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) Nothing xuu41 xuu3644 xuu44)",fontsize=16,color="magenta"];3770 -> 3937[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3770 -> 3938[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3770 -> 3939[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3770 -> 3940[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3770 -> 3941[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 4034[label="compare0 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];4034 -> 4040[label="",style="solid", color="black", weight=3]; 26.72/10.91 4035[label="compare0 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];4035 -> 4041[label="",style="solid", color="black", weight=3]; 26.72/10.91 4036[label="compare0 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];4036 -> 4042[label="",style="solid", color="black", weight=3]; 26.72/10.91 4037[label="compare0 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];4037 -> 4043[label="",style="solid", color="black", weight=3]; 26.72/10.91 4038[label="compare0 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];4038 -> 4044[label="",style="solid", color="black", weight=3]; 26.72/10.91 3922 -> 3831[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3922[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (Just xuu400) xuu41 xuu2844 xuu44",fontsize=16,color="magenta"];3922 -> 4013[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3922 -> 4014[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3922 -> 4015[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3922 -> 4016[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3922 -> 4017[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3923 -> 3831[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3923[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu280 xuu281 xuu283 xuu2843",fontsize=16,color="magenta"];3923 -> 4018[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3923 -> 4019[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3923 -> 4020[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3923 -> 4021[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3923 -> 4022[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3924[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];3925[label="xuu2841",fontsize=16,color="green",shape="box"];3926[label="xuu2840",fontsize=16,color="green",shape="box"];3937 -> 3831[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3937[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) Nothing xuu41 xuu3644 xuu44",fontsize=16,color="magenta"];3937 -> 4023[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3937 -> 4024[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3937 -> 4025[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3937 -> 4026[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3937 -> 4027[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3938 -> 3831[label="",style="dashed", color="red", weight=0]; 26.72/10.91 3938[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu360 xuu361 xuu363 xuu3643",fontsize=16,color="magenta"];3938 -> 4028[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3938 -> 4029[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3938 -> 4030[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3938 -> 4031[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3938 -> 4032[label="",style="dashed", color="magenta", weight=3]; 26.72/10.91 3939[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];3940[label="xuu3641",fontsize=16,color="green",shape="box"];3941[label="xuu3640",fontsize=16,color="green",shape="box"];4040[label="GT",fontsize=16,color="green",shape="box"];4041[label="GT",fontsize=16,color="green",shape="box"];4042[label="GT",fontsize=16,color="green",shape="box"];4043[label="GT",fontsize=16,color="green",shape="box"];4044[label="GT",fontsize=16,color="green",shape="box"];4013[label="xuu44",fontsize=16,color="green",shape="box"];4014[label="xuu2844",fontsize=16,color="green",shape="box"];4015[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];4016[label="xuu41",fontsize=16,color="green",shape="box"];4017[label="Just xuu400",fontsize=16,color="green",shape="box"];4018[label="xuu2843",fontsize=16,color="green",shape="box"];4019[label="xuu283",fontsize=16,color="green",shape="box"];4020[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];4021[label="xuu281",fontsize=16,color="green",shape="box"];4022[label="xuu280",fontsize=16,color="green",shape="box"];4023[label="xuu44",fontsize=16,color="green",shape="box"];4024[label="xuu3644",fontsize=16,color="green",shape="box"];4025[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];4026[label="xuu41",fontsize=16,color="green",shape="box"];4027[label="Nothing",fontsize=16,color="green",shape="box"];4028[label="xuu3643",fontsize=16,color="green",shape="box"];4029[label="xuu363",fontsize=16,color="green",shape="box"];4030[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];4031[label="xuu361",fontsize=16,color="green",shape="box"];4032[label="xuu360",fontsize=16,color="green",shape="box"];} 26.72/10.91 26.72/10.91 ---------------------------------------- 26.72/10.91 26.72/10.91 (16) 26.72/10.91 Complex Obligation (AND) 26.72/10.91 26.72/10.91 ---------------------------------------- 26.72/10.91 26.72/10.91 (17) 26.72/10.91 Obligation: 26.72/10.91 Q DP problem: 26.72/10.91 The TRS P consists of the following rules: 26.72/10.91 26.72/10.91 new_primCmpNat(Succ(xuu33000), Succ(xuu34000)) -> new_primCmpNat(xuu33000, xuu34000) 26.72/10.91 26.72/10.91 R is empty. 26.72/10.91 Q is empty. 26.72/10.91 We have to consider all minimal (P,Q,R)-chains. 26.72/10.91 ---------------------------------------- 26.72/10.91 26.72/10.91 (18) QDPSizeChangeProof (EQUIVALENT) 26.72/10.91 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. 26.72/10.91 26.72/10.91 From the DPs we obtained the following set of size-change graphs: 26.72/10.91 *new_primCmpNat(Succ(xuu33000), Succ(xuu34000)) -> new_primCmpNat(xuu33000, xuu34000) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2 26.72/10.91 26.72/10.91 26.72/10.91 ---------------------------------------- 26.72/10.91 26.72/10.91 (19) 26.72/10.91 YES 26.72/10.91 26.72/10.91 ---------------------------------------- 26.72/10.91 26.72/10.91 (20) 26.72/10.91 Obligation: 26.72/10.91 Q DP problem: 26.72/10.91 The TRS P consists of the following rules: 26.72/10.91 26.72/10.91 new_esEs(Right(xuu50000), Right(xuu4000), cb, app(app(ty_@2, ce), cf)) -> new_esEs0(xuu50000, xuu4000, ce, cf) 26.72/10.91 new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(ty_Maybe, fd), fa) -> new_esEs1(xuu50000, xuu4000, fd) 26.72/10.91 new_esEs2(:(xuu50000, xuu50001), :(xuu4000, xuu4001), hc) -> new_esEs2(xuu50001, xuu4001, hc) 26.72/10.91 new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), de, app(ty_Maybe, eb)) -> new_esEs1(xuu50001, xuu4001, eb) 26.72/10.91 new_esEs2(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(app(ty_@2, hf), hg)) -> new_esEs0(xuu50000, xuu4000, hf, hg) 26.72/10.91 new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), de, app(app(ty_Either, df), dg)) -> new_esEs(xuu50001, xuu4001, df, dg) 26.72/10.91 new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(app(app(ty_@3, bdh), bea), beb), baf, bcb) -> new_esEs3(xuu50000, xuu4000, bdh, bea, beb) 26.72/10.91 new_esEs(Right(xuu50000), Right(xuu4000), cb, app(app(app(ty_@3, db), dc), dd)) -> new_esEs3(xuu50000, xuu4000, db, dc, dd) 26.72/10.91 new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, baf, app(app(ty_Either, bag), bah)) -> new_esEs(xuu50002, xuu4002, bag, bah) 26.72/10.91 new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), de, app(app(ty_@2, dh), ea)) -> new_esEs0(xuu50001, xuu4001, dh, ea) 26.72/10.91 new_esEs1(Just(xuu50000), Just(xuu4000), app(app(ty_Either, gb), gc)) -> new_esEs(xuu50000, xuu4000, gb, gc) 26.72/10.91 new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(ty_[], bdg), baf, bcb) -> new_esEs2(xuu50000, xuu4000, bdg) 26.72/10.91 new_esEs2(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(app(ty_Either, hd), he)) -> new_esEs(xuu50000, xuu4000, hd, he) 26.72/10.91 new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs3(xuu50002, xuu4002, bbe, bbf, bbg) 26.72/10.91 new_esEs(Right(xuu50000), Right(xuu4000), cb, app(ty_Maybe, cg)) -> new_esEs1(xuu50000, xuu4000, cg) 26.72/10.91 new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(app(app(ty_@3, fg), fh), ga), fa) -> new_esEs3(xuu50000, xuu4000, fg, fh, ga) 26.72/10.91 new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(xuu50001, xuu4001, ed, ee, ef) 26.72/10.91 new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(app(ty_Either, eg), eh), fa) -> new_esEs(xuu50000, xuu4000, eg, eh) 26.72/10.91 new_esEs(Right(xuu50000), Right(xuu4000), cb, app(app(ty_Either, cc), cd)) -> new_esEs(xuu50000, xuu4000, cc, cd) 26.72/10.91 new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, app(app(ty_@2, bcc), bcd), bcb) -> new_esEs0(xuu50001, xuu4001, bcc, bcd) 26.72/10.91 new_esEs(Right(xuu50000), Right(xuu4000), cb, app(ty_[], da)) -> new_esEs2(xuu50000, xuu4000, da) 26.72/10.91 new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, app(ty_[], bcf), bcb) -> new_esEs2(xuu50001, xuu4001, bcf) 26.72/10.91 new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(app(ty_@2, bdd), bde), baf, bcb) -> new_esEs0(xuu50000, xuu4000, bdd, bde) 26.72/10.91 new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(ty_[], ff), fa) -> new_esEs2(xuu50000, xuu4000, ff) 26.72/10.91 new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, app(app(app(ty_@3, bcg), bch), bda), bcb) -> new_esEs3(xuu50001, xuu4001, bcg, bch, bda) 26.72/10.91 new_esEs1(Just(xuu50000), Just(xuu4000), app(app(app(ty_@3, gh), ha), hb)) -> new_esEs3(xuu50000, xuu4000, gh, ha, hb) 26.72/10.91 new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, baf, app(ty_[], bbd)) -> new_esEs2(xuu50002, xuu4002, bbd) 26.72/10.91 new_esEs(Left(xuu50000), Left(xuu4000), app(app(ty_Either, h), ba), bb) -> new_esEs(xuu50000, xuu4000, h, ba) 26.72/10.91 new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), de, app(ty_[], ec)) -> new_esEs2(xuu50001, xuu4001, ec) 26.72/10.91 new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, baf, app(app(ty_@2, bba), bbb)) -> new_esEs0(xuu50002, xuu4002, bba, bbb) 26.72/10.91 new_esEs1(Just(xuu50000), Just(xuu4000), app(ty_[], gg)) -> new_esEs2(xuu50000, xuu4000, gg) 26.72/10.91 new_esEs1(Just(xuu50000), Just(xuu4000), app(app(ty_@2, gd), ge)) -> new_esEs0(xuu50000, xuu4000, gd, ge) 26.72/10.91 new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(ty_Maybe, bdf), baf, bcb) -> new_esEs1(xuu50000, xuu4000, bdf) 26.72/10.91 new_esEs2(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(ty_[], baa)) -> new_esEs2(xuu50000, xuu4000, baa) 26.72/10.91 new_esEs(Left(xuu50000), Left(xuu4000), app(ty_[], bf), bb) -> new_esEs2(xuu50000, xuu4000, bf) 26.72/10.91 new_esEs(Left(xuu50000), Left(xuu4000), app(ty_Maybe, be), bb) -> new_esEs1(xuu50000, xuu4000, be) 26.72/10.91 new_esEs(Left(xuu50000), Left(xuu4000), app(app(app(ty_@3, bg), bh), ca), bb) -> new_esEs3(xuu50000, xuu4000, bg, bh, ca) 26.72/10.91 new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, app(ty_Maybe, bce), bcb) -> new_esEs1(xuu50001, xuu4001, bce) 26.72/10.91 new_esEs(Left(xuu50000), Left(xuu4000), app(app(ty_@2, bc), bd), bb) -> new_esEs0(xuu50000, xuu4000, bc, bd) 26.72/10.91 new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(app(ty_Either, bdb), bdc), baf, bcb) -> new_esEs(xuu50000, xuu4000, bdb, bdc) 26.72/10.91 new_esEs1(Just(xuu50000), Just(xuu4000), app(ty_Maybe, gf)) -> new_esEs1(xuu50000, xuu4000, gf) 26.72/10.91 new_esEs2(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(xuu50000, xuu4000, bab, bac, bad) 26.72/10.91 new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, baf, app(ty_Maybe, bbc)) -> new_esEs1(xuu50002, xuu4002, bbc) 26.72/10.91 new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(app(ty_@2, fb), fc), fa) -> new_esEs0(xuu50000, xuu4000, fb, fc) 26.72/10.91 new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, app(app(ty_Either, bbh), bca), bcb) -> new_esEs(xuu50001, xuu4001, bbh, bca) 26.72/10.91 new_esEs2(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(ty_Maybe, hh)) -> new_esEs1(xuu50000, xuu4000, hh) 26.72/10.91 26.72/10.91 R is empty. 26.72/10.91 Q is empty. 26.72/10.91 We have to consider all minimal (P,Q,R)-chains. 26.72/10.91 ---------------------------------------- 26.72/10.91 26.72/10.91 (21) QDPSizeChangeProof (EQUIVALENT) 26.72/10.91 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. 26.72/10.91 26.72/10.91 From the DPs we obtained the following set of size-change graphs: 26.72/10.91 *new_esEs1(Just(xuu50000), Just(xuu4000), app(app(ty_Either, gb), gc)) -> new_esEs(xuu50000, xuu4000, gb, gc) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs1(Just(xuu50000), Just(xuu4000), app(app(ty_@2, gd), ge)) -> new_esEs0(xuu50000, xuu4000, gd, ge) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs2(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(app(ty_Either, hd), he)) -> new_esEs(xuu50000, xuu4000, hd, he) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs1(Just(xuu50000), Just(xuu4000), app(ty_[], gg)) -> new_esEs2(xuu50000, xuu4000, gg) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs2(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(app(ty_@2, hf), hg)) -> new_esEs0(xuu50000, xuu4000, hf, hg) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs1(Just(xuu50000), Just(xuu4000), app(app(app(ty_@3, gh), ha), hb)) -> new_esEs3(xuu50000, xuu4000, gh, ha, hb) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs1(Just(xuu50000), Just(xuu4000), app(ty_Maybe, gf)) -> new_esEs1(xuu50000, xuu4000, gf) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs2(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(xuu50000, xuu4000, bab, bac, bad) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs2(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(ty_Maybe, hh)) -> new_esEs1(xuu50000, xuu4000, hh) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), de, app(app(ty_Either, df), dg)) -> new_esEs(xuu50001, xuu4001, df, dg) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(app(ty_Either, eg), eh), fa) -> new_esEs(xuu50000, xuu4000, eg, eh) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), de, app(app(ty_@2, dh), ea)) -> new_esEs0(xuu50001, xuu4001, dh, ea) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(app(ty_@2, fb), fc), fa) -> new_esEs0(xuu50000, xuu4000, fb, fc) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(ty_[], ff), fa) -> new_esEs2(xuu50000, xuu4000, ff) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), de, app(ty_[], ec)) -> new_esEs2(xuu50001, xuu4001, ec) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(app(app(ty_@3, fg), fh), ga), fa) -> new_esEs3(xuu50000, xuu4000, fg, fh, ga) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(xuu50001, xuu4001, ed, ee, ef) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(ty_Maybe, fd), fa) -> new_esEs1(xuu50000, xuu4000, fd) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), de, app(ty_Maybe, eb)) -> new_esEs1(xuu50001, xuu4001, eb) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs(Right(xuu50000), Right(xuu4000), cb, app(app(ty_Either, cc), cd)) -> new_esEs(xuu50000, xuu4000, cc, cd) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs(Left(xuu50000), Left(xuu4000), app(app(ty_Either, h), ba), bb) -> new_esEs(xuu50000, xuu4000, h, ba) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, baf, app(app(ty_Either, bag), bah)) -> new_esEs(xuu50002, xuu4002, bag, bah) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(app(ty_Either, bdb), bdc), baf, bcb) -> new_esEs(xuu50000, xuu4000, bdb, bdc) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, app(app(ty_Either, bbh), bca), bcb) -> new_esEs(xuu50001, xuu4001, bbh, bca) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs(Right(xuu50000), Right(xuu4000), cb, app(app(ty_@2, ce), cf)) -> new_esEs0(xuu50000, xuu4000, ce, cf) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs(Left(xuu50000), Left(xuu4000), app(app(ty_@2, bc), bd), bb) -> new_esEs0(xuu50000, xuu4000, bc, bd) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, app(app(ty_@2, bcc), bcd), bcb) -> new_esEs0(xuu50001, xuu4001, bcc, bcd) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(app(ty_@2, bdd), bde), baf, bcb) -> new_esEs0(xuu50000, xuu4000, bdd, bde) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, baf, app(app(ty_@2, bba), bbb)) -> new_esEs0(xuu50002, xuu4002, bba, bbb) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs2(:(xuu50000, xuu50001), :(xuu4000, xuu4001), hc) -> new_esEs2(xuu50001, xuu4001, hc) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs2(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(ty_[], baa)) -> new_esEs2(xuu50000, xuu4000, baa) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs(Right(xuu50000), Right(xuu4000), cb, app(ty_[], da)) -> new_esEs2(xuu50000, xuu4000, da) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs(Left(xuu50000), Left(xuu4000), app(ty_[], bf), bb) -> new_esEs2(xuu50000, xuu4000, bf) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(ty_[], bdg), baf, bcb) -> new_esEs2(xuu50000, xuu4000, bdg) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, app(ty_[], bcf), bcb) -> new_esEs2(xuu50001, xuu4001, bcf) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, baf, app(ty_[], bbd)) -> new_esEs2(xuu50002, xuu4002, bbd) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs(Right(xuu50000), Right(xuu4000), cb, app(app(app(ty_@3, db), dc), dd)) -> new_esEs3(xuu50000, xuu4000, db, dc, dd) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs(Left(xuu50000), Left(xuu4000), app(app(app(ty_@3, bg), bh), ca), bb) -> new_esEs3(xuu50000, xuu4000, bg, bh, ca) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs(Right(xuu50000), Right(xuu4000), cb, app(ty_Maybe, cg)) -> new_esEs1(xuu50000, xuu4000, cg) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs(Left(xuu50000), Left(xuu4000), app(ty_Maybe, be), bb) -> new_esEs1(xuu50000, xuu4000, be) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(app(app(ty_@3, bdh), bea), beb), baf, bcb) -> new_esEs3(xuu50000, xuu4000, bdh, bea, beb) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs3(xuu50002, xuu4002, bbe, bbf, bbg) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, app(app(app(ty_@3, bcg), bch), bda), bcb) -> new_esEs3(xuu50001, xuu4001, bcg, bch, bda) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(ty_Maybe, bdf), baf, bcb) -> new_esEs1(xuu50000, xuu4000, bdf) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, app(ty_Maybe, bce), bcb) -> new_esEs1(xuu50001, xuu4001, bce) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.72/10.91 26.72/10.91 26.72/10.91 *new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, baf, app(ty_Maybe, bbc)) -> new_esEs1(xuu50002, xuu4002, bbc) 26.72/10.91 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.72/10.91 26.72/10.91 26.72/10.91 ---------------------------------------- 26.72/10.91 26.72/10.91 (22) 26.72/10.91 YES 26.72/10.91 26.72/10.91 ---------------------------------------- 26.72/10.91 26.72/10.91 (23) 26.72/10.91 Obligation: 26.72/10.91 Q DP problem: 26.72/10.91 The TRS P consists of the following rules: 26.72/10.91 26.72/10.91 new_compare20(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(app(ty_@2, de), df))) -> new_ltEs(xuu33000, xuu34000, de, df) 26.72/10.91 new_compare20(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, bda), app(app(ty_@2, bdb), bdc))) -> new_ltEs(xuu33000, xuu34000, bdb, bdc) 26.72/10.91 new_ltEs2(:(xuu33000, xuu33001), :(xuu34000, xuu34001), bae) -> new_compare(xuu33001, xuu34001, bae) 26.72/10.91 new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, h), app(app(ty_Either, bh), ca))) -> new_ltEs3(xuu33001, xuu34001, bh, ca) 26.72/10.91 new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, ef), eg), app(ty_Maybe, fb))) -> new_ltEs0(xuu33002, xuu34002, fb) 26.72/10.91 new_lt3(xuu33000, xuu34000, dc, dd) -> new_compare22(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, dc, dd), dc, dd) 26.72/10.91 new_ltEs0(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, dh), ea), eb)) -> new_ltEs1(xuu33000, xuu34000, dh, ea, eb) 26.72/10.91 new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(ty_Maybe, hf)), eg), gd)) -> new_lt0(xuu33000, xuu34000, hf) 26.72/10.91 new_compare20(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(app(ty_@2, bbg), bbh)), bca)) -> new_ltEs(xuu33000, xuu34000, bbg, bbh) 26.72/10.91 new_ltEs1(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), ef, app(app(app(ty_@3, gf), gg), gh), gd) -> new_lt1(xuu33001, xuu34001, gf, gg, gh) 26.72/10.91 new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(app(ty_@2, cb), cc)), cd)) -> new_compare2(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, cb, cc), cb, cc) 26.72/10.91 new_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(ty_Maybe, ce), cd) -> new_compare20(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, ce), ce) 26.72/10.91 new_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(app(ty_Either, dc), dd), cd) -> new_compare22(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, dc, dd), dc, dd) 26.72/10.91 new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, h), app(app(ty_@2, ba), bb))) -> new_ltEs(xuu33001, xuu34001, ba, bb) 26.72/10.91 new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, ef), eg), app(app(app(ty_@3, fc), fd), ff))) -> new_ltEs1(xuu33002, xuu34002, fc, fd, ff) 26.72/10.91 new_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), h, app(app(ty_Either, bh), ca)) -> new_ltEs3(xuu33001, xuu34001, bh, ca) 26.72/10.91 new_lt(xuu33000, xuu34000, cb, cc) -> new_compare2(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, cb, cc), cb, cc) 26.72/10.91 new_ltEs1(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), ef, app(ty_[], ha), gd) -> new_lt2(xuu33001, xuu34001, ha) 26.72/10.91 new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, ef), app(ty_[], ha)), gd)) -> new_lt2(xuu33001, xuu34001, ha) 26.72/10.91 new_ltEs1(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(app(ty_@2, hd), he), eg, gd) -> new_lt(xuu33000, xuu34000, hd, he) 26.72/10.91 new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(app(app(ty_@3, cf), cg), da)), cd)) -> new_compare21(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, cf, cg, da), cf, cg, da) 26.72/10.91 new_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), h, app(ty_Maybe, bc)) -> new_ltEs0(xuu33001, xuu34001, bc) 26.72/10.91 new_ltEs1(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), ef, eg, app(ty_[], fg)) -> new_ltEs2(xuu33002, xuu34002, fg) 26.72/10.91 new_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), h, app(app(app(ty_@3, bd), be), bf)) -> new_ltEs1(xuu33001, xuu34001, bd, be, bf) 26.72/10.91 new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, ef), eg), app(app(ty_Either, fh), ga))) -> new_ltEs3(xuu33002, xuu34002, fh, ga) 26.72/10.91 new_lt1(xuu33000, xuu34000, cf, cg, da) -> new_compare21(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, cf, cg, da), cf, cg, da) 26.72/10.91 new_ltEs1(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), ef, app(app(ty_Either, hb), hc), gd) -> new_lt3(xuu33001, xuu34001, hb, hc) 26.72/10.91 new_ltEs2(:(xuu33000, xuu33001), :(xuu34000, xuu34001), bae) -> new_primCompAux(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, bae), bae) 26.72/10.91 new_compare20(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(ty_[], ec))) -> new_ltEs2(xuu33000, xuu34000, ec) 26.72/10.91 new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, h), app(app(app(ty_@3, bd), be), bf))) -> new_ltEs1(xuu33001, xuu34001, bd, be, bf) 26.72/10.91 new_lt2(xuu33000, xuu34000, db) -> new_compare(xuu33000, xuu34000, db) 26.72/10.91 new_ltEs0(Just(xuu33000), Just(xuu34000), app(ty_Maybe, dg)) -> new_ltEs0(xuu33000, xuu34000, dg) 26.72/10.91 new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, h), app(ty_Maybe, bc))) -> new_ltEs0(xuu33001, xuu34001, bc) 26.72/10.91 new_compare20(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, bda), app(ty_[], bdh))) -> new_ltEs2(xuu33000, xuu34000, bdh) 26.72/10.91 new_ltEs3(Right(xuu33000), Right(xuu34000), bda, app(app(ty_@2, bdb), bdc)) -> new_ltEs(xuu33000, xuu34000, bdb, bdc) 26.72/10.91 new_compare20(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(ty_[], bcf)), bca)) -> new_ltEs2(xuu33000, xuu34000, bcf) 26.72/10.91 new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, ef), eg), app(app(ty_@2, eh), fa))) -> new_ltEs(xuu33002, xuu34002, eh, fa) 26.72/10.91 new_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), h, app(app(ty_@2, ba), bb)) -> new_ltEs(xuu33001, xuu34001, ba, bb) 26.72/10.91 new_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(app(ty_@2, cb), cc), cd) -> new_compare2(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, cb, cc), cb, cc) 26.72/10.91 new_ltEs1(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(app(app(ty_@3, hg), hh), baa), eg, gd) -> new_lt1(xuu33000, xuu34000, hg, hh, baa) 26.72/10.91 new_primCompAux(xuu33000, xuu34000, xuu172, app(app(ty_Either, bbe), bbf)) -> new_compare5(xuu33000, xuu34000, bbe, bbf) 26.72/10.91 new_ltEs1(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), ef, eg, app(app(ty_@2, eh), fa)) -> new_ltEs(xuu33002, xuu34002, eh, fa) 26.72/10.91 new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, ef), eg), app(ty_[], fg))) -> new_ltEs2(xuu33002, xuu34002, fg) 26.72/10.91 new_ltEs1(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(app(ty_Either, bac), bad), eg, gd) -> new_lt3(xuu33000, xuu34000, bac, bad) 26.72/10.91 new_compare20(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(app(ty_Either, ed), ee))) -> new_ltEs3(xuu33000, xuu34000, ed, ee) 26.72/10.91 new_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(ty_[], db), cd) -> new_compare(xuu33000, xuu34000, db) 26.72/10.91 new_ltEs1(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), ef, app(app(ty_@2, gb), gc), gd) -> new_lt(xuu33001, xuu34001, gb, gc) 26.72/10.91 new_ltEs3(Left(xuu33000), Left(xuu34000), app(app(ty_@2, bbg), bbh), bca) -> new_ltEs(xuu33000, xuu34000, bbg, bbh) 26.72/10.91 new_compare20(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(app(app(ty_@3, dh), ea), eb))) -> new_ltEs1(xuu33000, xuu34000, dh, ea, eb) 26.72/10.91 new_compare20(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(app(app(ty_@3, bcc), bcd), bce)), bca)) -> new_ltEs1(xuu33000, xuu34000, bcc, bcd, bce) 26.72/10.91 new_ltEs3(Right(xuu33000), Right(xuu34000), bda, app(ty_[], bdh)) -> new_ltEs2(xuu33000, xuu34000, bdh) 26.72/10.91 new_ltEs3(Left(xuu33000), Left(xuu34000), app(app(ty_Either, bcg), bch), bca) -> new_ltEs3(xuu33000, xuu34000, bcg, bch) 26.72/10.91 new_ltEs0(Just(xuu33000), Just(xuu34000), app(app(ty_@2, de), df)) -> new_ltEs(xuu33000, xuu34000, de, df) 26.72/10.91 new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, ef), app(app(app(ty_@3, gf), gg), gh)), gd)) -> new_lt1(xuu33001, xuu34001, gf, gg, gh) 26.72/10.91 new_primCompAux(xuu33000, xuu34000, xuu172, app(ty_Maybe, bah)) -> new_compare3(xuu33000, xuu34000, bah) 26.72/10.91 new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, ef), app(app(ty_@2, gb), gc)), gd)) -> new_lt(xuu33001, xuu34001, gb, gc) 26.72/10.91 new_ltEs0(Just(xuu33000), Just(xuu34000), app(app(ty_Either, ed), ee)) -> new_ltEs3(xuu33000, xuu34000, ed, ee) 26.72/10.91 new_primCompAux(xuu33000, xuu34000, xuu172, app(app(app(ty_@3, bba), bbb), bbc)) -> new_compare4(xuu33000, xuu34000, bba, bbb, bbc) 26.72/10.91 new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(app(ty_Either, bac), bad)), eg), gd)) -> new_lt3(xuu33000, xuu34000, bac, bad) 26.72/10.91 new_compare20(Just(:(xuu33000, xuu33001)), Just(:(xuu34000, xuu34001)), False, app(ty_[], bae)) -> new_compare(xuu33001, xuu34001, bae) 26.72/10.91 new_ltEs3(Right(xuu33000), Right(xuu34000), bda, app(app(app(ty_@3, bde), bdf), bdg)) -> new_ltEs1(xuu33000, xuu34000, bde, bdf, bdg) 26.72/10.91 new_compare22(xuu33000, xuu34000, False, dc, dd) -> new_ltEs3(xuu33000, xuu34000, dc, dd) 26.72/10.91 new_compare21(xuu33000, xuu34000, False, cf, cg, da) -> new_ltEs1(xuu33000, xuu34000, cf, cg, da) 26.72/10.91 new_ltEs3(Right(xuu33000), Right(xuu34000), bda, app(app(ty_Either, bea), beb)) -> new_ltEs3(xuu33000, xuu34000, bea, beb) 26.72/10.91 new_compare20(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(app(ty_Either, bcg), bch)), bca)) -> new_ltEs3(xuu33000, xuu34000, bcg, bch) 26.72/10.91 new_ltEs1(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), ef, eg, app(app(ty_Either, fh), ga)) -> new_ltEs3(xuu33002, xuu34002, fh, ga) 26.72/10.91 new_compare(:(xuu33000, xuu33001), :(xuu34000, xuu34001), bae) -> new_primCompAux(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, bae), bae) 26.72/10.91 new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(ty_Maybe, ce)), cd)) -> new_compare20(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, ce), ce) 26.72/10.91 new_compare20(Just(:(xuu33000, xuu33001)), Just(:(xuu34000, xuu34001)), False, app(ty_[], bae)) -> new_primCompAux(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, bae), bae) 26.72/10.91 new_compare20(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(ty_Maybe, dg))) -> new_ltEs0(xuu33000, xuu34000, dg) 26.72/10.91 new_ltEs3(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, bcc), bcd), bce), bca) -> new_ltEs1(xuu33000, xuu34000, bcc, bcd, bce) 26.72/10.91 new_lt0(xuu33000, xuu34000, ce) -> new_compare20(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, ce), ce) 26.72/10.91 new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, ef), app(ty_Maybe, ge)), gd)) -> new_lt0(xuu33001, xuu34001, ge) 26.72/10.91 new_compare5(xuu33000, xuu34000, dc, dd) -> new_compare22(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, dc, dd), dc, dd) 26.72/10.91 new_primCompAux(xuu33000, xuu34000, xuu172, app(ty_[], bbd)) -> new_compare(xuu33000, xuu34000, bbd) 26.72/10.91 new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, h), app(ty_[], bg))) -> new_ltEs2(xuu33001, xuu34001, bg) 26.72/10.91 new_ltEs1(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(ty_Maybe, hf), eg, gd) -> new_lt0(xuu33000, xuu34000, hf) 26.72/10.91 new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(app(ty_@2, hd), he)), eg), gd)) -> new_lt(xuu33000, xuu34000, hd, he) 26.72/10.91 new_compare20(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, bda), app(ty_Maybe, bdd))) -> new_ltEs0(xuu33000, xuu34000, bdd) 26.72/10.91 new_ltEs3(Left(xuu33000), Left(xuu34000), app(ty_Maybe, bcb), bca) -> new_ltEs0(xuu33000, xuu34000, bcb) 26.72/10.91 new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(app(app(ty_@3, hg), hh), baa)), eg), gd)) -> new_lt1(xuu33000, xuu34000, hg, hh, baa) 26.72/10.91 new_compare4(xuu33000, xuu34000, cf, cg, da) -> new_compare21(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, cf, cg, da), cf, cg, da) 26.72/10.91 new_ltEs1(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), ef, eg, app(app(app(ty_@3, fc), fd), ff)) -> new_ltEs1(xuu33002, xuu34002, fc, fd, ff) 26.72/10.91 new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, ef), app(app(ty_Either, hb), hc)), gd)) -> new_lt3(xuu33001, xuu34001, hb, hc) 26.72/10.91 new_ltEs0(Just(xuu33000), Just(xuu34000), app(ty_[], ec)) -> new_ltEs2(xuu33000, xuu34000, ec) 26.72/10.91 new_compare(:(xuu33000, xuu33001), :(xuu34000, xuu34001), bae) -> new_compare(xuu33001, xuu34001, bae) 26.72/10.91 new_compare20(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(ty_Maybe, bcb)), bca)) -> new_ltEs0(xuu33000, xuu34000, bcb) 26.72/10.91 new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(app(ty_Either, dc), dd)), cd)) -> new_compare22(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, dc, dd), dc, dd) 26.72/10.91 new_compare2(xuu33000, xuu34000, False, cb, cc) -> new_ltEs(xuu33000, xuu34000, cb, cc) 26.72/10.91 new_compare20(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, bda), app(app(ty_Either, bea), beb))) -> new_ltEs3(xuu33000, xuu34000, bea, beb) 26.72/10.91 new_ltEs3(Right(xuu33000), Right(xuu34000), bda, app(ty_Maybe, bdd)) -> new_ltEs0(xuu33000, xuu34000, bdd) 26.72/10.91 new_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(app(app(ty_@3, cf), cg), da), cd) -> new_compare21(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, cf, cg, da), cf, cg, da) 26.72/10.91 new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(ty_[], bab)), eg), gd)) -> new_lt2(xuu33000, xuu34000, bab) 26.72/10.91 new_ltEs1(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(ty_[], bab), eg, gd) -> new_lt2(xuu33000, xuu34000, bab) 26.72/10.91 new_ltEs3(Left(xuu33000), Left(xuu34000), app(ty_[], bcf), bca) -> new_ltEs2(xuu33000, xuu34000, bcf) 26.72/10.91 new_ltEs1(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), ef, app(ty_Maybe, ge), gd) -> new_lt0(xuu33001, xuu34001, ge) 26.72/10.91 new_ltEs1(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), ef, eg, app(ty_Maybe, fb)) -> new_ltEs0(xuu33002, xuu34002, fb) 26.72/10.91 new_compare3(xuu33000, xuu34000, ce) -> new_compare20(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, ce), ce) 26.72/10.91 new_primCompAux(xuu33000, xuu34000, xuu172, app(app(ty_@2, baf), bag)) -> new_compare1(xuu33000, xuu34000, baf, bag) 26.72/10.91 new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(ty_[], db)), cd)) -> new_compare(xuu33000, xuu34000, db) 26.72/10.91 new_compare1(xuu33000, xuu34000, cb, cc) -> new_compare2(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, cb, cc), cb, cc) 26.72/10.91 new_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), h, app(ty_[], bg)) -> new_ltEs2(xuu33001, xuu34001, bg) 26.72/10.91 new_compare20(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, bda), app(app(app(ty_@3, bde), bdf), bdg))) -> new_ltEs1(xuu33000, xuu34000, bde, bdf, bdg) 26.72/10.91 26.72/10.91 The TRS R consists of the following rules: 26.72/10.91 26.72/10.91 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Int) -> new_ltEs13(xuu33000, xuu34000) 26.72/10.91 new_esEs11(xuu50000, xuu4000, ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.91 new_primCmpInt(Neg(Succ(xuu3300)), Pos(xuu340)) -> LT 26.72/10.91 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 26.72/10.91 new_ltEs4(Left(xuu33000), Left(xuu34000), app(ty_[], bcf), bca) -> new_ltEs15(xuu33000, xuu34000, bcf) 26.72/10.91 new_primPlusNat0(Zero, Zero) -> Zero 26.72/10.91 new_lt6(xuu33000, xuu34000, app(app(ty_@2, cb), cc)) -> new_lt8(xuu33000, xuu34000, cb, cc) 26.72/10.91 new_compare8(xuu33000, xuu34000, ty_Ordering) -> new_compare16(xuu33000, xuu34000) 26.72/10.91 new_pePe(True, xuu161) -> True 26.72/10.91 new_primCmpNat0(xuu3300, Succ(xuu3400)) -> new_primCmpNat1(xuu3300, xuu3400) 26.72/10.91 new_esEs24(xuu50001, xuu4001, ty_Int) -> new_esEs19(xuu50001, xuu4001) 26.72/10.91 new_esEs21(xuu50001, xuu4001, app(ty_Ratio, cbe)) -> new_esEs18(xuu50001, xuu4001, cbe) 26.72/10.91 new_ltEs12(LT, LT) -> True 26.72/10.91 new_esEs10(xuu50001, xuu4001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs6(xuu50001, xuu4001, bfe, bff, bfg) 26.72/10.91 new_lt19(xuu33001, xuu34001, app(ty_[], ha)) -> new_lt14(xuu33001, xuu34001, ha) 26.72/10.91 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 26.72/10.91 new_esEs27(xuu33001, xuu34001, app(ty_[], ha)) -> new_esEs16(xuu33001, xuu34001, ha) 26.72/10.91 new_primCmpInt(Pos(Zero), Neg(Succ(xuu3400))) -> GT 26.72/10.91 new_esEs26(xuu50000, xuu4000, ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.91 new_esEs22(xuu50000, xuu4000, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.91 new_ltEs19(xuu3300, xuu3400, app(app(ty_@2, h), cd)) -> new_ltEs5(xuu3300, xuu3400, h, cd) 26.72/10.91 new_ltEs4(Right(xuu33000), Right(xuu34000), bda, app(ty_[], bdh)) -> new_ltEs15(xuu33000, xuu34000, bdh) 26.72/10.91 new_lt7(xuu33000, xuu34000, cde) -> new_esEs8(new_compare9(xuu33000, xuu34000, cde), LT) 26.72/10.91 new_primMulNat0(Succ(xuu5000100), Succ(xuu400000)) -> new_primPlusNat1(new_primMulNat0(xuu5000100, Succ(xuu400000)), xuu400000) 26.72/10.91 new_compare8(xuu33000, xuu34000, app(ty_Ratio, cdc)) -> new_compare9(xuu33000, xuu34000, cdc) 26.72/10.91 new_compare28(xuu33000, xuu34000, False, cb, cc) -> new_compare114(xuu33000, xuu34000, new_ltEs5(xuu33000, xuu34000, cb, cc), cb, cc) 26.72/10.91 new_esEs23(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) 26.72/10.91 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Double, cea) -> new_esEs13(xuu50000, xuu4000) 26.72/10.91 new_compare8(xuu33000, xuu34000, ty_Double) -> new_compare19(xuu33000, xuu34000) 26.72/10.91 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Double, bca) -> new_ltEs17(xuu33000, xuu34000) 26.72/10.91 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.91 new_lt19(xuu33001, xuu34001, ty_Int) -> new_lt4(xuu33001, xuu34001) 26.72/10.91 new_lt19(xuu33001, xuu34001, app(app(ty_Either, hb), hc)) -> new_lt18(xuu33001, xuu34001, hb, hc) 26.72/10.91 new_primCmpNat1(Succ(xuu33000), Succ(xuu34000)) -> new_primCmpNat1(xuu33000, xuu34000) 26.72/10.91 new_ltEs19(xuu3300, xuu3400, ty_Char) -> new_ltEs11(xuu3300, xuu3400) 26.72/10.91 new_esEs28(xuu33000, xuu34000, app(app(ty_Either, bac), bad)) -> new_esEs7(xuu33000, xuu34000, bac, bad) 26.72/10.91 new_ltEs15(xuu3300, xuu3400, bae) -> new_fsEs(new_compare0(xuu3300, xuu3400, bae)) 26.72/10.91 new_esEs13(Double(xuu50000, xuu50001), Double(xuu4000, xuu4001)) -> new_esEs19(new_sr(xuu50000, xuu4001), new_sr(xuu50001, xuu4000)) 26.72/10.91 new_ltEs6(xuu33001, xuu34001, ty_@0) -> new_ltEs16(xuu33001, xuu34001) 26.72/10.91 new_compare26(xuu33000, xuu34000, True) -> EQ 26.72/10.91 new_esEs10(xuu50001, xuu4001, ty_Char) -> new_esEs12(xuu50001, xuu4001) 26.72/10.91 new_esEs8(GT, GT) -> True 26.72/10.91 new_primEqInt(Pos(Succ(xuu500000)), Pos(Zero)) -> False 26.72/10.91 new_primEqInt(Pos(Zero), Pos(Succ(xuu40000))) -> False 26.72/10.91 new_lt12(xuu33000, xuu34000) -> new_esEs8(new_compare16(xuu33000, xuu34000), LT) 26.72/10.91 new_esEs7(Right(xuu50000), Right(xuu4000), cfd, app(app(app(ty_@3, cgd), cge), cgf)) -> new_esEs6(xuu50000, xuu4000, cgd, cge, cgf) 26.72/10.91 new_fsEs(xuu146) -> new_not(new_esEs8(xuu146, GT)) 26.72/10.91 new_compare25(Just(xuu3300), Just(xuu3400), False, dae) -> new_compare10(xuu3300, xuu3400, new_ltEs19(xuu3300, xuu3400, dae), dae) 26.72/10.91 new_ltEs19(xuu3300, xuu3400, ty_Bool) -> new_ltEs14(xuu3300, xuu3400) 26.72/10.91 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.91 new_esEs20(xuu50002, xuu4002, ty_Int) -> new_esEs19(xuu50002, xuu4002) 26.72/10.91 new_esEs8(EQ, EQ) -> True 26.72/10.91 new_ltEs20(xuu33002, xuu34002, ty_Char) -> new_ltEs11(xuu33002, xuu34002) 26.72/10.91 new_primEqNat0(Succ(xuu500000), Succ(xuu40000)) -> new_primEqNat0(xuu500000, xuu40000) 26.72/10.91 new_esEs27(xuu33001, xuu34001, ty_Integer) -> new_esEs15(xuu33001, xuu34001) 26.72/10.91 new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare6(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 26.72/10.91 new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare6(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 26.72/10.91 new_ltEs20(xuu33002, xuu34002, ty_Integer) -> new_ltEs10(xuu33002, xuu34002) 26.72/10.91 new_esEs21(xuu50001, xuu4001, ty_Double) -> new_esEs13(xuu50001, xuu4001) 26.72/10.91 new_esEs10(xuu50001, xuu4001, ty_Float) -> new_esEs14(xuu50001, xuu4001) 26.72/10.91 new_esEs22(xuu50000, xuu4000, ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.91 new_not(True) -> False 26.72/10.91 new_lt20(xuu33000, xuu34000, app(ty_Ratio, dcc)) -> new_lt7(xuu33000, xuu34000, dcc) 26.72/10.91 new_ltEs4(Right(xuu33000), Right(xuu34000), bda, app(app(ty_@2, bdb), bdc)) -> new_ltEs5(xuu33000, xuu34000, bdb, bdc) 26.72/10.91 new_ltEs12(LT, GT) -> True 26.72/10.91 new_lt14(xuu33000, xuu34000, db) -> new_esEs8(new_compare0(xuu33000, xuu34000, db), LT) 26.72/10.91 new_lt19(xuu33001, xuu34001, app(ty_Ratio, dcb)) -> new_lt7(xuu33001, xuu34001, dcb) 26.72/10.91 new_primCompAux00(xuu178, LT) -> LT 26.72/10.91 new_esEs10(xuu50001, xuu4001, app(ty_Ratio, bfd)) -> new_esEs18(xuu50001, xuu4001, bfd) 26.72/10.91 new_esEs21(xuu50001, xuu4001, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs6(xuu50001, xuu4001, cbf, cbg, cbh) 26.72/10.91 new_esEs27(xuu33001, xuu34001, ty_Bool) -> new_esEs17(xuu33001, xuu34001) 26.72/10.91 new_esEs20(xuu50002, xuu4002, app(app(app(ty_@3, cad), cae), caf)) -> new_esEs6(xuu50002, xuu4002, cad, cae, caf) 26.72/10.91 new_esEs26(xuu50000, xuu4000, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.91 new_esEs20(xuu50002, xuu4002, app(app(ty_Either, bhe), bhf)) -> new_esEs7(xuu50002, xuu4002, bhe, bhf) 26.72/10.91 new_compare8(xuu33000, xuu34000, ty_Float) -> new_compare7(xuu33000, xuu34000) 26.72/10.91 new_ltEs19(xuu3300, xuu3400, ty_Integer) -> new_ltEs10(xuu3300, xuu3400) 26.72/10.91 new_esEs10(xuu50001, xuu4001, ty_Ordering) -> new_esEs8(xuu50001, xuu4001) 26.72/10.91 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Integer, cea) -> new_esEs15(xuu50000, xuu4000) 26.72/10.91 new_ltEs19(xuu3300, xuu3400, ty_Double) -> new_ltEs17(xuu3300, xuu3400) 26.72/10.91 new_esEs11(xuu50000, xuu4000, app(ty_Ratio, bgf)) -> new_esEs18(xuu50000, xuu4000, bgf) 26.72/10.91 new_primEqNat0(Succ(xuu500000), Zero) -> False 26.72/10.91 new_primEqNat0(Zero, Succ(xuu40000)) -> False 26.72/10.91 new_compare112(xuu33000, xuu34000, False) -> GT 26.72/10.91 new_ltEs20(xuu33002, xuu34002, app(ty_Maybe, fb)) -> new_ltEs8(xuu33002, xuu34002, fb) 26.72/10.91 new_lt20(xuu33000, xuu34000, app(ty_[], bab)) -> new_lt14(xuu33000, xuu34000, bab) 26.72/10.91 new_ltEs4(Right(xuu33000), Right(xuu34000), bda, app(app(app(ty_@3, bde), bdf), bdg)) -> new_ltEs9(xuu33000, xuu34000, bde, bdf, bdg) 26.72/10.91 new_ltEs20(xuu33002, xuu34002, ty_Bool) -> new_ltEs14(xuu33002, xuu34002) 26.72/10.91 new_primCompAux00(xuu178, GT) -> GT 26.72/10.91 new_compare7(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare6(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 26.72/10.91 new_compare7(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare6(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 26.72/10.91 new_ltEs6(xuu33001, xuu34001, app(ty_Maybe, bc)) -> new_ltEs8(xuu33001, xuu34001, bc) 26.72/10.91 new_esEs7(Right(xuu50000), Right(xuu4000), cfd, ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.91 new_esEs5(Just(xuu50000), Just(xuu4000), app(ty_Ratio, chf)) -> new_esEs18(xuu50000, xuu4000, chf) 26.72/10.91 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Bool) -> new_ltEs14(xuu33000, xuu34000) 26.72/10.91 new_primCmpNat2(Zero, xuu3300) -> LT 26.72/10.91 new_esEs20(xuu50002, xuu4002, ty_Ordering) -> new_esEs8(xuu50002, xuu4002) 26.72/10.91 new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(ty_@2, de), df)) -> new_ltEs5(xuu33000, xuu34000, de, df) 26.72/10.91 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Integer, bca) -> new_ltEs10(xuu33000, xuu34000) 26.72/10.91 new_primCmpInt(Pos(Succ(xuu3300)), Neg(xuu340)) -> GT 26.72/10.91 new_ltEs20(xuu33002, xuu34002, app(app(ty_@2, eh), fa)) -> new_ltEs5(xuu33002, xuu34002, eh, fa) 26.72/10.91 new_esEs20(xuu50002, xuu4002, app(app(ty_@2, bhg), bhh)) -> new_esEs4(xuu50002, xuu4002, bhg, bhh) 26.72/10.91 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_@0, bca) -> new_ltEs16(xuu33000, xuu34000) 26.72/10.91 new_ltEs6(xuu33001, xuu34001, app(ty_Ratio, cdd)) -> new_ltEs7(xuu33001, xuu34001, cdd) 26.72/10.91 new_compare110(xuu33000, xuu34000, True, dc, dd) -> LT 26.72/10.91 new_ltEs6(xuu33001, xuu34001, ty_Double) -> new_ltEs17(xuu33001, xuu34001) 26.72/10.91 new_esEs19(xuu5000, xuu400) -> new_primEqInt(xuu5000, xuu400) 26.72/10.91 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Bool, cea) -> new_esEs17(xuu50000, xuu4000) 26.72/10.91 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Char, bca) -> new_ltEs11(xuu33000, xuu34000) 26.72/10.91 new_esEs22(xuu50000, xuu4000, app(ty_Ratio, ccg)) -> new_esEs18(xuu50000, xuu4000, ccg) 26.72/10.91 new_esEs7(Left(xuu50000), Left(xuu4000), app(app(app(ty_@3, cfa), cfb), cfc), cea) -> new_esEs6(xuu50000, xuu4000, cfa, cfb, cfc) 26.72/10.91 new_esEs26(xuu50000, xuu4000, ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.91 new_ltEs20(xuu33002, xuu34002, ty_Double) -> new_ltEs17(xuu33002, xuu34002) 26.72/10.91 new_esEs28(xuu33000, xuu34000, ty_Char) -> new_esEs12(xuu33000, xuu34000) 26.72/10.91 new_esEs28(xuu33000, xuu34000, app(ty_[], bab)) -> new_esEs16(xuu33000, xuu34000, bab) 26.72/10.91 new_esEs7(Left(xuu50000), Left(xuu4000), ty_@0, cea) -> new_esEs9(xuu50000, xuu4000) 26.72/10.91 new_primCompAux0(xuu33000, xuu34000, xuu172, bae) -> new_primCompAux00(xuu172, new_compare8(xuu33000, xuu34000, bae)) 26.72/10.91 new_ltEs6(xuu33001, xuu34001, app(ty_[], bg)) -> new_ltEs15(xuu33001, xuu34001, bg) 26.72/10.91 new_pePe(False, xuu161) -> xuu161 26.72/10.91 new_lt8(xuu33000, xuu34000, cb, cc) -> new_esEs8(new_compare11(xuu33000, xuu34000, cb, cc), LT) 26.72/10.91 new_esEs27(xuu33001, xuu34001, ty_Double) -> new_esEs13(xuu33001, xuu34001) 26.72/10.91 new_compare7(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare6(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 26.72/10.91 new_lt20(xuu33000, xuu34000, ty_Float) -> new_lt17(xuu33000, xuu34000) 26.72/10.91 new_ltEs12(GT, GT) -> True 26.72/10.91 new_lt9(xuu33000, xuu34000, ce) -> new_esEs8(new_compare12(xuu33000, xuu34000, ce), LT) 26.72/10.91 new_esEs11(xuu50000, xuu4000, ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.91 new_esEs7(Left(xuu50000), Left(xuu4000), app(app(ty_@2, ced), cee), cea) -> new_esEs4(xuu50000, xuu4000, ced, cee) 26.72/10.91 new_lt17(xuu33000, xuu34000) -> new_esEs8(new_compare7(xuu33000, xuu34000), LT) 26.72/10.91 new_esEs6(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bhb, bhc, bhd) -> new_asAs(new_esEs22(xuu50000, xuu4000, bhb), new_asAs(new_esEs21(xuu50001, xuu4001, bhc), new_esEs20(xuu50002, xuu4002, bhd))) 26.72/10.91 new_esEs10(xuu50001, xuu4001, app(app(ty_Either, bef), beg)) -> new_esEs7(xuu50001, xuu4001, bef, beg) 26.72/10.91 new_compare114(xuu33000, xuu34000, True, cb, cc) -> LT 26.72/10.91 new_ltEs12(GT, EQ) -> False 26.72/10.91 new_ltEs6(xuu33001, xuu34001, app(app(ty_@2, ba), bb)) -> new_ltEs5(xuu33001, xuu34001, ba, bb) 26.72/10.91 new_compare8(xuu33000, xuu34000, ty_Int) -> new_compare6(xuu33000, xuu34000) 26.72/10.91 new_ltEs4(Right(xuu33000), Right(xuu34000), bda, app(ty_Ratio, cdh)) -> new_ltEs7(xuu33000, xuu34000, cdh) 26.72/10.91 new_esEs26(xuu50000, xuu4000, ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.91 new_esEs7(Right(xuu50000), Right(xuu4000), cfd, ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.91 new_compare26(xuu33000, xuu34000, False) -> new_compare111(xuu33000, xuu34000, new_ltEs12(xuu33000, xuu34000)) 26.72/10.91 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Char) -> new_ltEs11(xuu33000, xuu34000) 26.72/10.91 new_compare10(xuu129, xuu130, False, bec) -> GT 26.72/10.91 new_lt20(xuu33000, xuu34000, ty_Integer) -> new_lt11(xuu33000, xuu34000) 26.72/10.91 new_lt20(xuu33000, xuu34000, app(ty_Maybe, hf)) -> new_lt9(xuu33000, xuu34000, hf) 26.72/10.91 new_esEs7(Right(xuu50000), Right(xuu4000), cfd, app(ty_Ratio, cgc)) -> new_esEs18(xuu50000, xuu4000, cgc) 26.72/10.91 new_esEs8(LT, EQ) -> False 26.72/10.91 new_esEs8(EQ, LT) -> False 26.72/10.91 new_esEs21(xuu50001, xuu4001, app(app(ty_@2, cba), cbb)) -> new_esEs4(xuu50001, xuu4001, cba, cbb) 26.72/10.91 new_compare29(xuu33000, xuu34000, False, cf, cg, da) -> new_compare113(xuu33000, xuu34000, new_ltEs9(xuu33000, xuu34000, cf, cg, da), cf, cg, da) 26.72/10.91 new_lt19(xuu33001, xuu34001, app(ty_Maybe, ge)) -> new_lt9(xuu33001, xuu34001, ge) 26.72/10.91 new_primEqInt(Pos(Zero), Neg(Succ(xuu40000))) -> False 26.72/10.91 new_primEqInt(Neg(Zero), Pos(Succ(xuu40000))) -> False 26.72/10.91 new_lt19(xuu33001, xuu34001, ty_Ordering) -> new_lt12(xuu33001, xuu34001) 26.72/10.91 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Integer) -> new_ltEs10(xuu33000, xuu34000) 26.72/10.91 new_esEs11(xuu50000, xuu4000, app(ty_Maybe, bgd)) -> new_esEs5(xuu50000, xuu4000, bgd) 26.72/10.91 new_esEs21(xuu50001, xuu4001, ty_Ordering) -> new_esEs8(xuu50001, xuu4001) 26.72/10.91 new_esEs18(:%(xuu50000, xuu50001), :%(xuu4000, xuu4001), cdf) -> new_asAs(new_esEs25(xuu50000, xuu4000, cdf), new_esEs24(xuu50001, xuu4001, cdf)) 26.72/10.91 new_esEs5(Just(xuu50000), Just(xuu4000), app(app(app(ty_@3, chg), chh), daa)) -> new_esEs6(xuu50000, xuu4000, chg, chh, daa) 26.72/10.91 new_ltEs14(True, True) -> True 26.72/10.91 new_esEs25(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.91 new_esEs21(xuu50001, xuu4001, ty_Float) -> new_esEs14(xuu50001, xuu4001) 26.72/10.91 new_esEs21(xuu50001, xuu4001, app(ty_Maybe, cbc)) -> new_esEs5(xuu50001, xuu4001, cbc) 26.72/10.91 new_esEs23(xuu33000, xuu34000, app(app(ty_Either, dc), dd)) -> new_esEs7(xuu33000, xuu34000, dc, dd) 26.72/10.91 new_esEs26(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.91 new_esEs5(Nothing, Nothing, cgg) -> True 26.72/10.91 new_esEs26(xuu50000, xuu4000, app(ty_[], dbd)) -> new_esEs16(xuu50000, xuu4000, dbd) 26.72/10.91 new_primEqInt(Neg(Succ(xuu500000)), Neg(Succ(xuu40000))) -> new_primEqNat0(xuu500000, xuu40000) 26.72/10.91 new_esEs5(Nothing, Just(xuu4000), cgg) -> False 26.72/10.91 new_esEs5(Just(xuu50000), Nothing, cgg) -> False 26.72/10.91 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Float, bca) -> new_ltEs18(xuu33000, xuu34000) 26.72/10.91 new_primCmpInt(Neg(Zero), Pos(Succ(xuu3400))) -> LT 26.72/10.91 new_lt19(xuu33001, xuu34001, ty_Bool) -> new_lt13(xuu33001, xuu34001) 26.72/10.91 new_compare114(xuu33000, xuu34000, False, cb, cc) -> GT 26.72/10.91 new_ltEs20(xuu33002, xuu34002, ty_@0) -> new_ltEs16(xuu33002, xuu34002) 26.72/10.91 new_primMulInt(Pos(xuu500010), Pos(xuu40000)) -> Pos(new_primMulNat0(xuu500010, xuu40000)) 26.72/10.91 new_lt6(xuu33000, xuu34000, app(app(app(ty_@3, cf), cg), da)) -> new_lt10(xuu33000, xuu34000, cf, cg, da) 26.72/10.91 new_compare8(xuu33000, xuu34000, ty_Integer) -> new_compare14(xuu33000, xuu34000) 26.72/10.91 new_lt20(xuu33000, xuu34000, app(app(ty_@2, hd), he)) -> new_lt8(xuu33000, xuu34000, hd, he) 26.72/10.91 new_esEs7(Left(xuu50000), Left(xuu4000), app(app(ty_Either, ceb), cec), cea) -> new_esEs7(xuu50000, xuu4000, ceb, cec) 26.72/10.91 new_compare25(Just(xuu3300), Nothing, False, dae) -> GT 26.72/10.91 new_esEs28(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) 26.72/10.91 new_compare10(xuu129, xuu130, True, bec) -> LT 26.72/10.91 new_lt19(xuu33001, xuu34001, ty_Float) -> new_lt17(xuu33001, xuu34001) 26.72/10.91 new_compare24(xuu33000, xuu34000, False, dc, dd) -> new_compare110(xuu33000, xuu34000, new_ltEs4(xuu33000, xuu34000, dc, dd), dc, dd) 26.72/10.91 new_ltEs19(xuu3300, xuu3400, app(ty_Maybe, dac)) -> new_ltEs8(xuu3300, xuu3400, dac) 26.72/10.91 new_esEs10(xuu50001, xuu4001, app(app(ty_@2, beh), bfa)) -> new_esEs4(xuu50001, xuu4001, beh, bfa) 26.72/10.91 new_primMulNat0(Succ(xuu5000100), Zero) -> Zero 26.72/10.91 new_primMulNat0(Zero, Succ(xuu400000)) -> Zero 26.72/10.91 new_lt19(xuu33001, xuu34001, ty_Integer) -> new_lt11(xuu33001, xuu34001) 26.72/10.91 new_ltEs6(xuu33001, xuu34001, app(app(app(ty_@3, bd), be), bf)) -> new_ltEs9(xuu33001, xuu34001, bd, be, bf) 26.72/10.91 new_lt20(xuu33000, xuu34000, ty_Bool) -> new_lt13(xuu33000, xuu34000) 26.72/10.91 new_esEs23(xuu33000, xuu34000, app(ty_Maybe, ce)) -> new_esEs5(xuu33000, xuu34000, ce) 26.72/10.91 new_compare9(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Int) -> new_compare6(new_sr(xuu33000, xuu34001), new_sr(xuu34000, xuu33001)) 26.72/10.91 new_ltEs4(Right(xuu33000), Right(xuu34000), bda, ty_Bool) -> new_ltEs14(xuu33000, xuu34000) 26.72/10.91 new_ltEs17(xuu3300, xuu3400) -> new_fsEs(new_compare19(xuu3300, xuu3400)) 26.72/10.91 new_esEs28(xuu33000, xuu34000, ty_Int) -> new_esEs19(xuu33000, xuu34000) 26.72/10.91 new_primPlusNat0(Succ(xuu28200), Zero) -> Succ(xuu28200) 26.72/10.91 new_primPlusNat0(Zero, Succ(xuu9600)) -> Succ(xuu9600) 26.72/10.91 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Int, bca) -> new_ltEs13(xuu33000, xuu34000) 26.72/10.91 new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare6(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 26.72/10.91 new_ltEs10(xuu3300, xuu3400) -> new_fsEs(new_compare14(xuu3300, xuu3400)) 26.72/10.91 new_esEs26(xuu50000, xuu4000, app(ty_Ratio, dbe)) -> new_esEs18(xuu50000, xuu4000, dbe) 26.72/10.91 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) 26.72/10.91 new_esEs11(xuu50000, xuu4000, app(app(ty_@2, bgb), bgc)) -> new_esEs4(xuu50000, xuu4000, bgb, bgc) 26.72/10.91 new_ltEs4(Left(xuu33000), Left(xuu34000), app(ty_Maybe, bcb), bca) -> new_ltEs8(xuu33000, xuu34000, bcb) 26.72/10.91 new_compare8(xuu33000, xuu34000, app(app(ty_@2, baf), bag)) -> new_compare11(xuu33000, xuu34000, baf, bag) 26.72/10.91 new_esEs8(LT, LT) -> True 26.72/10.91 new_compare111(xuu33000, xuu34000, True) -> LT 26.72/10.91 new_lt6(xuu33000, xuu34000, ty_Integer) -> new_lt11(xuu33000, xuu34000) 26.72/10.91 new_lt20(xuu33000, xuu34000, ty_Int) -> new_lt4(xuu33000, xuu34000) 26.72/10.91 new_lt6(xuu33000, xuu34000, ty_Ordering) -> new_lt12(xuu33000, xuu34000) 26.72/10.91 new_lt19(xuu33001, xuu34001, app(app(ty_@2, gb), gc)) -> new_lt8(xuu33001, xuu34001, gb, gc) 26.72/10.91 new_lt15(xuu33000, xuu34000) -> new_esEs8(new_compare18(xuu33000, xuu34000), LT) 26.72/10.91 new_ltEs19(xuu3300, xuu3400, app(app(app(ty_@3, ef), eg), gd)) -> new_ltEs9(xuu3300, xuu3400, ef, eg, gd) 26.72/10.91 new_esEs22(xuu50000, xuu4000, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs6(xuu50000, xuu4000, cch, cda, cdb) 26.72/10.91 new_lt13(xuu33000, xuu34000) -> new_esEs8(new_compare17(xuu33000, xuu34000), LT) 26.72/10.91 new_ltEs4(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, bcc), bcd), bce), bca) -> new_ltEs9(xuu33000, xuu34000, bcc, bcd, bce) 26.72/10.91 new_esEs28(xuu33000, xuu34000, ty_Bool) -> new_esEs17(xuu33000, xuu34000) 26.72/10.91 new_lt6(xuu33000, xuu34000, app(ty_[], db)) -> new_lt14(xuu33000, xuu34000, db) 26.72/10.91 new_ltEs11(xuu3300, xuu3400) -> new_fsEs(new_compare15(xuu3300, xuu3400)) 26.72/10.91 new_lt5(xuu33000, xuu34000) -> new_esEs8(new_compare15(xuu33000, xuu34000), LT) 26.72/10.91 new_ltEs9(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), ef, eg, gd) -> new_pePe(new_lt20(xuu33000, xuu34000, ef), new_asAs(new_esEs28(xuu33000, xuu34000, ef), new_pePe(new_lt19(xuu33001, xuu34001, eg), new_asAs(new_esEs27(xuu33001, xuu34001, eg), new_ltEs20(xuu33002, xuu34002, gd))))) 26.72/10.91 new_esEs11(xuu50000, xuu4000, ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.91 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Char, cea) -> new_esEs12(xuu50000, xuu4000) 26.72/10.91 new_esEs27(xuu33001, xuu34001, ty_@0) -> new_esEs9(xuu33001, xuu34001) 26.72/10.91 new_esEs23(xuu33000, xuu34000, app(app(app(ty_@3, cf), cg), da)) -> new_esEs6(xuu33000, xuu34000, cf, cg, da) 26.72/10.91 new_esEs16([], [], daf) -> True 26.72/10.91 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Float) -> new_ltEs18(xuu33000, xuu34000) 26.72/10.91 new_primMulInt(Neg(xuu500010), Neg(xuu40000)) -> Pos(new_primMulNat0(xuu500010, xuu40000)) 26.72/10.91 new_compare25(xuu330, xuu340, True, dae) -> EQ 26.72/10.91 new_esEs10(xuu50001, xuu4001, app(ty_Maybe, bfb)) -> new_esEs5(xuu50001, xuu4001, bfb) 26.72/10.91 new_lt20(xuu33000, xuu34000, ty_Ordering) -> new_lt12(xuu33000, xuu34000) 26.72/10.91 new_compare8(xuu33000, xuu34000, app(app(app(ty_@3, bba), bbb), bbc)) -> new_compare13(xuu33000, xuu34000, bba, bbb, bbc) 26.72/10.91 new_lt16(xuu33000, xuu34000) -> new_esEs8(new_compare19(xuu33000, xuu34000), LT) 26.72/10.91 new_esEs28(xuu33000, xuu34000, ty_Integer) -> new_esEs15(xuu33000, xuu34000) 26.72/10.91 new_esEs22(xuu50000, xuu4000, app(ty_Maybe, cce)) -> new_esEs5(xuu50000, xuu4000, cce) 26.72/10.91 new_ltEs18(xuu3300, xuu3400) -> new_fsEs(new_compare7(xuu3300, xuu3400)) 26.72/10.91 new_esEs27(xuu33001, xuu34001, ty_Int) -> new_esEs19(xuu33001, xuu34001) 26.72/10.91 new_lt19(xuu33001, xuu34001, app(app(app(ty_@3, gf), gg), gh)) -> new_lt10(xuu33001, xuu34001, gf, gg, gh) 26.72/10.91 new_lt6(xuu33000, xuu34000, app(ty_Ratio, cde)) -> new_lt7(xuu33000, xuu34000, cde) 26.72/10.91 new_lt6(xuu33000, xuu34000, ty_Bool) -> new_lt13(xuu33000, xuu34000) 26.72/10.91 new_compare13(xuu33000, xuu34000, cf, cg, da) -> new_compare29(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, cf, cg, da), cf, cg, da) 26.72/10.92 new_esEs20(xuu50002, xuu4002, ty_Float) -> new_esEs14(xuu50002, xuu4002) 26.72/10.92 new_esEs5(Just(xuu50000), Just(xuu4000), app(ty_Maybe, chd)) -> new_esEs5(xuu50000, xuu4000, chd) 26.72/10.92 new_esEs23(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) 26.72/10.92 new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(ty_Either, ed), ee)) -> new_ltEs4(xuu33000, xuu34000, ed, ee) 26.72/10.92 new_compare6(xuu33, xuu34) -> new_primCmpInt(xuu33, xuu34) 26.72/10.92 new_esEs11(xuu50000, xuu4000, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs6(xuu50000, xuu4000, bgg, bgh, bha) 26.72/10.92 new_esEs23(xuu33000, xuu34000, app(app(ty_@2, cb), cc)) -> new_esEs4(xuu33000, xuu34000, cb, cc) 26.72/10.92 new_compare112(xuu33000, xuu34000, True) -> LT 26.72/10.92 new_lt20(xuu33000, xuu34000, app(app(app(ty_@3, hg), hh), baa)) -> new_lt10(xuu33000, xuu34000, hg, hh, baa) 26.72/10.92 new_ltEs20(xuu33002, xuu34002, app(app(app(ty_@3, fc), fd), ff)) -> new_ltEs9(xuu33002, xuu34002, fc, fd, ff) 26.72/10.92 new_primMulInt(Pos(xuu500010), Neg(xuu40000)) -> Neg(new_primMulNat0(xuu500010, xuu40000)) 26.72/10.92 new_primMulInt(Neg(xuu500010), Pos(xuu40000)) -> Neg(new_primMulNat0(xuu500010, xuu40000)) 26.72/10.92 new_esEs12(Char(xuu50000), Char(xuu4000)) -> new_primEqNat0(xuu50000, xuu4000) 26.72/10.92 new_esEs26(xuu50000, xuu4000, app(app(ty_Either, dag), dah)) -> new_esEs7(xuu50000, xuu4000, dag, dah) 26.72/10.92 new_esEs20(xuu50002, xuu4002, ty_Integer) -> new_esEs15(xuu50002, xuu4002) 26.72/10.92 new_esEs22(xuu50000, xuu4000, ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.92 new_esEs28(xuu33000, xuu34000, ty_Double) -> new_esEs13(xuu33000, xuu34000) 26.72/10.92 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.92 new_compare15(Char(xuu33000), Char(xuu34000)) -> new_primCmpNat1(xuu33000, xuu34000) 26.72/10.92 new_compare17(xuu33000, xuu34000) -> new_compare27(xuu33000, xuu34000, new_esEs17(xuu33000, xuu34000)) 26.72/10.92 new_primCmpInt(Pos(Succ(xuu3300)), Pos(xuu340)) -> new_primCmpNat0(xuu3300, xuu340) 26.72/10.92 new_esEs22(xuu50000, xuu4000, app(app(ty_@2, ccc), ccd)) -> new_esEs4(xuu50000, xuu4000, ccc, ccd) 26.72/10.92 new_ltEs4(Right(xuu33000), Right(xuu34000), bda, app(app(ty_Either, bea), beb)) -> new_ltEs4(xuu33000, xuu34000, bea, beb) 26.72/10.92 new_ltEs13(xuu3300, xuu3400) -> new_fsEs(new_compare6(xuu3300, xuu3400)) 26.72/10.92 new_primCmpNat1(Succ(xuu33000), Zero) -> GT 26.72/10.92 new_esEs27(xuu33001, xuu34001, ty_Char) -> new_esEs12(xuu33001, xuu34001) 26.72/10.92 new_compare8(xuu33000, xuu34000, app(ty_Maybe, bah)) -> new_compare12(xuu33000, xuu34000, bah) 26.72/10.92 new_ltEs6(xuu33001, xuu34001, ty_Int) -> new_ltEs13(xuu33001, xuu34001) 26.72/10.92 new_ltEs19(xuu3300, xuu3400, ty_Ordering) -> new_ltEs12(xuu3300, xuu3400) 26.72/10.92 new_lt6(xuu33000, xuu34000, ty_Int) -> new_lt4(xuu33000, xuu34000) 26.72/10.92 new_esEs7(Right(xuu50000), Right(xuu4000), cfd, app(app(ty_@2, cfg), cfh)) -> new_esEs4(xuu50000, xuu4000, cfg, cfh) 26.72/10.92 new_sr0(Integer(xuu330000), Integer(xuu340010)) -> Integer(new_primMulInt(xuu330000, xuu340010)) 26.72/10.92 new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_Ratio, dad)) -> new_ltEs7(xuu33000, xuu34000, dad) 26.72/10.92 new_esEs7(Right(xuu50000), Right(xuu4000), cfd, app(ty_Maybe, cga)) -> new_esEs5(xuu50000, xuu4000, cga) 26.72/10.92 new_esEs27(xuu33001, xuu34001, app(app(app(ty_@3, gf), gg), gh)) -> new_esEs6(xuu33001, xuu34001, gf, gg, gh) 26.72/10.92 new_esEs20(xuu50002, xuu4002, ty_Bool) -> new_esEs17(xuu50002, xuu4002) 26.72/10.92 new_ltEs20(xuu33002, xuu34002, app(app(ty_Either, fh), ga)) -> new_ltEs4(xuu33002, xuu34002, fh, ga) 26.72/10.92 new_esEs7(Left(xuu50000), Left(xuu4000), app(ty_[], ceg), cea) -> new_esEs16(xuu50000, xuu4000, ceg) 26.72/10.92 new_esEs5(Just(xuu50000), Just(xuu4000), app(app(ty_Either, cgh), cha)) -> new_esEs7(xuu50000, xuu4000, cgh, cha) 26.72/10.92 new_primCmpNat0(xuu3300, Zero) -> GT 26.72/10.92 new_compare8(xuu33000, xuu34000, app(ty_[], bbd)) -> new_compare0(xuu33000, xuu34000, bbd) 26.72/10.92 new_lt20(xuu33000, xuu34000, ty_Double) -> new_lt16(xuu33000, xuu34000) 26.72/10.92 new_ltEs19(xuu3300, xuu3400, app(ty_[], bae)) -> new_ltEs15(xuu3300, xuu3400, bae) 26.72/10.92 new_esEs15(Integer(xuu50000), Integer(xuu4000)) -> new_primEqInt(xuu50000, xuu4000) 26.72/10.92 new_compare0([], :(xuu34000, xuu34001), bae) -> LT 26.72/10.92 new_asAs(True, xuu136) -> xuu136 26.72/10.92 new_compare113(xuu33000, xuu34000, True, cf, cg, da) -> LT 26.72/10.92 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_@0) -> new_ltEs16(xuu33000, xuu34000) 26.72/10.92 new_compare9(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Integer) -> new_compare14(new_sr0(xuu33000, xuu34001), new_sr0(xuu34000, xuu33001)) 26.72/10.92 new_ltEs5(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), h, cd) -> new_pePe(new_lt6(xuu33000, xuu34000, h), new_asAs(new_esEs23(xuu33000, xuu34000, h), new_ltEs6(xuu33001, xuu34001, cd))) 26.72/10.92 new_esEs17(False, True) -> False 26.72/10.92 new_esEs17(True, False) -> False 26.72/10.92 new_esEs10(xuu50001, xuu4001, app(ty_[], bfc)) -> new_esEs16(xuu50001, xuu4001, bfc) 26.72/10.92 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Int, cea) -> new_esEs19(xuu50000, xuu4000) 26.72/10.92 new_esEs23(xuu33000, xuu34000, app(ty_Ratio, cde)) -> new_esEs18(xuu33000, xuu34000, cde) 26.72/10.92 new_ltEs16(xuu3300, xuu3400) -> new_fsEs(new_compare18(xuu3300, xuu3400)) 26.72/10.92 new_lt19(xuu33001, xuu34001, ty_Double) -> new_lt16(xuu33001, xuu34001) 26.72/10.92 new_esEs26(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.92 new_esEs20(xuu50002, xuu4002, app(ty_Maybe, caa)) -> new_esEs5(xuu50002, xuu4002, caa) 26.72/10.92 new_esEs5(Just(xuu50000), Just(xuu4000), app(app(ty_@2, chb), chc)) -> new_esEs4(xuu50000, xuu4000, chb, chc) 26.72/10.92 new_compare11(xuu33000, xuu34000, cb, cc) -> new_compare28(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, cb, cc), cb, cc) 26.72/10.92 new_esEs27(xuu33001, xuu34001, ty_Float) -> new_esEs14(xuu33001, xuu34001) 26.72/10.92 new_esEs10(xuu50001, xuu4001, ty_Integer) -> new_esEs15(xuu50001, xuu4001) 26.72/10.92 new_esEs24(xuu50001, xuu4001, ty_Integer) -> new_esEs15(xuu50001, xuu4001) 26.72/10.92 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.92 new_lt10(xuu33000, xuu34000, cf, cg, da) -> new_esEs8(new_compare13(xuu33000, xuu34000, cf, cg, da), LT) 26.72/10.92 new_lt6(xuu33000, xuu34000, ty_@0) -> new_lt15(xuu33000, xuu34000) 26.72/10.92 new_compare24(xuu33000, xuu34000, True, dc, dd) -> EQ 26.72/10.92 new_esEs7(Right(xuu50000), Right(xuu4000), cfd, ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.92 new_primPlusNat1(xuu106, xuu400000) -> new_primPlusNat0(xuu106, Succ(xuu400000)) 26.72/10.92 new_esEs9(@0, @0) -> True 26.72/10.92 new_ltEs20(xuu33002, xuu34002, app(ty_[], fg)) -> new_ltEs15(xuu33002, xuu34002, fg) 26.72/10.92 new_esEs7(Left(xuu50000), Left(xuu4000), app(ty_Maybe, cef), cea) -> new_esEs5(xuu50000, xuu4000, cef) 26.72/10.92 new_primCompAux00(xuu178, EQ) -> xuu178 26.72/10.92 new_esEs11(xuu50000, xuu4000, app(app(ty_Either, bfh), bga)) -> new_esEs7(xuu50000, xuu4000, bfh, bga) 26.72/10.92 new_compare0([], [], bae) -> EQ 26.72/10.92 new_sr(xuu50001, xuu4000) -> new_primMulInt(xuu50001, xuu4000) 26.72/10.92 new_esEs25(xuu50000, xuu4000, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.92 new_esEs10(xuu50001, xuu4001, ty_Bool) -> new_esEs17(xuu50001, xuu4001) 26.72/10.92 new_esEs21(xuu50001, xuu4001, app(app(ty_Either, cag), cah)) -> new_esEs7(xuu50001, xuu4001, cag, cah) 26.72/10.92 new_ltEs4(Right(xuu33000), Right(xuu34000), bda, ty_Integer) -> new_ltEs10(xuu33000, xuu34000) 26.72/10.92 new_primMulNat0(Zero, Zero) -> Zero 26.72/10.92 new_lt18(xuu33000, xuu34000, dc, dd) -> new_esEs8(new_compare23(xuu33000, xuu34000, dc, dd), LT) 26.72/10.92 new_ltEs20(xuu33002, xuu34002, ty_Ordering) -> new_ltEs12(xuu33002, xuu34002) 26.72/10.92 new_esEs23(xuu33000, xuu34000, ty_Float) -> new_esEs14(xuu33000, xuu34000) 26.72/10.92 new_lt6(xuu33000, xuu34000, ty_Char) -> new_lt5(xuu33000, xuu34000) 26.72/10.92 new_lt6(xuu33000, xuu34000, app(ty_Maybe, ce)) -> new_lt9(xuu33000, xuu34000, ce) 26.72/10.92 new_primCmpInt(Neg(Succ(xuu3300)), Neg(xuu340)) -> new_primCmpNat2(xuu340, xuu3300) 26.72/10.92 new_esEs27(xuu33001, xuu34001, ty_Ordering) -> new_esEs8(xuu33001, xuu34001) 26.72/10.92 new_esEs23(xuu33000, xuu34000, ty_Char) -> new_esEs12(xuu33000, xuu34000) 26.72/10.92 new_ltEs19(xuu3300, xuu3400, app(ty_Ratio, dab)) -> new_ltEs7(xuu3300, xuu3400, dab) 26.72/10.92 new_primCmpInt(Neg(Zero), Neg(Succ(xuu3400))) -> new_primCmpNat0(xuu3400, Zero) 26.72/10.92 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.92 new_ltEs4(Right(xuu33000), Right(xuu34000), bda, ty_@0) -> new_ltEs16(xuu33000, xuu34000) 26.72/10.92 new_compare111(xuu33000, xuu34000, False) -> GT 26.72/10.92 new_primCmpNat1(Zero, Zero) -> EQ 26.72/10.92 new_esEs7(Right(xuu50000), Right(xuu4000), cfd, ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.92 new_compare12(xuu33000, xuu34000, ce) -> new_compare25(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, ce), ce) 26.72/10.92 new_esEs22(xuu50000, xuu4000, app(app(ty_Either, cca), ccb)) -> new_esEs7(xuu50000, xuu4000, cca, ccb) 26.72/10.92 new_ltEs6(xuu33001, xuu34001, ty_Bool) -> new_ltEs14(xuu33001, xuu34001) 26.72/10.92 new_esEs7(Right(xuu50000), Right(xuu4000), cfd, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.92 new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare6(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 26.72/10.92 new_esEs22(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.92 new_esEs22(xuu50000, xuu4000, ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.92 new_esEs27(xuu33001, xuu34001, app(ty_Ratio, dcb)) -> new_esEs18(xuu33001, xuu34001, dcb) 26.72/10.92 new_esEs4(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), bed, bee) -> new_asAs(new_esEs11(xuu50000, xuu4000, bed), new_esEs10(xuu50001, xuu4001, bee)) 26.72/10.92 new_compare8(xuu33000, xuu34000, ty_Char) -> new_compare15(xuu33000, xuu34000) 26.72/10.92 new_ltEs4(Right(xuu33000), Right(xuu34000), bda, ty_Double) -> new_ltEs17(xuu33000, xuu34000) 26.72/10.92 new_esEs28(xuu33000, xuu34000, app(ty_Ratio, dcc)) -> new_esEs18(xuu33000, xuu34000, dcc) 26.72/10.92 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.92 new_esEs16(:(xuu50000, xuu50001), :(xuu4000, xuu4001), daf) -> new_asAs(new_esEs26(xuu50000, xuu4000, daf), new_esEs16(xuu50001, xuu4001, daf)) 26.72/10.92 new_ltEs14(False, True) -> True 26.72/10.92 new_ltEs19(xuu3300, xuu3400, ty_@0) -> new_ltEs16(xuu3300, xuu3400) 26.72/10.92 new_ltEs12(GT, LT) -> False 26.72/10.92 new_ltEs4(Right(xuu33000), Right(xuu34000), bda, ty_Char) -> new_ltEs11(xuu33000, xuu34000) 26.72/10.92 new_compare29(xuu33000, xuu34000, True, cf, cg, da) -> EQ 26.72/10.92 new_compare8(xuu33000, xuu34000, ty_Bool) -> new_compare17(xuu33000, xuu34000) 26.72/10.92 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Ordering, cea) -> new_esEs8(xuu50000, xuu4000) 26.72/10.92 new_compare7(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare6(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 26.72/10.92 new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_Maybe, dg)) -> new_ltEs8(xuu33000, xuu34000, dg) 26.72/10.92 new_primEqInt(Neg(Succ(xuu500000)), Neg(Zero)) -> False 26.72/10.92 new_primEqInt(Neg(Zero), Neg(Succ(xuu40000))) -> False 26.72/10.92 new_ltEs8(Nothing, Just(xuu34000), dac) -> True 26.72/10.92 new_primEqInt(Pos(Succ(xuu500000)), Pos(Succ(xuu40000))) -> new_primEqNat0(xuu500000, xuu40000) 26.72/10.92 new_esEs20(xuu50002, xuu4002, ty_Double) -> new_esEs13(xuu50002, xuu4002) 26.72/10.92 new_esEs20(xuu50002, xuu4002, app(ty_[], cab)) -> new_esEs16(xuu50002, xuu4002, cab) 26.72/10.92 new_esEs26(xuu50000, xuu4000, app(app(ty_@2, dba), dbb)) -> new_esEs4(xuu50000, xuu4000, dba, dbb) 26.72/10.92 new_ltEs4(Left(xuu33000), Left(xuu34000), app(app(ty_Either, bcg), bch), bca) -> new_ltEs4(xuu33000, xuu34000, bcg, bch) 26.72/10.92 new_esEs7(Right(xuu50000), Right(xuu4000), cfd, app(ty_[], cgb)) -> new_esEs16(xuu50000, xuu4000, cgb) 26.72/10.92 new_esEs14(Float(xuu50000, xuu50001), Float(xuu4000, xuu4001)) -> new_esEs19(new_sr(xuu50000, xuu4001), new_sr(xuu50001, xuu4000)) 26.72/10.92 new_esEs7(Right(xuu50000), Right(xuu4000), cfd, app(app(ty_Either, cfe), cff)) -> new_esEs7(xuu50000, xuu4000, cfe, cff) 26.72/10.92 new_esEs26(xuu50000, xuu4000, ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.92 new_primEqInt(Pos(Succ(xuu500000)), Neg(xuu4000)) -> False 26.72/10.92 new_primEqInt(Neg(Succ(xuu500000)), Pos(xuu4000)) -> False 26.72/10.92 new_ltEs20(xuu33002, xuu34002, app(ty_Ratio, dca)) -> new_ltEs7(xuu33002, xuu34002, dca) 26.72/10.92 new_esEs11(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.92 new_lt6(xuu33000, xuu34000, ty_Float) -> new_lt17(xuu33000, xuu34000) 26.72/10.92 new_lt4(xuu330, xuu340) -> new_esEs8(new_compare6(xuu330, xuu340), LT) 26.72/10.92 new_ltEs12(EQ, GT) -> True 26.72/10.92 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 26.72/10.92 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Ordering, bca) -> new_ltEs12(xuu33000, xuu34000) 26.72/10.92 new_esEs28(xuu33000, xuu34000, ty_Float) -> new_esEs14(xuu33000, xuu34000) 26.72/10.92 new_esEs28(xuu33000, xuu34000, app(ty_Maybe, hf)) -> new_esEs5(xuu33000, xuu34000, hf) 26.72/10.92 new_esEs17(True, True) -> True 26.72/10.92 new_ltEs12(EQ, EQ) -> True 26.72/10.92 new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, dh), ea), eb)) -> new_ltEs9(xuu33000, xuu34000, dh, ea, eb) 26.72/10.92 new_primCmpInt(Pos(Zero), Pos(Succ(xuu3400))) -> new_primCmpNat2(Zero, xuu3400) 26.72/10.92 new_esEs21(xuu50001, xuu4001, ty_Integer) -> new_esEs15(xuu50001, xuu4001) 26.72/10.92 new_ltEs20(xuu33002, xuu34002, ty_Int) -> new_ltEs13(xuu33002, xuu34002) 26.72/10.92 new_esEs26(xuu50000, xuu4000, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs6(xuu50000, xuu4000, dbf, dbg, dbh) 26.72/10.92 new_esEs10(xuu50001, xuu4001, ty_Double) -> new_esEs13(xuu50001, xuu4001) 26.72/10.92 new_lt11(xuu33000, xuu34000) -> new_esEs8(new_compare14(xuu33000, xuu34000), LT) 26.72/10.92 new_esEs21(xuu50001, xuu4001, ty_Bool) -> new_esEs17(xuu50001, xuu4001) 26.72/10.92 new_ltEs4(Right(xuu33000), Right(xuu34000), bda, ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) 26.72/10.92 new_esEs23(xuu33000, xuu34000, ty_Bool) -> new_esEs17(xuu33000, xuu34000) 26.72/10.92 new_not(False) -> True 26.72/10.92 new_compare27(xuu33000, xuu34000, False) -> new_compare112(xuu33000, xuu34000, new_ltEs14(xuu33000, xuu34000)) 26.72/10.92 new_esEs5(Just(xuu50000), Just(xuu4000), ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.92 new_esEs27(xuu33001, xuu34001, app(app(ty_Either, hb), hc)) -> new_esEs7(xuu33001, xuu34001, hb, hc) 26.72/10.92 new_compare0(:(xuu33000, xuu33001), [], bae) -> GT 26.72/10.92 new_esEs8(LT, GT) -> False 26.72/10.92 new_esEs8(GT, LT) -> False 26.72/10.92 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Bool, bca) -> new_ltEs14(xuu33000, xuu34000) 26.72/10.92 new_primPlusNat0(Succ(xuu28200), Succ(xuu9600)) -> Succ(Succ(new_primPlusNat0(xuu28200, xuu9600))) 26.72/10.92 new_esEs20(xuu50002, xuu4002, app(ty_Ratio, cac)) -> new_esEs18(xuu50002, xuu4002, cac) 26.72/10.92 new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_[], ec)) -> new_ltEs15(xuu33000, xuu34000, ec) 26.72/10.92 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Double) -> new_ltEs17(xuu33000, xuu34000) 26.72/10.92 new_esEs7(Left(xuu50000), Left(xuu4000), app(ty_Ratio, ceh), cea) -> new_esEs18(xuu50000, xuu4000, ceh) 26.72/10.92 new_esEs11(xuu50000, xuu4000, ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.92 new_esEs21(xuu50001, xuu4001, ty_Char) -> new_esEs12(xuu50001, xuu4001) 26.72/10.92 new_compare8(xuu33000, xuu34000, app(app(ty_Either, bbe), bbf)) -> new_compare23(xuu33000, xuu34000, bbe, bbf) 26.72/10.92 new_ltEs4(Left(xuu33000), Right(xuu34000), bda, bca) -> True 26.72/10.92 new_ltEs6(xuu33001, xuu34001, ty_Integer) -> new_ltEs10(xuu33001, xuu34001) 26.72/10.92 new_esEs26(xuu50000, xuu4000, app(ty_Maybe, dbc)) -> new_esEs5(xuu50000, xuu4000, dbc) 26.72/10.92 new_primCmpNat1(Zero, Succ(xuu34000)) -> LT 26.72/10.92 new_esEs22(xuu50000, xuu4000, ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.92 new_compare25(Nothing, Nothing, False, dae) -> LT 26.72/10.92 new_lt20(xuu33000, xuu34000, app(app(ty_Either, bac), bad)) -> new_lt18(xuu33000, xuu34000, bac, bad) 26.72/10.92 new_ltEs7(xuu3300, xuu3400, dab) -> new_fsEs(new_compare9(xuu3300, xuu3400, dab)) 26.72/10.92 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 26.72/10.92 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 26.72/10.92 new_esEs7(Right(xuu50000), Right(xuu4000), cfd, ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.92 new_compare0(:(xuu33000, xuu33001), :(xuu34000, xuu34001), bae) -> new_primCompAux0(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, bae), bae) 26.72/10.92 new_ltEs4(Right(xuu33000), Right(xuu34000), bda, ty_Float) -> new_ltEs18(xuu33000, xuu34000) 26.72/10.92 new_ltEs6(xuu33001, xuu34001, ty_Ordering) -> new_ltEs12(xuu33001, xuu34001) 26.72/10.92 new_ltEs4(Left(xuu33000), Left(xuu34000), app(ty_Ratio, cdg), bca) -> new_ltEs7(xuu33000, xuu34000, cdg) 26.72/10.92 new_esEs23(xuu33000, xuu34000, ty_Int) -> new_esEs19(xuu33000, xuu34000) 26.72/10.92 new_esEs27(xuu33001, xuu34001, app(app(ty_@2, gb), gc)) -> new_esEs4(xuu33001, xuu34001, gb, gc) 26.72/10.92 new_esEs21(xuu50001, xuu4001, app(ty_[], cbd)) -> new_esEs16(xuu50001, xuu4001, cbd) 26.72/10.92 new_ltEs6(xuu33001, xuu34001, ty_Char) -> new_ltEs11(xuu33001, xuu34001) 26.72/10.92 new_ltEs4(Left(xuu33000), Left(xuu34000), app(app(ty_@2, bbg), bbh), bca) -> new_ltEs5(xuu33000, xuu34000, bbg, bbh) 26.72/10.92 new_esEs20(xuu50002, xuu4002, ty_@0) -> new_esEs9(xuu50002, xuu4002) 26.72/10.92 new_ltEs19(xuu3300, xuu3400, app(app(ty_Either, bda), bca)) -> new_ltEs4(xuu3300, xuu3400, bda, bca) 26.72/10.92 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 26.72/10.92 new_esEs17(False, False) -> True 26.72/10.92 new_esEs28(xuu33000, xuu34000, app(app(ty_@2, hd), he)) -> new_esEs4(xuu33000, xuu34000, hd, he) 26.72/10.92 new_esEs22(xuu50000, xuu4000, ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.92 new_ltEs12(EQ, LT) -> False 26.72/10.92 new_ltEs14(False, False) -> True 26.72/10.92 new_ltEs6(xuu33001, xuu34001, ty_Float) -> new_ltEs18(xuu33001, xuu34001) 26.72/10.92 new_ltEs8(Nothing, Nothing, dac) -> True 26.72/10.92 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.92 new_ltEs8(Just(xuu33000), Nothing, dac) -> False 26.72/10.92 new_esEs11(xuu50000, xuu4000, ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.92 new_lt6(xuu33000, xuu34000, ty_Double) -> new_lt16(xuu33000, xuu34000) 26.72/10.92 new_esEs7(Right(xuu50000), Right(xuu4000), cfd, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.92 new_ltEs19(xuu3300, xuu3400, ty_Int) -> new_ltEs13(xuu3300, xuu3400) 26.72/10.92 new_esEs28(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) 26.72/10.92 new_esEs11(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.92 new_ltEs19(xuu3300, xuu3400, ty_Float) -> new_ltEs18(xuu3300, xuu3400) 26.72/10.92 new_esEs16(:(xuu50000, xuu50001), [], daf) -> False 26.72/10.92 new_esEs16([], :(xuu4000, xuu4001), daf) -> False 26.72/10.92 new_esEs5(Just(xuu50000), Just(xuu4000), app(ty_[], che)) -> new_esEs16(xuu50000, xuu4000, che) 26.72/10.92 new_esEs23(xuu33000, xuu34000, app(ty_[], db)) -> new_esEs16(xuu33000, xuu34000, db) 26.72/10.92 new_ltEs6(xuu33001, xuu34001, app(app(ty_Either, bh), ca)) -> new_ltEs4(xuu33001, xuu34001, bh, ca) 26.72/10.92 new_primCmpNat2(Succ(xuu3400), xuu3300) -> new_primCmpNat1(xuu3400, xuu3300) 26.72/10.92 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 26.72/10.92 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 26.72/10.92 new_esEs23(xuu33000, xuu34000, ty_Double) -> new_esEs13(xuu33000, xuu34000) 26.72/10.92 new_ltEs12(LT, EQ) -> True 26.72/10.92 new_compare25(Nothing, Just(xuu3400), False, dae) -> LT 26.72/10.92 new_compare110(xuu33000, xuu34000, False, dc, dd) -> GT 26.72/10.92 new_esEs21(xuu50001, xuu4001, ty_Int) -> new_esEs19(xuu50001, xuu4001) 26.72/10.92 new_lt19(xuu33001, xuu34001, ty_@0) -> new_lt15(xuu33001, xuu34001) 26.72/10.92 new_esEs11(xuu50000, xuu4000, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.92 new_esEs23(xuu33000, xuu34000, ty_Integer) -> new_esEs15(xuu33000, xuu34000) 26.72/10.92 new_lt20(xuu33000, xuu34000, ty_Char) -> new_lt5(xuu33000, xuu34000) 26.72/10.92 new_primEqNat0(Zero, Zero) -> True 26.72/10.92 new_compare8(xuu33000, xuu34000, ty_@0) -> new_compare18(xuu33000, xuu34000) 26.72/10.92 new_esEs7(Right(xuu50000), Right(xuu4000), cfd, ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.92 new_ltEs20(xuu33002, xuu34002, ty_Float) -> new_ltEs18(xuu33002, xuu34002) 26.72/10.92 new_esEs28(xuu33000, xuu34000, app(app(app(ty_@3, hg), hh), baa)) -> new_esEs6(xuu33000, xuu34000, hg, hh, baa) 26.72/10.92 new_esEs10(xuu50001, xuu4001, ty_@0) -> new_esEs9(xuu50001, xuu4001) 26.72/10.92 new_compare23(xuu33000, xuu34000, dc, dd) -> new_compare24(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, dc, dd), dc, dd) 26.72/10.92 new_ltEs14(True, False) -> False 26.72/10.92 new_esEs26(xuu50000, xuu4000, ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.92 new_compare113(xuu33000, xuu34000, False, cf, cg, da) -> GT 26.72/10.92 new_esEs22(xuu50000, xuu4000, app(ty_[], ccf)) -> new_esEs16(xuu50000, xuu4000, ccf) 26.72/10.92 new_esEs22(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.92 new_asAs(False, xuu136) -> False 26.72/10.92 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Float, cea) -> new_esEs14(xuu50000, xuu4000) 26.72/10.92 new_esEs20(xuu50002, xuu4002, ty_Char) -> new_esEs12(xuu50002, xuu4002) 26.72/10.92 new_esEs27(xuu33001, xuu34001, app(ty_Maybe, ge)) -> new_esEs5(xuu33001, xuu34001, ge) 26.72/10.92 new_lt19(xuu33001, xuu34001, ty_Char) -> new_lt5(xuu33001, xuu34001) 26.72/10.92 new_compare28(xuu33000, xuu34000, True, cb, cc) -> EQ 26.72/10.92 new_lt20(xuu33000, xuu34000, ty_@0) -> new_lt15(xuu33000, xuu34000) 26.72/10.92 new_ltEs4(Right(xuu33000), Right(xuu34000), bda, ty_Int) -> new_ltEs13(xuu33000, xuu34000) 26.72/10.92 new_esEs8(EQ, GT) -> False 26.72/10.92 new_esEs8(GT, EQ) -> False 26.72/10.92 new_ltEs4(Right(xuu33000), Left(xuu34000), bda, bca) -> False 26.72/10.92 new_esEs10(xuu50001, xuu4001, ty_Int) -> new_esEs19(xuu50001, xuu4001) 26.72/10.92 new_compare27(xuu33000, xuu34000, True) -> EQ 26.72/10.92 new_esEs7(Left(xuu50000), Right(xuu4000), cfd, cea) -> False 26.72/10.92 new_esEs7(Right(xuu50000), Left(xuu4000), cfd, cea) -> False 26.72/10.92 new_compare18(@0, @0) -> EQ 26.72/10.92 new_esEs11(xuu50000, xuu4000, app(ty_[], bge)) -> new_esEs16(xuu50000, xuu4000, bge) 26.72/10.92 new_compare14(Integer(xuu33000), Integer(xuu34000)) -> new_primCmpInt(xuu33000, xuu34000) 26.72/10.92 new_ltEs4(Right(xuu33000), Right(xuu34000), bda, app(ty_Maybe, bdd)) -> new_ltEs8(xuu33000, xuu34000, bdd) 26.72/10.92 new_lt6(xuu33000, xuu34000, app(app(ty_Either, dc), dd)) -> new_lt18(xuu33000, xuu34000, dc, dd) 26.72/10.92 new_esEs21(xuu50001, xuu4001, ty_@0) -> new_esEs9(xuu50001, xuu4001) 26.72/10.92 new_compare16(xuu33000, xuu34000) -> new_compare26(xuu33000, xuu34000, new_esEs8(xuu33000, xuu34000)) 26.72/10.92 26.72/10.92 The set Q consists of the following terms: 26.72/10.92 26.72/10.92 new_compare0([], [], x0) 26.72/10.92 new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.72/10.92 new_ltEs8(Just(x0), Just(x1), ty_Bool) 26.72/10.92 new_esEs8(EQ, EQ) 26.72/10.92 new_esEs21(x0, x1, ty_Integer) 26.72/10.92 new_esEs20(x0, x1, app(ty_[], x2)) 26.72/10.92 new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) 26.72/10.92 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.92 new_esEs22(x0, x1, ty_@0) 26.72/10.92 new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) 26.72/10.92 new_ltEs4(Right(x0), Right(x1), x2, ty_Char) 26.72/10.92 new_compare26(x0, x1, False) 26.72/10.92 new_esEs27(x0, x1, ty_Double) 26.72/10.92 new_esEs26(x0, x1, app(ty_Ratio, x2)) 26.72/10.92 new_compare8(x0, x1, ty_Double) 26.72/10.92 new_lt20(x0, x1, ty_Integer) 26.72/10.92 new_ltEs11(x0, x1) 26.72/10.92 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 26.72/10.92 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 26.72/10.92 new_esEs22(x0, x1, ty_Bool) 26.72/10.92 new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.92 new_ltEs8(Just(x0), Just(x1), ty_@0) 26.72/10.92 new_esEs26(x0, x1, ty_@0) 26.72/10.92 new_lt6(x0, x1, ty_Bool) 26.72/10.92 new_lt19(x0, x1, ty_@0) 26.72/10.92 new_lt19(x0, x1, app(ty_[], x2)) 26.72/10.92 new_lt6(x0, x1, ty_@0) 26.72/10.92 new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.72/10.92 new_primCmpNat1(Zero, Zero) 26.72/10.92 new_ltEs13(x0, x1) 26.72/10.92 new_primCompAux00(x0, EQ) 26.72/10.92 new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.72/10.92 new_lt5(x0, x1) 26.72/10.92 new_compare25(Just(x0), Just(x1), False, x2) 26.72/10.92 new_esEs23(x0, x1, ty_Float) 26.72/10.92 new_compare113(x0, x1, False, x2, x3, x4) 26.72/10.92 new_esEs7(Left(x0), Left(x1), ty_Float, x2) 26.72/10.92 new_ltEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.72/10.92 new_primEqInt(Pos(Zero), Pos(Zero)) 26.72/10.92 new_compare15(Char(x0), Char(x1)) 26.72/10.92 new_lt13(x0, x1) 26.72/10.92 new_compare6(x0, x1) 26.72/10.92 new_primCmpNat2(Zero, x0) 26.72/10.92 new_ltEs4(Left(x0), Left(x1), ty_Integer, x2) 26.72/10.92 new_ltEs6(x0, x1, ty_Ordering) 26.72/10.92 new_esEs17(False, False) 26.72/10.92 new_ltEs20(x0, x1, app(ty_[], x2)) 26.72/10.92 new_esEs11(x0, x1, app(ty_[], x2)) 26.72/10.92 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.92 new_compare28(x0, x1, False, x2, x3) 26.72/10.92 new_esEs27(x0, x1, ty_Ordering) 26.72/10.92 new_ltEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 26.72/10.92 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.72/10.92 new_esEs11(x0, x1, ty_Float) 26.72/10.92 new_primEqNat0(Zero, Succ(x0)) 26.72/10.92 new_primEqInt(Neg(Zero), Neg(Zero)) 26.72/10.92 new_esEs7(Left(x0), Left(x1), ty_Integer, x2) 26.72/10.92 new_esEs10(x0, x1, app(ty_Ratio, x2)) 26.72/10.92 new_esEs5(Nothing, Just(x0), x1) 26.72/10.92 new_esEs27(x0, x1, ty_Int) 26.72/10.92 new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.72/10.92 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.92 new_esEs26(x0, x1, app(ty_Maybe, x2)) 26.72/10.92 new_lt19(x0, x1, ty_Int) 26.72/10.92 new_pePe(True, x0) 26.72/10.92 new_ltEs6(x0, x1, ty_Int) 26.72/10.92 new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.72/10.92 new_esEs22(x0, x1, app(ty_Maybe, x2)) 26.72/10.92 new_lt6(x0, x1, ty_Integer) 26.72/10.92 new_esEs27(x0, x1, ty_Char) 26.72/10.92 new_ltEs4(Left(x0), Left(x1), ty_Float, x2) 26.72/10.92 new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.72/10.92 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.92 new_esEs20(x0, x1, ty_Integer) 26.72/10.92 new_ltEs12(GT, EQ) 26.72/10.92 new_ltEs12(EQ, GT) 26.72/10.92 new_ltEs8(Just(x0), Nothing, x1) 26.72/10.92 new_lt17(x0, x1) 26.72/10.92 new_esEs28(x0, x1, app(ty_Ratio, x2)) 26.72/10.92 new_esEs20(x0, x1, ty_Bool) 26.72/10.92 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 26.72/10.92 new_ltEs4(Left(x0), Right(x1), x2, x3) 26.72/10.92 new_ltEs4(Right(x0), Left(x1), x2, x3) 26.72/10.92 new_esEs10(x0, x1, app(ty_Maybe, x2)) 26.72/10.92 new_compare112(x0, x1, True) 26.72/10.92 new_compare113(x0, x1, True, x2, x3, x4) 26.72/10.92 new_esEs26(x0, x1, ty_Int) 26.72/10.92 new_lt19(x0, x1, ty_Bool) 26.72/10.92 new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.72/10.92 new_primMulInt(Pos(x0), Pos(x1)) 26.72/10.92 new_primEqInt(Pos(Zero), Neg(Zero)) 26.72/10.92 new_primEqInt(Neg(Zero), Pos(Zero)) 26.72/10.92 new_primMulNat0(Succ(x0), Succ(x1)) 26.72/10.92 new_ltEs6(x0, x1, ty_Double) 26.72/10.92 new_esEs16([], [], x0) 26.72/10.92 new_esEs26(x0, x1, ty_Bool) 26.72/10.92 new_esEs7(Right(x0), Right(x1), x2, ty_Int) 26.72/10.92 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.92 new_primCompAux0(x0, x1, x2, x3) 26.72/10.92 new_esEs26(x0, x1, ty_Char) 26.72/10.92 new_ltEs6(x0, x1, ty_Char) 26.72/10.92 new_esEs26(x0, x1, ty_Double) 26.72/10.92 new_esEs16(:(x0, x1), :(x2, x3), x4) 26.72/10.92 new_compare8(x0, x1, ty_Ordering) 26.72/10.92 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 26.72/10.92 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 26.72/10.92 new_compare23(x0, x1, x2, x3) 26.72/10.92 new_lt19(x0, x1, ty_Char) 26.72/10.92 new_esEs7(Right(x0), Right(x1), x2, ty_Double) 26.72/10.92 new_esEs7(Right(x0), Right(x1), x2, ty_Char) 26.72/10.92 new_lt11(x0, x1) 26.72/10.92 new_ltEs8(Just(x0), Just(x1), ty_Integer) 26.72/10.92 new_lt19(x0, x1, ty_Double) 26.72/10.92 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.92 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.92 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.92 new_lt18(x0, x1, x2, x3) 26.72/10.92 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.92 new_ltEs4(Right(x0), Right(x1), x2, ty_Ordering) 26.72/10.92 new_sr(x0, x1) 26.72/10.92 new_fsEs(x0) 26.72/10.92 new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) 26.72/10.92 new_esEs28(x0, x1, ty_Ordering) 26.72/10.92 new_compare17(x0, x1) 26.72/10.92 new_lt20(x0, x1, app(ty_[], x2)) 26.72/10.92 new_compare8(x0, x1, ty_@0) 26.72/10.92 new_esEs27(x0, x1, ty_@0) 26.72/10.92 new_compare7(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 26.72/10.92 new_compare7(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 26.72/10.92 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.92 new_compare7(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 26.72/10.92 new_esEs9(@0, @0) 26.72/10.92 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.92 new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) 26.72/10.92 new_ltEs8(Just(x0), Just(x1), ty_Double) 26.72/10.92 new_ltEs6(x0, x1, app(ty_Maybe, x2)) 26.72/10.92 new_esEs22(x0, x1, ty_Float) 26.72/10.92 new_compare27(x0, x1, True) 26.72/10.92 new_lt7(x0, x1, x2) 26.72/10.92 new_compare8(x0, x1, app(ty_[], x2)) 26.72/10.92 new_esEs28(x0, x1, app(ty_Maybe, x2)) 26.72/10.92 new_ltEs6(x0, x1, app(ty_Ratio, x2)) 26.72/10.92 new_esEs24(x0, x1, ty_Int) 26.72/10.92 new_esEs5(Just(x0), Just(x1), ty_Double) 26.72/10.92 new_primCompAux00(x0, LT) 26.72/10.92 new_ltEs8(Nothing, Just(x0), x1) 26.72/10.92 new_esEs11(x0, x1, app(ty_Ratio, x2)) 26.72/10.92 new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) 26.72/10.92 new_ltEs4(Right(x0), Right(x1), x2, ty_Integer) 26.72/10.92 new_compare114(x0, x1, True, x2, x3) 26.72/10.92 new_ltEs4(Left(x0), Left(x1), ty_Char, x2) 26.72/10.92 new_compare0(:(x0, x1), [], x2) 26.72/10.92 new_ltEs8(Just(x0), Just(x1), ty_Ordering) 26.72/10.92 new_ltEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.72/10.92 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 26.72/10.92 new_esEs28(x0, x1, ty_Char) 26.72/10.92 new_compare26(x0, x1, True) 26.72/10.92 new_esEs15(Integer(x0), Integer(x1)) 26.72/10.92 new_esEs20(x0, x1, app(ty_Ratio, x2)) 26.72/10.92 new_lt19(x0, x1, app(ty_Ratio, x2)) 26.72/10.92 new_esEs26(x0, x1, ty_Float) 26.72/10.92 new_asAs(True, x0) 26.72/10.92 new_esEs23(x0, x1, app(ty_Ratio, x2)) 26.72/10.92 new_compare25(Nothing, Just(x0), False, x1) 26.72/10.92 new_compare8(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.92 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.92 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.92 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.92 new_ltEs20(x0, x1, ty_Integer) 26.72/10.92 new_ltEs20(x0, x1, ty_Float) 26.72/10.92 new_compare111(x0, x1, True) 26.72/10.92 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.72/10.92 new_esEs22(x0, x1, ty_Ordering) 26.72/10.92 new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 26.72/10.92 new_ltEs4(Left(x0), Left(x1), ty_Int, x2) 26.72/10.92 new_ltEs19(x0, x1, ty_Double) 26.72/10.92 new_esEs8(GT, GT) 26.72/10.92 new_esEs22(x0, x1, ty_Int) 26.72/10.92 new_esEs20(x0, x1, ty_Char) 26.72/10.92 new_ltEs12(EQ, LT) 26.72/10.92 new_ltEs12(LT, EQ) 26.72/10.92 new_esEs8(LT, EQ) 26.72/10.92 new_esEs8(EQ, LT) 26.72/10.92 new_ltEs12(GT, GT) 26.72/10.92 new_compare11(x0, x1, x2, x3) 26.72/10.92 new_primMulNat0(Succ(x0), Zero) 26.72/10.92 new_primCmpInt(Neg(Zero), Neg(Zero)) 26.72/10.92 new_esEs22(x0, x1, ty_Char) 26.72/10.92 new_lt20(x0, x1, ty_@0) 26.72/10.92 new_esEs28(x0, x1, ty_Bool) 26.72/10.92 new_esEs19(x0, x1) 26.72/10.92 new_esEs11(x0, x1, ty_Double) 26.72/10.92 new_esEs7(Left(x0), Left(x1), ty_Int, x2) 26.72/10.92 new_ltEs14(False, False) 26.72/10.92 new_esEs11(x0, x1, ty_@0) 26.72/10.92 new_esEs23(x0, x1, ty_Int) 26.72/10.92 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.92 new_lt19(x0, x1, ty_Integer) 26.72/10.92 new_esEs8(LT, LT) 26.72/10.92 new_esEs23(x0, x1, ty_Integer) 26.72/10.92 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 26.72/10.92 new_ltEs4(Right(x0), Right(x1), x2, ty_Float) 26.72/10.92 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.72/10.92 new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 26.72/10.92 new_primCmpInt(Pos(Zero), Neg(Zero)) 26.72/10.92 new_primCmpInt(Neg(Zero), Pos(Zero)) 26.72/10.92 new_lt8(x0, x1, x2, x3) 26.72/10.92 new_ltEs4(Left(x0), Left(x1), ty_Bool, x2) 26.72/10.92 new_esEs28(x0, x1, ty_Float) 26.72/10.92 new_esEs20(x0, x1, ty_Int) 26.72/10.92 new_ltEs4(Right(x0), Right(x1), x2, ty_Bool) 26.72/10.92 new_esEs21(x0, x1, ty_@0) 26.72/10.92 new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.72/10.92 new_esEs10(x0, x1, ty_Char) 26.72/10.92 new_primEqNat0(Succ(x0), Zero) 26.72/10.92 new_lt15(x0, x1) 26.72/10.92 new_compare13(x0, x1, x2, x3, x4) 26.72/10.92 new_ltEs20(x0, x1, ty_Int) 26.72/10.92 new_compare8(x0, x1, app(ty_Ratio, x2)) 26.72/10.92 new_ltEs20(x0, x1, ty_Bool) 26.72/10.92 new_lt10(x0, x1, x2, x3, x4) 26.72/10.92 new_esEs22(x0, x1, ty_Integer) 26.72/10.92 new_esEs21(x0, x1, app(ty_Maybe, x2)) 26.72/10.92 new_esEs23(x0, x1, ty_Char) 26.72/10.92 new_esEs10(x0, x1, ty_Int) 26.72/10.92 new_ltEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.72/10.92 new_ltEs19(x0, x1, ty_@0) 26.72/10.92 new_esEs28(x0, x1, ty_Int) 26.72/10.92 new_ltEs20(x0, x1, ty_Char) 26.72/10.92 new_ltEs12(LT, LT) 26.72/10.92 new_esEs20(x0, x1, ty_Float) 26.72/10.92 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.92 new_esEs27(x0, x1, app(ty_[], x2)) 26.72/10.92 new_lt19(x0, x1, ty_Ordering) 26.72/10.92 new_compare24(x0, x1, True, x2, x3) 26.72/10.92 new_esEs7(Left(x0), Left(x1), ty_Char, x2) 26.72/10.92 new_compare0(:(x0, x1), :(x2, x3), x4) 26.72/10.92 new_ltEs6(x0, x1, app(ty_[], x2)) 26.72/10.92 new_esEs21(x0, x1, ty_Double) 26.72/10.92 new_esEs23(x0, x1, ty_Bool) 26.72/10.92 new_esEs27(x0, x1, app(ty_Ratio, x2)) 26.72/10.92 new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.72/10.92 new_esEs23(x0, x1, app(ty_[], x2)) 26.72/10.92 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.92 new_ltEs17(x0, x1) 26.72/10.92 new_ltEs4(Right(x0), Right(x1), x2, ty_Int) 26.72/10.92 new_primCmpNat0(x0, Zero) 26.72/10.92 new_esEs10(x0, x1, ty_Float) 26.72/10.92 new_esEs7(Left(x0), Left(x1), ty_Bool, x2) 26.72/10.92 new_lt20(x0, x1, ty_Double) 26.72/10.92 new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.72/10.92 new_lt6(x0, x1, ty_Double) 26.72/10.92 new_esEs11(x0, x1, ty_Char) 26.72/10.92 new_compare12(x0, x1, x2) 26.72/10.92 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 26.72/10.92 new_compare27(x0, x1, False) 26.72/10.92 new_ltEs10(x0, x1) 26.72/10.92 new_esEs7(Right(x0), Right(x1), x2, ty_Float) 26.72/10.92 new_primCmpNat0(x0, Succ(x1)) 26.72/10.92 new_esEs21(x0, x1, app(ty_Ratio, x2)) 26.72/10.92 new_compare114(x0, x1, False, x2, x3) 26.72/10.92 new_esEs5(Just(x0), Just(x1), ty_@0) 26.72/10.92 new_primCmpNat1(Zero, Succ(x0)) 26.72/10.92 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.92 new_esEs10(x0, x1, ty_@0) 26.72/10.92 new_compare0([], :(x0, x1), x2) 26.72/10.92 new_lt6(x0, x1, app(ty_Ratio, x2)) 26.72/10.92 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 26.72/10.92 new_compare25(Just(x0), Nothing, False, x1) 26.72/10.92 new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.72/10.92 new_esEs16([], :(x0, x1), x2) 26.72/10.92 new_esEs24(x0, x1, ty_Integer) 26.72/10.92 new_primMulNat0(Zero, Zero) 26.72/10.92 new_esEs5(Just(x0), Nothing, x1) 26.72/10.92 new_primCmpNat2(Succ(x0), x1) 26.72/10.92 new_ltEs15(x0, x1, x2) 26.72/10.92 new_esEs16(:(x0, x1), [], x2) 26.72/10.92 new_compare8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.92 new_esEs11(x0, x1, ty_Int) 26.72/10.92 new_esEs27(x0, x1, ty_Float) 26.72/10.92 new_lt12(x0, x1) 26.72/10.92 new_esEs20(x0, x1, ty_Double) 26.72/10.92 new_esEs17(True, True) 26.72/10.92 new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.72/10.92 new_ltEs6(x0, x1, ty_Float) 26.72/10.92 new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.92 new_esEs23(x0, x1, ty_Double) 26.72/10.92 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 26.72/10.92 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 26.72/10.92 new_ltEs19(x0, x1, ty_Int) 26.72/10.92 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 26.72/10.92 new_compare14(Integer(x0), Integer(x1)) 26.72/10.92 new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.72/10.92 new_compare29(x0, x1, True, x2, x3, x4) 26.72/10.92 new_ltEs16(x0, x1) 26.72/10.92 new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) 26.72/10.92 new_ltEs19(x0, x1, ty_Char) 26.72/10.92 new_primPlusNat0(Succ(x0), Succ(x1)) 26.72/10.92 new_lt16(x0, x1) 26.72/10.92 new_esEs20(x0, x1, app(ty_Maybe, x2)) 26.72/10.92 new_primEqNat0(Succ(x0), Succ(x1)) 26.72/10.92 new_esEs23(x0, x1, ty_Ordering) 26.72/10.92 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.72/10.92 new_esEs10(x0, x1, ty_Bool) 26.72/10.92 new_ltEs6(x0, x1, ty_Integer) 26.72/10.92 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.92 new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.72/10.92 new_ltEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.72/10.92 new_esEs22(x0, x1, app(ty_[], x2)) 26.72/10.92 new_esEs5(Just(x0), Just(x1), ty_Integer) 26.72/10.92 new_primPlusNat0(Zero, Zero) 26.72/10.92 new_ltEs4(Left(x0), Left(x1), ty_Ordering, x2) 26.72/10.92 new_primCmpNat1(Succ(x0), Zero) 26.72/10.92 new_esEs10(x0, x1, ty_Integer) 26.72/10.92 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.92 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.92 new_lt6(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.92 new_pePe(False, x0) 26.72/10.92 new_ltEs14(True, True) 26.72/10.92 new_compare10(x0, x1, False, x2) 26.72/10.92 new_ltEs19(x0, x1, ty_Bool) 26.72/10.92 new_not(True) 26.72/10.92 new_compare8(x0, x1, app(ty_Maybe, x2)) 26.72/10.92 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.92 new_esEs25(x0, x1, ty_Int) 26.72/10.92 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.92 new_lt19(x0, x1, app(ty_Maybe, x2)) 26.72/10.92 new_esEs23(x0, x1, app(ty_Maybe, x2)) 26.72/10.92 new_esEs8(EQ, GT) 26.72/10.92 new_esEs8(GT, EQ) 26.72/10.92 new_lt9(x0, x1, x2) 26.72/10.92 new_primMulNat0(Zero, Succ(x0)) 26.72/10.92 new_compare112(x0, x1, False) 26.72/10.92 new_lt20(x0, x1, ty_Ordering) 26.72/10.92 new_esEs7(Left(x0), Right(x1), x2, x3) 26.72/10.92 new_esEs7(Right(x0), Left(x1), x2, x3) 26.72/10.92 new_esEs27(x0, x1, app(ty_Maybe, x2)) 26.72/10.92 new_esEs11(x0, x1, ty_Ordering) 26.72/10.92 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.92 new_esEs20(x0, x1, ty_Ordering) 26.72/10.92 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.92 new_esEs5(Nothing, Nothing, x0) 26.72/10.92 new_esEs27(x0, x1, ty_Integer) 26.72/10.92 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.92 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.92 new_ltEs18(x0, x1) 26.72/10.92 new_ltEs20(x0, x1, ty_Ordering) 26.72/10.92 new_esEs18(:%(x0, x1), :%(x2, x3), x4) 26.72/10.92 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.92 new_ltEs7(x0, x1, x2) 26.72/10.92 new_ltEs19(x0, x1, ty_Ordering) 26.72/10.92 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 26.72/10.92 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.92 new_esEs17(False, True) 26.72/10.92 new_esEs17(True, False) 26.72/10.92 new_primPlusNat0(Succ(x0), Zero) 26.72/10.92 new_esEs28(x0, x1, ty_Integer) 26.72/10.92 new_esEs10(x0, x1, app(ty_[], x2)) 26.72/10.92 new_ltEs19(x0, x1, ty_Integer) 26.72/10.92 new_ltEs12(EQ, EQ) 26.72/10.92 new_compare18(@0, @0) 26.72/10.92 new_esEs21(x0, x1, ty_Ordering) 26.72/10.92 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.92 new_esEs10(x0, x1, ty_Ordering) 26.72/10.92 new_compare29(x0, x1, False, x2, x3, x4) 26.72/10.92 new_esEs13(Double(x0, x1), Double(x2, x3)) 26.72/10.92 new_compare110(x0, x1, True, x2, x3) 26.72/10.92 new_esEs26(x0, x1, app(ty_[], x2)) 26.72/10.92 new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.72/10.92 new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.92 new_compare8(x0, x1, ty_Integer) 26.72/10.92 new_primCmpInt(Pos(Zero), Pos(Zero)) 26.72/10.92 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.92 new_ltEs6(x0, x1, ty_Bool) 26.72/10.92 new_lt20(x0, x1, app(ty_Ratio, x2)) 26.72/10.92 new_compare7(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 26.72/10.92 new_compare25(Nothing, Nothing, False, x0) 26.72/10.92 new_compare16(x0, x1) 26.72/10.92 new_ltEs8(Just(x0), Just(x1), ty_Float) 26.72/10.92 new_lt20(x0, x1, app(ty_Maybe, x2)) 26.72/10.92 new_esEs22(x0, x1, ty_Double) 26.72/10.92 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 26.72/10.92 new_esEs7(Right(x0), Right(x1), x2, ty_Bool) 26.72/10.92 new_lt6(x0, x1, app(ty_[], x2)) 26.72/10.92 new_esEs7(Right(x0), Right(x1), x2, ty_@0) 26.72/10.92 new_esEs27(x0, x1, ty_Bool) 26.72/10.92 new_esEs22(x0, x1, app(ty_Ratio, x2)) 26.72/10.92 new_compare110(x0, x1, False, x2, x3) 26.72/10.92 new_esEs8(LT, GT) 26.72/10.92 new_esEs8(GT, LT) 26.72/10.92 new_primPlusNat1(x0, x1) 26.72/10.92 new_lt6(x0, x1, ty_Ordering) 26.72/10.92 new_esEs12(Char(x0), Char(x1)) 26.72/10.92 new_ltEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.72/10.92 new_ltEs8(Just(x0), Just(x1), ty_Int) 26.72/10.92 new_esEs7(Right(x0), Right(x1), x2, ty_Integer) 26.72/10.92 new_lt19(x0, x1, ty_Float) 26.72/10.92 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 26.72/10.92 new_esEs20(x0, x1, ty_@0) 26.72/10.92 new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) 26.72/10.92 new_esEs26(x0, x1, ty_Ordering) 26.72/10.92 new_compare24(x0, x1, False, x2, x3) 26.72/10.92 new_ltEs6(x0, x1, ty_@0) 26.72/10.92 new_esEs5(Just(x0), Just(x1), ty_Ordering) 26.72/10.92 new_esEs10(x0, x1, ty_Double) 26.72/10.92 new_esEs7(Left(x0), Left(x1), ty_@0, x2) 26.72/10.92 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 26.72/10.92 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 26.72/10.92 new_lt6(x0, x1, ty_Float) 26.72/10.92 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.92 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 26.72/10.92 new_esEs28(x0, x1, app(ty_[], x2)) 26.72/10.92 new_compare8(x0, x1, ty_Bool) 26.72/10.92 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.72/10.92 new_ltEs8(Nothing, Nothing, x0) 26.72/10.92 new_esEs11(x0, x1, ty_Integer) 26.72/10.92 new_primMulInt(Neg(x0), Neg(x1)) 26.72/10.92 new_ltEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.72/10.92 new_ltEs19(x0, x1, app(ty_[], x2)) 26.72/10.92 new_esEs23(x0, x1, ty_@0) 26.72/10.92 new_esEs26(x0, x1, ty_Integer) 26.72/10.92 new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.92 new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.72/10.92 new_ltEs4(Left(x0), Left(x1), ty_@0, x2) 26.72/10.92 new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.72/10.92 new_esEs5(Just(x0), Just(x1), ty_Float) 26.72/10.92 new_compare10(x0, x1, True, x2) 26.72/10.92 new_ltEs4(Right(x0), Right(x1), x2, ty_@0) 26.72/10.92 new_ltEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.72/10.92 new_compare25(x0, x1, True, x2) 26.72/10.92 new_ltEs14(False, True) 26.72/10.92 new_ltEs14(True, False) 26.72/10.92 new_primPlusNat0(Zero, Succ(x0)) 26.72/10.92 new_primEqNat0(Zero, Zero) 26.72/10.92 new_compare8(x0, x1, ty_Char) 26.72/10.92 new_esEs25(x0, x1, ty_Integer) 26.72/10.92 new_primCompAux00(x0, GT) 26.72/10.92 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.72/10.92 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.92 new_not(False) 26.72/10.92 new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.72/10.92 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 26.72/10.92 new_ltEs8(Just(x0), Just(x1), ty_Char) 26.72/10.92 new_esEs5(Just(x0), Just(x1), ty_Char) 26.72/10.92 new_esEs11(x0, x1, ty_Bool) 26.72/10.92 new_lt20(x0, x1, ty_Float) 26.72/10.92 new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.72/10.92 new_ltEs19(x0, x1, ty_Float) 26.72/10.92 new_lt6(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.92 new_compare28(x0, x1, True, x2, x3) 26.72/10.92 new_lt20(x0, x1, ty_Bool) 26.72/10.92 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.92 new_ltEs12(LT, GT) 26.72/10.92 new_ltEs12(GT, LT) 26.72/10.92 new_lt6(x0, x1, ty_Int) 26.72/10.92 new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.72/10.92 new_compare8(x0, x1, ty_Int) 26.72/10.92 new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.72/10.92 new_lt6(x0, x1, app(ty_Maybe, x2)) 26.72/10.92 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.92 new_sr0(Integer(x0), Integer(x1)) 26.72/10.92 new_esEs21(x0, x1, ty_Bool) 26.72/10.92 new_esEs28(x0, x1, ty_Double) 26.72/10.92 new_esEs5(Just(x0), Just(x1), ty_Int) 26.72/10.92 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 26.72/10.92 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 26.72/10.92 new_ltEs4(Right(x0), Right(x1), x2, ty_Double) 26.72/10.92 new_ltEs4(Left(x0), Left(x1), ty_Double, x2) 26.72/10.92 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 26.72/10.92 new_esEs21(x0, x1, ty_Float) 26.72/10.92 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.92 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.92 new_ltEs20(x0, x1, ty_@0) 26.72/10.92 new_lt14(x0, x1, x2) 26.72/10.92 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.92 new_ltEs5(@2(x0, x1), @2(x2, x3), x4, x5) 26.72/10.92 new_lt4(x0, x1) 26.72/10.92 new_asAs(False, x0) 26.72/10.92 new_esEs21(x0, x1, app(ty_[], x2)) 26.72/10.92 new_primMulInt(Pos(x0), Neg(x1)) 26.72/10.92 new_primMulInt(Neg(x0), Pos(x1)) 26.72/10.92 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 26.72/10.92 new_esEs14(Float(x0, x1), Float(x2, x3)) 26.72/10.92 new_esEs7(Left(x0), Left(x1), ty_Double, x2) 26.72/10.92 new_compare8(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.92 new_lt20(x0, x1, ty_Int) 26.72/10.92 new_primCmpNat1(Succ(x0), Succ(x1)) 26.72/10.92 new_esEs21(x0, x1, ty_Char) 26.72/10.92 new_compare111(x0, x1, False) 26.72/10.92 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.92 new_esEs21(x0, x1, ty_Int) 26.72/10.92 new_lt6(x0, x1, ty_Char) 26.72/10.92 new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 26.72/10.92 new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 26.72/10.92 new_esEs5(Just(x0), Just(x1), ty_Bool) 26.72/10.92 new_compare8(x0, x1, ty_Float) 26.72/10.92 new_esEs11(x0, x1, app(ty_Maybe, x2)) 26.72/10.92 new_lt20(x0, x1, ty_Char) 26.72/10.92 new_ltEs20(x0, x1, ty_Double) 26.72/10.92 new_esEs28(x0, x1, ty_@0) 26.72/10.92 26.72/10.92 We have to consider all minimal (P,Q,R)-chains. 26.72/10.92 ---------------------------------------- 26.72/10.92 26.72/10.92 (24) QDPSizeChangeProof (EQUIVALENT) 26.72/10.92 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. 26.72/10.92 26.72/10.92 From the DPs we obtained the following set of size-change graphs: 26.72/10.92 *new_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(ty_Maybe, ce), cd) -> new_compare20(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, ce), ce) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), h, app(ty_[], bg)) -> new_ltEs2(xuu33001, xuu34001, bg) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs0(Just(xuu33000), Just(xuu34000), app(ty_[], ec)) -> new_ltEs2(xuu33000, xuu34000, ec) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare22(xuu33000, xuu34000, False, dc, dd) -> new_ltEs3(xuu33000, xuu34000, dc, dd) 26.72/10.92 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), h, app(ty_Maybe, bc)) -> new_ltEs0(xuu33001, xuu34001, bc) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs1(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), ef, eg, app(ty_[], fg)) -> new_ltEs2(xuu33002, xuu34002, fg) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs0(Just(xuu33000), Just(xuu34000), app(ty_Maybe, dg)) -> new_ltEs0(xuu33000, xuu34000, dg) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs1(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), ef, eg, app(ty_Maybe, fb)) -> new_ltEs0(xuu33002, xuu34002, fb) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.72/10.92 26.72/10.92 26.72/10.92 *new_lt0(xuu33000, xuu34000, ce) -> new_compare20(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, ce), ce) 26.72/10.92 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), h, app(app(app(ty_@3, bd), be), bf)) -> new_ltEs1(xuu33001, xuu34001, bd, be, bf) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs0(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, dh), ea), eb)) -> new_ltEs1(xuu33000, xuu34000, dh, ea, eb) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs1(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), ef, eg, app(app(app(ty_@3, fc), fd), ff)) -> new_ltEs1(xuu33002, xuu34002, fc, fd, ff) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 26.72/10.92 26.72/10.92 26.72/10.92 *new_lt1(xuu33000, xuu34000, cf, cg, da) -> new_compare21(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, cf, cg, da), cf, cg, da) 26.72/10.92 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare2(xuu33000, xuu34000, False, cb, cc) -> new_ltEs(xuu33000, xuu34000, cb, cc) 26.72/10.92 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), h, app(app(ty_@2, ba), bb)) -> new_ltEs(xuu33001, xuu34001, ba, bb) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(ty_Maybe, ce)), cd)) -> new_compare20(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, ce), ce) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare3(xuu33000, xuu34000, ce) -> new_compare20(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, ce), ce) 26.72/10.92 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs0(Just(xuu33000), Just(xuu34000), app(app(ty_@2, de), df)) -> new_ltEs(xuu33000, xuu34000, de, df) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs0(Just(xuu33000), Just(xuu34000), app(app(ty_Either, ed), ee)) -> new_ltEs3(xuu33000, xuu34000, ed, ee) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs1(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), ef, eg, app(app(ty_@2, eh), fa)) -> new_ltEs(xuu33002, xuu34002, eh, fa) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare21(xuu33000, xuu34000, False, cf, cg, da) -> new_ltEs1(xuu33000, xuu34000, cf, cg, da) 26.72/10.92 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 26.72/10.92 26.72/10.92 26.72/10.92 *new_lt2(xuu33000, xuu34000, db) -> new_compare(xuu33000, xuu34000, db) 26.72/10.92 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 26.72/10.92 26.72/10.92 26.72/10.92 *new_lt(xuu33000, xuu34000, cb, cc) -> new_compare2(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, cb, cc), cb, cc) 26.72/10.92 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 26.72/10.92 26.72/10.92 26.72/10.92 *new_lt3(xuu33000, xuu34000, dc, dd) -> new_compare22(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, dc, dd), dc, dd) 26.72/10.92 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), h, app(app(ty_Either, bh), ca)) -> new_ltEs3(xuu33001, xuu34001, bh, ca) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs1(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), ef, eg, app(app(ty_Either, fh), ga)) -> new_ltEs3(xuu33002, xuu34002, fh, ga) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare(:(xuu33000, xuu33001), :(xuu34000, xuu34001), bae) -> new_primCompAux(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, bae), bae) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare(:(xuu33000, xuu33001), :(xuu34000, xuu34001), bae) -> new_compare(xuu33001, xuu34001, bae) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(:(xuu33000, xuu33001)), Just(:(xuu34000, xuu34001)), False, app(ty_[], bae)) -> new_primCompAux(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, bae), bae) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs2(:(xuu33000, xuu33001), :(xuu34000, xuu34001), bae) -> new_primCompAux(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, bae), bae) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs2(:(xuu33000, xuu33001), :(xuu34000, xuu34001), bae) -> new_compare(xuu33001, xuu34001, bae) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare5(xuu33000, xuu34000, dc, dd) -> new_compare22(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, dc, dd), dc, dd) 26.72/10.92 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare4(xuu33000, xuu34000, cf, cg, da) -> new_compare21(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, cf, cg, da), cf, cg, da) 26.72/10.92 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare1(xuu33000, xuu34000, cb, cc) -> new_compare2(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, cb, cc), cb, cc) 26.72/10.92 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(app(ty_Either, dc), dd), cd) -> new_compare22(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, dc, dd), dc, dd) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(app(ty_Either, dc), dd)), cd)) -> new_compare22(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, dc, dd), dc, dd) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(app(app(ty_@3, cf), cg), da), cd) -> new_compare21(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, cf, cg, da), cf, cg, da) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5, 3 > 6 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(app(app(ty_@3, cf), cg), da)), cd)) -> new_compare21(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, cf, cg, da), cf, cg, da) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(ty_[], db), cd) -> new_compare(xuu33000, xuu34000, db) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(app(ty_@2, cb), cc), cd) -> new_compare2(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, cb, cc), cb, cc) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 26.72/10.92 26.72/10.92 26.72/10.92 *new_primCompAux(xuu33000, xuu34000, xuu172, app(ty_[], bbd)) -> new_compare(xuu33000, xuu34000, bbd) 26.72/10.92 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(app(ty_@2, cb), cc)), cd)) -> new_compare2(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, cb, cc), cb, cc) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 26.72/10.92 26.72/10.92 26.72/10.92 *new_primCompAux(xuu33000, xuu34000, xuu172, app(app(ty_Either, bbe), bbf)) -> new_compare5(xuu33000, xuu34000, bbe, bbf) 26.72/10.92 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 26.72/10.92 26.72/10.92 26.72/10.92 *new_primCompAux(xuu33000, xuu34000, xuu172, app(app(app(ty_@3, bba), bbb), bbc)) -> new_compare4(xuu33000, xuu34000, bba, bbb, bbc) 26.72/10.92 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 26.72/10.92 26.72/10.92 26.72/10.92 *new_primCompAux(xuu33000, xuu34000, xuu172, app(ty_Maybe, bah)) -> new_compare3(xuu33000, xuu34000, bah) 26.72/10.92 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 26.72/10.92 26.72/10.92 26.72/10.92 *new_primCompAux(xuu33000, xuu34000, xuu172, app(app(ty_@2, baf), bag)) -> new_compare1(xuu33000, xuu34000, baf, bag) 26.72/10.92 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs3(Right(xuu33000), Right(xuu34000), bda, app(ty_[], bdh)) -> new_ltEs2(xuu33000, xuu34000, bdh) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs3(Left(xuu33000), Left(xuu34000), app(ty_[], bcf), bca) -> new_ltEs2(xuu33000, xuu34000, bcf) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(ty_[], ec))) -> new_ltEs2(xuu33000, xuu34000, ec) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, bda), app(ty_[], bdh))) -> new_ltEs2(xuu33000, xuu34000, bdh) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(ty_[], bcf)), bca)) -> new_ltEs2(xuu33000, xuu34000, bcf) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, ef), eg), app(ty_[], fg))) -> new_ltEs2(xuu33002, xuu34002, fg) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, h), app(ty_[], bg))) -> new_ltEs2(xuu33001, xuu34001, bg) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs3(Left(xuu33000), Left(xuu34000), app(ty_Maybe, bcb), bca) -> new_ltEs0(xuu33000, xuu34000, bcb) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs3(Right(xuu33000), Right(xuu34000), bda, app(ty_Maybe, bdd)) -> new_ltEs0(xuu33000, xuu34000, bdd) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs3(Right(xuu33000), Right(xuu34000), bda, app(app(app(ty_@3, bde), bdf), bdg)) -> new_ltEs1(xuu33000, xuu34000, bde, bdf, bdg) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs3(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, bcc), bcd), bce), bca) -> new_ltEs1(xuu33000, xuu34000, bcc, bcd, bce) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs3(Right(xuu33000), Right(xuu34000), bda, app(app(ty_@2, bdb), bdc)) -> new_ltEs(xuu33000, xuu34000, bdb, bdc) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs3(Left(xuu33000), Left(xuu34000), app(app(ty_@2, bbg), bbh), bca) -> new_ltEs(xuu33000, xuu34000, bbg, bbh) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs3(Left(xuu33000), Left(xuu34000), app(app(ty_Either, bcg), bch), bca) -> new_ltEs3(xuu33000, xuu34000, bcg, bch) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs3(Right(xuu33000), Right(xuu34000), bda, app(app(ty_Either, bea), beb)) -> new_ltEs3(xuu33000, xuu34000, bea, beb) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs1(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), ef, app(app(ty_Either, hb), hc), gd) -> new_lt3(xuu33001, xuu34001, hb, hc) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs1(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(app(ty_Either, bac), bad), eg, gd) -> new_lt3(xuu33000, xuu34000, bac, bad) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(app(ty_Either, bac), bad)), eg), gd)) -> new_lt3(xuu33000, xuu34000, bac, bad) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, ef), app(app(ty_Either, hb), hc)), gd)) -> new_lt3(xuu33001, xuu34001, hb, hc) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs1(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(app(ty_@2, hd), he), eg, gd) -> new_lt(xuu33000, xuu34000, hd, he) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs1(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), ef, app(app(ty_@2, gb), gc), gd) -> new_lt(xuu33001, xuu34001, gb, gc) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs1(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), ef, app(app(app(ty_@3, gf), gg), gh), gd) -> new_lt1(xuu33001, xuu34001, gf, gg, gh) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs1(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(app(app(ty_@3, hg), hh), baa), eg, gd) -> new_lt1(xuu33000, xuu34000, hg, hh, baa) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs1(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), ef, app(ty_[], ha), gd) -> new_lt2(xuu33001, xuu34001, ha) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs1(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(ty_[], bab), eg, gd) -> new_lt2(xuu33000, xuu34000, bab) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs1(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(ty_Maybe, hf), eg, gd) -> new_lt0(xuu33000, xuu34000, hf) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.72/10.92 26.72/10.92 26.72/10.92 *new_ltEs1(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), ef, app(ty_Maybe, ge), gd) -> new_lt0(xuu33001, xuu34001, ge) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, ef), eg), app(ty_Maybe, fb))) -> new_ltEs0(xuu33002, xuu34002, fb) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, h), app(ty_Maybe, bc))) -> new_ltEs0(xuu33001, xuu34001, bc) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(ty_Maybe, dg))) -> new_ltEs0(xuu33000, xuu34000, dg) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, bda), app(ty_Maybe, bdd))) -> new_ltEs0(xuu33000, xuu34000, bdd) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(ty_Maybe, bcb)), bca)) -> new_ltEs0(xuu33000, xuu34000, bcb) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, ef), eg), app(app(app(ty_@3, fc), fd), ff))) -> new_ltEs1(xuu33002, xuu34002, fc, fd, ff) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, h), app(app(app(ty_@3, bd), be), bf))) -> new_ltEs1(xuu33001, xuu34001, bd, be, bf) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(app(app(ty_@3, dh), ea), eb))) -> new_ltEs1(xuu33000, xuu34000, dh, ea, eb) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(app(app(ty_@3, bcc), bcd), bce)), bca)) -> new_ltEs1(xuu33000, xuu34000, bcc, bcd, bce) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, bda), app(app(app(ty_@3, bde), bdf), bdg))) -> new_ltEs1(xuu33000, xuu34000, bde, bdf, bdg) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(app(ty_@2, de), df))) -> new_ltEs(xuu33000, xuu34000, de, df) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, bda), app(app(ty_@2, bdb), bdc))) -> new_ltEs(xuu33000, xuu34000, bdb, bdc) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(app(ty_@2, bbg), bbh)), bca)) -> new_ltEs(xuu33000, xuu34000, bbg, bbh) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, h), app(app(ty_@2, ba), bb))) -> new_ltEs(xuu33001, xuu34001, ba, bb) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, ef), eg), app(app(ty_@2, eh), fa))) -> new_ltEs(xuu33002, xuu34002, eh, fa) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, ef), app(app(ty_@2, gb), gc)), gd)) -> new_lt(xuu33001, xuu34001, gb, gc) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(app(ty_@2, hd), he)), eg), gd)) -> new_lt(xuu33000, xuu34000, hd, he) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, ef), app(app(app(ty_@3, gf), gg), gh)), gd)) -> new_lt1(xuu33001, xuu34001, gf, gg, gh) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(app(app(ty_@3, hg), hh), baa)), eg), gd)) -> new_lt1(xuu33000, xuu34000, hg, hh, baa) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, ef), app(ty_[], ha)), gd)) -> new_lt2(xuu33001, xuu34001, ha) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(ty_[], bab)), eg), gd)) -> new_lt2(xuu33000, xuu34000, bab) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, h), app(app(ty_Either, bh), ca))) -> new_ltEs3(xuu33001, xuu34001, bh, ca) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, ef), eg), app(app(ty_Either, fh), ga))) -> new_ltEs3(xuu33002, xuu34002, fh, ga) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(app(ty_Either, ed), ee))) -> new_ltEs3(xuu33000, xuu34000, ed, ee) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(app(ty_Either, bcg), bch)), bca)) -> new_ltEs3(xuu33000, xuu34000, bcg, bch) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, bda), app(app(ty_Either, bea), beb))) -> new_ltEs3(xuu33000, xuu34000, bea, beb) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(:(xuu33000, xuu33001)), Just(:(xuu34000, xuu34001)), False, app(ty_[], bae)) -> new_compare(xuu33001, xuu34001, bae) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(ty_[], db)), cd)) -> new_compare(xuu33000, xuu34000, db) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(ty_Maybe, hf)), eg), gd)) -> new_lt0(xuu33000, xuu34000, hf) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.72/10.92 26.72/10.92 26.72/10.92 *new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, ef), app(ty_Maybe, ge)), gd)) -> new_lt0(xuu33001, xuu34001, ge) 26.72/10.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.72/10.92 26.72/10.92 26.72/10.92 ---------------------------------------- 26.72/10.92 26.72/10.92 (25) 26.72/10.92 YES 26.72/10.92 26.72/10.92 ---------------------------------------- 26.72/10.92 26.72/10.92 (26) 26.72/10.92 Obligation: 26.72/10.92 Q DP problem: 26.72/10.92 The TRS P consists of the following rules: 26.72/10.92 26.72/10.92 new_primMulNat(Succ(xuu5000100), Succ(xuu400000)) -> new_primMulNat(xuu5000100, Succ(xuu400000)) 26.72/10.92 26.72/10.92 R is empty. 26.72/10.92 Q is empty. 26.72/10.92 We have to consider all minimal (P,Q,R)-chains. 26.72/10.92 ---------------------------------------- 26.72/10.92 26.72/10.92 (27) QDPSizeChangeProof (EQUIVALENT) 26.72/10.92 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. 26.72/10.92 26.72/10.92 From the DPs we obtained the following set of size-change graphs: 26.72/10.92 *new_primMulNat(Succ(xuu5000100), Succ(xuu400000)) -> new_primMulNat(xuu5000100, Succ(xuu400000)) 26.72/10.92 The graph contains the following edges 1 > 1, 2 >= 2 26.72/10.92 26.72/10.92 26.72/10.92 ---------------------------------------- 26.72/10.92 26.72/10.92 (28) 26.72/10.92 YES 26.72/10.92 26.72/10.92 ---------------------------------------- 26.72/10.92 26.72/10.92 (29) 26.72/10.92 Obligation: 26.72/10.92 Q DP problem: 26.72/10.92 The TRS P consists of the following rules: 26.72/10.92 26.72/10.92 new_addToFM_C(xuu3, Branch(Nothing, xuu41, xuu42, xuu43, xuu44), Nothing, xuu501, h, ba) -> new_addToFM_C1(xuu3, xuu41, xuu42, xuu43, xuu44, xuu501, new_esEs8(new_compare25(Nothing, Nothing, True, h), GT), h, ba) 26.72/10.92 new_addToFM_C20(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, False, h, ba) -> new_addToFM_C11(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs8(new_compare25(Just(xuu5000), Nothing, False, h), GT), h, ba) 26.72/10.92 new_addToFM_C2(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu501, True, h, ba) -> new_addToFM_C(xuu3, xuu43, Nothing, xuu501, h, ba) 26.72/10.92 new_addToFM_C1(xuu3, xuu41, xuu42, xuu43, xuu44, xuu501, True, h, ba) -> new_addToFM_C(xuu3, xuu44, Nothing, xuu501, h, ba) 26.72/10.92 new_addToFM_C20(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, True, h, ba) -> new_addToFM_C(xuu3, xuu43, Just(xuu5000), xuu501, h, ba) 26.72/10.92 new_addToFM_C21(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, bb, bc) -> new_addToFM_C12(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs8(new_compare25(Just(xuu22), Just(xuu17), new_esEs30(xuu22, xuu17, bb), bb), GT), bb, bc) 26.72/10.92 new_addToFM_C(xuu3, Branch(Just(xuu400), xuu41, xuu42, xuu43, xuu44), Nothing, xuu501, h, ba) -> new_addToFM_C2(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu501, new_esEs8(new_compare25(Nothing, Just(xuu400), False, h), LT), h, ba) 26.72/10.92 new_addToFM_C10(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu501, True, h, ba) -> new_addToFM_C(xuu3, xuu44, Nothing, xuu501, h, ba) 26.72/10.92 new_addToFM_C(xuu3, Branch(Nothing, xuu41, xuu42, xuu43, xuu44), Just(xuu5000), xuu501, h, ba) -> new_addToFM_C20(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs8(new_compare25(Just(xuu5000), Nothing, False, h), LT), h, ba) 26.72/10.92 new_addToFM_C11(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, True, h, ba) -> new_addToFM_C(xuu3, xuu44, Just(xuu5000), xuu501, h, ba) 26.72/10.92 new_addToFM_C(xuu3, Branch(Just(xuu400), xuu41, xuu42, xuu43, xuu44), Just(xuu5000), xuu501, h, ba) -> new_addToFM_C21(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs8(new_compare25(Just(xuu5000), Just(xuu400), new_esEs29(xuu5000, xuu400, h), h), LT), h, ba) 26.72/10.92 new_addToFM_C2(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu501, False, h, ba) -> new_addToFM_C10(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu501, new_esEs8(new_compare25(Nothing, Just(xuu400), False, h), GT), h, ba) 26.72/10.92 new_addToFM_C12(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu16, xuu21, Just(xuu22), xuu23, bb, bc) 26.72/10.92 new_addToFM_C21(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu16, xuu20, Just(xuu22), xuu23, bb, bc) 26.72/10.92 26.72/10.92 The TRS R consists of the following rules: 26.72/10.92 26.72/10.92 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Int) -> new_ltEs13(xuu33000, xuu34000) 26.72/10.92 new_esEs11(xuu50000, xuu4000, ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.92 new_primCmpInt(Neg(Succ(xuu3300)), Pos(xuu340)) -> LT 26.72/10.92 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 26.72/10.92 new_ltEs4(Left(xuu33000), Left(xuu34000), app(ty_[], bgd), bfe) -> new_ltEs15(xuu33000, xuu34000, bgd) 26.72/10.92 new_primPlusNat0(Zero, Zero) -> Zero 26.72/10.92 new_lt6(xuu33000, xuu34000, app(app(ty_@2, bea), beb)) -> new_lt8(xuu33000, xuu34000, bea, beb) 26.72/10.92 new_compare8(xuu33000, xuu34000, ty_Ordering) -> new_compare16(xuu33000, xuu34000) 26.72/10.92 new_pePe(True, xuu161) -> True 26.72/10.92 new_primCmpNat0(xuu3300, Succ(xuu3400)) -> new_primCmpNat1(xuu3300, xuu3400) 26.72/10.92 new_esEs30(xuu22, xuu17, ty_Ordering) -> new_esEs8(xuu22, xuu17) 26.72/10.92 new_esEs24(xuu50001, xuu4001, ty_Int) -> new_esEs19(xuu50001, xuu4001) 26.72/10.92 new_esEs30(xuu22, xuu17, ty_Int) -> new_esEs19(xuu22, xuu17) 26.72/10.92 new_esEs21(xuu50001, xuu4001, app(ty_Ratio, gh)) -> new_esEs18(xuu50001, xuu4001, gh) 26.72/10.92 new_esEs29(xuu5000, xuu400, ty_Char) -> new_esEs12(xuu5000, xuu400) 26.72/10.92 new_ltEs12(LT, LT) -> True 26.72/10.92 new_esEs10(xuu50001, xuu4001, app(app(app(ty_@3, cf), cg), da)) -> new_esEs6(xuu50001, xuu4001, cf, cg, da) 26.72/10.92 new_esEs30(xuu22, xuu17, app(app(ty_@2, chd), che)) -> new_esEs4(xuu22, xuu17, chd, che) 26.72/10.92 new_lt19(xuu33001, xuu34001, app(ty_[], dce)) -> new_lt14(xuu33001, xuu34001, dce) 26.72/10.92 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 26.72/10.92 new_esEs27(xuu33001, xuu34001, app(ty_[], dce)) -> new_esEs16(xuu33001, xuu34001, dce) 26.72/10.92 new_primCmpInt(Pos(Zero), Neg(Succ(xuu3400))) -> GT 26.72/10.92 new_esEs26(xuu50000, xuu4000, ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.92 new_esEs22(xuu50000, xuu4000, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.92 new_ltEs19(xuu3300, xuu3400, app(app(ty_@2, bcd), bce)) -> new_ltEs5(xuu3300, xuu3400, bcd, bce) 26.72/10.92 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(ty_[], bhg)) -> new_ltEs15(xuu33000, xuu34000, bhg) 26.72/10.92 new_lt7(xuu33000, xuu34000, bdh) -> new_esEs8(new_compare9(xuu33000, xuu34000, bdh), LT) 26.72/10.92 new_primMulNat0(Succ(xuu5000100), Succ(xuu400000)) -> new_primPlusNat1(new_primMulNat0(xuu5000100, Succ(xuu400000)), xuu400000) 26.72/10.92 new_compare8(xuu33000, xuu34000, app(ty_Ratio, bag)) -> new_compare9(xuu33000, xuu34000, bag) 26.72/10.92 new_esEs29(xuu5000, xuu400, ty_Float) -> new_esEs14(xuu5000, xuu400) 26.72/10.92 new_compare28(xuu33000, xuu34000, False, bea, beb) -> new_compare114(xuu33000, xuu34000, new_ltEs5(xuu33000, xuu34000, bea, beb), bea, beb) 26.72/10.92 new_esEs23(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) 26.72/10.92 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Double, beh) -> new_esEs13(xuu50000, xuu4000) 26.72/10.92 new_compare8(xuu33000, xuu34000, ty_Double) -> new_compare19(xuu33000, xuu34000) 26.72/10.92 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Double, bfe) -> new_ltEs17(xuu33000, xuu34000) 26.72/10.92 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.92 new_lt19(xuu33001, xuu34001, ty_Int) -> new_lt4(xuu33001, xuu34001) 26.72/10.92 new_lt19(xuu33001, xuu34001, app(app(ty_Either, dcf), dcg)) -> new_lt18(xuu33001, xuu34001, dcf, dcg) 26.72/10.92 new_primCmpNat1(Succ(xuu33000), Succ(xuu34000)) -> new_primCmpNat1(xuu33000, xuu34000) 26.72/10.92 new_ltEs19(xuu3300, xuu3400, ty_Char) -> new_ltEs11(xuu3300, xuu3400) 26.72/10.92 new_esEs28(xuu33000, xuu34000, app(app(ty_Either, ddh), dea)) -> new_esEs7(xuu33000, xuu34000, ddh, dea) 26.72/10.92 new_ltEs15(xuu3300, xuu3400, baf) -> new_fsEs(new_compare0(xuu3300, xuu3400, baf)) 26.72/10.92 new_esEs13(Double(xuu50000, xuu50001), Double(xuu4000, xuu4001)) -> new_esEs19(new_sr(xuu50000, xuu4001), new_sr(xuu50001, xuu4000)) 26.72/10.92 new_ltEs6(xuu33001, xuu34001, ty_@0) -> new_ltEs16(xuu33001, xuu34001) 26.72/10.92 new_compare26(xuu33000, xuu34000, True) -> EQ 26.72/10.92 new_esEs10(xuu50001, xuu4001, ty_Char) -> new_esEs12(xuu50001, xuu4001) 26.72/10.92 new_esEs8(GT, GT) -> True 26.72/10.92 new_primEqInt(Pos(Succ(xuu500000)), Pos(Zero)) -> False 26.72/10.92 new_primEqInt(Pos(Zero), Pos(Succ(xuu40000))) -> False 26.72/10.92 new_lt12(xuu33000, xuu34000) -> new_esEs8(new_compare16(xuu33000, xuu34000), LT) 26.72/10.92 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(app(app(ty_@3, ccc), ccd), cce)) -> new_esEs6(xuu50000, xuu4000, ccc, ccd, cce) 26.72/10.92 new_fsEs(xuu146) -> new_not(new_esEs8(xuu146, GT)) 26.72/10.92 new_esEs29(xuu5000, xuu400, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs6(xuu5000, xuu400, ed, ee, ef) 26.72/10.92 new_compare25(Just(xuu3300), Just(xuu3400), False, cfd) -> new_compare10(xuu3300, xuu3400, new_ltEs19(xuu3300, xuu3400, cfd), cfd) 26.72/10.92 new_ltEs19(xuu3300, xuu3400, ty_Bool) -> new_ltEs14(xuu3300, xuu3400) 26.72/10.92 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.92 new_esEs20(xuu50002, xuu4002, ty_Int) -> new_esEs19(xuu50002, xuu4002) 26.72/10.92 new_esEs8(EQ, EQ) -> True 26.72/10.92 new_ltEs20(xuu33002, xuu34002, ty_Char) -> new_ltEs11(xuu33002, xuu34002) 26.72/10.92 new_primEqNat0(Succ(xuu500000), Succ(xuu40000)) -> new_primEqNat0(xuu500000, xuu40000) 26.72/10.92 new_esEs30(xuu22, xuu17, ty_Char) -> new_esEs12(xuu22, xuu17) 26.72/10.92 new_esEs27(xuu33001, xuu34001, ty_Integer) -> new_esEs15(xuu33001, xuu34001) 26.72/10.92 new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare6(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 26.72/10.92 new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare6(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 26.72/10.92 new_ltEs20(xuu33002, xuu34002, ty_Integer) -> new_ltEs10(xuu33002, xuu34002) 26.72/10.92 new_esEs21(xuu50001, xuu4001, ty_Double) -> new_esEs13(xuu50001, xuu4001) 26.72/10.92 new_esEs10(xuu50001, xuu4001, ty_Float) -> new_esEs14(xuu50001, xuu4001) 26.72/10.92 new_esEs22(xuu50000, xuu4000, ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.92 new_not(True) -> False 26.72/10.92 new_lt20(xuu33000, xuu34000, app(ty_Ratio, dch)) -> new_lt7(xuu33000, xuu34000, dch) 26.72/10.92 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(app(ty_@2, bha), bhb)) -> new_ltEs5(xuu33000, xuu34000, bha, bhb) 26.72/10.92 new_ltEs12(LT, GT) -> True 26.72/10.92 new_lt14(xuu33000, xuu34000, bef) -> new_esEs8(new_compare0(xuu33000, xuu34000, bef), LT) 26.72/10.92 new_lt19(xuu33001, xuu34001, app(ty_Ratio, dbf)) -> new_lt7(xuu33001, xuu34001, dbf) 26.72/10.92 new_primCompAux00(xuu178, LT) -> LT 26.72/10.92 new_esEs10(xuu50001, xuu4001, app(ty_Ratio, ce)) -> new_esEs18(xuu50001, xuu4001, ce) 26.72/10.92 new_esEs21(xuu50001, xuu4001, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs6(xuu50001, xuu4001, ha, hb, hc) 26.72/10.92 new_esEs27(xuu33001, xuu34001, ty_Bool) -> new_esEs17(xuu33001, xuu34001) 26.72/10.92 new_esEs30(xuu22, xuu17, ty_Float) -> new_esEs14(xuu22, xuu17) 26.72/10.92 new_esEs20(xuu50002, xuu4002, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs6(xuu50002, xuu4002, fg, fh, ga) 26.72/10.92 new_esEs26(xuu50000, xuu4000, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.92 new_esEs20(xuu50002, xuu4002, app(app(ty_Either, eg), eh)) -> new_esEs7(xuu50002, xuu4002, eg, eh) 26.72/10.92 new_compare8(xuu33000, xuu34000, ty_Float) -> new_compare7(xuu33000, xuu34000) 26.72/10.92 new_ltEs19(xuu3300, xuu3400, ty_Integer) -> new_ltEs10(xuu3300, xuu3400) 26.72/10.92 new_esEs10(xuu50001, xuu4001, ty_Ordering) -> new_esEs8(xuu50001, xuu4001) 26.72/10.92 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Integer, beh) -> new_esEs15(xuu50000, xuu4000) 26.72/10.92 new_ltEs19(xuu3300, xuu3400, ty_Double) -> new_ltEs17(xuu3300, xuu3400) 26.72/10.92 new_esEs11(xuu50000, xuu4000, app(ty_Ratio, dh)) -> new_esEs18(xuu50000, xuu4000, dh) 26.72/10.92 new_primEqNat0(Succ(xuu500000), Zero) -> False 26.72/10.92 new_primEqNat0(Zero, Succ(xuu40000)) -> False 26.72/10.92 new_compare112(xuu33000, xuu34000, False) -> GT 26.72/10.92 new_ltEs20(xuu33002, xuu34002, app(ty_Maybe, dag)) -> new_ltEs8(xuu33002, xuu34002, dag) 26.72/10.92 new_esEs29(xuu5000, xuu400, ty_Int) -> new_esEs19(xuu5000, xuu400) 26.72/10.92 new_lt20(xuu33000, xuu34000, app(ty_[], ddg)) -> new_lt14(xuu33000, xuu34000, ddg) 26.72/10.92 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_ltEs9(xuu33000, xuu34000, bhd, bhe, bhf) 26.72/10.92 new_ltEs20(xuu33002, xuu34002, ty_Bool) -> new_ltEs14(xuu33002, xuu34002) 26.72/10.92 new_primCompAux00(xuu178, GT) -> GT 26.72/10.92 new_compare7(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare6(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 26.72/10.92 new_compare7(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare6(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 26.72/10.92 new_ltEs6(xuu33001, xuu34001, app(ty_Maybe, bda)) -> new_ltEs8(xuu33001, xuu34001, bda) 26.72/10.92 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.92 new_esEs5(Just(xuu50000), Just(xuu4000), app(ty_Ratio, cdd)) -> new_esEs18(xuu50000, xuu4000, cdd) 26.72/10.92 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Bool) -> new_ltEs14(xuu33000, xuu34000) 26.72/10.92 new_primCmpNat2(Zero, xuu3300) -> LT 26.72/10.92 new_esEs20(xuu50002, xuu4002, ty_Ordering) -> new_esEs8(xuu50002, xuu4002) 26.72/10.92 new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(ty_@2, cec), ced)) -> new_ltEs5(xuu33000, xuu34000, cec, ced) 26.72/10.92 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Integer, bfe) -> new_ltEs10(xuu33000, xuu34000) 26.72/10.92 new_primCmpInt(Pos(Succ(xuu3300)), Neg(xuu340)) -> GT 26.72/10.92 new_ltEs20(xuu33002, xuu34002, app(app(ty_@2, dae), daf)) -> new_ltEs5(xuu33002, xuu34002, dae, daf) 26.72/10.92 new_esEs20(xuu50002, xuu4002, app(app(ty_@2, fa), fb)) -> new_esEs4(xuu50002, xuu4002, fa, fb) 26.72/10.92 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_@0, bfe) -> new_ltEs16(xuu33000, xuu34000) 26.72/10.92 new_ltEs6(xuu33001, xuu34001, app(ty_Ratio, bcf)) -> new_ltEs7(xuu33001, xuu34001, bcf) 26.72/10.92 new_compare110(xuu33000, xuu34000, True, bca, bcb) -> LT 26.72/10.92 new_ltEs6(xuu33001, xuu34001, ty_Double) -> new_ltEs17(xuu33001, xuu34001) 26.72/10.92 new_esEs19(xuu5000, xuu400) -> new_primEqInt(xuu5000, xuu400) 26.72/10.92 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Bool, beh) -> new_esEs17(xuu50000, xuu4000) 26.72/10.92 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Char, bfe) -> new_ltEs11(xuu33000, xuu34000) 26.72/10.92 new_esEs22(xuu50000, xuu4000, app(ty_Ratio, bab)) -> new_esEs18(xuu50000, xuu4000, bab) 26.72/10.92 new_esEs7(Left(xuu50000), Left(xuu4000), app(app(app(ty_@3, cba), cbb), cbc), beh) -> new_esEs6(xuu50000, xuu4000, cba, cbb, cbc) 26.72/10.92 new_esEs26(xuu50000, xuu4000, ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.92 new_ltEs20(xuu33002, xuu34002, ty_Double) -> new_ltEs17(xuu33002, xuu34002) 26.72/10.92 new_esEs28(xuu33000, xuu34000, ty_Char) -> new_esEs12(xuu33000, xuu34000) 26.72/10.92 new_esEs28(xuu33000, xuu34000, app(ty_[], ddg)) -> new_esEs16(xuu33000, xuu34000, ddg) 26.72/10.92 new_esEs7(Left(xuu50000), Left(xuu4000), ty_@0, beh) -> new_esEs9(xuu50000, xuu4000) 26.72/10.92 new_primCompAux0(xuu33000, xuu34000, xuu172, baf) -> new_primCompAux00(xuu172, new_compare8(xuu33000, xuu34000, baf)) 26.72/10.92 new_ltEs6(xuu33001, xuu34001, app(ty_[], bde)) -> new_ltEs15(xuu33001, xuu34001, bde) 26.72/10.92 new_pePe(False, xuu161) -> xuu161 26.72/10.92 new_lt8(xuu33000, xuu34000, bea, beb) -> new_esEs8(new_compare11(xuu33000, xuu34000, bea, beb), LT) 26.72/10.92 new_esEs27(xuu33001, xuu34001, ty_Double) -> new_esEs13(xuu33001, xuu34001) 26.72/10.92 new_compare7(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare6(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 26.72/10.92 new_lt20(xuu33000, xuu34000, ty_Float) -> new_lt17(xuu33000, xuu34000) 26.72/10.92 new_ltEs12(GT, GT) -> True 26.72/10.92 new_lt9(xuu33000, xuu34000, bcc) -> new_esEs8(new_compare12(xuu33000, xuu34000, bcc), LT) 26.72/10.92 new_esEs11(xuu50000, xuu4000, ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.92 new_esEs7(Left(xuu50000), Left(xuu4000), app(app(ty_@2, cad), cae), beh) -> new_esEs4(xuu50000, xuu4000, cad, cae) 26.72/10.92 new_lt17(xuu33000, xuu34000) -> new_esEs8(new_compare7(xuu33000, xuu34000), LT) 26.72/10.92 new_esEs6(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), ed, ee, ef) -> new_asAs(new_esEs22(xuu50000, xuu4000, ed), new_asAs(new_esEs21(xuu50001, xuu4001, ee), new_esEs20(xuu50002, xuu4002, ef))) 26.72/10.92 new_esEs10(xuu50001, xuu4001, app(app(ty_Either, bg), bh)) -> new_esEs7(xuu50001, xuu4001, bg, bh) 26.72/10.92 new_compare114(xuu33000, xuu34000, True, bea, beb) -> LT 26.72/10.92 new_ltEs12(GT, EQ) -> False 26.72/10.92 new_ltEs6(xuu33001, xuu34001, app(app(ty_@2, bcg), bch)) -> new_ltEs5(xuu33001, xuu34001, bcg, bch) 26.72/10.92 new_compare8(xuu33000, xuu34000, ty_Int) -> new_compare6(xuu33000, xuu34000) 26.72/10.92 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(ty_Ratio, bgh)) -> new_ltEs7(xuu33000, xuu34000, bgh) 26.72/10.92 new_esEs26(xuu50000, xuu4000, ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.92 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.92 new_compare26(xuu33000, xuu34000, False) -> new_compare111(xuu33000, xuu34000, new_ltEs12(xuu33000, xuu34000)) 26.72/10.92 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Char) -> new_ltEs11(xuu33000, xuu34000) 26.72/10.92 new_compare10(xuu129, xuu130, False, bd) -> GT 26.72/10.92 new_lt20(xuu33000, xuu34000, ty_Integer) -> new_lt11(xuu33000, xuu34000) 26.72/10.92 new_lt20(xuu33000, xuu34000, app(ty_Maybe, ddc)) -> new_lt9(xuu33000, xuu34000, ddc) 26.72/10.92 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(ty_Ratio, ccb)) -> new_esEs18(xuu50000, xuu4000, ccb) 26.72/10.92 new_esEs8(LT, EQ) -> False 26.72/10.92 new_esEs8(EQ, LT) -> False 26.72/10.92 new_esEs21(xuu50001, xuu4001, app(app(ty_@2, gd), ge)) -> new_esEs4(xuu50001, xuu4001, gd, ge) 26.72/10.92 new_compare29(xuu33000, xuu34000, False, bec, bed, bee) -> new_compare113(xuu33000, xuu34000, new_ltEs9(xuu33000, xuu34000, bec, bed, bee), bec, bed, bee) 26.72/10.92 new_lt19(xuu33001, xuu34001, app(ty_Maybe, dca)) -> new_lt9(xuu33001, xuu34001, dca) 26.72/10.92 new_primEqInt(Pos(Zero), Neg(Succ(xuu40000))) -> False 26.72/10.92 new_primEqInt(Neg(Zero), Pos(Succ(xuu40000))) -> False 26.72/10.92 new_lt19(xuu33001, xuu34001, ty_Ordering) -> new_lt12(xuu33001, xuu34001) 26.72/10.92 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Integer) -> new_ltEs10(xuu33000, xuu34000) 26.72/10.92 new_esEs11(xuu50000, xuu4000, app(ty_Maybe, df)) -> new_esEs5(xuu50000, xuu4000, df) 26.72/10.92 new_esEs21(xuu50001, xuu4001, ty_Ordering) -> new_esEs8(xuu50001, xuu4001) 26.72/10.92 new_esEs18(:%(xuu50000, xuu50001), :%(xuu4000, xuu4001), bfc) -> new_asAs(new_esEs25(xuu50000, xuu4000, bfc), new_esEs24(xuu50001, xuu4001, bfc)) 26.72/10.92 new_esEs5(Just(xuu50000), Just(xuu4000), app(app(app(ty_@3, cde), cdf), cdg)) -> new_esEs6(xuu50000, xuu4000, cde, cdf, cdg) 26.72/10.92 new_ltEs14(True, True) -> True 26.72/10.92 new_esEs25(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.92 new_esEs21(xuu50001, xuu4001, ty_Float) -> new_esEs14(xuu50001, xuu4001) 26.72/10.92 new_esEs21(xuu50001, xuu4001, app(ty_Maybe, gf)) -> new_esEs5(xuu50001, xuu4001, gf) 26.72/10.92 new_esEs23(xuu33000, xuu34000, app(app(ty_Either, bca), bcb)) -> new_esEs7(xuu33000, xuu34000, bca, bcb) 26.72/10.92 new_esEs26(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.92 new_esEs5(Nothing, Nothing, bfa) -> True 26.72/10.92 new_esEs26(xuu50000, xuu4000, app(ty_[], cge)) -> new_esEs16(xuu50000, xuu4000, cge) 26.72/10.92 new_primEqInt(Neg(Succ(xuu500000)), Neg(Succ(xuu40000))) -> new_primEqNat0(xuu500000, xuu40000) 26.72/10.92 new_esEs5(Nothing, Just(xuu4000), bfa) -> False 26.72/10.92 new_esEs5(Just(xuu50000), Nothing, bfa) -> False 26.72/10.92 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Float, bfe) -> new_ltEs18(xuu33000, xuu34000) 26.72/10.92 new_primCmpInt(Neg(Zero), Pos(Succ(xuu3400))) -> LT 26.72/10.92 new_lt19(xuu33001, xuu34001, ty_Bool) -> new_lt13(xuu33001, xuu34001) 26.72/10.92 new_compare114(xuu33000, xuu34000, False, bea, beb) -> GT 26.72/10.92 new_ltEs20(xuu33002, xuu34002, ty_@0) -> new_ltEs16(xuu33002, xuu34002) 26.72/10.92 new_primMulInt(Pos(xuu500010), Pos(xuu40000)) -> Pos(new_primMulNat0(xuu500010, xuu40000)) 26.72/10.92 new_lt6(xuu33000, xuu34000, app(app(app(ty_@3, bec), bed), bee)) -> new_lt10(xuu33000, xuu34000, bec, bed, bee) 26.72/10.92 new_compare8(xuu33000, xuu34000, ty_Integer) -> new_compare14(xuu33000, xuu34000) 26.72/10.92 new_lt20(xuu33000, xuu34000, app(app(ty_@2, dda), ddb)) -> new_lt8(xuu33000, xuu34000, dda, ddb) 26.72/10.92 new_esEs7(Left(xuu50000), Left(xuu4000), app(app(ty_Either, cab), cac), beh) -> new_esEs7(xuu50000, xuu4000, cab, cac) 26.72/10.92 new_compare25(Just(xuu3300), Nothing, False, cfd) -> GT 26.72/10.92 new_esEs28(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) 26.72/10.92 new_compare10(xuu129, xuu130, True, bd) -> LT 26.72/10.92 new_lt19(xuu33001, xuu34001, ty_Float) -> new_lt17(xuu33001, xuu34001) 26.72/10.92 new_compare24(xuu33000, xuu34000, False, bca, bcb) -> new_compare110(xuu33000, xuu34000, new_ltEs4(xuu33000, xuu34000, bca, bcb), bca, bcb) 26.72/10.92 new_ltEs19(xuu3300, xuu3400, app(ty_Maybe, cea)) -> new_ltEs8(xuu3300, xuu3400, cea) 26.72/10.92 new_esEs10(xuu50001, xuu4001, app(app(ty_@2, ca), cb)) -> new_esEs4(xuu50001, xuu4001, ca, cb) 26.72/10.92 new_primMulNat0(Succ(xuu5000100), Zero) -> Zero 26.72/10.92 new_primMulNat0(Zero, Succ(xuu400000)) -> Zero 26.72/10.92 new_esEs29(xuu5000, xuu400, ty_Double) -> new_esEs13(xuu5000, xuu400) 26.72/10.92 new_lt19(xuu33001, xuu34001, ty_Integer) -> new_lt11(xuu33001, xuu34001) 26.72/10.92 new_ltEs6(xuu33001, xuu34001, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_ltEs9(xuu33001, xuu34001, bdb, bdc, bdd) 26.72/10.92 new_lt20(xuu33000, xuu34000, ty_Bool) -> new_lt13(xuu33000, xuu34000) 26.72/10.92 new_esEs23(xuu33000, xuu34000, app(ty_Maybe, bcc)) -> new_esEs5(xuu33000, xuu34000, bcc) 26.72/10.92 new_compare9(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Int) -> new_compare6(new_sr(xuu33000, xuu34001), new_sr(xuu34000, xuu33001)) 26.72/10.92 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Bool) -> new_ltEs14(xuu33000, xuu34000) 26.72/10.92 new_ltEs17(xuu3300, xuu3400) -> new_fsEs(new_compare19(xuu3300, xuu3400)) 26.72/10.92 new_esEs28(xuu33000, xuu34000, ty_Int) -> new_esEs19(xuu33000, xuu34000) 26.72/10.92 new_primPlusNat0(Succ(xuu28200), Zero) -> Succ(xuu28200) 26.72/10.92 new_primPlusNat0(Zero, Succ(xuu9600)) -> Succ(xuu9600) 26.72/10.92 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Int, bfe) -> new_ltEs13(xuu33000, xuu34000) 26.72/10.92 new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare6(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 26.72/10.92 new_ltEs10(xuu3300, xuu3400) -> new_fsEs(new_compare14(xuu3300, xuu3400)) 26.72/10.92 new_esEs26(xuu50000, xuu4000, app(ty_Ratio, cgf)) -> new_esEs18(xuu50000, xuu4000, cgf) 26.72/10.92 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) 26.72/10.92 new_esEs11(xuu50000, xuu4000, app(app(ty_@2, dd), de)) -> new_esEs4(xuu50000, xuu4000, dd, de) 26.72/10.92 new_ltEs4(Left(xuu33000), Left(xuu34000), app(ty_Maybe, bfh), bfe) -> new_ltEs8(xuu33000, xuu34000, bfh) 26.72/10.92 new_compare8(xuu33000, xuu34000, app(app(ty_@2, bah), bba)) -> new_compare11(xuu33000, xuu34000, bah, bba) 26.72/10.92 new_esEs8(LT, LT) -> True 26.72/10.92 new_compare111(xuu33000, xuu34000, True) -> LT 26.72/10.92 new_lt6(xuu33000, xuu34000, ty_Integer) -> new_lt11(xuu33000, xuu34000) 26.72/10.92 new_lt20(xuu33000, xuu34000, ty_Int) -> new_lt4(xuu33000, xuu34000) 26.72/10.92 new_lt6(xuu33000, xuu34000, ty_Ordering) -> new_lt12(xuu33000, xuu34000) 26.72/10.92 new_lt19(xuu33001, xuu34001, app(app(ty_@2, dbg), dbh)) -> new_lt8(xuu33001, xuu34001, dbg, dbh) 26.72/10.92 new_lt15(xuu33000, xuu34000) -> new_esEs8(new_compare18(xuu33000, xuu34000), LT) 26.72/10.92 new_ltEs19(xuu3300, xuu3400, app(app(app(ty_@3, cfe), cff), cfg)) -> new_ltEs9(xuu3300, xuu3400, cfe, cff, cfg) 26.72/10.92 new_esEs22(xuu50000, xuu4000, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs6(xuu50000, xuu4000, bac, bad, bae) 26.72/10.92 new_lt13(xuu33000, xuu34000) -> new_esEs8(new_compare17(xuu33000, xuu34000), LT) 26.72/10.92 new_ltEs4(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, bga), bgb), bgc), bfe) -> new_ltEs9(xuu33000, xuu34000, bga, bgb, bgc) 26.72/10.92 new_esEs28(xuu33000, xuu34000, ty_Bool) -> new_esEs17(xuu33000, xuu34000) 26.72/10.92 new_lt6(xuu33000, xuu34000, app(ty_[], bef)) -> new_lt14(xuu33000, xuu34000, bef) 26.72/10.92 new_ltEs11(xuu3300, xuu3400) -> new_fsEs(new_compare15(xuu3300, xuu3400)) 26.72/10.92 new_lt5(xuu33000, xuu34000) -> new_esEs8(new_compare15(xuu33000, xuu34000), LT) 26.72/10.92 new_ltEs9(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), cfe, cff, cfg) -> new_pePe(new_lt20(xuu33000, xuu34000, cfe), new_asAs(new_esEs28(xuu33000, xuu34000, cfe), new_pePe(new_lt19(xuu33001, xuu34001, cff), new_asAs(new_esEs27(xuu33001, xuu34001, cff), new_ltEs20(xuu33002, xuu34002, cfg))))) 26.72/10.92 new_esEs11(xuu50000, xuu4000, ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.92 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Char, beh) -> new_esEs12(xuu50000, xuu4000) 26.72/10.92 new_esEs27(xuu33001, xuu34001, ty_@0) -> new_esEs9(xuu33001, xuu34001) 26.72/10.92 new_esEs23(xuu33000, xuu34000, app(app(app(ty_@3, bec), bed), bee)) -> new_esEs6(xuu33000, xuu34000, bec, bed, bee) 26.72/10.92 new_esEs16([], [], bfb) -> True 26.72/10.92 new_esEs29(xuu5000, xuu400, ty_Bool) -> new_esEs17(xuu5000, xuu400) 26.72/10.92 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Float) -> new_ltEs18(xuu33000, xuu34000) 26.72/10.92 new_primMulInt(Neg(xuu500010), Neg(xuu40000)) -> Pos(new_primMulNat0(xuu500010, xuu40000)) 26.72/10.92 new_compare25(xuu330, xuu340, True, cfd) -> EQ 26.72/10.92 new_esEs10(xuu50001, xuu4001, app(ty_Maybe, cc)) -> new_esEs5(xuu50001, xuu4001, cc) 26.72/10.92 new_lt20(xuu33000, xuu34000, ty_Ordering) -> new_lt12(xuu33000, xuu34000) 26.72/10.92 new_compare8(xuu33000, xuu34000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_compare13(xuu33000, xuu34000, bbc, bbd, bbe) 26.72/10.92 new_lt16(xuu33000, xuu34000) -> new_esEs8(new_compare19(xuu33000, xuu34000), LT) 26.72/10.92 new_esEs28(xuu33000, xuu34000, ty_Integer) -> new_esEs15(xuu33000, xuu34000) 26.72/10.92 new_esEs22(xuu50000, xuu4000, app(ty_Maybe, hh)) -> new_esEs5(xuu50000, xuu4000, hh) 26.72/10.92 new_ltEs18(xuu3300, xuu3400) -> new_fsEs(new_compare7(xuu3300, xuu3400)) 26.72/10.92 new_esEs27(xuu33001, xuu34001, ty_Int) -> new_esEs19(xuu33001, xuu34001) 26.72/10.92 new_lt19(xuu33001, xuu34001, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_lt10(xuu33001, xuu34001, dcb, dcc, dcd) 26.72/10.92 new_lt6(xuu33000, xuu34000, app(ty_Ratio, bdh)) -> new_lt7(xuu33000, xuu34000, bdh) 26.72/10.92 new_lt6(xuu33000, xuu34000, ty_Bool) -> new_lt13(xuu33000, xuu34000) 26.72/10.92 new_compare13(xuu33000, xuu34000, bec, bed, bee) -> new_compare29(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, bec, bed, bee), bec, bed, bee) 26.72/10.92 new_esEs20(xuu50002, xuu4002, ty_Float) -> new_esEs14(xuu50002, xuu4002) 26.72/10.92 new_esEs5(Just(xuu50000), Just(xuu4000), app(ty_Maybe, cdb)) -> new_esEs5(xuu50000, xuu4000, cdb) 26.72/10.92 new_esEs23(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) 26.72/10.92 new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(ty_Either, cfb), cfc)) -> new_ltEs4(xuu33000, xuu34000, cfb, cfc) 26.72/10.92 new_compare6(xuu33, xuu34) -> new_primCmpInt(xuu33, xuu34) 26.72/10.92 new_esEs11(xuu50000, xuu4000, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs6(xuu50000, xuu4000, ea, eb, ec) 26.72/10.92 new_esEs23(xuu33000, xuu34000, app(app(ty_@2, bea), beb)) -> new_esEs4(xuu33000, xuu34000, bea, beb) 26.72/10.92 new_compare112(xuu33000, xuu34000, True) -> LT 26.72/10.92 new_lt20(xuu33000, xuu34000, app(app(app(ty_@3, ddd), dde), ddf)) -> new_lt10(xuu33000, xuu34000, ddd, dde, ddf) 26.72/10.92 new_ltEs20(xuu33002, xuu34002, app(app(app(ty_@3, dah), dba), dbb)) -> new_ltEs9(xuu33002, xuu34002, dah, dba, dbb) 26.72/10.92 new_primMulInt(Pos(xuu500010), Neg(xuu40000)) -> Neg(new_primMulNat0(xuu500010, xuu40000)) 26.72/10.92 new_primMulInt(Neg(xuu500010), Pos(xuu40000)) -> Neg(new_primMulNat0(xuu500010, xuu40000)) 26.72/10.92 new_esEs12(Char(xuu50000), Char(xuu4000)) -> new_primEqNat0(xuu50000, xuu4000) 26.72/10.92 new_esEs26(xuu50000, xuu4000, app(app(ty_Either, cfh), cga)) -> new_esEs7(xuu50000, xuu4000, cfh, cga) 26.72/10.92 new_esEs20(xuu50002, xuu4002, ty_Integer) -> new_esEs15(xuu50002, xuu4002) 26.72/10.92 new_esEs22(xuu50000, xuu4000, ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.92 new_esEs28(xuu33000, xuu34000, ty_Double) -> new_esEs13(xuu33000, xuu34000) 26.72/10.92 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.92 new_compare15(Char(xuu33000), Char(xuu34000)) -> new_primCmpNat1(xuu33000, xuu34000) 26.72/10.92 new_compare17(xuu33000, xuu34000) -> new_compare27(xuu33000, xuu34000, new_esEs17(xuu33000, xuu34000)) 26.72/10.92 new_primCmpInt(Pos(Succ(xuu3300)), Pos(xuu340)) -> new_primCmpNat0(xuu3300, xuu340) 26.72/10.92 new_esEs22(xuu50000, xuu4000, app(app(ty_@2, hf), hg)) -> new_esEs4(xuu50000, xuu4000, hf, hg) 26.72/10.92 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(app(ty_Either, bhh), caa)) -> new_ltEs4(xuu33000, xuu34000, bhh, caa) 26.72/10.92 new_ltEs13(xuu3300, xuu3400) -> new_fsEs(new_compare6(xuu3300, xuu3400)) 26.72/10.92 new_primCmpNat1(Succ(xuu33000), Zero) -> GT 26.72/10.92 new_esEs30(xuu22, xuu17, ty_Bool) -> new_esEs17(xuu22, xuu17) 26.72/10.92 new_esEs27(xuu33001, xuu34001, ty_Char) -> new_esEs12(xuu33001, xuu34001) 26.72/10.92 new_compare8(xuu33000, xuu34000, app(ty_Maybe, bbb)) -> new_compare12(xuu33000, xuu34000, bbb) 26.72/10.92 new_ltEs6(xuu33001, xuu34001, ty_Int) -> new_ltEs13(xuu33001, xuu34001) 26.72/10.92 new_ltEs19(xuu3300, xuu3400, ty_Ordering) -> new_ltEs12(xuu3300, xuu3400) 26.72/10.92 new_lt6(xuu33000, xuu34000, ty_Int) -> new_lt4(xuu33000, xuu34000) 26.72/10.92 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(app(ty_@2, cbf), cbg)) -> new_esEs4(xuu50000, xuu4000, cbf, cbg) 26.72/10.92 new_sr0(Integer(xuu330000), Integer(xuu340010)) -> Integer(new_primMulInt(xuu330000, xuu340010)) 26.72/10.92 new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_Ratio, ceb)) -> new_ltEs7(xuu33000, xuu34000, ceb) 26.72/10.92 new_esEs29(xuu5000, xuu400, app(ty_Maybe, bfa)) -> new_esEs5(xuu5000, xuu400, bfa) 26.72/10.92 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(ty_Maybe, cbh)) -> new_esEs5(xuu50000, xuu4000, cbh) 26.72/10.92 new_esEs27(xuu33001, xuu34001, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_esEs6(xuu33001, xuu34001, dcb, dcc, dcd) 26.72/10.92 new_esEs20(xuu50002, xuu4002, ty_Bool) -> new_esEs17(xuu50002, xuu4002) 26.72/10.92 new_ltEs20(xuu33002, xuu34002, app(app(ty_Either, dbd), dbe)) -> new_ltEs4(xuu33002, xuu34002, dbd, dbe) 26.72/10.92 new_esEs7(Left(xuu50000), Left(xuu4000), app(ty_[], cag), beh) -> new_esEs16(xuu50000, xuu4000, cag) 26.72/10.92 new_esEs5(Just(xuu50000), Just(xuu4000), app(app(ty_Either, ccf), ccg)) -> new_esEs7(xuu50000, xuu4000, ccf, ccg) 26.72/10.92 new_primCmpNat0(xuu3300, Zero) -> GT 26.72/10.92 new_esEs29(xuu5000, xuu400, ty_Integer) -> new_esEs15(xuu5000, xuu400) 26.72/10.92 new_compare8(xuu33000, xuu34000, app(ty_[], bbf)) -> new_compare0(xuu33000, xuu34000, bbf) 26.72/10.92 new_lt20(xuu33000, xuu34000, ty_Double) -> new_lt16(xuu33000, xuu34000) 26.72/10.92 new_esEs30(xuu22, xuu17, ty_Integer) -> new_esEs15(xuu22, xuu17) 26.72/10.92 new_ltEs19(xuu3300, xuu3400, app(ty_[], baf)) -> new_ltEs15(xuu3300, xuu3400, baf) 26.72/10.92 new_esEs15(Integer(xuu50000), Integer(xuu4000)) -> new_primEqInt(xuu50000, xuu4000) 26.72/10.92 new_compare0([], :(xuu34000, xuu34001), baf) -> LT 26.72/10.92 new_asAs(True, xuu136) -> xuu136 26.72/10.92 new_compare113(xuu33000, xuu34000, True, bec, bed, bee) -> LT 26.72/10.92 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_@0) -> new_ltEs16(xuu33000, xuu34000) 26.72/10.92 new_compare9(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Integer) -> new_compare14(new_sr0(xuu33000, xuu34001), new_sr0(xuu34000, xuu33001)) 26.72/10.92 new_ltEs5(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), bcd, bce) -> new_pePe(new_lt6(xuu33000, xuu34000, bcd), new_asAs(new_esEs23(xuu33000, xuu34000, bcd), new_ltEs6(xuu33001, xuu34001, bce))) 26.72/10.92 new_esEs17(False, True) -> False 26.72/10.92 new_esEs17(True, False) -> False 26.72/10.92 new_esEs10(xuu50001, xuu4001, app(ty_[], cd)) -> new_esEs16(xuu50001, xuu4001, cd) 26.72/10.92 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Int, beh) -> new_esEs19(xuu50000, xuu4000) 26.72/10.92 new_esEs23(xuu33000, xuu34000, app(ty_Ratio, bdh)) -> new_esEs18(xuu33000, xuu34000, bdh) 26.72/10.92 new_ltEs16(xuu3300, xuu3400) -> new_fsEs(new_compare18(xuu3300, xuu3400)) 26.72/10.92 new_lt19(xuu33001, xuu34001, ty_Double) -> new_lt16(xuu33001, xuu34001) 26.72/10.92 new_esEs26(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.92 new_esEs20(xuu50002, xuu4002, app(ty_Maybe, fc)) -> new_esEs5(xuu50002, xuu4002, fc) 26.72/10.92 new_esEs5(Just(xuu50000), Just(xuu4000), app(app(ty_@2, cch), cda)) -> new_esEs4(xuu50000, xuu4000, cch, cda) 26.72/10.92 new_compare11(xuu33000, xuu34000, bea, beb) -> new_compare28(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, bea, beb), bea, beb) 26.72/10.92 new_esEs27(xuu33001, xuu34001, ty_Float) -> new_esEs14(xuu33001, xuu34001) 26.72/10.92 new_esEs10(xuu50001, xuu4001, ty_Integer) -> new_esEs15(xuu50001, xuu4001) 26.72/10.92 new_esEs24(xuu50001, xuu4001, ty_Integer) -> new_esEs15(xuu50001, xuu4001) 26.72/10.92 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.92 new_esEs29(xuu5000, xuu400, app(ty_[], bfb)) -> new_esEs16(xuu5000, xuu400, bfb) 26.72/10.92 new_lt10(xuu33000, xuu34000, bec, bed, bee) -> new_esEs8(new_compare13(xuu33000, xuu34000, bec, bed, bee), LT) 26.72/10.92 new_lt6(xuu33000, xuu34000, ty_@0) -> new_lt15(xuu33000, xuu34000) 26.72/10.92 new_compare24(xuu33000, xuu34000, True, bca, bcb) -> EQ 26.72/10.92 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.92 new_primPlusNat1(xuu106, xuu400000) -> new_primPlusNat0(xuu106, Succ(xuu400000)) 26.72/10.92 new_esEs9(@0, @0) -> True 26.72/10.92 new_ltEs20(xuu33002, xuu34002, app(ty_[], dbc)) -> new_ltEs15(xuu33002, xuu34002, dbc) 26.72/10.92 new_esEs7(Left(xuu50000), Left(xuu4000), app(ty_Maybe, caf), beh) -> new_esEs5(xuu50000, xuu4000, caf) 26.72/10.92 new_primCompAux00(xuu178, EQ) -> xuu178 26.72/10.92 new_esEs11(xuu50000, xuu4000, app(app(ty_Either, db), dc)) -> new_esEs7(xuu50000, xuu4000, db, dc) 26.72/10.92 new_compare0([], [], baf) -> EQ 26.72/10.92 new_sr(xuu50001, xuu4000) -> new_primMulInt(xuu50001, xuu4000) 26.72/10.92 new_esEs25(xuu50000, xuu4000, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.92 new_esEs10(xuu50001, xuu4001, ty_Bool) -> new_esEs17(xuu50001, xuu4001) 26.72/10.92 new_esEs21(xuu50001, xuu4001, app(app(ty_Either, gb), gc)) -> new_esEs7(xuu50001, xuu4001, gb, gc) 26.72/10.92 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Integer) -> new_ltEs10(xuu33000, xuu34000) 26.72/10.92 new_primMulNat0(Zero, Zero) -> Zero 26.72/10.92 new_lt18(xuu33000, xuu34000, bca, bcb) -> new_esEs8(new_compare23(xuu33000, xuu34000, bca, bcb), LT) 26.72/10.92 new_ltEs20(xuu33002, xuu34002, ty_Ordering) -> new_ltEs12(xuu33002, xuu34002) 26.72/10.92 new_esEs23(xuu33000, xuu34000, ty_Float) -> new_esEs14(xuu33000, xuu34000) 26.72/10.92 new_lt6(xuu33000, xuu34000, ty_Char) -> new_lt5(xuu33000, xuu34000) 26.72/10.92 new_lt6(xuu33000, xuu34000, app(ty_Maybe, bcc)) -> new_lt9(xuu33000, xuu34000, bcc) 26.72/10.92 new_primCmpInt(Neg(Succ(xuu3300)), Neg(xuu340)) -> new_primCmpNat2(xuu340, xuu3300) 26.72/10.92 new_esEs30(xuu22, xuu17, ty_Double) -> new_esEs13(xuu22, xuu17) 26.72/10.92 new_esEs27(xuu33001, xuu34001, ty_Ordering) -> new_esEs8(xuu33001, xuu34001) 26.72/10.92 new_esEs30(xuu22, xuu17, app(ty_[], chg)) -> new_esEs16(xuu22, xuu17, chg) 26.72/10.92 new_esEs23(xuu33000, xuu34000, ty_Char) -> new_esEs12(xuu33000, xuu34000) 26.72/10.92 new_ltEs19(xuu3300, xuu3400, app(ty_Ratio, cdh)) -> new_ltEs7(xuu3300, xuu3400, cdh) 26.72/10.92 new_primCmpInt(Neg(Zero), Neg(Succ(xuu3400))) -> new_primCmpNat0(xuu3400, Zero) 26.72/10.92 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.92 new_esEs30(xuu22, xuu17, app(ty_Maybe, chf)) -> new_esEs5(xuu22, xuu17, chf) 26.72/10.92 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_@0) -> new_ltEs16(xuu33000, xuu34000) 26.72/10.92 new_compare111(xuu33000, xuu34000, False) -> GT 26.72/10.92 new_primCmpNat1(Zero, Zero) -> EQ 26.72/10.92 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.92 new_compare12(xuu33000, xuu34000, bcc) -> new_compare25(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, bcc), bcc) 26.72/10.92 new_esEs22(xuu50000, xuu4000, app(app(ty_Either, hd), he)) -> new_esEs7(xuu50000, xuu4000, hd, he) 26.72/10.92 new_ltEs6(xuu33001, xuu34001, ty_Bool) -> new_ltEs14(xuu33001, xuu34001) 26.72/10.92 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.92 new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare6(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 26.72/10.92 new_esEs22(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.92 new_esEs22(xuu50000, xuu4000, ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.92 new_esEs27(xuu33001, xuu34001, app(ty_Ratio, dbf)) -> new_esEs18(xuu33001, xuu34001, dbf) 26.72/10.92 new_esEs4(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), be, bf) -> new_asAs(new_esEs11(xuu50000, xuu4000, be), new_esEs10(xuu50001, xuu4001, bf)) 26.72/10.92 new_compare8(xuu33000, xuu34000, ty_Char) -> new_compare15(xuu33000, xuu34000) 26.72/10.92 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Double) -> new_ltEs17(xuu33000, xuu34000) 26.72/10.92 new_esEs28(xuu33000, xuu34000, app(ty_Ratio, dch)) -> new_esEs18(xuu33000, xuu34000, dch) 26.72/10.92 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.92 new_esEs16(:(xuu50000, xuu50001), :(xuu4000, xuu4001), bfb) -> new_asAs(new_esEs26(xuu50000, xuu4000, bfb), new_esEs16(xuu50001, xuu4001, bfb)) 26.72/10.92 new_ltEs14(False, True) -> True 26.72/10.92 new_ltEs19(xuu3300, xuu3400, ty_@0) -> new_ltEs16(xuu3300, xuu3400) 26.72/10.92 new_ltEs12(GT, LT) -> False 26.72/10.92 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Char) -> new_ltEs11(xuu33000, xuu34000) 26.72/10.92 new_compare29(xuu33000, xuu34000, True, bec, bed, bee) -> EQ 26.72/10.92 new_compare8(xuu33000, xuu34000, ty_Bool) -> new_compare17(xuu33000, xuu34000) 26.72/10.92 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Ordering, beh) -> new_esEs8(xuu50000, xuu4000) 26.72/10.92 new_compare7(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare6(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 26.72/10.92 new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_Maybe, cee)) -> new_ltEs8(xuu33000, xuu34000, cee) 26.72/10.92 new_esEs30(xuu22, xuu17, ty_@0) -> new_esEs9(xuu22, xuu17) 26.72/10.92 new_primEqInt(Neg(Succ(xuu500000)), Neg(Zero)) -> False 26.72/10.92 new_primEqInt(Neg(Zero), Neg(Succ(xuu40000))) -> False 26.72/10.92 new_ltEs8(Nothing, Just(xuu34000), cea) -> True 26.72/10.92 new_primEqInt(Pos(Succ(xuu500000)), Pos(Succ(xuu40000))) -> new_primEqNat0(xuu500000, xuu40000) 26.72/10.92 new_esEs20(xuu50002, xuu4002, ty_Double) -> new_esEs13(xuu50002, xuu4002) 26.72/10.92 new_esEs20(xuu50002, xuu4002, app(ty_[], fd)) -> new_esEs16(xuu50002, xuu4002, fd) 26.72/10.92 new_esEs26(xuu50000, xuu4000, app(app(ty_@2, cgb), cgc)) -> new_esEs4(xuu50000, xuu4000, cgb, cgc) 26.72/10.92 new_ltEs4(Left(xuu33000), Left(xuu34000), app(app(ty_Either, bge), bgf), bfe) -> new_ltEs4(xuu33000, xuu34000, bge, bgf) 26.72/10.92 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(ty_[], cca)) -> new_esEs16(xuu50000, xuu4000, cca) 26.72/10.92 new_esEs14(Float(xuu50000, xuu50001), Float(xuu4000, xuu4001)) -> new_esEs19(new_sr(xuu50000, xuu4001), new_sr(xuu50001, xuu4000)) 26.72/10.92 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(app(ty_Either, cbd), cbe)) -> new_esEs7(xuu50000, xuu4000, cbd, cbe) 26.72/10.92 new_esEs26(xuu50000, xuu4000, ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.92 new_primEqInt(Pos(Succ(xuu500000)), Neg(xuu4000)) -> False 26.72/10.92 new_primEqInt(Neg(Succ(xuu500000)), Pos(xuu4000)) -> False 26.72/10.92 new_ltEs20(xuu33002, xuu34002, app(ty_Ratio, dad)) -> new_ltEs7(xuu33002, xuu34002, dad) 26.72/10.92 new_esEs11(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.92 new_lt6(xuu33000, xuu34000, ty_Float) -> new_lt17(xuu33000, xuu34000) 26.72/10.92 new_esEs29(xuu5000, xuu400, ty_@0) -> new_esEs9(xuu5000, xuu400) 26.72/10.92 new_lt4(xuu330, xuu340) -> new_esEs8(new_compare6(xuu330, xuu340), LT) 26.72/10.92 new_ltEs12(EQ, GT) -> True 26.72/10.92 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 26.72/10.92 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Ordering, bfe) -> new_ltEs12(xuu33000, xuu34000) 26.72/10.92 new_esEs28(xuu33000, xuu34000, ty_Float) -> new_esEs14(xuu33000, xuu34000) 26.72/10.92 new_esEs28(xuu33000, xuu34000, app(ty_Maybe, ddc)) -> new_esEs5(xuu33000, xuu34000, ddc) 26.72/10.92 new_esEs17(True, True) -> True 26.72/10.92 new_ltEs12(EQ, EQ) -> True 26.72/10.92 new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, cef), ceg), ceh)) -> new_ltEs9(xuu33000, xuu34000, cef, ceg, ceh) 26.72/10.92 new_primCmpInt(Pos(Zero), Pos(Succ(xuu3400))) -> new_primCmpNat2(Zero, xuu3400) 26.72/10.92 new_esEs21(xuu50001, xuu4001, ty_Integer) -> new_esEs15(xuu50001, xuu4001) 26.72/10.92 new_ltEs20(xuu33002, xuu34002, ty_Int) -> new_ltEs13(xuu33002, xuu34002) 26.72/10.92 new_esEs26(xuu50000, xuu4000, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs6(xuu50000, xuu4000, cgg, cgh, cha) 26.72/10.92 new_esEs10(xuu50001, xuu4001, ty_Double) -> new_esEs13(xuu50001, xuu4001) 26.72/10.92 new_lt11(xuu33000, xuu34000) -> new_esEs8(new_compare14(xuu33000, xuu34000), LT) 26.72/10.92 new_esEs21(xuu50001, xuu4001, ty_Bool) -> new_esEs17(xuu50001, xuu4001) 26.72/10.92 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) 26.72/10.92 new_esEs23(xuu33000, xuu34000, ty_Bool) -> new_esEs17(xuu33000, xuu34000) 26.72/10.92 new_not(False) -> True 26.72/10.92 new_compare27(xuu33000, xuu34000, False) -> new_compare112(xuu33000, xuu34000, new_ltEs14(xuu33000, xuu34000)) 26.72/10.92 new_esEs30(xuu22, xuu17, app(ty_Ratio, chh)) -> new_esEs18(xuu22, xuu17, chh) 26.72/10.92 new_esEs5(Just(xuu50000), Just(xuu4000), ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.92 new_esEs27(xuu33001, xuu34001, app(app(ty_Either, dcf), dcg)) -> new_esEs7(xuu33001, xuu34001, dcf, dcg) 26.72/10.92 new_compare0(:(xuu33000, xuu33001), [], baf) -> GT 26.72/10.92 new_esEs8(LT, GT) -> False 26.72/10.92 new_esEs8(GT, LT) -> False 26.72/10.92 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Bool, bfe) -> new_ltEs14(xuu33000, xuu34000) 26.72/10.92 new_primPlusNat0(Succ(xuu28200), Succ(xuu9600)) -> Succ(Succ(new_primPlusNat0(xuu28200, xuu9600))) 26.72/10.92 new_esEs20(xuu50002, xuu4002, app(ty_Ratio, ff)) -> new_esEs18(xuu50002, xuu4002, ff) 26.72/10.92 new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_[], cfa)) -> new_ltEs15(xuu33000, xuu34000, cfa) 26.72/10.92 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Double) -> new_ltEs17(xuu33000, xuu34000) 26.72/10.92 new_esEs7(Left(xuu50000), Left(xuu4000), app(ty_Ratio, cah), beh) -> new_esEs18(xuu50000, xuu4000, cah) 26.72/10.92 new_esEs11(xuu50000, xuu4000, ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.92 new_esEs21(xuu50001, xuu4001, ty_Char) -> new_esEs12(xuu50001, xuu4001) 26.72/10.92 new_compare8(xuu33000, xuu34000, app(app(ty_Either, bbg), bbh)) -> new_compare23(xuu33000, xuu34000, bbg, bbh) 26.72/10.92 new_esEs29(xuu5000, xuu400, app(ty_Ratio, bfc)) -> new_esEs18(xuu5000, xuu400, bfc) 26.72/10.92 new_ltEs4(Left(xuu33000), Right(xuu34000), bgg, bfe) -> True 26.72/10.92 new_esEs30(xuu22, xuu17, app(app(app(ty_@3, daa), dab), dac)) -> new_esEs6(xuu22, xuu17, daa, dab, dac) 26.72/10.92 new_ltEs6(xuu33001, xuu34001, ty_Integer) -> new_ltEs10(xuu33001, xuu34001) 26.72/10.92 new_esEs26(xuu50000, xuu4000, app(ty_Maybe, cgd)) -> new_esEs5(xuu50000, xuu4000, cgd) 26.72/10.92 new_primCmpNat1(Zero, Succ(xuu34000)) -> LT 26.72/10.92 new_esEs22(xuu50000, xuu4000, ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.92 new_compare25(Nothing, Nothing, False, cfd) -> LT 26.72/10.92 new_lt20(xuu33000, xuu34000, app(app(ty_Either, ddh), dea)) -> new_lt18(xuu33000, xuu34000, ddh, dea) 26.72/10.92 new_ltEs7(xuu3300, xuu3400, cdh) -> new_fsEs(new_compare9(xuu3300, xuu3400, cdh)) 26.72/10.92 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 26.72/10.92 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 26.72/10.92 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.92 new_compare0(:(xuu33000, xuu33001), :(xuu34000, xuu34001), baf) -> new_primCompAux0(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, baf), baf) 26.72/10.92 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Float) -> new_ltEs18(xuu33000, xuu34000) 26.72/10.92 new_ltEs6(xuu33001, xuu34001, ty_Ordering) -> new_ltEs12(xuu33001, xuu34001) 26.72/10.92 new_ltEs4(Left(xuu33000), Left(xuu34000), app(ty_Ratio, bfd), bfe) -> new_ltEs7(xuu33000, xuu34000, bfd) 26.72/10.92 new_esEs23(xuu33000, xuu34000, ty_Int) -> new_esEs19(xuu33000, xuu34000) 26.72/10.92 new_esEs27(xuu33001, xuu34001, app(app(ty_@2, dbg), dbh)) -> new_esEs4(xuu33001, xuu34001, dbg, dbh) 26.72/10.92 new_esEs21(xuu50001, xuu4001, app(ty_[], gg)) -> new_esEs16(xuu50001, xuu4001, gg) 26.72/10.92 new_ltEs6(xuu33001, xuu34001, ty_Char) -> new_ltEs11(xuu33001, xuu34001) 26.72/10.92 new_ltEs4(Left(xuu33000), Left(xuu34000), app(app(ty_@2, bff), bfg), bfe) -> new_ltEs5(xuu33000, xuu34000, bff, bfg) 26.72/10.92 new_esEs20(xuu50002, xuu4002, ty_@0) -> new_esEs9(xuu50002, xuu4002) 26.72/10.92 new_ltEs19(xuu3300, xuu3400, app(app(ty_Either, bgg), bfe)) -> new_ltEs4(xuu3300, xuu3400, bgg, bfe) 26.72/10.92 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 26.72/10.92 new_esEs17(False, False) -> True 26.72/10.92 new_esEs28(xuu33000, xuu34000, app(app(ty_@2, dda), ddb)) -> new_esEs4(xuu33000, xuu34000, dda, ddb) 26.72/10.92 new_esEs22(xuu50000, xuu4000, ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.92 new_ltEs12(EQ, LT) -> False 26.72/10.92 new_ltEs14(False, False) -> True 26.72/10.92 new_ltEs6(xuu33001, xuu34001, ty_Float) -> new_ltEs18(xuu33001, xuu34001) 26.72/10.92 new_ltEs8(Nothing, Nothing, cea) -> True 26.72/10.92 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.92 new_ltEs8(Just(xuu33000), Nothing, cea) -> False 26.72/10.92 new_esEs11(xuu50000, xuu4000, ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.92 new_lt6(xuu33000, xuu34000, ty_Double) -> new_lt16(xuu33000, xuu34000) 26.72/10.92 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.92 new_ltEs19(xuu3300, xuu3400, ty_Int) -> new_ltEs13(xuu3300, xuu3400) 26.72/10.92 new_esEs28(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) 26.72/10.92 new_esEs11(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.92 new_ltEs19(xuu3300, xuu3400, ty_Float) -> new_ltEs18(xuu3300, xuu3400) 26.72/10.92 new_esEs16(:(xuu50000, xuu50001), [], bfb) -> False 26.72/10.92 new_esEs16([], :(xuu4000, xuu4001), bfb) -> False 26.72/10.92 new_esEs5(Just(xuu50000), Just(xuu4000), app(ty_[], cdc)) -> new_esEs16(xuu50000, xuu4000, cdc) 26.72/10.92 new_esEs23(xuu33000, xuu34000, app(ty_[], bef)) -> new_esEs16(xuu33000, xuu34000, bef) 26.72/10.92 new_ltEs6(xuu33001, xuu34001, app(app(ty_Either, bdf), bdg)) -> new_ltEs4(xuu33001, xuu34001, bdf, bdg) 26.72/10.92 new_primCmpNat2(Succ(xuu3400), xuu3300) -> new_primCmpNat1(xuu3400, xuu3300) 26.72/10.92 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 26.72/10.92 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 26.72/10.92 new_esEs23(xuu33000, xuu34000, ty_Double) -> new_esEs13(xuu33000, xuu34000) 26.72/10.92 new_ltEs12(LT, EQ) -> True 26.72/10.92 new_compare25(Nothing, Just(xuu3400), False, cfd) -> LT 26.72/10.92 new_esEs29(xuu5000, xuu400, app(app(ty_@2, be), bf)) -> new_esEs4(xuu5000, xuu400, be, bf) 26.72/10.92 new_compare110(xuu33000, xuu34000, False, bca, bcb) -> GT 26.72/10.92 new_esEs21(xuu50001, xuu4001, ty_Int) -> new_esEs19(xuu50001, xuu4001) 26.72/10.92 new_lt19(xuu33001, xuu34001, ty_@0) -> new_lt15(xuu33001, xuu34001) 26.72/10.92 new_esEs11(xuu50000, xuu4000, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.92 new_esEs23(xuu33000, xuu34000, ty_Integer) -> new_esEs15(xuu33000, xuu34000) 26.72/10.92 new_lt20(xuu33000, xuu34000, ty_Char) -> new_lt5(xuu33000, xuu34000) 26.72/10.92 new_primEqNat0(Zero, Zero) -> True 26.72/10.92 new_compare8(xuu33000, xuu34000, ty_@0) -> new_compare18(xuu33000, xuu34000) 26.72/10.92 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.92 new_ltEs20(xuu33002, xuu34002, ty_Float) -> new_ltEs18(xuu33002, xuu34002) 26.72/10.92 new_esEs28(xuu33000, xuu34000, app(app(app(ty_@3, ddd), dde), ddf)) -> new_esEs6(xuu33000, xuu34000, ddd, dde, ddf) 26.72/10.92 new_esEs30(xuu22, xuu17, app(app(ty_Either, chb), chc)) -> new_esEs7(xuu22, xuu17, chb, chc) 26.72/10.92 new_esEs10(xuu50001, xuu4001, ty_@0) -> new_esEs9(xuu50001, xuu4001) 26.72/10.92 new_esEs29(xuu5000, xuu400, ty_Ordering) -> new_esEs8(xuu5000, xuu400) 26.72/10.92 new_compare23(xuu33000, xuu34000, bca, bcb) -> new_compare24(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, bca, bcb), bca, bcb) 26.72/10.92 new_ltEs14(True, False) -> False 26.72/10.92 new_esEs26(xuu50000, xuu4000, ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.92 new_compare113(xuu33000, xuu34000, False, bec, bed, bee) -> GT 26.72/10.92 new_esEs22(xuu50000, xuu4000, app(ty_[], baa)) -> new_esEs16(xuu50000, xuu4000, baa) 26.72/10.92 new_esEs22(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.92 new_asAs(False, xuu136) -> False 26.72/10.92 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Float, beh) -> new_esEs14(xuu50000, xuu4000) 26.72/10.92 new_esEs20(xuu50002, xuu4002, ty_Char) -> new_esEs12(xuu50002, xuu4002) 26.72/10.92 new_esEs29(xuu5000, xuu400, app(app(ty_Either, beg), beh)) -> new_esEs7(xuu5000, xuu400, beg, beh) 26.72/10.92 new_esEs27(xuu33001, xuu34001, app(ty_Maybe, dca)) -> new_esEs5(xuu33001, xuu34001, dca) 26.72/10.92 new_lt19(xuu33001, xuu34001, ty_Char) -> new_lt5(xuu33001, xuu34001) 26.72/10.92 new_compare28(xuu33000, xuu34000, True, bea, beb) -> EQ 26.72/10.92 new_lt20(xuu33000, xuu34000, ty_@0) -> new_lt15(xuu33000, xuu34000) 26.72/10.92 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Int) -> new_ltEs13(xuu33000, xuu34000) 26.72/10.92 new_esEs8(EQ, GT) -> False 26.72/10.92 new_esEs8(GT, EQ) -> False 26.72/10.92 new_ltEs4(Right(xuu33000), Left(xuu34000), bgg, bfe) -> False 26.72/10.92 new_esEs10(xuu50001, xuu4001, ty_Int) -> new_esEs19(xuu50001, xuu4001) 26.72/10.92 new_compare27(xuu33000, xuu34000, True) -> EQ 26.72/10.92 new_esEs7(Left(xuu50000), Right(xuu4000), beg, beh) -> False 26.72/10.92 new_esEs7(Right(xuu50000), Left(xuu4000), beg, beh) -> False 26.72/10.92 new_compare18(@0, @0) -> EQ 26.72/10.92 new_esEs11(xuu50000, xuu4000, app(ty_[], dg)) -> new_esEs16(xuu50000, xuu4000, dg) 26.72/10.92 new_compare14(Integer(xuu33000), Integer(xuu34000)) -> new_primCmpInt(xuu33000, xuu34000) 26.72/10.92 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(ty_Maybe, bhc)) -> new_ltEs8(xuu33000, xuu34000, bhc) 26.72/10.92 new_lt6(xuu33000, xuu34000, app(app(ty_Either, bca), bcb)) -> new_lt18(xuu33000, xuu34000, bca, bcb) 26.72/10.92 new_esEs21(xuu50001, xuu4001, ty_@0) -> new_esEs9(xuu50001, xuu4001) 26.72/10.92 new_compare16(xuu33000, xuu34000) -> new_compare26(xuu33000, xuu34000, new_esEs8(xuu33000, xuu34000)) 26.72/10.92 26.72/10.92 The set Q consists of the following terms: 26.72/10.92 26.72/10.92 new_esEs7(Right(x0), Right(x1), x2, ty_Integer) 26.72/10.92 new_ltEs8(Just(x0), Just(x1), ty_Bool) 26.72/10.92 new_esEs8(EQ, EQ) 26.72/10.92 new_esEs21(x0, x1, ty_Integer) 26.72/10.92 new_lt6(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.92 new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.72/10.92 new_esEs29(x0, x1, ty_Double) 26.72/10.92 new_esEs22(x0, x1, ty_@0) 26.72/10.92 new_compare0(:(x0, x1), [], x2) 26.72/10.92 new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) 26.72/10.92 new_esEs7(Left(x0), Left(x1), ty_Double, x2) 26.72/10.92 new_compare26(x0, x1, False) 26.72/10.92 new_esEs27(x0, x1, ty_Double) 26.72/10.92 new_esEs29(x0, x1, ty_Ordering) 26.72/10.92 new_compare8(x0, x1, ty_Double) 26.72/10.92 new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) 26.72/10.92 new_lt20(x0, x1, ty_Integer) 26.72/10.92 new_ltEs11(x0, x1) 26.72/10.92 new_esEs30(x0, x1, ty_Bool) 26.72/10.92 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 26.72/10.92 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 26.72/10.92 new_esEs22(x0, x1, ty_Bool) 26.72/10.92 new_esEs30(x0, x1, app(ty_Ratio, x2)) 26.72/10.92 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 26.72/10.92 new_lt6(x0, x1, app(ty_[], x2)) 26.72/10.92 new_esEs26(x0, x1, app(ty_Ratio, x2)) 26.72/10.92 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 26.72/10.92 new_compare12(x0, x1, x2) 26.72/10.92 new_ltEs8(Just(x0), Just(x1), ty_@0) 26.72/10.92 new_esEs26(x0, x1, ty_@0) 26.72/10.92 new_lt6(x0, x1, ty_Bool) 26.72/10.92 new_lt19(x0, x1, ty_@0) 26.72/10.92 new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.92 new_lt6(x0, x1, ty_@0) 26.72/10.92 new_primCmpNat1(Zero, Zero) 26.72/10.92 new_ltEs13(x0, x1) 26.72/10.92 new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.92 new_primCompAux00(x0, EQ) 26.72/10.92 new_compare8(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.92 new_compare28(x0, x1, True, x2, x3) 26.72/10.92 new_lt5(x0, x1) 26.72/10.92 new_esEs23(x0, x1, ty_Float) 26.72/10.92 new_esEs29(x0, x1, ty_Int) 26.72/10.92 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.92 new_esEs7(Left(x0), Left(x1), ty_Int, x2) 26.72/10.92 new_primEqInt(Pos(Zero), Pos(Zero)) 26.72/10.92 new_compare15(Char(x0), Char(x1)) 26.72/10.92 new_lt13(x0, x1) 26.72/10.92 new_compare6(x0, x1) 26.72/10.92 new_primCmpNat2(Zero, x0) 26.72/10.92 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.92 new_ltEs6(x0, x1, ty_Ordering) 26.72/10.92 new_esEs17(False, False) 26.72/10.92 new_lt9(x0, x1, x2) 26.72/10.92 new_esEs27(x0, x1, ty_Ordering) 26.72/10.92 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 26.72/10.92 new_esEs11(x0, x1, ty_Float) 26.72/10.92 new_primEqNat0(Zero, Succ(x0)) 26.72/10.92 new_primEqInt(Neg(Zero), Neg(Zero)) 26.72/10.92 new_esEs29(x0, x1, ty_Char) 26.72/10.92 new_esEs27(x0, x1, ty_Int) 26.72/10.92 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.92 new_lt19(x0, x1, ty_Int) 26.72/10.92 new_compare10(x0, x1, True, x2) 26.72/10.92 new_pePe(True, x0) 26.72/10.92 new_ltEs6(x0, x1, ty_Int) 26.72/10.92 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.92 new_esEs26(x0, x1, app(ty_Maybe, x2)) 26.72/10.92 new_lt6(x0, x1, ty_Integer) 26.72/10.92 new_esEs27(x0, x1, ty_Char) 26.72/10.92 new_esEs29(x0, x1, app(ty_Ratio, x2)) 26.72/10.92 new_compare113(x0, x1, True, x2, x3, x4) 26.72/10.92 new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.72/10.92 new_esEs20(x0, x1, ty_Integer) 26.72/10.92 new_esEs7(Right(x0), Right(x1), x2, ty_@0) 26.72/10.92 new_esEs7(Left(x0), Left(x1), ty_Char, x2) 26.72/10.92 new_ltEs12(GT, EQ) 26.72/10.92 new_ltEs12(EQ, GT) 26.72/10.92 new_esEs7(Right(x0), Right(x1), x2, ty_Float) 26.72/10.92 new_ltEs4(Right(x0), Right(x1), x2, ty_Ordering) 26.72/10.92 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.92 new_lt17(x0, x1) 26.72/10.92 new_esEs20(x0, x1, ty_Bool) 26.72/10.92 new_ltEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 26.72/10.92 new_compare112(x0, x1, True) 26.72/10.92 new_esEs26(x0, x1, ty_Int) 26.72/10.92 new_lt19(x0, x1, ty_Bool) 26.72/10.92 new_esEs30(x0, x1, ty_Integer) 26.72/10.92 new_lt6(x0, x1, app(ty_Ratio, x2)) 26.72/10.92 new_primMulInt(Pos(x0), Pos(x1)) 26.72/10.92 new_primEqInt(Pos(Zero), Neg(Zero)) 26.72/10.92 new_primEqInt(Neg(Zero), Pos(Zero)) 26.72/10.92 new_primMulNat0(Succ(x0), Succ(x1)) 26.72/10.92 new_ltEs6(x0, x1, ty_Double) 26.72/10.92 new_esEs10(x0, x1, app(ty_Maybe, x2)) 26.72/10.92 new_esEs18(:%(x0, x1), :%(x2, x3), x4) 26.72/10.92 new_esEs26(x0, x1, ty_Bool) 26.72/10.92 new_compare11(x0, x1, x2, x3) 26.72/10.92 new_esEs16([], :(x0, x1), x2) 26.72/10.92 new_esEs26(x0, x1, ty_Char) 26.72/10.92 new_ltEs6(x0, x1, ty_Char) 26.72/10.92 new_esEs26(x0, x1, ty_Double) 26.72/10.92 new_esEs20(x0, x1, app(ty_Maybe, x2)) 26.72/10.92 new_compare8(x0, x1, ty_Ordering) 26.72/10.92 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 26.72/10.92 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.72/10.92 new_compare110(x0, x1, False, x2, x3) 26.72/10.92 new_esEs22(x0, x1, app(ty_Maybe, x2)) 26.72/10.92 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 26.72/10.92 new_esEs5(Just(x0), Nothing, x1) 26.72/10.92 new_ltEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.72/10.92 new_ltEs19(x0, x1, app(ty_[], x2)) 26.72/10.92 new_esEs28(x0, x1, app(ty_Ratio, x2)) 26.72/10.92 new_lt19(x0, x1, ty_Char) 26.72/10.92 new_lt11(x0, x1) 26.72/10.92 new_ltEs8(Just(x0), Just(x1), ty_Integer) 26.72/10.92 new_lt19(x0, x1, ty_Double) 26.72/10.92 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.72/10.92 new_lt20(x0, x1, app(ty_Maybe, x2)) 26.72/10.92 new_compare13(x0, x1, x2, x3, x4) 26.72/10.92 new_sr(x0, x1) 26.72/10.92 new_fsEs(x0) 26.72/10.92 new_esEs28(x0, x1, ty_Ordering) 26.72/10.92 new_compare17(x0, x1) 26.72/10.92 new_compare8(x0, x1, ty_@0) 26.72/10.92 new_esEs30(x0, x1, ty_Ordering) 26.72/10.92 new_esEs7(Left(x0), Left(x1), ty_Bool, x2) 26.72/10.92 new_esEs27(x0, x1, ty_@0) 26.72/10.92 new_compare7(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 26.72/10.92 new_compare7(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 26.72/10.92 new_compare7(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 26.72/10.92 new_esEs9(@0, @0) 26.72/10.92 new_compare28(x0, x1, False, x2, x3) 26.72/10.92 new_compare25(x0, x1, True, x2) 26.72/10.92 new_ltEs8(Just(x0), Just(x1), ty_Double) 26.72/10.92 new_esEs22(x0, x1, ty_Float) 26.72/10.92 new_compare27(x0, x1, True) 26.72/10.92 new_ltEs4(Right(x0), Right(x1), x2, ty_Integer) 26.72/10.92 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.72/10.92 new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.72/10.92 new_esEs24(x0, x1, ty_Int) 26.72/10.92 new_esEs5(Just(x0), Just(x1), ty_Double) 26.72/10.92 new_esEs16(:(x0, x1), [], x2) 26.72/10.92 new_primCompAux00(x0, LT) 26.72/10.92 new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) 26.72/10.92 new_esEs29(x0, x1, ty_@0) 26.72/10.92 new_ltEs8(Just(x0), Just(x1), ty_Ordering) 26.72/10.92 new_esEs28(x0, x1, ty_Char) 26.72/10.92 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.92 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.92 new_esEs30(x0, x1, ty_Double) 26.72/10.92 new_compare26(x0, x1, True) 26.72/10.92 new_esEs11(x0, x1, app(ty_Maybe, x2)) 26.72/10.92 new_esEs15(Integer(x0), Integer(x1)) 26.72/10.92 new_lt19(x0, x1, app(ty_[], x2)) 26.72/10.92 new_esEs21(x0, x1, app(ty_Ratio, x2)) 26.72/10.92 new_ltEs15(x0, x1, x2) 26.72/10.92 new_esEs26(x0, x1, ty_Float) 26.72/10.92 new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.72/10.92 new_asAs(True, x0) 26.72/10.92 new_esEs16(:(x0, x1), :(x2, x3), x4) 26.72/10.92 new_lt8(x0, x1, x2, x3) 26.72/10.92 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.92 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.92 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.92 new_ltEs20(x0, x1, ty_Integer) 26.72/10.92 new_compare29(x0, x1, False, x2, x3, x4) 26.72/10.92 new_esEs22(x0, x1, app(ty_[], x2)) 26.72/10.92 new_esEs16([], [], x0) 26.72/10.92 new_ltEs20(x0, x1, ty_Float) 26.72/10.92 new_compare111(x0, x1, True) 26.72/10.92 new_esEs22(x0, x1, ty_Ordering) 26.72/10.92 new_compare110(x0, x1, True, x2, x3) 26.72/10.92 new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 26.72/10.92 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 26.72/10.92 new_compare0([], [], x0) 26.72/10.92 new_esEs7(Right(x0), Right(x1), x2, ty_Double) 26.72/10.92 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.92 new_ltEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.72/10.92 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.92 new_ltEs19(x0, x1, ty_Double) 26.72/10.92 new_esEs8(GT, GT) 26.72/10.92 new_esEs22(x0, x1, ty_Int) 26.72/10.92 new_esEs20(x0, x1, ty_Char) 26.72/10.92 new_ltEs12(EQ, LT) 26.72/10.92 new_ltEs12(LT, EQ) 26.72/10.92 new_compare0([], :(x0, x1), x2) 26.72/10.92 new_esEs8(LT, EQ) 26.72/10.92 new_esEs8(EQ, LT) 26.72/10.92 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.92 new_ltEs12(GT, GT) 26.72/10.92 new_esEs27(x0, x1, app(ty_Maybe, x2)) 26.72/10.92 new_primMulNat0(Succ(x0), Zero) 26.72/10.92 new_primCmpInt(Neg(Zero), Neg(Zero)) 26.72/10.92 new_esEs22(x0, x1, ty_Char) 26.72/10.92 new_esEs21(x0, x1, app(ty_[], x2)) 26.72/10.92 new_lt20(x0, x1, ty_@0) 26.72/10.92 new_esEs28(x0, x1, ty_Bool) 26.72/10.92 new_compare25(Nothing, Nothing, False, x0) 26.72/10.92 new_esEs19(x0, x1) 26.72/10.92 new_esEs11(x0, x1, ty_Double) 26.72/10.92 new_lt14(x0, x1, x2) 26.72/10.92 new_ltEs14(False, False) 26.72/10.92 new_esEs11(x0, x1, ty_@0) 26.72/10.92 new_esEs23(x0, x1, ty_Int) 26.72/10.92 new_compare10(x0, x1, False, x2) 26.72/10.92 new_ltEs6(x0, x1, app(ty_Ratio, x2)) 26.72/10.92 new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.72/10.92 new_lt19(x0, x1, ty_Integer) 26.72/10.92 new_esEs8(LT, LT) 26.72/10.92 new_esEs23(x0, x1, ty_Integer) 26.72/10.92 new_compare8(x0, x1, app(ty_Maybe, x2)) 26.72/10.92 new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 26.72/10.92 new_primCmpInt(Pos(Zero), Neg(Zero)) 26.72/10.92 new_primCmpInt(Neg(Zero), Pos(Zero)) 26.72/10.92 new_esEs30(x0, x1, app(ty_Maybe, x2)) 26.72/10.92 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.92 new_esEs28(x0, x1, ty_Float) 26.72/10.92 new_esEs20(x0, x1, ty_Int) 26.72/10.92 new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.72/10.92 new_esEs21(x0, x1, ty_@0) 26.72/10.92 new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.72/10.92 new_lt19(x0, x1, app(ty_Maybe, x2)) 26.72/10.92 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 26.72/10.92 new_esEs10(x0, x1, ty_Char) 26.72/10.92 new_ltEs4(Right(x0), Right(x1), x2, ty_Bool) 26.72/10.92 new_primEqNat0(Succ(x0), Zero) 26.72/10.92 new_lt15(x0, x1) 26.72/10.92 new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.92 new_ltEs20(x0, x1, ty_Int) 26.72/10.92 new_ltEs4(Right(x0), Right(x1), x2, ty_Float) 26.72/10.92 new_ltEs20(x0, x1, ty_Bool) 26.72/10.92 new_esEs22(x0, x1, ty_Integer) 26.72/10.93 new_esEs23(x0, x1, ty_Char) 26.72/10.93 new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.72/10.93 new_esEs29(x0, x1, app(ty_[], x2)) 26.72/10.93 new_esEs10(x0, x1, ty_Int) 26.72/10.93 new_esEs22(x0, x1, app(ty_Ratio, x2)) 26.72/10.93 new_ltEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.72/10.93 new_ltEs19(x0, x1, ty_@0) 26.72/10.93 new_esEs28(x0, x1, app(ty_[], x2)) 26.72/10.93 new_esEs28(x0, x1, ty_Int) 26.72/10.93 new_ltEs20(x0, x1, ty_Char) 26.72/10.93 new_compare114(x0, x1, False, x2, x3) 26.72/10.93 new_ltEs12(LT, LT) 26.72/10.93 new_esEs5(Nothing, Nothing, x0) 26.72/10.93 new_esEs20(x0, x1, ty_Float) 26.72/10.93 new_ltEs4(Left(x0), Left(x1), ty_Double, x2) 26.72/10.93 new_lt19(x0, x1, ty_Ordering) 26.72/10.93 new_esEs23(x0, x1, app(ty_Maybe, x2)) 26.72/10.93 new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) 26.72/10.93 new_ltEs4(Right(x0), Right(x1), x2, ty_Int) 26.72/10.93 new_esEs21(x0, x1, ty_Double) 26.72/10.93 new_esEs23(x0, x1, ty_Bool) 26.72/10.93 new_ltEs7(x0, x1, x2) 26.72/10.93 new_ltEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.72/10.93 new_ltEs17(x0, x1) 26.72/10.93 new_primCmpNat0(x0, Zero) 26.72/10.93 new_esEs10(x0, x1, ty_Float) 26.72/10.93 new_lt20(x0, x1, ty_Double) 26.72/10.93 new_esEs30(x0, x1, ty_@0) 26.72/10.93 new_ltEs4(Right(x0), Right(x1), x2, ty_Char) 26.72/10.93 new_compare113(x0, x1, False, x2, x3, x4) 26.72/10.93 new_compare25(Just(x0), Nothing, False, x1) 26.72/10.93 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.93 new_lt6(x0, x1, ty_Double) 26.72/10.93 new_esEs11(x0, x1, ty_Char) 26.72/10.93 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 26.72/10.93 new_compare27(x0, x1, False) 26.72/10.93 new_lt20(x0, x1, app(ty_Ratio, x2)) 26.72/10.93 new_ltEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.72/10.93 new_ltEs10(x0, x1) 26.72/10.93 new_esEs7(Left(x0), Left(x1), ty_Float, x2) 26.72/10.93 new_esEs29(x0, x1, ty_Float) 26.72/10.93 new_primCmpNat0(x0, Succ(x1)) 26.72/10.93 new_ltEs4(Left(x0), Left(x1), ty_Integer, x2) 26.72/10.93 new_esEs5(Just(x0), Just(x1), ty_@0) 26.72/10.93 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.72/10.93 new_esEs20(x0, x1, app(ty_Ratio, x2)) 26.72/10.93 new_primCmpNat1(Zero, Succ(x0)) 26.72/10.93 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.93 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.93 new_ltEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.72/10.93 new_esEs10(x0, x1, ty_@0) 26.72/10.93 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 26.72/10.93 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.93 new_compare24(x0, x1, False, x2, x3) 26.72/10.93 new_ltEs8(Nothing, Nothing, x0) 26.72/10.93 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.93 new_esEs24(x0, x1, ty_Integer) 26.72/10.93 new_primMulNat0(Zero, Zero) 26.72/10.93 new_ltEs4(Left(x0), Right(x1), x2, x3) 26.72/10.93 new_ltEs4(Right(x0), Left(x1), x2, x3) 26.72/10.93 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.93 new_primCmpNat2(Succ(x0), x1) 26.72/10.93 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.93 new_ltEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.72/10.93 new_compare8(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.93 new_esEs11(x0, x1, ty_Int) 26.72/10.93 new_esEs27(x0, x1, ty_Float) 26.72/10.93 new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.93 new_esEs10(x0, x1, app(ty_[], x2)) 26.72/10.93 new_lt12(x0, x1) 26.72/10.93 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.93 new_compare0(:(x0, x1), :(x2, x3), x4) 26.72/10.93 new_compare114(x0, x1, True, x2, x3) 26.72/10.93 new_esEs20(x0, x1, ty_Double) 26.72/10.93 new_esEs17(True, True) 26.72/10.93 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.93 new_ltEs6(x0, x1, ty_Float) 26.72/10.93 new_esEs23(x0, x1, ty_Double) 26.72/10.93 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 26.72/10.93 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 26.72/10.93 new_ltEs5(@2(x0, x1), @2(x2, x3), x4, x5) 26.72/10.93 new_ltEs19(x0, x1, ty_Int) 26.72/10.93 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 26.72/10.93 new_compare14(Integer(x0), Integer(x1)) 26.72/10.93 new_esEs7(Left(x0), Right(x1), x2, x3) 26.72/10.93 new_esEs7(Right(x0), Left(x1), x2, x3) 26.72/10.93 new_ltEs16(x0, x1) 26.72/10.93 new_compare8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.93 new_ltEs19(x0, x1, ty_Char) 26.72/10.93 new_primPlusNat0(Succ(x0), Succ(x1)) 26.72/10.93 new_lt16(x0, x1) 26.72/10.93 new_ltEs4(Left(x0), Left(x1), ty_@0, x2) 26.72/10.93 new_primEqNat0(Succ(x0), Succ(x1)) 26.72/10.93 new_esEs23(x0, x1, ty_Ordering) 26.72/10.93 new_esEs11(x0, x1, app(ty_Ratio, x2)) 26.72/10.93 new_esEs10(x0, x1, ty_Bool) 26.72/10.93 new_ltEs6(x0, x1, ty_Integer) 26.72/10.93 new_ltEs6(x0, x1, app(ty_Maybe, x2)) 26.72/10.93 new_esEs5(Just(x0), Just(x1), ty_Integer) 26.72/10.93 new_compare8(x0, x1, app(ty_[], x2)) 26.72/10.93 new_primPlusNat0(Zero, Zero) 26.72/10.93 new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.72/10.93 new_primCmpNat1(Succ(x0), Zero) 26.72/10.93 new_esEs10(x0, x1, ty_Integer) 26.72/10.93 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.93 new_pePe(False, x0) 26.72/10.93 new_ltEs14(True, True) 26.72/10.93 new_ltEs19(x0, x1, ty_Bool) 26.72/10.93 new_not(True) 26.72/10.93 new_esEs25(x0, x1, ty_Int) 26.72/10.93 new_ltEs20(x0, x1, app(ty_[], x2)) 26.72/10.93 new_esEs8(EQ, GT) 26.72/10.93 new_esEs8(GT, EQ) 26.72/10.93 new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.72/10.93 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.93 new_primMulNat0(Zero, Succ(x0)) 26.72/10.93 new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.72/10.93 new_esEs20(x0, x1, app(ty_[], x2)) 26.72/10.93 new_compare112(x0, x1, False) 26.72/10.93 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.93 new_lt20(x0, x1, ty_Ordering) 26.72/10.93 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.93 new_esEs11(x0, x1, ty_Ordering) 26.72/10.93 new_esEs20(x0, x1, ty_Ordering) 26.72/10.93 new_esEs29(x0, x1, ty_Integer) 26.72/10.93 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.72/10.93 new_esEs27(x0, x1, ty_Integer) 26.72/10.93 new_lt6(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.93 new_ltEs18(x0, x1) 26.72/10.93 new_ltEs20(x0, x1, ty_Ordering) 26.72/10.93 new_ltEs19(x0, x1, ty_Ordering) 26.72/10.93 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 26.72/10.93 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.93 new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.72/10.93 new_esEs17(False, True) 26.72/10.93 new_esEs17(True, False) 26.72/10.93 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.93 new_primPlusNat0(Succ(x0), Zero) 26.72/10.93 new_esEs28(x0, x1, ty_Integer) 26.72/10.93 new_esEs28(x0, x1, app(ty_Maybe, x2)) 26.72/10.93 new_ltEs19(x0, x1, ty_Integer) 26.72/10.93 new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.72/10.93 new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.72/10.93 new_ltEs12(EQ, EQ) 26.72/10.93 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.93 new_compare18(@0, @0) 26.72/10.93 new_esEs21(x0, x1, ty_Ordering) 26.72/10.93 new_esEs10(x0, x1, ty_Ordering) 26.72/10.93 new_esEs27(x0, x1, app(ty_[], x2)) 26.72/10.93 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.93 new_esEs13(Double(x0, x1), Double(x2, x3)) 26.72/10.93 new_esEs23(x0, x1, app(ty_Ratio, x2)) 26.72/10.93 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.93 new_lt7(x0, x1, x2) 26.72/10.93 new_compare8(x0, x1, ty_Integer) 26.72/10.93 new_lt10(x0, x1, x2, x3, x4) 26.72/10.93 new_primCmpInt(Pos(Zero), Pos(Zero)) 26.72/10.93 new_ltEs6(x0, x1, ty_Bool) 26.72/10.93 new_compare29(x0, x1, True, x2, x3, x4) 26.72/10.93 new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.72/10.93 new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) 26.72/10.93 new_ltEs4(Left(x0), Left(x1), ty_Int, x2) 26.72/10.93 new_compare8(x0, x1, app(ty_Ratio, x2)) 26.72/10.93 new_ltEs6(x0, x1, app(ty_[], x2)) 26.72/10.93 new_compare7(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 26.72/10.93 new_compare16(x0, x1) 26.72/10.93 new_ltEs8(Just(x0), Just(x1), ty_Float) 26.72/10.93 new_esEs22(x0, x1, ty_Double) 26.72/10.93 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.93 new_esEs23(x0, x1, app(ty_[], x2)) 26.72/10.93 new_esEs7(Right(x0), Right(x1), x2, ty_Int) 26.72/10.93 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.93 new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.72/10.93 new_esEs11(x0, x1, app(ty_[], x2)) 26.72/10.93 new_esEs30(x0, x1, ty_Float) 26.72/10.93 new_esEs27(x0, x1, ty_Bool) 26.72/10.93 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.93 new_ltEs4(Left(x0), Left(x1), ty_Char, x2) 26.72/10.93 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.93 new_esEs8(LT, GT) 26.72/10.93 new_esEs8(GT, LT) 26.72/10.93 new_primPlusNat1(x0, x1) 26.72/10.93 new_lt6(x0, x1, ty_Ordering) 26.72/10.93 new_esEs29(x0, x1, ty_Bool) 26.72/10.93 new_esEs12(Char(x0), Char(x1)) 26.72/10.93 new_esEs27(x0, x1, app(ty_Ratio, x2)) 26.72/10.93 new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) 26.72/10.93 new_lt18(x0, x1, x2, x3) 26.72/10.93 new_ltEs8(Just(x0), Just(x1), ty_Int) 26.72/10.93 new_lt19(x0, x1, ty_Float) 26.72/10.93 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.93 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 26.72/10.93 new_esEs5(Nothing, Just(x0), x1) 26.72/10.93 new_esEs20(x0, x1, ty_@0) 26.72/10.93 new_ltEs4(Left(x0), Left(x1), ty_Float, x2) 26.72/10.93 new_esEs26(x0, x1, ty_Ordering) 26.72/10.93 new_esEs7(Left(x0), Left(x1), ty_Integer, x2) 26.72/10.93 new_ltEs6(x0, x1, ty_@0) 26.72/10.93 new_ltEs4(Left(x0), Left(x1), ty_Ordering, x2) 26.72/10.93 new_esEs10(x0, x1, app(ty_Ratio, x2)) 26.72/10.93 new_esEs5(Just(x0), Just(x1), ty_Ordering) 26.72/10.93 new_esEs10(x0, x1, ty_Double) 26.72/10.93 new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.72/10.93 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 26.72/10.93 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 26.72/10.93 new_esEs29(x0, x1, app(ty_Maybe, x2)) 26.72/10.93 new_lt6(x0, x1, ty_Float) 26.72/10.93 new_compare8(x0, x1, ty_Bool) 26.72/10.93 new_esEs7(Right(x0), Right(x1), x2, ty_Char) 26.72/10.93 new_esEs26(x0, x1, app(ty_[], x2)) 26.72/10.93 new_compare24(x0, x1, True, x2, x3) 26.72/10.93 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.93 new_ltEs8(Just(x0), Nothing, x1) 26.72/10.93 new_esEs7(Left(x0), Left(x1), ty_@0, x2) 26.72/10.93 new_esEs11(x0, x1, ty_Integer) 26.72/10.93 new_primMulInt(Neg(x0), Neg(x1)) 26.72/10.93 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.93 new_esEs30(x0, x1, app(ty_[], x2)) 26.72/10.93 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.93 new_esEs23(x0, x1, ty_@0) 26.72/10.93 new_esEs26(x0, x1, ty_Integer) 26.72/10.93 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.93 new_esEs5(Just(x0), Just(x1), ty_Float) 26.72/10.93 new_compare23(x0, x1, x2, x3) 26.72/10.93 new_ltEs14(False, True) 26.72/10.93 new_ltEs14(True, False) 26.72/10.93 new_primPlusNat0(Zero, Succ(x0)) 26.72/10.93 new_primEqNat0(Zero, Zero) 26.72/10.93 new_compare8(x0, x1, ty_Char) 26.72/10.93 new_esEs25(x0, x1, ty_Integer) 26.72/10.93 new_primCompAux00(x0, GT) 26.72/10.93 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.93 new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) 26.72/10.93 new_lt20(x0, x1, app(ty_[], x2)) 26.72/10.93 new_ltEs4(Right(x0), Right(x1), x2, ty_@0) 26.72/10.93 new_not(False) 26.72/10.93 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 26.72/10.93 new_ltEs8(Just(x0), Just(x1), ty_Char) 26.72/10.93 new_esEs5(Just(x0), Just(x1), ty_Char) 26.72/10.93 new_esEs11(x0, x1, ty_Bool) 26.72/10.93 new_lt20(x0, x1, ty_Float) 26.72/10.93 new_ltEs19(x0, x1, ty_Float) 26.72/10.93 new_lt20(x0, x1, ty_Bool) 26.72/10.93 new_ltEs12(LT, GT) 26.72/10.93 new_ltEs12(GT, LT) 26.72/10.93 new_esEs30(x0, x1, ty_Char) 26.72/10.93 new_lt6(x0, x1, ty_Int) 26.72/10.93 new_compare8(x0, x1, ty_Int) 26.72/10.93 new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.72/10.93 new_esEs21(x0, x1, app(ty_Maybe, x2)) 26.72/10.93 new_sr0(Integer(x0), Integer(x1)) 26.72/10.93 new_lt6(x0, x1, app(ty_Maybe, x2)) 26.72/10.93 new_esEs21(x0, x1, ty_Bool) 26.72/10.93 new_esEs28(x0, x1, ty_Double) 26.72/10.93 new_esEs7(Right(x0), Right(x1), x2, ty_Bool) 26.72/10.93 new_esEs5(Just(x0), Just(x1), ty_Int) 26.72/10.93 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 26.72/10.93 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 26.72/10.93 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 26.72/10.93 new_esEs21(x0, x1, ty_Float) 26.72/10.93 new_compare25(Just(x0), Just(x1), False, x2) 26.72/10.93 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.93 new_ltEs20(x0, x1, ty_@0) 26.72/10.93 new_ltEs4(Left(x0), Left(x1), ty_Bool, x2) 26.72/10.93 new_lt19(x0, x1, app(ty_Ratio, x2)) 26.72/10.93 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.93 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.93 new_compare25(Nothing, Just(x0), False, x1) 26.72/10.93 new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.72/10.93 new_lt4(x0, x1) 26.72/10.93 new_asAs(False, x0) 26.72/10.93 new_esEs30(x0, x1, ty_Int) 26.72/10.93 new_primMulInt(Pos(x0), Neg(x1)) 26.72/10.93 new_primMulInt(Neg(x0), Pos(x1)) 26.72/10.93 new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.72/10.93 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 26.72/10.93 new_ltEs8(Nothing, Just(x0), x1) 26.72/10.93 new_esEs14(Float(x0, x1), Float(x2, x3)) 26.72/10.93 new_lt20(x0, x1, ty_Int) 26.72/10.93 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.72/10.93 new_primCmpNat1(Succ(x0), Succ(x1)) 26.72/10.93 new_esEs21(x0, x1, ty_Char) 26.72/10.93 new_compare111(x0, x1, False) 26.72/10.93 new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.72/10.93 new_ltEs4(Right(x0), Right(x1), x2, ty_Double) 26.72/10.93 new_esEs21(x0, x1, ty_Int) 26.72/10.93 new_lt6(x0, x1, ty_Char) 26.72/10.93 new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 26.72/10.93 new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 26.72/10.93 new_esEs5(Just(x0), Just(x1), ty_Bool) 26.72/10.93 new_compare8(x0, x1, ty_Float) 26.72/10.93 new_lt20(x0, x1, ty_Char) 26.72/10.93 new_ltEs20(x0, x1, ty_Double) 26.72/10.93 new_primCompAux0(x0, x1, x2, x3) 26.72/10.93 new_esEs28(x0, x1, ty_@0) 26.72/10.93 26.72/10.93 We have to consider all minimal (P,Q,R)-chains. 26.72/10.93 ---------------------------------------- 26.72/10.93 26.72/10.93 (30) DependencyGraphProof (EQUIVALENT) 26.72/10.93 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. 26.72/10.93 ---------------------------------------- 26.72/10.93 26.72/10.93 (31) 26.72/10.93 Complex Obligation (AND) 26.72/10.93 26.72/10.93 ---------------------------------------- 26.72/10.93 26.72/10.93 (32) 26.72/10.93 Obligation: 26.72/10.93 Q DP problem: 26.72/10.93 The TRS P consists of the following rules: 26.72/10.93 26.72/10.93 new_addToFM_C11(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, True, h, ba) -> new_addToFM_C(xuu3, xuu44, Just(xuu5000), xuu501, h, ba) 26.72/10.93 new_addToFM_C(xuu3, Branch(Nothing, xuu41, xuu42, xuu43, xuu44), Just(xuu5000), xuu501, h, ba) -> new_addToFM_C20(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs8(new_compare25(Just(xuu5000), Nothing, False, h), LT), h, ba) 26.72/10.93 new_addToFM_C20(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, False, h, ba) -> new_addToFM_C11(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs8(new_compare25(Just(xuu5000), Nothing, False, h), GT), h, ba) 26.72/10.93 new_addToFM_C20(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, True, h, ba) -> new_addToFM_C(xuu3, xuu43, Just(xuu5000), xuu501, h, ba) 26.72/10.93 new_addToFM_C(xuu3, Branch(Just(xuu400), xuu41, xuu42, xuu43, xuu44), Just(xuu5000), xuu501, h, ba) -> new_addToFM_C21(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs8(new_compare25(Just(xuu5000), Just(xuu400), new_esEs29(xuu5000, xuu400, h), h), LT), h, ba) 26.72/10.93 new_addToFM_C21(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, bb, bc) -> new_addToFM_C12(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs8(new_compare25(Just(xuu22), Just(xuu17), new_esEs30(xuu22, xuu17, bb), bb), GT), bb, bc) 26.72/10.93 new_addToFM_C12(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu16, xuu21, Just(xuu22), xuu23, bb, bc) 26.72/10.93 new_addToFM_C21(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu16, xuu20, Just(xuu22), xuu23, bb, bc) 26.72/10.93 26.72/10.93 The TRS R consists of the following rules: 26.72/10.93 26.72/10.93 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Int) -> new_ltEs13(xuu33000, xuu34000) 26.72/10.93 new_esEs11(xuu50000, xuu4000, ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.93 new_primCmpInt(Neg(Succ(xuu3300)), Pos(xuu340)) -> LT 26.72/10.93 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 26.72/10.93 new_ltEs4(Left(xuu33000), Left(xuu34000), app(ty_[], bgd), bfe) -> new_ltEs15(xuu33000, xuu34000, bgd) 26.72/10.93 new_primPlusNat0(Zero, Zero) -> Zero 26.72/10.93 new_lt6(xuu33000, xuu34000, app(app(ty_@2, bea), beb)) -> new_lt8(xuu33000, xuu34000, bea, beb) 26.72/10.93 new_compare8(xuu33000, xuu34000, ty_Ordering) -> new_compare16(xuu33000, xuu34000) 26.72/10.93 new_pePe(True, xuu161) -> True 26.72/10.93 new_primCmpNat0(xuu3300, Succ(xuu3400)) -> new_primCmpNat1(xuu3300, xuu3400) 26.72/10.93 new_esEs30(xuu22, xuu17, ty_Ordering) -> new_esEs8(xuu22, xuu17) 26.72/10.93 new_esEs24(xuu50001, xuu4001, ty_Int) -> new_esEs19(xuu50001, xuu4001) 26.72/10.93 new_esEs30(xuu22, xuu17, ty_Int) -> new_esEs19(xuu22, xuu17) 26.72/10.93 new_esEs21(xuu50001, xuu4001, app(ty_Ratio, gh)) -> new_esEs18(xuu50001, xuu4001, gh) 26.72/10.93 new_esEs29(xuu5000, xuu400, ty_Char) -> new_esEs12(xuu5000, xuu400) 26.72/10.93 new_ltEs12(LT, LT) -> True 26.72/10.93 new_esEs10(xuu50001, xuu4001, app(app(app(ty_@3, cf), cg), da)) -> new_esEs6(xuu50001, xuu4001, cf, cg, da) 26.72/10.93 new_esEs30(xuu22, xuu17, app(app(ty_@2, chd), che)) -> new_esEs4(xuu22, xuu17, chd, che) 26.72/10.93 new_lt19(xuu33001, xuu34001, app(ty_[], dce)) -> new_lt14(xuu33001, xuu34001, dce) 26.72/10.93 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 26.72/10.93 new_esEs27(xuu33001, xuu34001, app(ty_[], dce)) -> new_esEs16(xuu33001, xuu34001, dce) 26.72/10.93 new_primCmpInt(Pos(Zero), Neg(Succ(xuu3400))) -> GT 26.72/10.93 new_esEs26(xuu50000, xuu4000, ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.93 new_esEs22(xuu50000, xuu4000, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.93 new_ltEs19(xuu3300, xuu3400, app(app(ty_@2, bcd), bce)) -> new_ltEs5(xuu3300, xuu3400, bcd, bce) 26.72/10.93 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(ty_[], bhg)) -> new_ltEs15(xuu33000, xuu34000, bhg) 26.72/10.93 new_lt7(xuu33000, xuu34000, bdh) -> new_esEs8(new_compare9(xuu33000, xuu34000, bdh), LT) 26.72/10.93 new_primMulNat0(Succ(xuu5000100), Succ(xuu400000)) -> new_primPlusNat1(new_primMulNat0(xuu5000100, Succ(xuu400000)), xuu400000) 26.72/10.93 new_compare8(xuu33000, xuu34000, app(ty_Ratio, bag)) -> new_compare9(xuu33000, xuu34000, bag) 26.72/10.93 new_esEs29(xuu5000, xuu400, ty_Float) -> new_esEs14(xuu5000, xuu400) 26.72/10.93 new_compare28(xuu33000, xuu34000, False, bea, beb) -> new_compare114(xuu33000, xuu34000, new_ltEs5(xuu33000, xuu34000, bea, beb), bea, beb) 26.72/10.93 new_esEs23(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) 26.72/10.93 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Double, beh) -> new_esEs13(xuu50000, xuu4000) 26.72/10.93 new_compare8(xuu33000, xuu34000, ty_Double) -> new_compare19(xuu33000, xuu34000) 26.72/10.93 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Double, bfe) -> new_ltEs17(xuu33000, xuu34000) 26.72/10.93 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.93 new_lt19(xuu33001, xuu34001, ty_Int) -> new_lt4(xuu33001, xuu34001) 26.72/10.93 new_lt19(xuu33001, xuu34001, app(app(ty_Either, dcf), dcg)) -> new_lt18(xuu33001, xuu34001, dcf, dcg) 26.72/10.93 new_primCmpNat1(Succ(xuu33000), Succ(xuu34000)) -> new_primCmpNat1(xuu33000, xuu34000) 26.72/10.93 new_ltEs19(xuu3300, xuu3400, ty_Char) -> new_ltEs11(xuu3300, xuu3400) 26.72/10.93 new_esEs28(xuu33000, xuu34000, app(app(ty_Either, ddh), dea)) -> new_esEs7(xuu33000, xuu34000, ddh, dea) 26.72/10.93 new_ltEs15(xuu3300, xuu3400, baf) -> new_fsEs(new_compare0(xuu3300, xuu3400, baf)) 26.72/10.93 new_esEs13(Double(xuu50000, xuu50001), Double(xuu4000, xuu4001)) -> new_esEs19(new_sr(xuu50000, xuu4001), new_sr(xuu50001, xuu4000)) 26.72/10.93 new_ltEs6(xuu33001, xuu34001, ty_@0) -> new_ltEs16(xuu33001, xuu34001) 26.72/10.93 new_compare26(xuu33000, xuu34000, True) -> EQ 26.72/10.93 new_esEs10(xuu50001, xuu4001, ty_Char) -> new_esEs12(xuu50001, xuu4001) 26.72/10.93 new_esEs8(GT, GT) -> True 26.72/10.93 new_primEqInt(Pos(Succ(xuu500000)), Pos(Zero)) -> False 26.72/10.93 new_primEqInt(Pos(Zero), Pos(Succ(xuu40000))) -> False 26.72/10.93 new_lt12(xuu33000, xuu34000) -> new_esEs8(new_compare16(xuu33000, xuu34000), LT) 26.72/10.93 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(app(app(ty_@3, ccc), ccd), cce)) -> new_esEs6(xuu50000, xuu4000, ccc, ccd, cce) 26.72/10.93 new_fsEs(xuu146) -> new_not(new_esEs8(xuu146, GT)) 26.72/10.93 new_esEs29(xuu5000, xuu400, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs6(xuu5000, xuu400, ed, ee, ef) 26.72/10.93 new_compare25(Just(xuu3300), Just(xuu3400), False, cfd) -> new_compare10(xuu3300, xuu3400, new_ltEs19(xuu3300, xuu3400, cfd), cfd) 26.72/10.93 new_ltEs19(xuu3300, xuu3400, ty_Bool) -> new_ltEs14(xuu3300, xuu3400) 26.72/10.93 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.93 new_esEs20(xuu50002, xuu4002, ty_Int) -> new_esEs19(xuu50002, xuu4002) 26.72/10.93 new_esEs8(EQ, EQ) -> True 26.72/10.93 new_ltEs20(xuu33002, xuu34002, ty_Char) -> new_ltEs11(xuu33002, xuu34002) 26.72/10.93 new_primEqNat0(Succ(xuu500000), Succ(xuu40000)) -> new_primEqNat0(xuu500000, xuu40000) 26.72/10.93 new_esEs30(xuu22, xuu17, ty_Char) -> new_esEs12(xuu22, xuu17) 26.72/10.93 new_esEs27(xuu33001, xuu34001, ty_Integer) -> new_esEs15(xuu33001, xuu34001) 26.72/10.93 new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare6(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 26.72/10.93 new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare6(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 26.72/10.93 new_ltEs20(xuu33002, xuu34002, ty_Integer) -> new_ltEs10(xuu33002, xuu34002) 26.72/10.93 new_esEs21(xuu50001, xuu4001, ty_Double) -> new_esEs13(xuu50001, xuu4001) 26.72/10.93 new_esEs10(xuu50001, xuu4001, ty_Float) -> new_esEs14(xuu50001, xuu4001) 26.72/10.93 new_esEs22(xuu50000, xuu4000, ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.93 new_not(True) -> False 26.72/10.93 new_lt20(xuu33000, xuu34000, app(ty_Ratio, dch)) -> new_lt7(xuu33000, xuu34000, dch) 26.72/10.93 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(app(ty_@2, bha), bhb)) -> new_ltEs5(xuu33000, xuu34000, bha, bhb) 26.72/10.93 new_ltEs12(LT, GT) -> True 26.72/10.93 new_lt14(xuu33000, xuu34000, bef) -> new_esEs8(new_compare0(xuu33000, xuu34000, bef), LT) 26.72/10.93 new_lt19(xuu33001, xuu34001, app(ty_Ratio, dbf)) -> new_lt7(xuu33001, xuu34001, dbf) 26.72/10.93 new_primCompAux00(xuu178, LT) -> LT 26.72/10.93 new_esEs10(xuu50001, xuu4001, app(ty_Ratio, ce)) -> new_esEs18(xuu50001, xuu4001, ce) 26.72/10.93 new_esEs21(xuu50001, xuu4001, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs6(xuu50001, xuu4001, ha, hb, hc) 26.72/10.93 new_esEs27(xuu33001, xuu34001, ty_Bool) -> new_esEs17(xuu33001, xuu34001) 26.72/10.93 new_esEs30(xuu22, xuu17, ty_Float) -> new_esEs14(xuu22, xuu17) 26.72/10.93 new_esEs20(xuu50002, xuu4002, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs6(xuu50002, xuu4002, fg, fh, ga) 26.72/10.93 new_esEs26(xuu50000, xuu4000, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.93 new_esEs20(xuu50002, xuu4002, app(app(ty_Either, eg), eh)) -> new_esEs7(xuu50002, xuu4002, eg, eh) 26.72/10.93 new_compare8(xuu33000, xuu34000, ty_Float) -> new_compare7(xuu33000, xuu34000) 26.72/10.93 new_ltEs19(xuu3300, xuu3400, ty_Integer) -> new_ltEs10(xuu3300, xuu3400) 26.72/10.93 new_esEs10(xuu50001, xuu4001, ty_Ordering) -> new_esEs8(xuu50001, xuu4001) 26.72/10.93 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Integer, beh) -> new_esEs15(xuu50000, xuu4000) 26.72/10.93 new_ltEs19(xuu3300, xuu3400, ty_Double) -> new_ltEs17(xuu3300, xuu3400) 26.72/10.93 new_esEs11(xuu50000, xuu4000, app(ty_Ratio, dh)) -> new_esEs18(xuu50000, xuu4000, dh) 26.72/10.93 new_primEqNat0(Succ(xuu500000), Zero) -> False 26.72/10.93 new_primEqNat0(Zero, Succ(xuu40000)) -> False 26.72/10.93 new_compare112(xuu33000, xuu34000, False) -> GT 26.72/10.93 new_ltEs20(xuu33002, xuu34002, app(ty_Maybe, dag)) -> new_ltEs8(xuu33002, xuu34002, dag) 26.72/10.93 new_esEs29(xuu5000, xuu400, ty_Int) -> new_esEs19(xuu5000, xuu400) 26.72/10.93 new_lt20(xuu33000, xuu34000, app(ty_[], ddg)) -> new_lt14(xuu33000, xuu34000, ddg) 26.72/10.93 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_ltEs9(xuu33000, xuu34000, bhd, bhe, bhf) 26.72/10.93 new_ltEs20(xuu33002, xuu34002, ty_Bool) -> new_ltEs14(xuu33002, xuu34002) 26.72/10.93 new_primCompAux00(xuu178, GT) -> GT 26.72/10.93 new_compare7(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare6(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 26.72/10.93 new_compare7(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare6(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 26.72/10.93 new_ltEs6(xuu33001, xuu34001, app(ty_Maybe, bda)) -> new_ltEs8(xuu33001, xuu34001, bda) 26.72/10.93 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.93 new_esEs5(Just(xuu50000), Just(xuu4000), app(ty_Ratio, cdd)) -> new_esEs18(xuu50000, xuu4000, cdd) 26.72/10.93 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Bool) -> new_ltEs14(xuu33000, xuu34000) 26.72/10.93 new_primCmpNat2(Zero, xuu3300) -> LT 26.72/10.93 new_esEs20(xuu50002, xuu4002, ty_Ordering) -> new_esEs8(xuu50002, xuu4002) 26.72/10.93 new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(ty_@2, cec), ced)) -> new_ltEs5(xuu33000, xuu34000, cec, ced) 26.72/10.93 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Integer, bfe) -> new_ltEs10(xuu33000, xuu34000) 26.72/10.93 new_primCmpInt(Pos(Succ(xuu3300)), Neg(xuu340)) -> GT 26.72/10.93 new_ltEs20(xuu33002, xuu34002, app(app(ty_@2, dae), daf)) -> new_ltEs5(xuu33002, xuu34002, dae, daf) 26.72/10.93 new_esEs20(xuu50002, xuu4002, app(app(ty_@2, fa), fb)) -> new_esEs4(xuu50002, xuu4002, fa, fb) 26.72/10.93 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_@0, bfe) -> new_ltEs16(xuu33000, xuu34000) 26.72/10.93 new_ltEs6(xuu33001, xuu34001, app(ty_Ratio, bcf)) -> new_ltEs7(xuu33001, xuu34001, bcf) 26.72/10.93 new_compare110(xuu33000, xuu34000, True, bca, bcb) -> LT 26.72/10.93 new_ltEs6(xuu33001, xuu34001, ty_Double) -> new_ltEs17(xuu33001, xuu34001) 26.72/10.93 new_esEs19(xuu5000, xuu400) -> new_primEqInt(xuu5000, xuu400) 26.72/10.93 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Bool, beh) -> new_esEs17(xuu50000, xuu4000) 26.72/10.93 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Char, bfe) -> new_ltEs11(xuu33000, xuu34000) 26.72/10.93 new_esEs22(xuu50000, xuu4000, app(ty_Ratio, bab)) -> new_esEs18(xuu50000, xuu4000, bab) 26.72/10.93 new_esEs7(Left(xuu50000), Left(xuu4000), app(app(app(ty_@3, cba), cbb), cbc), beh) -> new_esEs6(xuu50000, xuu4000, cba, cbb, cbc) 26.72/10.93 new_esEs26(xuu50000, xuu4000, ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.93 new_ltEs20(xuu33002, xuu34002, ty_Double) -> new_ltEs17(xuu33002, xuu34002) 26.72/10.93 new_esEs28(xuu33000, xuu34000, ty_Char) -> new_esEs12(xuu33000, xuu34000) 26.72/10.93 new_esEs28(xuu33000, xuu34000, app(ty_[], ddg)) -> new_esEs16(xuu33000, xuu34000, ddg) 26.72/10.93 new_esEs7(Left(xuu50000), Left(xuu4000), ty_@0, beh) -> new_esEs9(xuu50000, xuu4000) 26.72/10.93 new_primCompAux0(xuu33000, xuu34000, xuu172, baf) -> new_primCompAux00(xuu172, new_compare8(xuu33000, xuu34000, baf)) 26.72/10.93 new_ltEs6(xuu33001, xuu34001, app(ty_[], bde)) -> new_ltEs15(xuu33001, xuu34001, bde) 26.72/10.93 new_pePe(False, xuu161) -> xuu161 26.72/10.93 new_lt8(xuu33000, xuu34000, bea, beb) -> new_esEs8(new_compare11(xuu33000, xuu34000, bea, beb), LT) 26.72/10.93 new_esEs27(xuu33001, xuu34001, ty_Double) -> new_esEs13(xuu33001, xuu34001) 26.72/10.93 new_compare7(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare6(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 26.72/10.93 new_lt20(xuu33000, xuu34000, ty_Float) -> new_lt17(xuu33000, xuu34000) 26.72/10.93 new_ltEs12(GT, GT) -> True 26.72/10.93 new_lt9(xuu33000, xuu34000, bcc) -> new_esEs8(new_compare12(xuu33000, xuu34000, bcc), LT) 26.72/10.93 new_esEs11(xuu50000, xuu4000, ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.93 new_esEs7(Left(xuu50000), Left(xuu4000), app(app(ty_@2, cad), cae), beh) -> new_esEs4(xuu50000, xuu4000, cad, cae) 26.72/10.93 new_lt17(xuu33000, xuu34000) -> new_esEs8(new_compare7(xuu33000, xuu34000), LT) 26.72/10.93 new_esEs6(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), ed, ee, ef) -> new_asAs(new_esEs22(xuu50000, xuu4000, ed), new_asAs(new_esEs21(xuu50001, xuu4001, ee), new_esEs20(xuu50002, xuu4002, ef))) 26.72/10.93 new_esEs10(xuu50001, xuu4001, app(app(ty_Either, bg), bh)) -> new_esEs7(xuu50001, xuu4001, bg, bh) 26.72/10.93 new_compare114(xuu33000, xuu34000, True, bea, beb) -> LT 26.72/10.93 new_ltEs12(GT, EQ) -> False 26.72/10.93 new_ltEs6(xuu33001, xuu34001, app(app(ty_@2, bcg), bch)) -> new_ltEs5(xuu33001, xuu34001, bcg, bch) 26.72/10.93 new_compare8(xuu33000, xuu34000, ty_Int) -> new_compare6(xuu33000, xuu34000) 26.72/10.93 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(ty_Ratio, bgh)) -> new_ltEs7(xuu33000, xuu34000, bgh) 26.72/10.93 new_esEs26(xuu50000, xuu4000, ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.93 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.93 new_compare26(xuu33000, xuu34000, False) -> new_compare111(xuu33000, xuu34000, new_ltEs12(xuu33000, xuu34000)) 26.72/10.93 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Char) -> new_ltEs11(xuu33000, xuu34000) 26.72/10.93 new_compare10(xuu129, xuu130, False, bd) -> GT 26.72/10.93 new_lt20(xuu33000, xuu34000, ty_Integer) -> new_lt11(xuu33000, xuu34000) 26.72/10.93 new_lt20(xuu33000, xuu34000, app(ty_Maybe, ddc)) -> new_lt9(xuu33000, xuu34000, ddc) 26.72/10.93 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(ty_Ratio, ccb)) -> new_esEs18(xuu50000, xuu4000, ccb) 26.72/10.93 new_esEs8(LT, EQ) -> False 26.72/10.93 new_esEs8(EQ, LT) -> False 26.72/10.93 new_esEs21(xuu50001, xuu4001, app(app(ty_@2, gd), ge)) -> new_esEs4(xuu50001, xuu4001, gd, ge) 26.72/10.93 new_compare29(xuu33000, xuu34000, False, bec, bed, bee) -> new_compare113(xuu33000, xuu34000, new_ltEs9(xuu33000, xuu34000, bec, bed, bee), bec, bed, bee) 26.72/10.93 new_lt19(xuu33001, xuu34001, app(ty_Maybe, dca)) -> new_lt9(xuu33001, xuu34001, dca) 26.72/10.93 new_primEqInt(Pos(Zero), Neg(Succ(xuu40000))) -> False 26.72/10.93 new_primEqInt(Neg(Zero), Pos(Succ(xuu40000))) -> False 26.72/10.93 new_lt19(xuu33001, xuu34001, ty_Ordering) -> new_lt12(xuu33001, xuu34001) 26.72/10.93 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Integer) -> new_ltEs10(xuu33000, xuu34000) 26.72/10.93 new_esEs11(xuu50000, xuu4000, app(ty_Maybe, df)) -> new_esEs5(xuu50000, xuu4000, df) 26.72/10.93 new_esEs21(xuu50001, xuu4001, ty_Ordering) -> new_esEs8(xuu50001, xuu4001) 26.72/10.93 new_esEs18(:%(xuu50000, xuu50001), :%(xuu4000, xuu4001), bfc) -> new_asAs(new_esEs25(xuu50000, xuu4000, bfc), new_esEs24(xuu50001, xuu4001, bfc)) 26.72/10.93 new_esEs5(Just(xuu50000), Just(xuu4000), app(app(app(ty_@3, cde), cdf), cdg)) -> new_esEs6(xuu50000, xuu4000, cde, cdf, cdg) 26.72/10.93 new_ltEs14(True, True) -> True 26.72/10.93 new_esEs25(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.93 new_esEs21(xuu50001, xuu4001, ty_Float) -> new_esEs14(xuu50001, xuu4001) 26.72/10.93 new_esEs21(xuu50001, xuu4001, app(ty_Maybe, gf)) -> new_esEs5(xuu50001, xuu4001, gf) 26.72/10.93 new_esEs23(xuu33000, xuu34000, app(app(ty_Either, bca), bcb)) -> new_esEs7(xuu33000, xuu34000, bca, bcb) 26.72/10.93 new_esEs26(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.93 new_esEs5(Nothing, Nothing, bfa) -> True 26.72/10.93 new_esEs26(xuu50000, xuu4000, app(ty_[], cge)) -> new_esEs16(xuu50000, xuu4000, cge) 26.72/10.93 new_primEqInt(Neg(Succ(xuu500000)), Neg(Succ(xuu40000))) -> new_primEqNat0(xuu500000, xuu40000) 26.72/10.93 new_esEs5(Nothing, Just(xuu4000), bfa) -> False 26.72/10.93 new_esEs5(Just(xuu50000), Nothing, bfa) -> False 26.72/10.93 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Float, bfe) -> new_ltEs18(xuu33000, xuu34000) 26.72/10.93 new_primCmpInt(Neg(Zero), Pos(Succ(xuu3400))) -> LT 26.72/10.93 new_lt19(xuu33001, xuu34001, ty_Bool) -> new_lt13(xuu33001, xuu34001) 26.72/10.93 new_compare114(xuu33000, xuu34000, False, bea, beb) -> GT 26.72/10.93 new_ltEs20(xuu33002, xuu34002, ty_@0) -> new_ltEs16(xuu33002, xuu34002) 26.72/10.93 new_primMulInt(Pos(xuu500010), Pos(xuu40000)) -> Pos(new_primMulNat0(xuu500010, xuu40000)) 26.72/10.93 new_lt6(xuu33000, xuu34000, app(app(app(ty_@3, bec), bed), bee)) -> new_lt10(xuu33000, xuu34000, bec, bed, bee) 26.72/10.93 new_compare8(xuu33000, xuu34000, ty_Integer) -> new_compare14(xuu33000, xuu34000) 26.72/10.93 new_lt20(xuu33000, xuu34000, app(app(ty_@2, dda), ddb)) -> new_lt8(xuu33000, xuu34000, dda, ddb) 26.72/10.93 new_esEs7(Left(xuu50000), Left(xuu4000), app(app(ty_Either, cab), cac), beh) -> new_esEs7(xuu50000, xuu4000, cab, cac) 26.72/10.93 new_compare25(Just(xuu3300), Nothing, False, cfd) -> GT 26.72/10.93 new_esEs28(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) 26.72/10.93 new_compare10(xuu129, xuu130, True, bd) -> LT 26.72/10.93 new_lt19(xuu33001, xuu34001, ty_Float) -> new_lt17(xuu33001, xuu34001) 26.72/10.93 new_compare24(xuu33000, xuu34000, False, bca, bcb) -> new_compare110(xuu33000, xuu34000, new_ltEs4(xuu33000, xuu34000, bca, bcb), bca, bcb) 26.72/10.93 new_ltEs19(xuu3300, xuu3400, app(ty_Maybe, cea)) -> new_ltEs8(xuu3300, xuu3400, cea) 26.72/10.93 new_esEs10(xuu50001, xuu4001, app(app(ty_@2, ca), cb)) -> new_esEs4(xuu50001, xuu4001, ca, cb) 26.72/10.93 new_primMulNat0(Succ(xuu5000100), Zero) -> Zero 26.72/10.93 new_primMulNat0(Zero, Succ(xuu400000)) -> Zero 26.72/10.93 new_esEs29(xuu5000, xuu400, ty_Double) -> new_esEs13(xuu5000, xuu400) 26.72/10.93 new_lt19(xuu33001, xuu34001, ty_Integer) -> new_lt11(xuu33001, xuu34001) 26.72/10.93 new_ltEs6(xuu33001, xuu34001, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_ltEs9(xuu33001, xuu34001, bdb, bdc, bdd) 26.72/10.93 new_lt20(xuu33000, xuu34000, ty_Bool) -> new_lt13(xuu33000, xuu34000) 26.72/10.93 new_esEs23(xuu33000, xuu34000, app(ty_Maybe, bcc)) -> new_esEs5(xuu33000, xuu34000, bcc) 26.72/10.93 new_compare9(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Int) -> new_compare6(new_sr(xuu33000, xuu34001), new_sr(xuu34000, xuu33001)) 26.72/10.93 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Bool) -> new_ltEs14(xuu33000, xuu34000) 26.72/10.93 new_ltEs17(xuu3300, xuu3400) -> new_fsEs(new_compare19(xuu3300, xuu3400)) 26.72/10.93 new_esEs28(xuu33000, xuu34000, ty_Int) -> new_esEs19(xuu33000, xuu34000) 26.72/10.93 new_primPlusNat0(Succ(xuu28200), Zero) -> Succ(xuu28200) 26.72/10.93 new_primPlusNat0(Zero, Succ(xuu9600)) -> Succ(xuu9600) 26.72/10.93 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Int, bfe) -> new_ltEs13(xuu33000, xuu34000) 26.72/10.93 new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare6(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 26.72/10.93 new_ltEs10(xuu3300, xuu3400) -> new_fsEs(new_compare14(xuu3300, xuu3400)) 26.72/10.93 new_esEs26(xuu50000, xuu4000, app(ty_Ratio, cgf)) -> new_esEs18(xuu50000, xuu4000, cgf) 26.72/10.93 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) 26.72/10.93 new_esEs11(xuu50000, xuu4000, app(app(ty_@2, dd), de)) -> new_esEs4(xuu50000, xuu4000, dd, de) 26.72/10.93 new_ltEs4(Left(xuu33000), Left(xuu34000), app(ty_Maybe, bfh), bfe) -> new_ltEs8(xuu33000, xuu34000, bfh) 26.72/10.93 new_compare8(xuu33000, xuu34000, app(app(ty_@2, bah), bba)) -> new_compare11(xuu33000, xuu34000, bah, bba) 26.72/10.93 new_esEs8(LT, LT) -> True 26.72/10.93 new_compare111(xuu33000, xuu34000, True) -> LT 26.72/10.93 new_lt6(xuu33000, xuu34000, ty_Integer) -> new_lt11(xuu33000, xuu34000) 26.72/10.93 new_lt20(xuu33000, xuu34000, ty_Int) -> new_lt4(xuu33000, xuu34000) 26.72/10.93 new_lt6(xuu33000, xuu34000, ty_Ordering) -> new_lt12(xuu33000, xuu34000) 26.72/10.93 new_lt19(xuu33001, xuu34001, app(app(ty_@2, dbg), dbh)) -> new_lt8(xuu33001, xuu34001, dbg, dbh) 26.72/10.93 new_lt15(xuu33000, xuu34000) -> new_esEs8(new_compare18(xuu33000, xuu34000), LT) 26.72/10.93 new_ltEs19(xuu3300, xuu3400, app(app(app(ty_@3, cfe), cff), cfg)) -> new_ltEs9(xuu3300, xuu3400, cfe, cff, cfg) 26.72/10.93 new_esEs22(xuu50000, xuu4000, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs6(xuu50000, xuu4000, bac, bad, bae) 26.72/10.93 new_lt13(xuu33000, xuu34000) -> new_esEs8(new_compare17(xuu33000, xuu34000), LT) 26.72/10.93 new_ltEs4(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, bga), bgb), bgc), bfe) -> new_ltEs9(xuu33000, xuu34000, bga, bgb, bgc) 26.72/10.93 new_esEs28(xuu33000, xuu34000, ty_Bool) -> new_esEs17(xuu33000, xuu34000) 26.72/10.93 new_lt6(xuu33000, xuu34000, app(ty_[], bef)) -> new_lt14(xuu33000, xuu34000, bef) 26.72/10.93 new_ltEs11(xuu3300, xuu3400) -> new_fsEs(new_compare15(xuu3300, xuu3400)) 26.72/10.93 new_lt5(xuu33000, xuu34000) -> new_esEs8(new_compare15(xuu33000, xuu34000), LT) 26.72/10.93 new_ltEs9(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), cfe, cff, cfg) -> new_pePe(new_lt20(xuu33000, xuu34000, cfe), new_asAs(new_esEs28(xuu33000, xuu34000, cfe), new_pePe(new_lt19(xuu33001, xuu34001, cff), new_asAs(new_esEs27(xuu33001, xuu34001, cff), new_ltEs20(xuu33002, xuu34002, cfg))))) 26.72/10.93 new_esEs11(xuu50000, xuu4000, ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.93 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Char, beh) -> new_esEs12(xuu50000, xuu4000) 26.72/10.93 new_esEs27(xuu33001, xuu34001, ty_@0) -> new_esEs9(xuu33001, xuu34001) 26.72/10.93 new_esEs23(xuu33000, xuu34000, app(app(app(ty_@3, bec), bed), bee)) -> new_esEs6(xuu33000, xuu34000, bec, bed, bee) 26.72/10.93 new_esEs16([], [], bfb) -> True 26.72/10.93 new_esEs29(xuu5000, xuu400, ty_Bool) -> new_esEs17(xuu5000, xuu400) 26.72/10.93 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Float) -> new_ltEs18(xuu33000, xuu34000) 26.72/10.93 new_primMulInt(Neg(xuu500010), Neg(xuu40000)) -> Pos(new_primMulNat0(xuu500010, xuu40000)) 26.72/10.93 new_compare25(xuu330, xuu340, True, cfd) -> EQ 26.72/10.93 new_esEs10(xuu50001, xuu4001, app(ty_Maybe, cc)) -> new_esEs5(xuu50001, xuu4001, cc) 26.72/10.93 new_lt20(xuu33000, xuu34000, ty_Ordering) -> new_lt12(xuu33000, xuu34000) 26.72/10.93 new_compare8(xuu33000, xuu34000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_compare13(xuu33000, xuu34000, bbc, bbd, bbe) 26.72/10.93 new_lt16(xuu33000, xuu34000) -> new_esEs8(new_compare19(xuu33000, xuu34000), LT) 26.72/10.93 new_esEs28(xuu33000, xuu34000, ty_Integer) -> new_esEs15(xuu33000, xuu34000) 26.72/10.93 new_esEs22(xuu50000, xuu4000, app(ty_Maybe, hh)) -> new_esEs5(xuu50000, xuu4000, hh) 26.72/10.93 new_ltEs18(xuu3300, xuu3400) -> new_fsEs(new_compare7(xuu3300, xuu3400)) 26.72/10.93 new_esEs27(xuu33001, xuu34001, ty_Int) -> new_esEs19(xuu33001, xuu34001) 26.72/10.93 new_lt19(xuu33001, xuu34001, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_lt10(xuu33001, xuu34001, dcb, dcc, dcd) 26.72/10.93 new_lt6(xuu33000, xuu34000, app(ty_Ratio, bdh)) -> new_lt7(xuu33000, xuu34000, bdh) 26.72/10.93 new_lt6(xuu33000, xuu34000, ty_Bool) -> new_lt13(xuu33000, xuu34000) 26.72/10.93 new_compare13(xuu33000, xuu34000, bec, bed, bee) -> new_compare29(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, bec, bed, bee), bec, bed, bee) 26.72/10.93 new_esEs20(xuu50002, xuu4002, ty_Float) -> new_esEs14(xuu50002, xuu4002) 26.72/10.93 new_esEs5(Just(xuu50000), Just(xuu4000), app(ty_Maybe, cdb)) -> new_esEs5(xuu50000, xuu4000, cdb) 26.72/10.93 new_esEs23(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) 26.72/10.93 new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(ty_Either, cfb), cfc)) -> new_ltEs4(xuu33000, xuu34000, cfb, cfc) 26.72/10.93 new_compare6(xuu33, xuu34) -> new_primCmpInt(xuu33, xuu34) 26.72/10.93 new_esEs11(xuu50000, xuu4000, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs6(xuu50000, xuu4000, ea, eb, ec) 26.72/10.93 new_esEs23(xuu33000, xuu34000, app(app(ty_@2, bea), beb)) -> new_esEs4(xuu33000, xuu34000, bea, beb) 26.72/10.93 new_compare112(xuu33000, xuu34000, True) -> LT 26.72/10.93 new_lt20(xuu33000, xuu34000, app(app(app(ty_@3, ddd), dde), ddf)) -> new_lt10(xuu33000, xuu34000, ddd, dde, ddf) 26.72/10.93 new_ltEs20(xuu33002, xuu34002, app(app(app(ty_@3, dah), dba), dbb)) -> new_ltEs9(xuu33002, xuu34002, dah, dba, dbb) 26.72/10.93 new_primMulInt(Pos(xuu500010), Neg(xuu40000)) -> Neg(new_primMulNat0(xuu500010, xuu40000)) 26.72/10.93 new_primMulInt(Neg(xuu500010), Pos(xuu40000)) -> Neg(new_primMulNat0(xuu500010, xuu40000)) 26.72/10.93 new_esEs12(Char(xuu50000), Char(xuu4000)) -> new_primEqNat0(xuu50000, xuu4000) 26.72/10.93 new_esEs26(xuu50000, xuu4000, app(app(ty_Either, cfh), cga)) -> new_esEs7(xuu50000, xuu4000, cfh, cga) 26.72/10.93 new_esEs20(xuu50002, xuu4002, ty_Integer) -> new_esEs15(xuu50002, xuu4002) 26.72/10.93 new_esEs22(xuu50000, xuu4000, ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.93 new_esEs28(xuu33000, xuu34000, ty_Double) -> new_esEs13(xuu33000, xuu34000) 26.72/10.93 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.93 new_compare15(Char(xuu33000), Char(xuu34000)) -> new_primCmpNat1(xuu33000, xuu34000) 26.72/10.93 new_compare17(xuu33000, xuu34000) -> new_compare27(xuu33000, xuu34000, new_esEs17(xuu33000, xuu34000)) 26.72/10.93 new_primCmpInt(Pos(Succ(xuu3300)), Pos(xuu340)) -> new_primCmpNat0(xuu3300, xuu340) 26.72/10.93 new_esEs22(xuu50000, xuu4000, app(app(ty_@2, hf), hg)) -> new_esEs4(xuu50000, xuu4000, hf, hg) 26.72/10.93 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(app(ty_Either, bhh), caa)) -> new_ltEs4(xuu33000, xuu34000, bhh, caa) 26.72/10.93 new_ltEs13(xuu3300, xuu3400) -> new_fsEs(new_compare6(xuu3300, xuu3400)) 26.72/10.93 new_primCmpNat1(Succ(xuu33000), Zero) -> GT 26.72/10.93 new_esEs30(xuu22, xuu17, ty_Bool) -> new_esEs17(xuu22, xuu17) 26.72/10.93 new_esEs27(xuu33001, xuu34001, ty_Char) -> new_esEs12(xuu33001, xuu34001) 26.72/10.93 new_compare8(xuu33000, xuu34000, app(ty_Maybe, bbb)) -> new_compare12(xuu33000, xuu34000, bbb) 26.72/10.93 new_ltEs6(xuu33001, xuu34001, ty_Int) -> new_ltEs13(xuu33001, xuu34001) 26.72/10.93 new_ltEs19(xuu3300, xuu3400, ty_Ordering) -> new_ltEs12(xuu3300, xuu3400) 26.72/10.93 new_lt6(xuu33000, xuu34000, ty_Int) -> new_lt4(xuu33000, xuu34000) 26.72/10.93 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(app(ty_@2, cbf), cbg)) -> new_esEs4(xuu50000, xuu4000, cbf, cbg) 26.72/10.93 new_sr0(Integer(xuu330000), Integer(xuu340010)) -> Integer(new_primMulInt(xuu330000, xuu340010)) 26.72/10.93 new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_Ratio, ceb)) -> new_ltEs7(xuu33000, xuu34000, ceb) 26.72/10.93 new_esEs29(xuu5000, xuu400, app(ty_Maybe, bfa)) -> new_esEs5(xuu5000, xuu400, bfa) 26.72/10.93 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(ty_Maybe, cbh)) -> new_esEs5(xuu50000, xuu4000, cbh) 26.72/10.93 new_esEs27(xuu33001, xuu34001, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_esEs6(xuu33001, xuu34001, dcb, dcc, dcd) 26.72/10.93 new_esEs20(xuu50002, xuu4002, ty_Bool) -> new_esEs17(xuu50002, xuu4002) 26.72/10.93 new_ltEs20(xuu33002, xuu34002, app(app(ty_Either, dbd), dbe)) -> new_ltEs4(xuu33002, xuu34002, dbd, dbe) 26.72/10.93 new_esEs7(Left(xuu50000), Left(xuu4000), app(ty_[], cag), beh) -> new_esEs16(xuu50000, xuu4000, cag) 26.72/10.93 new_esEs5(Just(xuu50000), Just(xuu4000), app(app(ty_Either, ccf), ccg)) -> new_esEs7(xuu50000, xuu4000, ccf, ccg) 26.72/10.93 new_primCmpNat0(xuu3300, Zero) -> GT 26.72/10.93 new_esEs29(xuu5000, xuu400, ty_Integer) -> new_esEs15(xuu5000, xuu400) 26.72/10.93 new_compare8(xuu33000, xuu34000, app(ty_[], bbf)) -> new_compare0(xuu33000, xuu34000, bbf) 26.72/10.93 new_lt20(xuu33000, xuu34000, ty_Double) -> new_lt16(xuu33000, xuu34000) 26.72/10.93 new_esEs30(xuu22, xuu17, ty_Integer) -> new_esEs15(xuu22, xuu17) 26.72/10.93 new_ltEs19(xuu3300, xuu3400, app(ty_[], baf)) -> new_ltEs15(xuu3300, xuu3400, baf) 26.72/10.93 new_esEs15(Integer(xuu50000), Integer(xuu4000)) -> new_primEqInt(xuu50000, xuu4000) 26.72/10.93 new_compare0([], :(xuu34000, xuu34001), baf) -> LT 26.72/10.93 new_asAs(True, xuu136) -> xuu136 26.72/10.93 new_compare113(xuu33000, xuu34000, True, bec, bed, bee) -> LT 26.72/10.93 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_@0) -> new_ltEs16(xuu33000, xuu34000) 26.72/10.93 new_compare9(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Integer) -> new_compare14(new_sr0(xuu33000, xuu34001), new_sr0(xuu34000, xuu33001)) 26.72/10.93 new_ltEs5(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), bcd, bce) -> new_pePe(new_lt6(xuu33000, xuu34000, bcd), new_asAs(new_esEs23(xuu33000, xuu34000, bcd), new_ltEs6(xuu33001, xuu34001, bce))) 26.72/10.93 new_esEs17(False, True) -> False 26.72/10.93 new_esEs17(True, False) -> False 26.72/10.93 new_esEs10(xuu50001, xuu4001, app(ty_[], cd)) -> new_esEs16(xuu50001, xuu4001, cd) 26.72/10.93 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Int, beh) -> new_esEs19(xuu50000, xuu4000) 26.72/10.93 new_esEs23(xuu33000, xuu34000, app(ty_Ratio, bdh)) -> new_esEs18(xuu33000, xuu34000, bdh) 26.72/10.93 new_ltEs16(xuu3300, xuu3400) -> new_fsEs(new_compare18(xuu3300, xuu3400)) 26.72/10.93 new_lt19(xuu33001, xuu34001, ty_Double) -> new_lt16(xuu33001, xuu34001) 26.72/10.93 new_esEs26(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.93 new_esEs20(xuu50002, xuu4002, app(ty_Maybe, fc)) -> new_esEs5(xuu50002, xuu4002, fc) 26.72/10.93 new_esEs5(Just(xuu50000), Just(xuu4000), app(app(ty_@2, cch), cda)) -> new_esEs4(xuu50000, xuu4000, cch, cda) 26.72/10.93 new_compare11(xuu33000, xuu34000, bea, beb) -> new_compare28(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, bea, beb), bea, beb) 26.72/10.93 new_esEs27(xuu33001, xuu34001, ty_Float) -> new_esEs14(xuu33001, xuu34001) 26.72/10.93 new_esEs10(xuu50001, xuu4001, ty_Integer) -> new_esEs15(xuu50001, xuu4001) 26.72/10.93 new_esEs24(xuu50001, xuu4001, ty_Integer) -> new_esEs15(xuu50001, xuu4001) 26.72/10.93 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.93 new_esEs29(xuu5000, xuu400, app(ty_[], bfb)) -> new_esEs16(xuu5000, xuu400, bfb) 26.72/10.93 new_lt10(xuu33000, xuu34000, bec, bed, bee) -> new_esEs8(new_compare13(xuu33000, xuu34000, bec, bed, bee), LT) 26.72/10.93 new_lt6(xuu33000, xuu34000, ty_@0) -> new_lt15(xuu33000, xuu34000) 26.72/10.93 new_compare24(xuu33000, xuu34000, True, bca, bcb) -> EQ 26.72/10.93 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.93 new_primPlusNat1(xuu106, xuu400000) -> new_primPlusNat0(xuu106, Succ(xuu400000)) 26.72/10.93 new_esEs9(@0, @0) -> True 26.72/10.93 new_ltEs20(xuu33002, xuu34002, app(ty_[], dbc)) -> new_ltEs15(xuu33002, xuu34002, dbc) 26.72/10.93 new_esEs7(Left(xuu50000), Left(xuu4000), app(ty_Maybe, caf), beh) -> new_esEs5(xuu50000, xuu4000, caf) 26.72/10.93 new_primCompAux00(xuu178, EQ) -> xuu178 26.72/10.93 new_esEs11(xuu50000, xuu4000, app(app(ty_Either, db), dc)) -> new_esEs7(xuu50000, xuu4000, db, dc) 26.72/10.93 new_compare0([], [], baf) -> EQ 26.72/10.93 new_sr(xuu50001, xuu4000) -> new_primMulInt(xuu50001, xuu4000) 26.72/10.93 new_esEs25(xuu50000, xuu4000, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.93 new_esEs10(xuu50001, xuu4001, ty_Bool) -> new_esEs17(xuu50001, xuu4001) 26.72/10.93 new_esEs21(xuu50001, xuu4001, app(app(ty_Either, gb), gc)) -> new_esEs7(xuu50001, xuu4001, gb, gc) 26.72/10.93 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Integer) -> new_ltEs10(xuu33000, xuu34000) 26.72/10.93 new_primMulNat0(Zero, Zero) -> Zero 26.72/10.93 new_lt18(xuu33000, xuu34000, bca, bcb) -> new_esEs8(new_compare23(xuu33000, xuu34000, bca, bcb), LT) 26.72/10.93 new_ltEs20(xuu33002, xuu34002, ty_Ordering) -> new_ltEs12(xuu33002, xuu34002) 26.72/10.93 new_esEs23(xuu33000, xuu34000, ty_Float) -> new_esEs14(xuu33000, xuu34000) 26.72/10.93 new_lt6(xuu33000, xuu34000, ty_Char) -> new_lt5(xuu33000, xuu34000) 26.72/10.93 new_lt6(xuu33000, xuu34000, app(ty_Maybe, bcc)) -> new_lt9(xuu33000, xuu34000, bcc) 26.72/10.93 new_primCmpInt(Neg(Succ(xuu3300)), Neg(xuu340)) -> new_primCmpNat2(xuu340, xuu3300) 26.72/10.93 new_esEs30(xuu22, xuu17, ty_Double) -> new_esEs13(xuu22, xuu17) 26.72/10.93 new_esEs27(xuu33001, xuu34001, ty_Ordering) -> new_esEs8(xuu33001, xuu34001) 26.72/10.93 new_esEs30(xuu22, xuu17, app(ty_[], chg)) -> new_esEs16(xuu22, xuu17, chg) 26.72/10.93 new_esEs23(xuu33000, xuu34000, ty_Char) -> new_esEs12(xuu33000, xuu34000) 26.72/10.93 new_ltEs19(xuu3300, xuu3400, app(ty_Ratio, cdh)) -> new_ltEs7(xuu3300, xuu3400, cdh) 26.72/10.93 new_primCmpInt(Neg(Zero), Neg(Succ(xuu3400))) -> new_primCmpNat0(xuu3400, Zero) 26.72/10.93 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.93 new_esEs30(xuu22, xuu17, app(ty_Maybe, chf)) -> new_esEs5(xuu22, xuu17, chf) 26.72/10.93 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_@0) -> new_ltEs16(xuu33000, xuu34000) 26.72/10.93 new_compare111(xuu33000, xuu34000, False) -> GT 26.72/10.93 new_primCmpNat1(Zero, Zero) -> EQ 26.72/10.93 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.93 new_compare12(xuu33000, xuu34000, bcc) -> new_compare25(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, bcc), bcc) 26.72/10.93 new_esEs22(xuu50000, xuu4000, app(app(ty_Either, hd), he)) -> new_esEs7(xuu50000, xuu4000, hd, he) 26.72/10.93 new_ltEs6(xuu33001, xuu34001, ty_Bool) -> new_ltEs14(xuu33001, xuu34001) 26.72/10.93 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.93 new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare6(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 26.72/10.93 new_esEs22(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.93 new_esEs22(xuu50000, xuu4000, ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.93 new_esEs27(xuu33001, xuu34001, app(ty_Ratio, dbf)) -> new_esEs18(xuu33001, xuu34001, dbf) 26.72/10.93 new_esEs4(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), be, bf) -> new_asAs(new_esEs11(xuu50000, xuu4000, be), new_esEs10(xuu50001, xuu4001, bf)) 26.72/10.93 new_compare8(xuu33000, xuu34000, ty_Char) -> new_compare15(xuu33000, xuu34000) 26.72/10.93 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Double) -> new_ltEs17(xuu33000, xuu34000) 26.72/10.93 new_esEs28(xuu33000, xuu34000, app(ty_Ratio, dch)) -> new_esEs18(xuu33000, xuu34000, dch) 26.72/10.93 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.93 new_esEs16(:(xuu50000, xuu50001), :(xuu4000, xuu4001), bfb) -> new_asAs(new_esEs26(xuu50000, xuu4000, bfb), new_esEs16(xuu50001, xuu4001, bfb)) 26.72/10.93 new_ltEs14(False, True) -> True 26.72/10.93 new_ltEs19(xuu3300, xuu3400, ty_@0) -> new_ltEs16(xuu3300, xuu3400) 26.72/10.93 new_ltEs12(GT, LT) -> False 26.72/10.93 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Char) -> new_ltEs11(xuu33000, xuu34000) 26.72/10.93 new_compare29(xuu33000, xuu34000, True, bec, bed, bee) -> EQ 26.72/10.93 new_compare8(xuu33000, xuu34000, ty_Bool) -> new_compare17(xuu33000, xuu34000) 26.72/10.93 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Ordering, beh) -> new_esEs8(xuu50000, xuu4000) 26.72/10.93 new_compare7(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare6(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 26.72/10.93 new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_Maybe, cee)) -> new_ltEs8(xuu33000, xuu34000, cee) 26.72/10.93 new_esEs30(xuu22, xuu17, ty_@0) -> new_esEs9(xuu22, xuu17) 26.72/10.93 new_primEqInt(Neg(Succ(xuu500000)), Neg(Zero)) -> False 26.72/10.93 new_primEqInt(Neg(Zero), Neg(Succ(xuu40000))) -> False 26.72/10.93 new_ltEs8(Nothing, Just(xuu34000), cea) -> True 26.72/10.93 new_primEqInt(Pos(Succ(xuu500000)), Pos(Succ(xuu40000))) -> new_primEqNat0(xuu500000, xuu40000) 26.72/10.93 new_esEs20(xuu50002, xuu4002, ty_Double) -> new_esEs13(xuu50002, xuu4002) 26.72/10.93 new_esEs20(xuu50002, xuu4002, app(ty_[], fd)) -> new_esEs16(xuu50002, xuu4002, fd) 26.72/10.93 new_esEs26(xuu50000, xuu4000, app(app(ty_@2, cgb), cgc)) -> new_esEs4(xuu50000, xuu4000, cgb, cgc) 26.72/10.93 new_ltEs4(Left(xuu33000), Left(xuu34000), app(app(ty_Either, bge), bgf), bfe) -> new_ltEs4(xuu33000, xuu34000, bge, bgf) 26.72/10.93 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(ty_[], cca)) -> new_esEs16(xuu50000, xuu4000, cca) 26.72/10.93 new_esEs14(Float(xuu50000, xuu50001), Float(xuu4000, xuu4001)) -> new_esEs19(new_sr(xuu50000, xuu4001), new_sr(xuu50001, xuu4000)) 26.72/10.93 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(app(ty_Either, cbd), cbe)) -> new_esEs7(xuu50000, xuu4000, cbd, cbe) 26.72/10.93 new_esEs26(xuu50000, xuu4000, ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.93 new_primEqInt(Pos(Succ(xuu500000)), Neg(xuu4000)) -> False 26.72/10.93 new_primEqInt(Neg(Succ(xuu500000)), Pos(xuu4000)) -> False 26.72/10.93 new_ltEs20(xuu33002, xuu34002, app(ty_Ratio, dad)) -> new_ltEs7(xuu33002, xuu34002, dad) 26.72/10.93 new_esEs11(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.93 new_lt6(xuu33000, xuu34000, ty_Float) -> new_lt17(xuu33000, xuu34000) 26.72/10.93 new_esEs29(xuu5000, xuu400, ty_@0) -> new_esEs9(xuu5000, xuu400) 26.72/10.93 new_lt4(xuu330, xuu340) -> new_esEs8(new_compare6(xuu330, xuu340), LT) 26.72/10.93 new_ltEs12(EQ, GT) -> True 26.72/10.93 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 26.72/10.93 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Ordering, bfe) -> new_ltEs12(xuu33000, xuu34000) 26.72/10.93 new_esEs28(xuu33000, xuu34000, ty_Float) -> new_esEs14(xuu33000, xuu34000) 26.72/10.93 new_esEs28(xuu33000, xuu34000, app(ty_Maybe, ddc)) -> new_esEs5(xuu33000, xuu34000, ddc) 26.72/10.93 new_esEs17(True, True) -> True 26.72/10.93 new_ltEs12(EQ, EQ) -> True 26.72/10.93 new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, cef), ceg), ceh)) -> new_ltEs9(xuu33000, xuu34000, cef, ceg, ceh) 26.72/10.93 new_primCmpInt(Pos(Zero), Pos(Succ(xuu3400))) -> new_primCmpNat2(Zero, xuu3400) 26.72/10.93 new_esEs21(xuu50001, xuu4001, ty_Integer) -> new_esEs15(xuu50001, xuu4001) 26.72/10.93 new_ltEs20(xuu33002, xuu34002, ty_Int) -> new_ltEs13(xuu33002, xuu34002) 26.72/10.93 new_esEs26(xuu50000, xuu4000, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs6(xuu50000, xuu4000, cgg, cgh, cha) 26.72/10.93 new_esEs10(xuu50001, xuu4001, ty_Double) -> new_esEs13(xuu50001, xuu4001) 26.72/10.93 new_lt11(xuu33000, xuu34000) -> new_esEs8(new_compare14(xuu33000, xuu34000), LT) 26.72/10.93 new_esEs21(xuu50001, xuu4001, ty_Bool) -> new_esEs17(xuu50001, xuu4001) 26.72/10.93 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) 26.72/10.93 new_esEs23(xuu33000, xuu34000, ty_Bool) -> new_esEs17(xuu33000, xuu34000) 26.72/10.93 new_not(False) -> True 26.72/10.93 new_compare27(xuu33000, xuu34000, False) -> new_compare112(xuu33000, xuu34000, new_ltEs14(xuu33000, xuu34000)) 26.72/10.93 new_esEs30(xuu22, xuu17, app(ty_Ratio, chh)) -> new_esEs18(xuu22, xuu17, chh) 26.72/10.93 new_esEs5(Just(xuu50000), Just(xuu4000), ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.93 new_esEs27(xuu33001, xuu34001, app(app(ty_Either, dcf), dcg)) -> new_esEs7(xuu33001, xuu34001, dcf, dcg) 26.72/10.93 new_compare0(:(xuu33000, xuu33001), [], baf) -> GT 26.72/10.93 new_esEs8(LT, GT) -> False 26.72/10.93 new_esEs8(GT, LT) -> False 26.72/10.93 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Bool, bfe) -> new_ltEs14(xuu33000, xuu34000) 26.72/10.93 new_primPlusNat0(Succ(xuu28200), Succ(xuu9600)) -> Succ(Succ(new_primPlusNat0(xuu28200, xuu9600))) 26.72/10.93 new_esEs20(xuu50002, xuu4002, app(ty_Ratio, ff)) -> new_esEs18(xuu50002, xuu4002, ff) 26.72/10.93 new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_[], cfa)) -> new_ltEs15(xuu33000, xuu34000, cfa) 26.72/10.93 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Double) -> new_ltEs17(xuu33000, xuu34000) 26.72/10.93 new_esEs7(Left(xuu50000), Left(xuu4000), app(ty_Ratio, cah), beh) -> new_esEs18(xuu50000, xuu4000, cah) 26.72/10.93 new_esEs11(xuu50000, xuu4000, ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.93 new_esEs21(xuu50001, xuu4001, ty_Char) -> new_esEs12(xuu50001, xuu4001) 26.72/10.93 new_compare8(xuu33000, xuu34000, app(app(ty_Either, bbg), bbh)) -> new_compare23(xuu33000, xuu34000, bbg, bbh) 26.72/10.93 new_esEs29(xuu5000, xuu400, app(ty_Ratio, bfc)) -> new_esEs18(xuu5000, xuu400, bfc) 26.72/10.93 new_ltEs4(Left(xuu33000), Right(xuu34000), bgg, bfe) -> True 26.72/10.93 new_esEs30(xuu22, xuu17, app(app(app(ty_@3, daa), dab), dac)) -> new_esEs6(xuu22, xuu17, daa, dab, dac) 26.72/10.93 new_ltEs6(xuu33001, xuu34001, ty_Integer) -> new_ltEs10(xuu33001, xuu34001) 26.72/10.93 new_esEs26(xuu50000, xuu4000, app(ty_Maybe, cgd)) -> new_esEs5(xuu50000, xuu4000, cgd) 26.72/10.93 new_primCmpNat1(Zero, Succ(xuu34000)) -> LT 26.72/10.93 new_esEs22(xuu50000, xuu4000, ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.93 new_compare25(Nothing, Nothing, False, cfd) -> LT 26.72/10.93 new_lt20(xuu33000, xuu34000, app(app(ty_Either, ddh), dea)) -> new_lt18(xuu33000, xuu34000, ddh, dea) 26.72/10.93 new_ltEs7(xuu3300, xuu3400, cdh) -> new_fsEs(new_compare9(xuu3300, xuu3400, cdh)) 26.72/10.93 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 26.72/10.93 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 26.72/10.93 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.93 new_compare0(:(xuu33000, xuu33001), :(xuu34000, xuu34001), baf) -> new_primCompAux0(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, baf), baf) 26.72/10.93 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Float) -> new_ltEs18(xuu33000, xuu34000) 26.72/10.93 new_ltEs6(xuu33001, xuu34001, ty_Ordering) -> new_ltEs12(xuu33001, xuu34001) 26.72/10.93 new_ltEs4(Left(xuu33000), Left(xuu34000), app(ty_Ratio, bfd), bfe) -> new_ltEs7(xuu33000, xuu34000, bfd) 26.72/10.93 new_esEs23(xuu33000, xuu34000, ty_Int) -> new_esEs19(xuu33000, xuu34000) 26.72/10.93 new_esEs27(xuu33001, xuu34001, app(app(ty_@2, dbg), dbh)) -> new_esEs4(xuu33001, xuu34001, dbg, dbh) 26.72/10.93 new_esEs21(xuu50001, xuu4001, app(ty_[], gg)) -> new_esEs16(xuu50001, xuu4001, gg) 26.72/10.93 new_ltEs6(xuu33001, xuu34001, ty_Char) -> new_ltEs11(xuu33001, xuu34001) 26.72/10.93 new_ltEs4(Left(xuu33000), Left(xuu34000), app(app(ty_@2, bff), bfg), bfe) -> new_ltEs5(xuu33000, xuu34000, bff, bfg) 26.72/10.93 new_esEs20(xuu50002, xuu4002, ty_@0) -> new_esEs9(xuu50002, xuu4002) 26.72/10.93 new_ltEs19(xuu3300, xuu3400, app(app(ty_Either, bgg), bfe)) -> new_ltEs4(xuu3300, xuu3400, bgg, bfe) 26.72/10.93 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 26.72/10.93 new_esEs17(False, False) -> True 26.72/10.93 new_esEs28(xuu33000, xuu34000, app(app(ty_@2, dda), ddb)) -> new_esEs4(xuu33000, xuu34000, dda, ddb) 26.72/10.93 new_esEs22(xuu50000, xuu4000, ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.93 new_ltEs12(EQ, LT) -> False 26.72/10.93 new_ltEs14(False, False) -> True 26.72/10.93 new_ltEs6(xuu33001, xuu34001, ty_Float) -> new_ltEs18(xuu33001, xuu34001) 26.72/10.93 new_ltEs8(Nothing, Nothing, cea) -> True 26.72/10.93 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.93 new_ltEs8(Just(xuu33000), Nothing, cea) -> False 26.72/10.93 new_esEs11(xuu50000, xuu4000, ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.93 new_lt6(xuu33000, xuu34000, ty_Double) -> new_lt16(xuu33000, xuu34000) 26.72/10.93 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.93 new_ltEs19(xuu3300, xuu3400, ty_Int) -> new_ltEs13(xuu3300, xuu3400) 26.72/10.93 new_esEs28(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) 26.72/10.93 new_esEs11(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.93 new_ltEs19(xuu3300, xuu3400, ty_Float) -> new_ltEs18(xuu3300, xuu3400) 26.72/10.93 new_esEs16(:(xuu50000, xuu50001), [], bfb) -> False 26.72/10.93 new_esEs16([], :(xuu4000, xuu4001), bfb) -> False 26.72/10.93 new_esEs5(Just(xuu50000), Just(xuu4000), app(ty_[], cdc)) -> new_esEs16(xuu50000, xuu4000, cdc) 26.72/10.93 new_esEs23(xuu33000, xuu34000, app(ty_[], bef)) -> new_esEs16(xuu33000, xuu34000, bef) 26.72/10.93 new_ltEs6(xuu33001, xuu34001, app(app(ty_Either, bdf), bdg)) -> new_ltEs4(xuu33001, xuu34001, bdf, bdg) 26.72/10.93 new_primCmpNat2(Succ(xuu3400), xuu3300) -> new_primCmpNat1(xuu3400, xuu3300) 26.72/10.93 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 26.72/10.93 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 26.72/10.93 new_esEs23(xuu33000, xuu34000, ty_Double) -> new_esEs13(xuu33000, xuu34000) 26.72/10.93 new_ltEs12(LT, EQ) -> True 26.72/10.93 new_compare25(Nothing, Just(xuu3400), False, cfd) -> LT 26.72/10.93 new_esEs29(xuu5000, xuu400, app(app(ty_@2, be), bf)) -> new_esEs4(xuu5000, xuu400, be, bf) 26.72/10.93 new_compare110(xuu33000, xuu34000, False, bca, bcb) -> GT 26.72/10.93 new_esEs21(xuu50001, xuu4001, ty_Int) -> new_esEs19(xuu50001, xuu4001) 26.72/10.93 new_lt19(xuu33001, xuu34001, ty_@0) -> new_lt15(xuu33001, xuu34001) 26.72/10.93 new_esEs11(xuu50000, xuu4000, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.93 new_esEs23(xuu33000, xuu34000, ty_Integer) -> new_esEs15(xuu33000, xuu34000) 26.72/10.93 new_lt20(xuu33000, xuu34000, ty_Char) -> new_lt5(xuu33000, xuu34000) 26.72/10.93 new_primEqNat0(Zero, Zero) -> True 26.72/10.93 new_compare8(xuu33000, xuu34000, ty_@0) -> new_compare18(xuu33000, xuu34000) 26.72/10.93 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.93 new_ltEs20(xuu33002, xuu34002, ty_Float) -> new_ltEs18(xuu33002, xuu34002) 26.72/10.93 new_esEs28(xuu33000, xuu34000, app(app(app(ty_@3, ddd), dde), ddf)) -> new_esEs6(xuu33000, xuu34000, ddd, dde, ddf) 26.72/10.93 new_esEs30(xuu22, xuu17, app(app(ty_Either, chb), chc)) -> new_esEs7(xuu22, xuu17, chb, chc) 26.72/10.93 new_esEs10(xuu50001, xuu4001, ty_@0) -> new_esEs9(xuu50001, xuu4001) 26.72/10.93 new_esEs29(xuu5000, xuu400, ty_Ordering) -> new_esEs8(xuu5000, xuu400) 26.72/10.93 new_compare23(xuu33000, xuu34000, bca, bcb) -> new_compare24(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, bca, bcb), bca, bcb) 26.72/10.93 new_ltEs14(True, False) -> False 26.72/10.93 new_esEs26(xuu50000, xuu4000, ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.93 new_compare113(xuu33000, xuu34000, False, bec, bed, bee) -> GT 26.72/10.93 new_esEs22(xuu50000, xuu4000, app(ty_[], baa)) -> new_esEs16(xuu50000, xuu4000, baa) 26.72/10.93 new_esEs22(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.93 new_asAs(False, xuu136) -> False 26.72/10.93 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Float, beh) -> new_esEs14(xuu50000, xuu4000) 26.72/10.93 new_esEs20(xuu50002, xuu4002, ty_Char) -> new_esEs12(xuu50002, xuu4002) 26.72/10.93 new_esEs29(xuu5000, xuu400, app(app(ty_Either, beg), beh)) -> new_esEs7(xuu5000, xuu400, beg, beh) 26.72/10.93 new_esEs27(xuu33001, xuu34001, app(ty_Maybe, dca)) -> new_esEs5(xuu33001, xuu34001, dca) 26.72/10.93 new_lt19(xuu33001, xuu34001, ty_Char) -> new_lt5(xuu33001, xuu34001) 26.72/10.93 new_compare28(xuu33000, xuu34000, True, bea, beb) -> EQ 26.72/10.93 new_lt20(xuu33000, xuu34000, ty_@0) -> new_lt15(xuu33000, xuu34000) 26.72/10.93 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Int) -> new_ltEs13(xuu33000, xuu34000) 26.72/10.93 new_esEs8(EQ, GT) -> False 26.72/10.93 new_esEs8(GT, EQ) -> False 26.72/10.93 new_ltEs4(Right(xuu33000), Left(xuu34000), bgg, bfe) -> False 26.72/10.93 new_esEs10(xuu50001, xuu4001, ty_Int) -> new_esEs19(xuu50001, xuu4001) 26.72/10.93 new_compare27(xuu33000, xuu34000, True) -> EQ 26.72/10.93 new_esEs7(Left(xuu50000), Right(xuu4000), beg, beh) -> False 26.72/10.93 new_esEs7(Right(xuu50000), Left(xuu4000), beg, beh) -> False 26.72/10.93 new_compare18(@0, @0) -> EQ 26.72/10.93 new_esEs11(xuu50000, xuu4000, app(ty_[], dg)) -> new_esEs16(xuu50000, xuu4000, dg) 26.72/10.93 new_compare14(Integer(xuu33000), Integer(xuu34000)) -> new_primCmpInt(xuu33000, xuu34000) 26.72/10.93 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(ty_Maybe, bhc)) -> new_ltEs8(xuu33000, xuu34000, bhc) 26.72/10.93 new_lt6(xuu33000, xuu34000, app(app(ty_Either, bca), bcb)) -> new_lt18(xuu33000, xuu34000, bca, bcb) 26.72/10.93 new_esEs21(xuu50001, xuu4001, ty_@0) -> new_esEs9(xuu50001, xuu4001) 26.72/10.93 new_compare16(xuu33000, xuu34000) -> new_compare26(xuu33000, xuu34000, new_esEs8(xuu33000, xuu34000)) 26.72/10.93 26.72/10.93 The set Q consists of the following terms: 26.72/10.93 26.72/10.93 new_esEs7(Right(x0), Right(x1), x2, ty_Integer) 26.72/10.93 new_ltEs8(Just(x0), Just(x1), ty_Bool) 26.72/10.93 new_esEs8(EQ, EQ) 26.72/10.93 new_esEs21(x0, x1, ty_Integer) 26.72/10.93 new_lt6(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.93 new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.72/10.93 new_esEs29(x0, x1, ty_Double) 26.72/10.93 new_esEs22(x0, x1, ty_@0) 26.72/10.93 new_compare0(:(x0, x1), [], x2) 26.72/10.93 new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) 26.72/10.93 new_esEs7(Left(x0), Left(x1), ty_Double, x2) 26.72/10.93 new_compare26(x0, x1, False) 26.72/10.93 new_esEs27(x0, x1, ty_Double) 26.72/10.93 new_esEs29(x0, x1, ty_Ordering) 26.72/10.93 new_compare8(x0, x1, ty_Double) 26.72/10.93 new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) 26.72/10.93 new_lt20(x0, x1, ty_Integer) 26.72/10.93 new_ltEs11(x0, x1) 26.72/10.93 new_esEs30(x0, x1, ty_Bool) 26.72/10.93 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 26.72/10.93 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 26.72/10.93 new_esEs22(x0, x1, ty_Bool) 26.72/10.93 new_esEs30(x0, x1, app(ty_Ratio, x2)) 26.72/10.93 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 26.72/10.93 new_lt6(x0, x1, app(ty_[], x2)) 26.72/10.93 new_esEs26(x0, x1, app(ty_Ratio, x2)) 26.72/10.93 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 26.72/10.93 new_compare12(x0, x1, x2) 26.72/10.93 new_ltEs8(Just(x0), Just(x1), ty_@0) 26.72/10.93 new_esEs26(x0, x1, ty_@0) 26.72/10.93 new_lt6(x0, x1, ty_Bool) 26.72/10.93 new_lt19(x0, x1, ty_@0) 26.72/10.93 new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.93 new_lt6(x0, x1, ty_@0) 26.72/10.93 new_primCmpNat1(Zero, Zero) 26.72/10.93 new_ltEs13(x0, x1) 26.72/10.93 new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.93 new_primCompAux00(x0, EQ) 26.72/10.93 new_compare8(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.93 new_compare28(x0, x1, True, x2, x3) 26.72/10.93 new_lt5(x0, x1) 26.72/10.93 new_esEs23(x0, x1, ty_Float) 26.72/10.93 new_esEs29(x0, x1, ty_Int) 26.72/10.93 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.93 new_esEs7(Left(x0), Left(x1), ty_Int, x2) 26.72/10.93 new_primEqInt(Pos(Zero), Pos(Zero)) 26.72/10.93 new_compare15(Char(x0), Char(x1)) 26.72/10.93 new_lt13(x0, x1) 26.72/10.93 new_compare6(x0, x1) 26.72/10.93 new_primCmpNat2(Zero, x0) 26.72/10.93 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.93 new_ltEs6(x0, x1, ty_Ordering) 26.72/10.93 new_esEs17(False, False) 26.72/10.93 new_lt9(x0, x1, x2) 26.72/10.93 new_esEs27(x0, x1, ty_Ordering) 26.72/10.93 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 26.72/10.93 new_esEs11(x0, x1, ty_Float) 26.72/10.93 new_primEqNat0(Zero, Succ(x0)) 26.72/10.93 new_primEqInt(Neg(Zero), Neg(Zero)) 26.72/10.93 new_esEs29(x0, x1, ty_Char) 26.72/10.93 new_esEs27(x0, x1, ty_Int) 26.72/10.93 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.93 new_lt19(x0, x1, ty_Int) 26.72/10.93 new_compare10(x0, x1, True, x2) 26.72/10.93 new_pePe(True, x0) 26.72/10.93 new_ltEs6(x0, x1, ty_Int) 26.72/10.93 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.93 new_esEs26(x0, x1, app(ty_Maybe, x2)) 26.72/10.93 new_lt6(x0, x1, ty_Integer) 26.72/10.93 new_esEs27(x0, x1, ty_Char) 26.72/10.93 new_esEs29(x0, x1, app(ty_Ratio, x2)) 26.72/10.93 new_compare113(x0, x1, True, x2, x3, x4) 26.72/10.93 new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.72/10.93 new_esEs20(x0, x1, ty_Integer) 26.72/10.93 new_esEs7(Right(x0), Right(x1), x2, ty_@0) 26.72/10.93 new_esEs7(Left(x0), Left(x1), ty_Char, x2) 26.72/10.93 new_ltEs12(GT, EQ) 26.72/10.93 new_ltEs12(EQ, GT) 26.72/10.93 new_esEs7(Right(x0), Right(x1), x2, ty_Float) 26.72/10.93 new_ltEs4(Right(x0), Right(x1), x2, ty_Ordering) 26.72/10.93 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.93 new_lt17(x0, x1) 26.72/10.93 new_esEs20(x0, x1, ty_Bool) 26.72/10.93 new_ltEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 26.72/10.93 new_compare112(x0, x1, True) 26.72/10.93 new_esEs26(x0, x1, ty_Int) 26.72/10.93 new_lt19(x0, x1, ty_Bool) 26.72/10.93 new_esEs30(x0, x1, ty_Integer) 26.72/10.93 new_lt6(x0, x1, app(ty_Ratio, x2)) 26.72/10.93 new_primMulInt(Pos(x0), Pos(x1)) 26.72/10.93 new_primEqInt(Pos(Zero), Neg(Zero)) 26.72/10.93 new_primEqInt(Neg(Zero), Pos(Zero)) 26.72/10.93 new_primMulNat0(Succ(x0), Succ(x1)) 26.72/10.93 new_ltEs6(x0, x1, ty_Double) 26.72/10.93 new_esEs10(x0, x1, app(ty_Maybe, x2)) 26.72/10.93 new_esEs18(:%(x0, x1), :%(x2, x3), x4) 26.72/10.93 new_esEs26(x0, x1, ty_Bool) 26.72/10.93 new_compare11(x0, x1, x2, x3) 26.72/10.93 new_esEs16([], :(x0, x1), x2) 26.72/10.93 new_esEs26(x0, x1, ty_Char) 26.72/10.93 new_ltEs6(x0, x1, ty_Char) 26.72/10.93 new_esEs26(x0, x1, ty_Double) 26.72/10.93 new_esEs20(x0, x1, app(ty_Maybe, x2)) 26.72/10.93 new_compare8(x0, x1, ty_Ordering) 26.72/10.93 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 26.72/10.93 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.72/10.93 new_compare110(x0, x1, False, x2, x3) 26.72/10.93 new_esEs22(x0, x1, app(ty_Maybe, x2)) 26.72/10.93 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 26.72/10.93 new_esEs5(Just(x0), Nothing, x1) 26.72/10.93 new_ltEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.72/10.93 new_ltEs19(x0, x1, app(ty_[], x2)) 26.72/10.93 new_esEs28(x0, x1, app(ty_Ratio, x2)) 26.72/10.93 new_lt19(x0, x1, ty_Char) 26.72/10.93 new_lt11(x0, x1) 26.72/10.93 new_ltEs8(Just(x0), Just(x1), ty_Integer) 26.72/10.93 new_lt19(x0, x1, ty_Double) 26.72/10.93 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.72/10.93 new_lt20(x0, x1, app(ty_Maybe, x2)) 26.72/10.93 new_compare13(x0, x1, x2, x3, x4) 26.72/10.93 new_sr(x0, x1) 26.72/10.93 new_fsEs(x0) 26.72/10.93 new_esEs28(x0, x1, ty_Ordering) 26.72/10.93 new_compare17(x0, x1) 26.72/10.93 new_compare8(x0, x1, ty_@0) 26.72/10.93 new_esEs30(x0, x1, ty_Ordering) 26.72/10.93 new_esEs7(Left(x0), Left(x1), ty_Bool, x2) 26.72/10.93 new_esEs27(x0, x1, ty_@0) 26.72/10.93 new_compare7(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 26.72/10.93 new_compare7(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 26.72/10.93 new_compare7(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 26.72/10.93 new_esEs9(@0, @0) 26.72/10.93 new_compare28(x0, x1, False, x2, x3) 26.72/10.93 new_compare25(x0, x1, True, x2) 26.72/10.93 new_ltEs8(Just(x0), Just(x1), ty_Double) 26.72/10.93 new_esEs22(x0, x1, ty_Float) 26.72/10.93 new_compare27(x0, x1, True) 26.72/10.93 new_ltEs4(Right(x0), Right(x1), x2, ty_Integer) 26.72/10.93 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.72/10.93 new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.72/10.93 new_esEs24(x0, x1, ty_Int) 26.72/10.93 new_esEs5(Just(x0), Just(x1), ty_Double) 26.72/10.93 new_esEs16(:(x0, x1), [], x2) 26.72/10.93 new_primCompAux00(x0, LT) 26.72/10.93 new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) 26.72/10.93 new_esEs29(x0, x1, ty_@0) 26.72/10.93 new_ltEs8(Just(x0), Just(x1), ty_Ordering) 26.72/10.93 new_esEs28(x0, x1, ty_Char) 26.72/10.93 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.93 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.93 new_esEs30(x0, x1, ty_Double) 26.72/10.93 new_compare26(x0, x1, True) 26.72/10.93 new_esEs11(x0, x1, app(ty_Maybe, x2)) 26.72/10.93 new_esEs15(Integer(x0), Integer(x1)) 26.72/10.93 new_lt19(x0, x1, app(ty_[], x2)) 26.72/10.93 new_esEs21(x0, x1, app(ty_Ratio, x2)) 26.72/10.93 new_ltEs15(x0, x1, x2) 26.72/10.93 new_esEs26(x0, x1, ty_Float) 26.72/10.93 new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.72/10.93 new_asAs(True, x0) 26.72/10.93 new_esEs16(:(x0, x1), :(x2, x3), x4) 26.72/10.93 new_lt8(x0, x1, x2, x3) 26.72/10.93 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.93 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.93 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.93 new_ltEs20(x0, x1, ty_Integer) 26.72/10.93 new_compare29(x0, x1, False, x2, x3, x4) 26.72/10.93 new_esEs22(x0, x1, app(ty_[], x2)) 26.72/10.93 new_esEs16([], [], x0) 26.72/10.93 new_ltEs20(x0, x1, ty_Float) 26.72/10.93 new_compare111(x0, x1, True) 26.72/10.93 new_esEs22(x0, x1, ty_Ordering) 26.72/10.93 new_compare110(x0, x1, True, x2, x3) 26.72/10.93 new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 26.72/10.93 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 26.72/10.93 new_compare0([], [], x0) 26.72/10.93 new_esEs7(Right(x0), Right(x1), x2, ty_Double) 26.72/10.93 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.93 new_ltEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.72/10.93 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.93 new_ltEs19(x0, x1, ty_Double) 26.72/10.93 new_esEs8(GT, GT) 26.72/10.93 new_esEs22(x0, x1, ty_Int) 26.72/10.93 new_esEs20(x0, x1, ty_Char) 26.72/10.93 new_ltEs12(EQ, LT) 26.72/10.93 new_ltEs12(LT, EQ) 26.72/10.93 new_compare0([], :(x0, x1), x2) 26.72/10.93 new_esEs8(LT, EQ) 26.72/10.93 new_esEs8(EQ, LT) 26.72/10.93 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.93 new_ltEs12(GT, GT) 26.72/10.93 new_esEs27(x0, x1, app(ty_Maybe, x2)) 26.72/10.93 new_primMulNat0(Succ(x0), Zero) 26.72/10.93 new_primCmpInt(Neg(Zero), Neg(Zero)) 26.72/10.93 new_esEs22(x0, x1, ty_Char) 26.72/10.93 new_esEs21(x0, x1, app(ty_[], x2)) 26.72/10.93 new_lt20(x0, x1, ty_@0) 26.72/10.93 new_esEs28(x0, x1, ty_Bool) 26.72/10.93 new_compare25(Nothing, Nothing, False, x0) 26.72/10.93 new_esEs19(x0, x1) 26.72/10.93 new_esEs11(x0, x1, ty_Double) 26.72/10.93 new_lt14(x0, x1, x2) 26.72/10.93 new_ltEs14(False, False) 26.72/10.93 new_esEs11(x0, x1, ty_@0) 26.72/10.93 new_esEs23(x0, x1, ty_Int) 26.72/10.93 new_compare10(x0, x1, False, x2) 26.72/10.93 new_ltEs6(x0, x1, app(ty_Ratio, x2)) 26.72/10.93 new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.72/10.93 new_lt19(x0, x1, ty_Integer) 26.72/10.93 new_esEs8(LT, LT) 26.72/10.93 new_esEs23(x0, x1, ty_Integer) 26.72/10.93 new_compare8(x0, x1, app(ty_Maybe, x2)) 26.72/10.93 new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 26.72/10.93 new_primCmpInt(Pos(Zero), Neg(Zero)) 26.72/10.93 new_primCmpInt(Neg(Zero), Pos(Zero)) 26.72/10.93 new_esEs30(x0, x1, app(ty_Maybe, x2)) 26.72/10.93 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.93 new_esEs28(x0, x1, ty_Float) 26.72/10.93 new_esEs20(x0, x1, ty_Int) 26.72/10.93 new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.72/10.93 new_esEs21(x0, x1, ty_@0) 26.72/10.93 new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.72/10.93 new_lt19(x0, x1, app(ty_Maybe, x2)) 26.72/10.93 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 26.72/10.93 new_esEs10(x0, x1, ty_Char) 26.72/10.93 new_ltEs4(Right(x0), Right(x1), x2, ty_Bool) 26.72/10.93 new_primEqNat0(Succ(x0), Zero) 26.72/10.93 new_lt15(x0, x1) 26.72/10.93 new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.93 new_ltEs20(x0, x1, ty_Int) 26.72/10.93 new_ltEs4(Right(x0), Right(x1), x2, ty_Float) 26.72/10.93 new_ltEs20(x0, x1, ty_Bool) 26.72/10.93 new_esEs22(x0, x1, ty_Integer) 26.72/10.93 new_esEs23(x0, x1, ty_Char) 26.72/10.93 new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.72/10.93 new_esEs29(x0, x1, app(ty_[], x2)) 26.72/10.93 new_esEs10(x0, x1, ty_Int) 26.72/10.93 new_esEs22(x0, x1, app(ty_Ratio, x2)) 26.72/10.93 new_ltEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.72/10.93 new_ltEs19(x0, x1, ty_@0) 26.72/10.93 new_esEs28(x0, x1, app(ty_[], x2)) 26.72/10.93 new_esEs28(x0, x1, ty_Int) 26.72/10.93 new_ltEs20(x0, x1, ty_Char) 26.72/10.93 new_compare114(x0, x1, False, x2, x3) 26.72/10.93 new_ltEs12(LT, LT) 26.72/10.93 new_esEs5(Nothing, Nothing, x0) 26.72/10.93 new_esEs20(x0, x1, ty_Float) 26.72/10.93 new_ltEs4(Left(x0), Left(x1), ty_Double, x2) 26.72/10.93 new_lt19(x0, x1, ty_Ordering) 26.72/10.93 new_esEs23(x0, x1, app(ty_Maybe, x2)) 26.72/10.93 new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) 26.72/10.93 new_ltEs4(Right(x0), Right(x1), x2, ty_Int) 26.72/10.93 new_esEs21(x0, x1, ty_Double) 26.72/10.93 new_esEs23(x0, x1, ty_Bool) 26.72/10.93 new_ltEs7(x0, x1, x2) 26.72/10.93 new_ltEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.72/10.93 new_ltEs17(x0, x1) 26.72/10.93 new_primCmpNat0(x0, Zero) 26.72/10.93 new_esEs10(x0, x1, ty_Float) 26.72/10.93 new_lt20(x0, x1, ty_Double) 26.72/10.93 new_esEs30(x0, x1, ty_@0) 26.72/10.93 new_ltEs4(Right(x0), Right(x1), x2, ty_Char) 26.72/10.93 new_compare113(x0, x1, False, x2, x3, x4) 26.72/10.93 new_compare25(Just(x0), Nothing, False, x1) 26.72/10.93 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.93 new_lt6(x0, x1, ty_Double) 26.72/10.93 new_esEs11(x0, x1, ty_Char) 26.72/10.93 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 26.72/10.93 new_compare27(x0, x1, False) 26.72/10.93 new_lt20(x0, x1, app(ty_Ratio, x2)) 26.72/10.93 new_ltEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.72/10.93 new_ltEs10(x0, x1) 26.72/10.93 new_esEs7(Left(x0), Left(x1), ty_Float, x2) 26.72/10.93 new_esEs29(x0, x1, ty_Float) 26.72/10.93 new_primCmpNat0(x0, Succ(x1)) 26.72/10.93 new_ltEs4(Left(x0), Left(x1), ty_Integer, x2) 26.72/10.93 new_esEs5(Just(x0), Just(x1), ty_@0) 26.72/10.93 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.72/10.93 new_esEs20(x0, x1, app(ty_Ratio, x2)) 26.72/10.93 new_primCmpNat1(Zero, Succ(x0)) 26.72/10.93 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.93 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.93 new_ltEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.72/10.93 new_esEs10(x0, x1, ty_@0) 26.72/10.93 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 26.72/10.93 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.93 new_compare24(x0, x1, False, x2, x3) 26.72/10.93 new_ltEs8(Nothing, Nothing, x0) 26.72/10.93 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.93 new_esEs24(x0, x1, ty_Integer) 26.72/10.93 new_primMulNat0(Zero, Zero) 26.72/10.93 new_ltEs4(Left(x0), Right(x1), x2, x3) 26.72/10.93 new_ltEs4(Right(x0), Left(x1), x2, x3) 26.72/10.93 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.93 new_primCmpNat2(Succ(x0), x1) 26.72/10.93 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.93 new_ltEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.72/10.93 new_compare8(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.93 new_esEs11(x0, x1, ty_Int) 26.72/10.93 new_esEs27(x0, x1, ty_Float) 26.72/10.93 new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.93 new_esEs10(x0, x1, app(ty_[], x2)) 26.72/10.93 new_lt12(x0, x1) 26.72/10.93 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.93 new_compare0(:(x0, x1), :(x2, x3), x4) 26.72/10.93 new_compare114(x0, x1, True, x2, x3) 26.72/10.93 new_esEs20(x0, x1, ty_Double) 26.72/10.93 new_esEs17(True, True) 26.72/10.93 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.93 new_ltEs6(x0, x1, ty_Float) 26.72/10.93 new_esEs23(x0, x1, ty_Double) 26.72/10.93 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 26.72/10.93 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 26.72/10.93 new_ltEs5(@2(x0, x1), @2(x2, x3), x4, x5) 26.72/10.93 new_ltEs19(x0, x1, ty_Int) 26.72/10.93 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 26.72/10.93 new_compare14(Integer(x0), Integer(x1)) 26.72/10.93 new_esEs7(Left(x0), Right(x1), x2, x3) 26.72/10.93 new_esEs7(Right(x0), Left(x1), x2, x3) 26.72/10.93 new_ltEs16(x0, x1) 26.72/10.93 new_compare8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.93 new_ltEs19(x0, x1, ty_Char) 26.72/10.93 new_primPlusNat0(Succ(x0), Succ(x1)) 26.72/10.93 new_lt16(x0, x1) 26.72/10.93 new_ltEs4(Left(x0), Left(x1), ty_@0, x2) 26.72/10.93 new_primEqNat0(Succ(x0), Succ(x1)) 26.72/10.93 new_esEs23(x0, x1, ty_Ordering) 26.72/10.93 new_esEs11(x0, x1, app(ty_Ratio, x2)) 26.72/10.93 new_esEs10(x0, x1, ty_Bool) 26.72/10.93 new_ltEs6(x0, x1, ty_Integer) 26.72/10.93 new_ltEs6(x0, x1, app(ty_Maybe, x2)) 26.72/10.93 new_esEs5(Just(x0), Just(x1), ty_Integer) 26.72/10.93 new_compare8(x0, x1, app(ty_[], x2)) 26.72/10.93 new_primPlusNat0(Zero, Zero) 26.72/10.93 new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.72/10.93 new_primCmpNat1(Succ(x0), Zero) 26.72/10.93 new_esEs10(x0, x1, ty_Integer) 26.72/10.93 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.93 new_pePe(False, x0) 26.72/10.93 new_ltEs14(True, True) 26.72/10.93 new_ltEs19(x0, x1, ty_Bool) 26.72/10.93 new_not(True) 26.72/10.93 new_esEs25(x0, x1, ty_Int) 26.72/10.93 new_ltEs20(x0, x1, app(ty_[], x2)) 26.72/10.93 new_esEs8(EQ, GT) 26.72/10.93 new_esEs8(GT, EQ) 26.72/10.93 new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.72/10.93 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.93 new_primMulNat0(Zero, Succ(x0)) 26.72/10.93 new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.72/10.93 new_esEs20(x0, x1, app(ty_[], x2)) 26.72/10.93 new_compare112(x0, x1, False) 26.72/10.93 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.93 new_lt20(x0, x1, ty_Ordering) 26.72/10.93 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.93 new_esEs11(x0, x1, ty_Ordering) 26.72/10.93 new_esEs20(x0, x1, ty_Ordering) 26.72/10.93 new_esEs29(x0, x1, ty_Integer) 26.72/10.93 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.72/10.93 new_esEs27(x0, x1, ty_Integer) 26.72/10.93 new_lt6(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.93 new_ltEs18(x0, x1) 26.72/10.93 new_ltEs20(x0, x1, ty_Ordering) 26.72/10.93 new_ltEs19(x0, x1, ty_Ordering) 26.72/10.93 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 26.72/10.93 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.93 new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.72/10.93 new_esEs17(False, True) 26.72/10.93 new_esEs17(True, False) 26.72/10.93 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.93 new_primPlusNat0(Succ(x0), Zero) 26.72/10.93 new_esEs28(x0, x1, ty_Integer) 26.72/10.93 new_esEs28(x0, x1, app(ty_Maybe, x2)) 26.72/10.93 new_ltEs19(x0, x1, ty_Integer) 26.72/10.93 new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.72/10.93 new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.72/10.93 new_ltEs12(EQ, EQ) 26.72/10.93 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.93 new_compare18(@0, @0) 26.72/10.93 new_esEs21(x0, x1, ty_Ordering) 26.72/10.93 new_esEs10(x0, x1, ty_Ordering) 26.72/10.93 new_esEs27(x0, x1, app(ty_[], x2)) 26.72/10.93 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.93 new_esEs13(Double(x0, x1), Double(x2, x3)) 26.72/10.93 new_esEs23(x0, x1, app(ty_Ratio, x2)) 26.72/10.93 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.93 new_lt7(x0, x1, x2) 26.72/10.93 new_compare8(x0, x1, ty_Integer) 26.72/10.93 new_lt10(x0, x1, x2, x3, x4) 26.72/10.93 new_primCmpInt(Pos(Zero), Pos(Zero)) 26.72/10.93 new_ltEs6(x0, x1, ty_Bool) 26.72/10.93 new_compare29(x0, x1, True, x2, x3, x4) 26.72/10.93 new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.72/10.93 new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) 26.72/10.93 new_ltEs4(Left(x0), Left(x1), ty_Int, x2) 26.72/10.93 new_compare8(x0, x1, app(ty_Ratio, x2)) 26.72/10.93 new_ltEs6(x0, x1, app(ty_[], x2)) 26.72/10.93 new_compare7(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 26.72/10.93 new_compare16(x0, x1) 26.72/10.93 new_ltEs8(Just(x0), Just(x1), ty_Float) 26.72/10.93 new_esEs22(x0, x1, ty_Double) 26.72/10.93 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.93 new_esEs23(x0, x1, app(ty_[], x2)) 26.72/10.93 new_esEs7(Right(x0), Right(x1), x2, ty_Int) 26.72/10.93 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.93 new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.72/10.93 new_esEs11(x0, x1, app(ty_[], x2)) 26.72/10.93 new_esEs30(x0, x1, ty_Float) 26.72/10.93 new_esEs27(x0, x1, ty_Bool) 26.72/10.93 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.93 new_ltEs4(Left(x0), Left(x1), ty_Char, x2) 26.72/10.93 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.93 new_esEs8(LT, GT) 26.72/10.93 new_esEs8(GT, LT) 26.72/10.93 new_primPlusNat1(x0, x1) 26.72/10.93 new_lt6(x0, x1, ty_Ordering) 26.72/10.93 new_esEs29(x0, x1, ty_Bool) 26.72/10.93 new_esEs12(Char(x0), Char(x1)) 26.72/10.93 new_esEs27(x0, x1, app(ty_Ratio, x2)) 26.72/10.93 new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) 26.72/10.93 new_lt18(x0, x1, x2, x3) 26.72/10.93 new_ltEs8(Just(x0), Just(x1), ty_Int) 26.72/10.93 new_lt19(x0, x1, ty_Float) 26.72/10.93 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.93 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 26.72/10.93 new_esEs5(Nothing, Just(x0), x1) 26.72/10.93 new_esEs20(x0, x1, ty_@0) 26.72/10.93 new_ltEs4(Left(x0), Left(x1), ty_Float, x2) 26.72/10.93 new_esEs26(x0, x1, ty_Ordering) 26.72/10.93 new_esEs7(Left(x0), Left(x1), ty_Integer, x2) 26.72/10.93 new_ltEs6(x0, x1, ty_@0) 26.72/10.93 new_ltEs4(Left(x0), Left(x1), ty_Ordering, x2) 26.72/10.93 new_esEs10(x0, x1, app(ty_Ratio, x2)) 26.72/10.93 new_esEs5(Just(x0), Just(x1), ty_Ordering) 26.72/10.93 new_esEs10(x0, x1, ty_Double) 26.72/10.93 new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.72/10.93 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 26.72/10.93 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 26.72/10.93 new_esEs29(x0, x1, app(ty_Maybe, x2)) 26.72/10.93 new_lt6(x0, x1, ty_Float) 26.72/10.93 new_compare8(x0, x1, ty_Bool) 26.72/10.93 new_esEs7(Right(x0), Right(x1), x2, ty_Char) 26.72/10.93 new_esEs26(x0, x1, app(ty_[], x2)) 26.72/10.93 new_compare24(x0, x1, True, x2, x3) 26.72/10.93 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.93 new_ltEs8(Just(x0), Nothing, x1) 26.72/10.93 new_esEs7(Left(x0), Left(x1), ty_@0, x2) 26.72/10.93 new_esEs11(x0, x1, ty_Integer) 26.72/10.93 new_primMulInt(Neg(x0), Neg(x1)) 26.72/10.93 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.93 new_esEs30(x0, x1, app(ty_[], x2)) 26.72/10.93 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.93 new_esEs23(x0, x1, ty_@0) 26.72/10.93 new_esEs26(x0, x1, ty_Integer) 26.72/10.93 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.93 new_esEs5(Just(x0), Just(x1), ty_Float) 26.72/10.93 new_compare23(x0, x1, x2, x3) 26.72/10.93 new_ltEs14(False, True) 26.72/10.93 new_ltEs14(True, False) 26.72/10.93 new_primPlusNat0(Zero, Succ(x0)) 26.72/10.93 new_primEqNat0(Zero, Zero) 26.72/10.93 new_compare8(x0, x1, ty_Char) 26.72/10.93 new_esEs25(x0, x1, ty_Integer) 26.72/10.93 new_primCompAux00(x0, GT) 26.72/10.93 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.93 new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) 26.72/10.93 new_lt20(x0, x1, app(ty_[], x2)) 26.72/10.93 new_ltEs4(Right(x0), Right(x1), x2, ty_@0) 26.72/10.93 new_not(False) 26.72/10.93 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 26.72/10.93 new_ltEs8(Just(x0), Just(x1), ty_Char) 26.72/10.93 new_esEs5(Just(x0), Just(x1), ty_Char) 26.72/10.93 new_esEs11(x0, x1, ty_Bool) 26.72/10.93 new_lt20(x0, x1, ty_Float) 26.72/10.93 new_ltEs19(x0, x1, ty_Float) 26.72/10.93 new_lt20(x0, x1, ty_Bool) 26.72/10.93 new_ltEs12(LT, GT) 26.72/10.93 new_ltEs12(GT, LT) 26.72/10.93 new_esEs30(x0, x1, ty_Char) 26.72/10.93 new_lt6(x0, x1, ty_Int) 26.72/10.93 new_compare8(x0, x1, ty_Int) 26.72/10.93 new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.72/10.93 new_esEs21(x0, x1, app(ty_Maybe, x2)) 26.72/10.93 new_sr0(Integer(x0), Integer(x1)) 26.72/10.93 new_lt6(x0, x1, app(ty_Maybe, x2)) 26.72/10.93 new_esEs21(x0, x1, ty_Bool) 26.72/10.93 new_esEs28(x0, x1, ty_Double) 26.72/10.93 new_esEs7(Right(x0), Right(x1), x2, ty_Bool) 26.72/10.93 new_esEs5(Just(x0), Just(x1), ty_Int) 26.72/10.93 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 26.72/10.93 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 26.72/10.93 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 26.72/10.93 new_esEs21(x0, x1, ty_Float) 26.72/10.93 new_compare25(Just(x0), Just(x1), False, x2) 26.72/10.93 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.93 new_ltEs20(x0, x1, ty_@0) 26.72/10.93 new_ltEs4(Left(x0), Left(x1), ty_Bool, x2) 26.72/10.93 new_lt19(x0, x1, app(ty_Ratio, x2)) 26.72/10.93 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.93 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.93 new_compare25(Nothing, Just(x0), False, x1) 26.72/10.93 new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.72/10.93 new_lt4(x0, x1) 26.72/10.93 new_asAs(False, x0) 26.72/10.93 new_esEs30(x0, x1, ty_Int) 26.72/10.93 new_primMulInt(Pos(x0), Neg(x1)) 26.72/10.93 new_primMulInt(Neg(x0), Pos(x1)) 26.72/10.93 new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.72/10.93 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 26.72/10.93 new_ltEs8(Nothing, Just(x0), x1) 26.72/10.93 new_esEs14(Float(x0, x1), Float(x2, x3)) 26.72/10.93 new_lt20(x0, x1, ty_Int) 26.72/10.93 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.72/10.93 new_primCmpNat1(Succ(x0), Succ(x1)) 26.72/10.93 new_esEs21(x0, x1, ty_Char) 26.72/10.93 new_compare111(x0, x1, False) 26.72/10.93 new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.72/10.93 new_ltEs4(Right(x0), Right(x1), x2, ty_Double) 26.72/10.93 new_esEs21(x0, x1, ty_Int) 26.72/10.93 new_lt6(x0, x1, ty_Char) 26.72/10.93 new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 26.72/10.93 new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 26.72/10.93 new_esEs5(Just(x0), Just(x1), ty_Bool) 26.72/10.93 new_compare8(x0, x1, ty_Float) 26.72/10.93 new_lt20(x0, x1, ty_Char) 26.72/10.93 new_ltEs20(x0, x1, ty_Double) 26.72/10.93 new_primCompAux0(x0, x1, x2, x3) 26.72/10.93 new_esEs28(x0, x1, ty_@0) 26.72/10.93 26.72/10.93 We have to consider all minimal (P,Q,R)-chains. 26.72/10.93 ---------------------------------------- 26.72/10.93 26.72/10.93 (33) TransformationProof (EQUIVALENT) 26.72/10.93 By rewriting [LPAR04] the rule new_addToFM_C(xuu3, Branch(Nothing, xuu41, xuu42, xuu43, xuu44), Just(xuu5000), xuu501, h, ba) -> new_addToFM_C20(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs8(new_compare25(Just(xuu5000), Nothing, False, h), LT), h, ba) at position [7,0] we obtained the following new rules [LPAR04]: 26.72/10.93 26.72/10.93 (new_addToFM_C(xuu3, Branch(Nothing, xuu41, xuu42, xuu43, xuu44), Just(xuu5000), xuu501, h, ba) -> new_addToFM_C20(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs8(GT, LT), h, ba),new_addToFM_C(xuu3, Branch(Nothing, xuu41, xuu42, xuu43, xuu44), Just(xuu5000), xuu501, h, ba) -> new_addToFM_C20(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs8(GT, LT), h, ba)) 26.72/10.93 26.72/10.93 26.72/10.93 ---------------------------------------- 26.72/10.93 26.72/10.93 (34) 26.72/10.93 Obligation: 26.72/10.93 Q DP problem: 26.72/10.93 The TRS P consists of the following rules: 26.72/10.93 26.72/10.93 new_addToFM_C11(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, True, h, ba) -> new_addToFM_C(xuu3, xuu44, Just(xuu5000), xuu501, h, ba) 26.72/10.93 new_addToFM_C20(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, False, h, ba) -> new_addToFM_C11(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs8(new_compare25(Just(xuu5000), Nothing, False, h), GT), h, ba) 26.72/10.93 new_addToFM_C20(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, True, h, ba) -> new_addToFM_C(xuu3, xuu43, Just(xuu5000), xuu501, h, ba) 26.72/10.93 new_addToFM_C(xuu3, Branch(Just(xuu400), xuu41, xuu42, xuu43, xuu44), Just(xuu5000), xuu501, h, ba) -> new_addToFM_C21(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs8(new_compare25(Just(xuu5000), Just(xuu400), new_esEs29(xuu5000, xuu400, h), h), LT), h, ba) 26.72/10.93 new_addToFM_C21(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, bb, bc) -> new_addToFM_C12(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs8(new_compare25(Just(xuu22), Just(xuu17), new_esEs30(xuu22, xuu17, bb), bb), GT), bb, bc) 26.72/10.93 new_addToFM_C12(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu16, xuu21, Just(xuu22), xuu23, bb, bc) 26.72/10.93 new_addToFM_C21(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu16, xuu20, Just(xuu22), xuu23, bb, bc) 26.72/10.93 new_addToFM_C(xuu3, Branch(Nothing, xuu41, xuu42, xuu43, xuu44), Just(xuu5000), xuu501, h, ba) -> new_addToFM_C20(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs8(GT, LT), h, ba) 26.72/10.93 26.72/10.93 The TRS R consists of the following rules: 26.72/10.93 26.72/10.93 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Int) -> new_ltEs13(xuu33000, xuu34000) 26.72/10.93 new_esEs11(xuu50000, xuu4000, ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.93 new_primCmpInt(Neg(Succ(xuu3300)), Pos(xuu340)) -> LT 26.72/10.93 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 26.72/10.93 new_ltEs4(Left(xuu33000), Left(xuu34000), app(ty_[], bgd), bfe) -> new_ltEs15(xuu33000, xuu34000, bgd) 26.72/10.93 new_primPlusNat0(Zero, Zero) -> Zero 26.72/10.93 new_lt6(xuu33000, xuu34000, app(app(ty_@2, bea), beb)) -> new_lt8(xuu33000, xuu34000, bea, beb) 26.72/10.93 new_compare8(xuu33000, xuu34000, ty_Ordering) -> new_compare16(xuu33000, xuu34000) 26.72/10.93 new_pePe(True, xuu161) -> True 26.72/10.93 new_primCmpNat0(xuu3300, Succ(xuu3400)) -> new_primCmpNat1(xuu3300, xuu3400) 26.72/10.93 new_esEs30(xuu22, xuu17, ty_Ordering) -> new_esEs8(xuu22, xuu17) 26.72/10.93 new_esEs24(xuu50001, xuu4001, ty_Int) -> new_esEs19(xuu50001, xuu4001) 26.72/10.93 new_esEs30(xuu22, xuu17, ty_Int) -> new_esEs19(xuu22, xuu17) 26.72/10.93 new_esEs21(xuu50001, xuu4001, app(ty_Ratio, gh)) -> new_esEs18(xuu50001, xuu4001, gh) 26.72/10.93 new_esEs29(xuu5000, xuu400, ty_Char) -> new_esEs12(xuu5000, xuu400) 26.72/10.93 new_ltEs12(LT, LT) -> True 26.72/10.93 new_esEs10(xuu50001, xuu4001, app(app(app(ty_@3, cf), cg), da)) -> new_esEs6(xuu50001, xuu4001, cf, cg, da) 26.72/10.93 new_esEs30(xuu22, xuu17, app(app(ty_@2, chd), che)) -> new_esEs4(xuu22, xuu17, chd, che) 26.72/10.93 new_lt19(xuu33001, xuu34001, app(ty_[], dce)) -> new_lt14(xuu33001, xuu34001, dce) 26.72/10.93 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 26.72/10.93 new_esEs27(xuu33001, xuu34001, app(ty_[], dce)) -> new_esEs16(xuu33001, xuu34001, dce) 26.72/10.93 new_primCmpInt(Pos(Zero), Neg(Succ(xuu3400))) -> GT 26.72/10.93 new_esEs26(xuu50000, xuu4000, ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.93 new_esEs22(xuu50000, xuu4000, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.93 new_ltEs19(xuu3300, xuu3400, app(app(ty_@2, bcd), bce)) -> new_ltEs5(xuu3300, xuu3400, bcd, bce) 26.72/10.93 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(ty_[], bhg)) -> new_ltEs15(xuu33000, xuu34000, bhg) 26.72/10.93 new_lt7(xuu33000, xuu34000, bdh) -> new_esEs8(new_compare9(xuu33000, xuu34000, bdh), LT) 26.72/10.93 new_primMulNat0(Succ(xuu5000100), Succ(xuu400000)) -> new_primPlusNat1(new_primMulNat0(xuu5000100, Succ(xuu400000)), xuu400000) 26.72/10.93 new_compare8(xuu33000, xuu34000, app(ty_Ratio, bag)) -> new_compare9(xuu33000, xuu34000, bag) 26.72/10.93 new_esEs29(xuu5000, xuu400, ty_Float) -> new_esEs14(xuu5000, xuu400) 26.72/10.93 new_compare28(xuu33000, xuu34000, False, bea, beb) -> new_compare114(xuu33000, xuu34000, new_ltEs5(xuu33000, xuu34000, bea, beb), bea, beb) 26.72/10.93 new_esEs23(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) 26.72/10.93 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Double, beh) -> new_esEs13(xuu50000, xuu4000) 26.72/10.93 new_compare8(xuu33000, xuu34000, ty_Double) -> new_compare19(xuu33000, xuu34000) 26.72/10.93 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Double, bfe) -> new_ltEs17(xuu33000, xuu34000) 26.72/10.93 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.93 new_lt19(xuu33001, xuu34001, ty_Int) -> new_lt4(xuu33001, xuu34001) 26.72/10.93 new_lt19(xuu33001, xuu34001, app(app(ty_Either, dcf), dcg)) -> new_lt18(xuu33001, xuu34001, dcf, dcg) 26.72/10.93 new_primCmpNat1(Succ(xuu33000), Succ(xuu34000)) -> new_primCmpNat1(xuu33000, xuu34000) 26.72/10.93 new_ltEs19(xuu3300, xuu3400, ty_Char) -> new_ltEs11(xuu3300, xuu3400) 26.72/10.93 new_esEs28(xuu33000, xuu34000, app(app(ty_Either, ddh), dea)) -> new_esEs7(xuu33000, xuu34000, ddh, dea) 26.72/10.93 new_ltEs15(xuu3300, xuu3400, baf) -> new_fsEs(new_compare0(xuu3300, xuu3400, baf)) 26.72/10.93 new_esEs13(Double(xuu50000, xuu50001), Double(xuu4000, xuu4001)) -> new_esEs19(new_sr(xuu50000, xuu4001), new_sr(xuu50001, xuu4000)) 26.72/10.93 new_ltEs6(xuu33001, xuu34001, ty_@0) -> new_ltEs16(xuu33001, xuu34001) 26.72/10.93 new_compare26(xuu33000, xuu34000, True) -> EQ 26.72/10.93 new_esEs10(xuu50001, xuu4001, ty_Char) -> new_esEs12(xuu50001, xuu4001) 26.72/10.93 new_esEs8(GT, GT) -> True 26.72/10.93 new_primEqInt(Pos(Succ(xuu500000)), Pos(Zero)) -> False 26.72/10.93 new_primEqInt(Pos(Zero), Pos(Succ(xuu40000))) -> False 26.72/10.93 new_lt12(xuu33000, xuu34000) -> new_esEs8(new_compare16(xuu33000, xuu34000), LT) 26.72/10.93 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(app(app(ty_@3, ccc), ccd), cce)) -> new_esEs6(xuu50000, xuu4000, ccc, ccd, cce) 26.72/10.93 new_fsEs(xuu146) -> new_not(new_esEs8(xuu146, GT)) 26.72/10.93 new_esEs29(xuu5000, xuu400, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs6(xuu5000, xuu400, ed, ee, ef) 26.72/10.93 new_compare25(Just(xuu3300), Just(xuu3400), False, cfd) -> new_compare10(xuu3300, xuu3400, new_ltEs19(xuu3300, xuu3400, cfd), cfd) 26.72/10.93 new_ltEs19(xuu3300, xuu3400, ty_Bool) -> new_ltEs14(xuu3300, xuu3400) 26.72/10.93 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.93 new_esEs20(xuu50002, xuu4002, ty_Int) -> new_esEs19(xuu50002, xuu4002) 26.72/10.93 new_esEs8(EQ, EQ) -> True 26.72/10.93 new_ltEs20(xuu33002, xuu34002, ty_Char) -> new_ltEs11(xuu33002, xuu34002) 26.72/10.93 new_primEqNat0(Succ(xuu500000), Succ(xuu40000)) -> new_primEqNat0(xuu500000, xuu40000) 26.72/10.93 new_esEs30(xuu22, xuu17, ty_Char) -> new_esEs12(xuu22, xuu17) 26.72/10.93 new_esEs27(xuu33001, xuu34001, ty_Integer) -> new_esEs15(xuu33001, xuu34001) 26.72/10.93 new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare6(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 26.72/10.93 new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare6(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 26.72/10.93 new_ltEs20(xuu33002, xuu34002, ty_Integer) -> new_ltEs10(xuu33002, xuu34002) 26.72/10.93 new_esEs21(xuu50001, xuu4001, ty_Double) -> new_esEs13(xuu50001, xuu4001) 26.72/10.93 new_esEs10(xuu50001, xuu4001, ty_Float) -> new_esEs14(xuu50001, xuu4001) 26.72/10.93 new_esEs22(xuu50000, xuu4000, ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.93 new_not(True) -> False 26.72/10.93 new_lt20(xuu33000, xuu34000, app(ty_Ratio, dch)) -> new_lt7(xuu33000, xuu34000, dch) 26.72/10.93 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(app(ty_@2, bha), bhb)) -> new_ltEs5(xuu33000, xuu34000, bha, bhb) 26.72/10.93 new_ltEs12(LT, GT) -> True 26.72/10.93 new_lt14(xuu33000, xuu34000, bef) -> new_esEs8(new_compare0(xuu33000, xuu34000, bef), LT) 26.72/10.93 new_lt19(xuu33001, xuu34001, app(ty_Ratio, dbf)) -> new_lt7(xuu33001, xuu34001, dbf) 26.72/10.93 new_primCompAux00(xuu178, LT) -> LT 26.72/10.93 new_esEs10(xuu50001, xuu4001, app(ty_Ratio, ce)) -> new_esEs18(xuu50001, xuu4001, ce) 26.72/10.93 new_esEs21(xuu50001, xuu4001, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs6(xuu50001, xuu4001, ha, hb, hc) 26.72/10.93 new_esEs27(xuu33001, xuu34001, ty_Bool) -> new_esEs17(xuu33001, xuu34001) 26.72/10.93 new_esEs30(xuu22, xuu17, ty_Float) -> new_esEs14(xuu22, xuu17) 26.72/10.93 new_esEs20(xuu50002, xuu4002, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs6(xuu50002, xuu4002, fg, fh, ga) 26.72/10.93 new_esEs26(xuu50000, xuu4000, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.93 new_esEs20(xuu50002, xuu4002, app(app(ty_Either, eg), eh)) -> new_esEs7(xuu50002, xuu4002, eg, eh) 26.72/10.93 new_compare8(xuu33000, xuu34000, ty_Float) -> new_compare7(xuu33000, xuu34000) 26.72/10.93 new_ltEs19(xuu3300, xuu3400, ty_Integer) -> new_ltEs10(xuu3300, xuu3400) 26.72/10.93 new_esEs10(xuu50001, xuu4001, ty_Ordering) -> new_esEs8(xuu50001, xuu4001) 26.72/10.93 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Integer, beh) -> new_esEs15(xuu50000, xuu4000) 26.72/10.93 new_ltEs19(xuu3300, xuu3400, ty_Double) -> new_ltEs17(xuu3300, xuu3400) 26.72/10.93 new_esEs11(xuu50000, xuu4000, app(ty_Ratio, dh)) -> new_esEs18(xuu50000, xuu4000, dh) 26.72/10.93 new_primEqNat0(Succ(xuu500000), Zero) -> False 26.72/10.93 new_primEqNat0(Zero, Succ(xuu40000)) -> False 26.72/10.93 new_compare112(xuu33000, xuu34000, False) -> GT 26.72/10.93 new_ltEs20(xuu33002, xuu34002, app(ty_Maybe, dag)) -> new_ltEs8(xuu33002, xuu34002, dag) 26.72/10.93 new_esEs29(xuu5000, xuu400, ty_Int) -> new_esEs19(xuu5000, xuu400) 26.72/10.93 new_lt20(xuu33000, xuu34000, app(ty_[], ddg)) -> new_lt14(xuu33000, xuu34000, ddg) 26.72/10.93 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_ltEs9(xuu33000, xuu34000, bhd, bhe, bhf) 26.72/10.93 new_ltEs20(xuu33002, xuu34002, ty_Bool) -> new_ltEs14(xuu33002, xuu34002) 26.72/10.93 new_primCompAux00(xuu178, GT) -> GT 26.72/10.93 new_compare7(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare6(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 26.72/10.93 new_compare7(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare6(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 26.72/10.93 new_ltEs6(xuu33001, xuu34001, app(ty_Maybe, bda)) -> new_ltEs8(xuu33001, xuu34001, bda) 26.72/10.93 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.93 new_esEs5(Just(xuu50000), Just(xuu4000), app(ty_Ratio, cdd)) -> new_esEs18(xuu50000, xuu4000, cdd) 26.72/10.93 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Bool) -> new_ltEs14(xuu33000, xuu34000) 26.72/10.93 new_primCmpNat2(Zero, xuu3300) -> LT 26.72/10.93 new_esEs20(xuu50002, xuu4002, ty_Ordering) -> new_esEs8(xuu50002, xuu4002) 26.72/10.93 new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(ty_@2, cec), ced)) -> new_ltEs5(xuu33000, xuu34000, cec, ced) 26.72/10.93 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Integer, bfe) -> new_ltEs10(xuu33000, xuu34000) 26.72/10.93 new_primCmpInt(Pos(Succ(xuu3300)), Neg(xuu340)) -> GT 26.72/10.93 new_ltEs20(xuu33002, xuu34002, app(app(ty_@2, dae), daf)) -> new_ltEs5(xuu33002, xuu34002, dae, daf) 26.72/10.93 new_esEs20(xuu50002, xuu4002, app(app(ty_@2, fa), fb)) -> new_esEs4(xuu50002, xuu4002, fa, fb) 26.72/10.93 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_@0, bfe) -> new_ltEs16(xuu33000, xuu34000) 26.72/10.93 new_ltEs6(xuu33001, xuu34001, app(ty_Ratio, bcf)) -> new_ltEs7(xuu33001, xuu34001, bcf) 26.72/10.93 new_compare110(xuu33000, xuu34000, True, bca, bcb) -> LT 26.72/10.93 new_ltEs6(xuu33001, xuu34001, ty_Double) -> new_ltEs17(xuu33001, xuu34001) 26.72/10.93 new_esEs19(xuu5000, xuu400) -> new_primEqInt(xuu5000, xuu400) 26.72/10.93 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Bool, beh) -> new_esEs17(xuu50000, xuu4000) 26.72/10.93 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Char, bfe) -> new_ltEs11(xuu33000, xuu34000) 26.72/10.93 new_esEs22(xuu50000, xuu4000, app(ty_Ratio, bab)) -> new_esEs18(xuu50000, xuu4000, bab) 26.72/10.93 new_esEs7(Left(xuu50000), Left(xuu4000), app(app(app(ty_@3, cba), cbb), cbc), beh) -> new_esEs6(xuu50000, xuu4000, cba, cbb, cbc) 26.72/10.93 new_esEs26(xuu50000, xuu4000, ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.93 new_ltEs20(xuu33002, xuu34002, ty_Double) -> new_ltEs17(xuu33002, xuu34002) 26.72/10.93 new_esEs28(xuu33000, xuu34000, ty_Char) -> new_esEs12(xuu33000, xuu34000) 26.72/10.93 new_esEs28(xuu33000, xuu34000, app(ty_[], ddg)) -> new_esEs16(xuu33000, xuu34000, ddg) 26.72/10.93 new_esEs7(Left(xuu50000), Left(xuu4000), ty_@0, beh) -> new_esEs9(xuu50000, xuu4000) 26.72/10.93 new_primCompAux0(xuu33000, xuu34000, xuu172, baf) -> new_primCompAux00(xuu172, new_compare8(xuu33000, xuu34000, baf)) 26.72/10.93 new_ltEs6(xuu33001, xuu34001, app(ty_[], bde)) -> new_ltEs15(xuu33001, xuu34001, bde) 26.72/10.93 new_pePe(False, xuu161) -> xuu161 26.72/10.93 new_lt8(xuu33000, xuu34000, bea, beb) -> new_esEs8(new_compare11(xuu33000, xuu34000, bea, beb), LT) 26.72/10.93 new_esEs27(xuu33001, xuu34001, ty_Double) -> new_esEs13(xuu33001, xuu34001) 26.72/10.93 new_compare7(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare6(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 26.72/10.93 new_lt20(xuu33000, xuu34000, ty_Float) -> new_lt17(xuu33000, xuu34000) 26.72/10.93 new_ltEs12(GT, GT) -> True 26.72/10.93 new_lt9(xuu33000, xuu34000, bcc) -> new_esEs8(new_compare12(xuu33000, xuu34000, bcc), LT) 26.72/10.93 new_esEs11(xuu50000, xuu4000, ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.93 new_esEs7(Left(xuu50000), Left(xuu4000), app(app(ty_@2, cad), cae), beh) -> new_esEs4(xuu50000, xuu4000, cad, cae) 26.72/10.93 new_lt17(xuu33000, xuu34000) -> new_esEs8(new_compare7(xuu33000, xuu34000), LT) 26.72/10.93 new_esEs6(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), ed, ee, ef) -> new_asAs(new_esEs22(xuu50000, xuu4000, ed), new_asAs(new_esEs21(xuu50001, xuu4001, ee), new_esEs20(xuu50002, xuu4002, ef))) 26.72/10.93 new_esEs10(xuu50001, xuu4001, app(app(ty_Either, bg), bh)) -> new_esEs7(xuu50001, xuu4001, bg, bh) 26.72/10.93 new_compare114(xuu33000, xuu34000, True, bea, beb) -> LT 26.72/10.93 new_ltEs12(GT, EQ) -> False 26.72/10.93 new_ltEs6(xuu33001, xuu34001, app(app(ty_@2, bcg), bch)) -> new_ltEs5(xuu33001, xuu34001, bcg, bch) 26.72/10.93 new_compare8(xuu33000, xuu34000, ty_Int) -> new_compare6(xuu33000, xuu34000) 26.72/10.93 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(ty_Ratio, bgh)) -> new_ltEs7(xuu33000, xuu34000, bgh) 26.72/10.93 new_esEs26(xuu50000, xuu4000, ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.93 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.93 new_compare26(xuu33000, xuu34000, False) -> new_compare111(xuu33000, xuu34000, new_ltEs12(xuu33000, xuu34000)) 26.72/10.93 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Char) -> new_ltEs11(xuu33000, xuu34000) 26.72/10.93 new_compare10(xuu129, xuu130, False, bd) -> GT 26.72/10.93 new_lt20(xuu33000, xuu34000, ty_Integer) -> new_lt11(xuu33000, xuu34000) 26.72/10.93 new_lt20(xuu33000, xuu34000, app(ty_Maybe, ddc)) -> new_lt9(xuu33000, xuu34000, ddc) 26.72/10.93 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(ty_Ratio, ccb)) -> new_esEs18(xuu50000, xuu4000, ccb) 26.72/10.93 new_esEs8(LT, EQ) -> False 26.72/10.93 new_esEs8(EQ, LT) -> False 26.72/10.93 new_esEs21(xuu50001, xuu4001, app(app(ty_@2, gd), ge)) -> new_esEs4(xuu50001, xuu4001, gd, ge) 26.72/10.93 new_compare29(xuu33000, xuu34000, False, bec, bed, bee) -> new_compare113(xuu33000, xuu34000, new_ltEs9(xuu33000, xuu34000, bec, bed, bee), bec, bed, bee) 26.72/10.93 new_lt19(xuu33001, xuu34001, app(ty_Maybe, dca)) -> new_lt9(xuu33001, xuu34001, dca) 26.72/10.93 new_primEqInt(Pos(Zero), Neg(Succ(xuu40000))) -> False 26.72/10.93 new_primEqInt(Neg(Zero), Pos(Succ(xuu40000))) -> False 26.72/10.93 new_lt19(xuu33001, xuu34001, ty_Ordering) -> new_lt12(xuu33001, xuu34001) 26.72/10.93 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Integer) -> new_ltEs10(xuu33000, xuu34000) 26.72/10.93 new_esEs11(xuu50000, xuu4000, app(ty_Maybe, df)) -> new_esEs5(xuu50000, xuu4000, df) 26.72/10.93 new_esEs21(xuu50001, xuu4001, ty_Ordering) -> new_esEs8(xuu50001, xuu4001) 26.72/10.93 new_esEs18(:%(xuu50000, xuu50001), :%(xuu4000, xuu4001), bfc) -> new_asAs(new_esEs25(xuu50000, xuu4000, bfc), new_esEs24(xuu50001, xuu4001, bfc)) 26.72/10.93 new_esEs5(Just(xuu50000), Just(xuu4000), app(app(app(ty_@3, cde), cdf), cdg)) -> new_esEs6(xuu50000, xuu4000, cde, cdf, cdg) 26.72/10.93 new_ltEs14(True, True) -> True 26.72/10.93 new_esEs25(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.93 new_esEs21(xuu50001, xuu4001, ty_Float) -> new_esEs14(xuu50001, xuu4001) 26.72/10.93 new_esEs21(xuu50001, xuu4001, app(ty_Maybe, gf)) -> new_esEs5(xuu50001, xuu4001, gf) 26.72/10.93 new_esEs23(xuu33000, xuu34000, app(app(ty_Either, bca), bcb)) -> new_esEs7(xuu33000, xuu34000, bca, bcb) 26.72/10.93 new_esEs26(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.93 new_esEs5(Nothing, Nothing, bfa) -> True 26.72/10.93 new_esEs26(xuu50000, xuu4000, app(ty_[], cge)) -> new_esEs16(xuu50000, xuu4000, cge) 26.72/10.93 new_primEqInt(Neg(Succ(xuu500000)), Neg(Succ(xuu40000))) -> new_primEqNat0(xuu500000, xuu40000) 26.72/10.93 new_esEs5(Nothing, Just(xuu4000), bfa) -> False 26.72/10.93 new_esEs5(Just(xuu50000), Nothing, bfa) -> False 26.72/10.93 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Float, bfe) -> new_ltEs18(xuu33000, xuu34000) 26.72/10.93 new_primCmpInt(Neg(Zero), Pos(Succ(xuu3400))) -> LT 26.72/10.93 new_lt19(xuu33001, xuu34001, ty_Bool) -> new_lt13(xuu33001, xuu34001) 26.72/10.93 new_compare114(xuu33000, xuu34000, False, bea, beb) -> GT 26.72/10.93 new_ltEs20(xuu33002, xuu34002, ty_@0) -> new_ltEs16(xuu33002, xuu34002) 26.72/10.93 new_primMulInt(Pos(xuu500010), Pos(xuu40000)) -> Pos(new_primMulNat0(xuu500010, xuu40000)) 26.72/10.93 new_lt6(xuu33000, xuu34000, app(app(app(ty_@3, bec), bed), bee)) -> new_lt10(xuu33000, xuu34000, bec, bed, bee) 26.72/10.93 new_compare8(xuu33000, xuu34000, ty_Integer) -> new_compare14(xuu33000, xuu34000) 26.72/10.93 new_lt20(xuu33000, xuu34000, app(app(ty_@2, dda), ddb)) -> new_lt8(xuu33000, xuu34000, dda, ddb) 26.72/10.93 new_esEs7(Left(xuu50000), Left(xuu4000), app(app(ty_Either, cab), cac), beh) -> new_esEs7(xuu50000, xuu4000, cab, cac) 26.72/10.93 new_compare25(Just(xuu3300), Nothing, False, cfd) -> GT 26.72/10.93 new_esEs28(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) 26.72/10.93 new_compare10(xuu129, xuu130, True, bd) -> LT 26.72/10.93 new_lt19(xuu33001, xuu34001, ty_Float) -> new_lt17(xuu33001, xuu34001) 26.72/10.93 new_compare24(xuu33000, xuu34000, False, bca, bcb) -> new_compare110(xuu33000, xuu34000, new_ltEs4(xuu33000, xuu34000, bca, bcb), bca, bcb) 26.72/10.93 new_ltEs19(xuu3300, xuu3400, app(ty_Maybe, cea)) -> new_ltEs8(xuu3300, xuu3400, cea) 26.72/10.93 new_esEs10(xuu50001, xuu4001, app(app(ty_@2, ca), cb)) -> new_esEs4(xuu50001, xuu4001, ca, cb) 26.72/10.93 new_primMulNat0(Succ(xuu5000100), Zero) -> Zero 26.72/10.93 new_primMulNat0(Zero, Succ(xuu400000)) -> Zero 26.72/10.93 new_esEs29(xuu5000, xuu400, ty_Double) -> new_esEs13(xuu5000, xuu400) 26.72/10.93 new_lt19(xuu33001, xuu34001, ty_Integer) -> new_lt11(xuu33001, xuu34001) 26.72/10.93 new_ltEs6(xuu33001, xuu34001, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_ltEs9(xuu33001, xuu34001, bdb, bdc, bdd) 26.72/10.93 new_lt20(xuu33000, xuu34000, ty_Bool) -> new_lt13(xuu33000, xuu34000) 26.72/10.93 new_esEs23(xuu33000, xuu34000, app(ty_Maybe, bcc)) -> new_esEs5(xuu33000, xuu34000, bcc) 26.72/10.93 new_compare9(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Int) -> new_compare6(new_sr(xuu33000, xuu34001), new_sr(xuu34000, xuu33001)) 26.72/10.93 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Bool) -> new_ltEs14(xuu33000, xuu34000) 26.72/10.93 new_ltEs17(xuu3300, xuu3400) -> new_fsEs(new_compare19(xuu3300, xuu3400)) 26.72/10.93 new_esEs28(xuu33000, xuu34000, ty_Int) -> new_esEs19(xuu33000, xuu34000) 26.72/10.93 new_primPlusNat0(Succ(xuu28200), Zero) -> Succ(xuu28200) 26.72/10.93 new_primPlusNat0(Zero, Succ(xuu9600)) -> Succ(xuu9600) 26.72/10.93 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Int, bfe) -> new_ltEs13(xuu33000, xuu34000) 26.72/10.93 new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare6(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 26.72/10.93 new_ltEs10(xuu3300, xuu3400) -> new_fsEs(new_compare14(xuu3300, xuu3400)) 26.72/10.93 new_esEs26(xuu50000, xuu4000, app(ty_Ratio, cgf)) -> new_esEs18(xuu50000, xuu4000, cgf) 26.72/10.93 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) 26.72/10.93 new_esEs11(xuu50000, xuu4000, app(app(ty_@2, dd), de)) -> new_esEs4(xuu50000, xuu4000, dd, de) 26.72/10.93 new_ltEs4(Left(xuu33000), Left(xuu34000), app(ty_Maybe, bfh), bfe) -> new_ltEs8(xuu33000, xuu34000, bfh) 26.72/10.93 new_compare8(xuu33000, xuu34000, app(app(ty_@2, bah), bba)) -> new_compare11(xuu33000, xuu34000, bah, bba) 26.72/10.93 new_esEs8(LT, LT) -> True 26.72/10.93 new_compare111(xuu33000, xuu34000, True) -> LT 26.72/10.93 new_lt6(xuu33000, xuu34000, ty_Integer) -> new_lt11(xuu33000, xuu34000) 26.72/10.93 new_lt20(xuu33000, xuu34000, ty_Int) -> new_lt4(xuu33000, xuu34000) 26.72/10.93 new_lt6(xuu33000, xuu34000, ty_Ordering) -> new_lt12(xuu33000, xuu34000) 26.72/10.93 new_lt19(xuu33001, xuu34001, app(app(ty_@2, dbg), dbh)) -> new_lt8(xuu33001, xuu34001, dbg, dbh) 26.72/10.93 new_lt15(xuu33000, xuu34000) -> new_esEs8(new_compare18(xuu33000, xuu34000), LT) 26.72/10.93 new_ltEs19(xuu3300, xuu3400, app(app(app(ty_@3, cfe), cff), cfg)) -> new_ltEs9(xuu3300, xuu3400, cfe, cff, cfg) 26.72/10.93 new_esEs22(xuu50000, xuu4000, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs6(xuu50000, xuu4000, bac, bad, bae) 26.72/10.93 new_lt13(xuu33000, xuu34000) -> new_esEs8(new_compare17(xuu33000, xuu34000), LT) 26.72/10.93 new_ltEs4(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, bga), bgb), bgc), bfe) -> new_ltEs9(xuu33000, xuu34000, bga, bgb, bgc) 26.72/10.93 new_esEs28(xuu33000, xuu34000, ty_Bool) -> new_esEs17(xuu33000, xuu34000) 26.72/10.93 new_lt6(xuu33000, xuu34000, app(ty_[], bef)) -> new_lt14(xuu33000, xuu34000, bef) 26.72/10.93 new_ltEs11(xuu3300, xuu3400) -> new_fsEs(new_compare15(xuu3300, xuu3400)) 26.72/10.93 new_lt5(xuu33000, xuu34000) -> new_esEs8(new_compare15(xuu33000, xuu34000), LT) 26.72/10.93 new_ltEs9(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), cfe, cff, cfg) -> new_pePe(new_lt20(xuu33000, xuu34000, cfe), new_asAs(new_esEs28(xuu33000, xuu34000, cfe), new_pePe(new_lt19(xuu33001, xuu34001, cff), new_asAs(new_esEs27(xuu33001, xuu34001, cff), new_ltEs20(xuu33002, xuu34002, cfg))))) 26.72/10.93 new_esEs11(xuu50000, xuu4000, ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.93 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Char, beh) -> new_esEs12(xuu50000, xuu4000) 26.72/10.93 new_esEs27(xuu33001, xuu34001, ty_@0) -> new_esEs9(xuu33001, xuu34001) 26.72/10.93 new_esEs23(xuu33000, xuu34000, app(app(app(ty_@3, bec), bed), bee)) -> new_esEs6(xuu33000, xuu34000, bec, bed, bee) 26.72/10.93 new_esEs16([], [], bfb) -> True 26.72/10.93 new_esEs29(xuu5000, xuu400, ty_Bool) -> new_esEs17(xuu5000, xuu400) 26.72/10.93 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Float) -> new_ltEs18(xuu33000, xuu34000) 26.72/10.93 new_primMulInt(Neg(xuu500010), Neg(xuu40000)) -> Pos(new_primMulNat0(xuu500010, xuu40000)) 26.72/10.93 new_compare25(xuu330, xuu340, True, cfd) -> EQ 26.72/10.93 new_esEs10(xuu50001, xuu4001, app(ty_Maybe, cc)) -> new_esEs5(xuu50001, xuu4001, cc) 26.72/10.93 new_lt20(xuu33000, xuu34000, ty_Ordering) -> new_lt12(xuu33000, xuu34000) 26.72/10.93 new_compare8(xuu33000, xuu34000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_compare13(xuu33000, xuu34000, bbc, bbd, bbe) 26.72/10.93 new_lt16(xuu33000, xuu34000) -> new_esEs8(new_compare19(xuu33000, xuu34000), LT) 26.72/10.93 new_esEs28(xuu33000, xuu34000, ty_Integer) -> new_esEs15(xuu33000, xuu34000) 26.72/10.93 new_esEs22(xuu50000, xuu4000, app(ty_Maybe, hh)) -> new_esEs5(xuu50000, xuu4000, hh) 26.72/10.93 new_ltEs18(xuu3300, xuu3400) -> new_fsEs(new_compare7(xuu3300, xuu3400)) 26.72/10.93 new_esEs27(xuu33001, xuu34001, ty_Int) -> new_esEs19(xuu33001, xuu34001) 26.72/10.93 new_lt19(xuu33001, xuu34001, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_lt10(xuu33001, xuu34001, dcb, dcc, dcd) 26.72/10.93 new_lt6(xuu33000, xuu34000, app(ty_Ratio, bdh)) -> new_lt7(xuu33000, xuu34000, bdh) 26.72/10.93 new_lt6(xuu33000, xuu34000, ty_Bool) -> new_lt13(xuu33000, xuu34000) 26.72/10.93 new_compare13(xuu33000, xuu34000, bec, bed, bee) -> new_compare29(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, bec, bed, bee), bec, bed, bee) 26.72/10.93 new_esEs20(xuu50002, xuu4002, ty_Float) -> new_esEs14(xuu50002, xuu4002) 26.72/10.93 new_esEs5(Just(xuu50000), Just(xuu4000), app(ty_Maybe, cdb)) -> new_esEs5(xuu50000, xuu4000, cdb) 26.72/10.93 new_esEs23(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) 26.72/10.93 new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(ty_Either, cfb), cfc)) -> new_ltEs4(xuu33000, xuu34000, cfb, cfc) 26.72/10.93 new_compare6(xuu33, xuu34) -> new_primCmpInt(xuu33, xuu34) 26.72/10.93 new_esEs11(xuu50000, xuu4000, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs6(xuu50000, xuu4000, ea, eb, ec) 26.72/10.93 new_esEs23(xuu33000, xuu34000, app(app(ty_@2, bea), beb)) -> new_esEs4(xuu33000, xuu34000, bea, beb) 26.72/10.93 new_compare112(xuu33000, xuu34000, True) -> LT 26.72/10.93 new_lt20(xuu33000, xuu34000, app(app(app(ty_@3, ddd), dde), ddf)) -> new_lt10(xuu33000, xuu34000, ddd, dde, ddf) 26.72/10.93 new_ltEs20(xuu33002, xuu34002, app(app(app(ty_@3, dah), dba), dbb)) -> new_ltEs9(xuu33002, xuu34002, dah, dba, dbb) 26.72/10.93 new_primMulInt(Pos(xuu500010), Neg(xuu40000)) -> Neg(new_primMulNat0(xuu500010, xuu40000)) 26.72/10.93 new_primMulInt(Neg(xuu500010), Pos(xuu40000)) -> Neg(new_primMulNat0(xuu500010, xuu40000)) 26.72/10.93 new_esEs12(Char(xuu50000), Char(xuu4000)) -> new_primEqNat0(xuu50000, xuu4000) 26.72/10.93 new_esEs26(xuu50000, xuu4000, app(app(ty_Either, cfh), cga)) -> new_esEs7(xuu50000, xuu4000, cfh, cga) 26.72/10.93 new_esEs20(xuu50002, xuu4002, ty_Integer) -> new_esEs15(xuu50002, xuu4002) 26.72/10.93 new_esEs22(xuu50000, xuu4000, ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.93 new_esEs28(xuu33000, xuu34000, ty_Double) -> new_esEs13(xuu33000, xuu34000) 26.72/10.93 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.93 new_compare15(Char(xuu33000), Char(xuu34000)) -> new_primCmpNat1(xuu33000, xuu34000) 26.72/10.93 new_compare17(xuu33000, xuu34000) -> new_compare27(xuu33000, xuu34000, new_esEs17(xuu33000, xuu34000)) 26.72/10.93 new_primCmpInt(Pos(Succ(xuu3300)), Pos(xuu340)) -> new_primCmpNat0(xuu3300, xuu340) 26.72/10.93 new_esEs22(xuu50000, xuu4000, app(app(ty_@2, hf), hg)) -> new_esEs4(xuu50000, xuu4000, hf, hg) 26.72/10.93 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(app(ty_Either, bhh), caa)) -> new_ltEs4(xuu33000, xuu34000, bhh, caa) 26.72/10.93 new_ltEs13(xuu3300, xuu3400) -> new_fsEs(new_compare6(xuu3300, xuu3400)) 26.72/10.93 new_primCmpNat1(Succ(xuu33000), Zero) -> GT 26.72/10.93 new_esEs30(xuu22, xuu17, ty_Bool) -> new_esEs17(xuu22, xuu17) 26.72/10.93 new_esEs27(xuu33001, xuu34001, ty_Char) -> new_esEs12(xuu33001, xuu34001) 26.72/10.93 new_compare8(xuu33000, xuu34000, app(ty_Maybe, bbb)) -> new_compare12(xuu33000, xuu34000, bbb) 26.72/10.93 new_ltEs6(xuu33001, xuu34001, ty_Int) -> new_ltEs13(xuu33001, xuu34001) 26.72/10.93 new_ltEs19(xuu3300, xuu3400, ty_Ordering) -> new_ltEs12(xuu3300, xuu3400) 26.72/10.93 new_lt6(xuu33000, xuu34000, ty_Int) -> new_lt4(xuu33000, xuu34000) 26.72/10.93 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(app(ty_@2, cbf), cbg)) -> new_esEs4(xuu50000, xuu4000, cbf, cbg) 26.72/10.93 new_sr0(Integer(xuu330000), Integer(xuu340010)) -> Integer(new_primMulInt(xuu330000, xuu340010)) 26.72/10.93 new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_Ratio, ceb)) -> new_ltEs7(xuu33000, xuu34000, ceb) 26.72/10.93 new_esEs29(xuu5000, xuu400, app(ty_Maybe, bfa)) -> new_esEs5(xuu5000, xuu400, bfa) 26.72/10.93 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(ty_Maybe, cbh)) -> new_esEs5(xuu50000, xuu4000, cbh) 26.72/10.93 new_esEs27(xuu33001, xuu34001, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_esEs6(xuu33001, xuu34001, dcb, dcc, dcd) 26.72/10.93 new_esEs20(xuu50002, xuu4002, ty_Bool) -> new_esEs17(xuu50002, xuu4002) 26.72/10.93 new_ltEs20(xuu33002, xuu34002, app(app(ty_Either, dbd), dbe)) -> new_ltEs4(xuu33002, xuu34002, dbd, dbe) 26.72/10.93 new_esEs7(Left(xuu50000), Left(xuu4000), app(ty_[], cag), beh) -> new_esEs16(xuu50000, xuu4000, cag) 26.72/10.93 new_esEs5(Just(xuu50000), Just(xuu4000), app(app(ty_Either, ccf), ccg)) -> new_esEs7(xuu50000, xuu4000, ccf, ccg) 26.72/10.93 new_primCmpNat0(xuu3300, Zero) -> GT 26.72/10.93 new_esEs29(xuu5000, xuu400, ty_Integer) -> new_esEs15(xuu5000, xuu400) 26.72/10.93 new_compare8(xuu33000, xuu34000, app(ty_[], bbf)) -> new_compare0(xuu33000, xuu34000, bbf) 26.72/10.93 new_lt20(xuu33000, xuu34000, ty_Double) -> new_lt16(xuu33000, xuu34000) 26.72/10.93 new_esEs30(xuu22, xuu17, ty_Integer) -> new_esEs15(xuu22, xuu17) 26.72/10.93 new_ltEs19(xuu3300, xuu3400, app(ty_[], baf)) -> new_ltEs15(xuu3300, xuu3400, baf) 26.72/10.93 new_esEs15(Integer(xuu50000), Integer(xuu4000)) -> new_primEqInt(xuu50000, xuu4000) 26.72/10.93 new_compare0([], :(xuu34000, xuu34001), baf) -> LT 26.72/10.93 new_asAs(True, xuu136) -> xuu136 26.72/10.93 new_compare113(xuu33000, xuu34000, True, bec, bed, bee) -> LT 26.72/10.93 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_@0) -> new_ltEs16(xuu33000, xuu34000) 26.72/10.93 new_compare9(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Integer) -> new_compare14(new_sr0(xuu33000, xuu34001), new_sr0(xuu34000, xuu33001)) 26.72/10.93 new_ltEs5(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), bcd, bce) -> new_pePe(new_lt6(xuu33000, xuu34000, bcd), new_asAs(new_esEs23(xuu33000, xuu34000, bcd), new_ltEs6(xuu33001, xuu34001, bce))) 26.72/10.93 new_esEs17(False, True) -> False 26.72/10.93 new_esEs17(True, False) -> False 26.72/10.93 new_esEs10(xuu50001, xuu4001, app(ty_[], cd)) -> new_esEs16(xuu50001, xuu4001, cd) 26.72/10.93 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Int, beh) -> new_esEs19(xuu50000, xuu4000) 26.72/10.93 new_esEs23(xuu33000, xuu34000, app(ty_Ratio, bdh)) -> new_esEs18(xuu33000, xuu34000, bdh) 26.72/10.93 new_ltEs16(xuu3300, xuu3400) -> new_fsEs(new_compare18(xuu3300, xuu3400)) 26.72/10.93 new_lt19(xuu33001, xuu34001, ty_Double) -> new_lt16(xuu33001, xuu34001) 26.72/10.93 new_esEs26(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.93 new_esEs20(xuu50002, xuu4002, app(ty_Maybe, fc)) -> new_esEs5(xuu50002, xuu4002, fc) 26.72/10.93 new_esEs5(Just(xuu50000), Just(xuu4000), app(app(ty_@2, cch), cda)) -> new_esEs4(xuu50000, xuu4000, cch, cda) 26.72/10.93 new_compare11(xuu33000, xuu34000, bea, beb) -> new_compare28(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, bea, beb), bea, beb) 26.72/10.93 new_esEs27(xuu33001, xuu34001, ty_Float) -> new_esEs14(xuu33001, xuu34001) 26.72/10.93 new_esEs10(xuu50001, xuu4001, ty_Integer) -> new_esEs15(xuu50001, xuu4001) 26.72/10.93 new_esEs24(xuu50001, xuu4001, ty_Integer) -> new_esEs15(xuu50001, xuu4001) 26.72/10.93 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.93 new_esEs29(xuu5000, xuu400, app(ty_[], bfb)) -> new_esEs16(xuu5000, xuu400, bfb) 26.72/10.93 new_lt10(xuu33000, xuu34000, bec, bed, bee) -> new_esEs8(new_compare13(xuu33000, xuu34000, bec, bed, bee), LT) 26.72/10.93 new_lt6(xuu33000, xuu34000, ty_@0) -> new_lt15(xuu33000, xuu34000) 26.72/10.93 new_compare24(xuu33000, xuu34000, True, bca, bcb) -> EQ 26.72/10.93 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.93 new_primPlusNat1(xuu106, xuu400000) -> new_primPlusNat0(xuu106, Succ(xuu400000)) 26.72/10.93 new_esEs9(@0, @0) -> True 26.72/10.93 new_ltEs20(xuu33002, xuu34002, app(ty_[], dbc)) -> new_ltEs15(xuu33002, xuu34002, dbc) 26.72/10.93 new_esEs7(Left(xuu50000), Left(xuu4000), app(ty_Maybe, caf), beh) -> new_esEs5(xuu50000, xuu4000, caf) 26.72/10.93 new_primCompAux00(xuu178, EQ) -> xuu178 26.72/10.93 new_esEs11(xuu50000, xuu4000, app(app(ty_Either, db), dc)) -> new_esEs7(xuu50000, xuu4000, db, dc) 26.72/10.93 new_compare0([], [], baf) -> EQ 26.72/10.93 new_sr(xuu50001, xuu4000) -> new_primMulInt(xuu50001, xuu4000) 26.72/10.93 new_esEs25(xuu50000, xuu4000, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.93 new_esEs10(xuu50001, xuu4001, ty_Bool) -> new_esEs17(xuu50001, xuu4001) 26.72/10.93 new_esEs21(xuu50001, xuu4001, app(app(ty_Either, gb), gc)) -> new_esEs7(xuu50001, xuu4001, gb, gc) 26.72/10.93 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Integer) -> new_ltEs10(xuu33000, xuu34000) 26.72/10.93 new_primMulNat0(Zero, Zero) -> Zero 26.72/10.93 new_lt18(xuu33000, xuu34000, bca, bcb) -> new_esEs8(new_compare23(xuu33000, xuu34000, bca, bcb), LT) 26.72/10.93 new_ltEs20(xuu33002, xuu34002, ty_Ordering) -> new_ltEs12(xuu33002, xuu34002) 26.72/10.93 new_esEs23(xuu33000, xuu34000, ty_Float) -> new_esEs14(xuu33000, xuu34000) 26.72/10.93 new_lt6(xuu33000, xuu34000, ty_Char) -> new_lt5(xuu33000, xuu34000) 26.72/10.93 new_lt6(xuu33000, xuu34000, app(ty_Maybe, bcc)) -> new_lt9(xuu33000, xuu34000, bcc) 26.72/10.93 new_primCmpInt(Neg(Succ(xuu3300)), Neg(xuu340)) -> new_primCmpNat2(xuu340, xuu3300) 26.72/10.93 new_esEs30(xuu22, xuu17, ty_Double) -> new_esEs13(xuu22, xuu17) 26.72/10.93 new_esEs27(xuu33001, xuu34001, ty_Ordering) -> new_esEs8(xuu33001, xuu34001) 26.72/10.93 new_esEs30(xuu22, xuu17, app(ty_[], chg)) -> new_esEs16(xuu22, xuu17, chg) 26.72/10.93 new_esEs23(xuu33000, xuu34000, ty_Char) -> new_esEs12(xuu33000, xuu34000) 26.72/10.93 new_ltEs19(xuu3300, xuu3400, app(ty_Ratio, cdh)) -> new_ltEs7(xuu3300, xuu3400, cdh) 26.72/10.93 new_primCmpInt(Neg(Zero), Neg(Succ(xuu3400))) -> new_primCmpNat0(xuu3400, Zero) 26.72/10.93 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.93 new_esEs30(xuu22, xuu17, app(ty_Maybe, chf)) -> new_esEs5(xuu22, xuu17, chf) 26.72/10.93 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_@0) -> new_ltEs16(xuu33000, xuu34000) 26.72/10.93 new_compare111(xuu33000, xuu34000, False) -> GT 26.72/10.93 new_primCmpNat1(Zero, Zero) -> EQ 26.72/10.93 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.93 new_compare12(xuu33000, xuu34000, bcc) -> new_compare25(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, bcc), bcc) 26.72/10.93 new_esEs22(xuu50000, xuu4000, app(app(ty_Either, hd), he)) -> new_esEs7(xuu50000, xuu4000, hd, he) 26.72/10.93 new_ltEs6(xuu33001, xuu34001, ty_Bool) -> new_ltEs14(xuu33001, xuu34001) 26.72/10.93 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.93 new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare6(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 26.72/10.93 new_esEs22(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.93 new_esEs22(xuu50000, xuu4000, ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.93 new_esEs27(xuu33001, xuu34001, app(ty_Ratio, dbf)) -> new_esEs18(xuu33001, xuu34001, dbf) 26.72/10.93 new_esEs4(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), be, bf) -> new_asAs(new_esEs11(xuu50000, xuu4000, be), new_esEs10(xuu50001, xuu4001, bf)) 26.72/10.93 new_compare8(xuu33000, xuu34000, ty_Char) -> new_compare15(xuu33000, xuu34000) 26.72/10.93 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Double) -> new_ltEs17(xuu33000, xuu34000) 26.72/10.93 new_esEs28(xuu33000, xuu34000, app(ty_Ratio, dch)) -> new_esEs18(xuu33000, xuu34000, dch) 26.72/10.93 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.93 new_esEs16(:(xuu50000, xuu50001), :(xuu4000, xuu4001), bfb) -> new_asAs(new_esEs26(xuu50000, xuu4000, bfb), new_esEs16(xuu50001, xuu4001, bfb)) 26.72/10.93 new_ltEs14(False, True) -> True 26.72/10.93 new_ltEs19(xuu3300, xuu3400, ty_@0) -> new_ltEs16(xuu3300, xuu3400) 26.72/10.93 new_ltEs12(GT, LT) -> False 26.72/10.93 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Char) -> new_ltEs11(xuu33000, xuu34000) 26.72/10.93 new_compare29(xuu33000, xuu34000, True, bec, bed, bee) -> EQ 26.72/10.93 new_compare8(xuu33000, xuu34000, ty_Bool) -> new_compare17(xuu33000, xuu34000) 26.72/10.93 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Ordering, beh) -> new_esEs8(xuu50000, xuu4000) 26.72/10.93 new_compare7(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare6(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 26.72/10.93 new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_Maybe, cee)) -> new_ltEs8(xuu33000, xuu34000, cee) 26.72/10.93 new_esEs30(xuu22, xuu17, ty_@0) -> new_esEs9(xuu22, xuu17) 26.72/10.93 new_primEqInt(Neg(Succ(xuu500000)), Neg(Zero)) -> False 26.72/10.93 new_primEqInt(Neg(Zero), Neg(Succ(xuu40000))) -> False 26.72/10.93 new_ltEs8(Nothing, Just(xuu34000), cea) -> True 26.72/10.93 new_primEqInt(Pos(Succ(xuu500000)), Pos(Succ(xuu40000))) -> new_primEqNat0(xuu500000, xuu40000) 26.72/10.93 new_esEs20(xuu50002, xuu4002, ty_Double) -> new_esEs13(xuu50002, xuu4002) 26.72/10.93 new_esEs20(xuu50002, xuu4002, app(ty_[], fd)) -> new_esEs16(xuu50002, xuu4002, fd) 26.72/10.93 new_esEs26(xuu50000, xuu4000, app(app(ty_@2, cgb), cgc)) -> new_esEs4(xuu50000, xuu4000, cgb, cgc) 26.72/10.93 new_ltEs4(Left(xuu33000), Left(xuu34000), app(app(ty_Either, bge), bgf), bfe) -> new_ltEs4(xuu33000, xuu34000, bge, bgf) 26.72/10.93 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(ty_[], cca)) -> new_esEs16(xuu50000, xuu4000, cca) 26.72/10.93 new_esEs14(Float(xuu50000, xuu50001), Float(xuu4000, xuu4001)) -> new_esEs19(new_sr(xuu50000, xuu4001), new_sr(xuu50001, xuu4000)) 26.72/10.93 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(app(ty_Either, cbd), cbe)) -> new_esEs7(xuu50000, xuu4000, cbd, cbe) 26.72/10.93 new_esEs26(xuu50000, xuu4000, ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.93 new_primEqInt(Pos(Succ(xuu500000)), Neg(xuu4000)) -> False 26.72/10.93 new_primEqInt(Neg(Succ(xuu500000)), Pos(xuu4000)) -> False 26.72/10.93 new_ltEs20(xuu33002, xuu34002, app(ty_Ratio, dad)) -> new_ltEs7(xuu33002, xuu34002, dad) 26.72/10.93 new_esEs11(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.93 new_lt6(xuu33000, xuu34000, ty_Float) -> new_lt17(xuu33000, xuu34000) 26.72/10.93 new_esEs29(xuu5000, xuu400, ty_@0) -> new_esEs9(xuu5000, xuu400) 26.72/10.93 new_lt4(xuu330, xuu340) -> new_esEs8(new_compare6(xuu330, xuu340), LT) 26.72/10.93 new_ltEs12(EQ, GT) -> True 26.72/10.93 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 26.72/10.93 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Ordering, bfe) -> new_ltEs12(xuu33000, xuu34000) 26.72/10.93 new_esEs28(xuu33000, xuu34000, ty_Float) -> new_esEs14(xuu33000, xuu34000) 26.72/10.93 new_esEs28(xuu33000, xuu34000, app(ty_Maybe, ddc)) -> new_esEs5(xuu33000, xuu34000, ddc) 26.72/10.93 new_esEs17(True, True) -> True 26.72/10.93 new_ltEs12(EQ, EQ) -> True 26.72/10.93 new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, cef), ceg), ceh)) -> new_ltEs9(xuu33000, xuu34000, cef, ceg, ceh) 26.72/10.93 new_primCmpInt(Pos(Zero), Pos(Succ(xuu3400))) -> new_primCmpNat2(Zero, xuu3400) 26.72/10.93 new_esEs21(xuu50001, xuu4001, ty_Integer) -> new_esEs15(xuu50001, xuu4001) 26.72/10.93 new_ltEs20(xuu33002, xuu34002, ty_Int) -> new_ltEs13(xuu33002, xuu34002) 26.72/10.93 new_esEs26(xuu50000, xuu4000, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs6(xuu50000, xuu4000, cgg, cgh, cha) 26.72/10.93 new_esEs10(xuu50001, xuu4001, ty_Double) -> new_esEs13(xuu50001, xuu4001) 26.72/10.93 new_lt11(xuu33000, xuu34000) -> new_esEs8(new_compare14(xuu33000, xuu34000), LT) 26.72/10.93 new_esEs21(xuu50001, xuu4001, ty_Bool) -> new_esEs17(xuu50001, xuu4001) 26.72/10.93 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) 26.72/10.93 new_esEs23(xuu33000, xuu34000, ty_Bool) -> new_esEs17(xuu33000, xuu34000) 26.72/10.93 new_not(False) -> True 26.72/10.93 new_compare27(xuu33000, xuu34000, False) -> new_compare112(xuu33000, xuu34000, new_ltEs14(xuu33000, xuu34000)) 26.72/10.93 new_esEs30(xuu22, xuu17, app(ty_Ratio, chh)) -> new_esEs18(xuu22, xuu17, chh) 26.72/10.93 new_esEs5(Just(xuu50000), Just(xuu4000), ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.93 new_esEs27(xuu33001, xuu34001, app(app(ty_Either, dcf), dcg)) -> new_esEs7(xuu33001, xuu34001, dcf, dcg) 26.72/10.93 new_compare0(:(xuu33000, xuu33001), [], baf) -> GT 26.72/10.93 new_esEs8(LT, GT) -> False 26.72/10.93 new_esEs8(GT, LT) -> False 26.72/10.93 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Bool, bfe) -> new_ltEs14(xuu33000, xuu34000) 26.72/10.93 new_primPlusNat0(Succ(xuu28200), Succ(xuu9600)) -> Succ(Succ(new_primPlusNat0(xuu28200, xuu9600))) 26.72/10.93 new_esEs20(xuu50002, xuu4002, app(ty_Ratio, ff)) -> new_esEs18(xuu50002, xuu4002, ff) 26.72/10.93 new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_[], cfa)) -> new_ltEs15(xuu33000, xuu34000, cfa) 26.72/10.93 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Double) -> new_ltEs17(xuu33000, xuu34000) 26.72/10.93 new_esEs7(Left(xuu50000), Left(xuu4000), app(ty_Ratio, cah), beh) -> new_esEs18(xuu50000, xuu4000, cah) 26.72/10.93 new_esEs11(xuu50000, xuu4000, ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.93 new_esEs21(xuu50001, xuu4001, ty_Char) -> new_esEs12(xuu50001, xuu4001) 26.72/10.93 new_compare8(xuu33000, xuu34000, app(app(ty_Either, bbg), bbh)) -> new_compare23(xuu33000, xuu34000, bbg, bbh) 26.72/10.93 new_esEs29(xuu5000, xuu400, app(ty_Ratio, bfc)) -> new_esEs18(xuu5000, xuu400, bfc) 26.72/10.93 new_ltEs4(Left(xuu33000), Right(xuu34000), bgg, bfe) -> True 26.72/10.93 new_esEs30(xuu22, xuu17, app(app(app(ty_@3, daa), dab), dac)) -> new_esEs6(xuu22, xuu17, daa, dab, dac) 26.72/10.93 new_ltEs6(xuu33001, xuu34001, ty_Integer) -> new_ltEs10(xuu33001, xuu34001) 26.72/10.93 new_esEs26(xuu50000, xuu4000, app(ty_Maybe, cgd)) -> new_esEs5(xuu50000, xuu4000, cgd) 26.72/10.93 new_primCmpNat1(Zero, Succ(xuu34000)) -> LT 26.72/10.93 new_esEs22(xuu50000, xuu4000, ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.93 new_compare25(Nothing, Nothing, False, cfd) -> LT 26.72/10.93 new_lt20(xuu33000, xuu34000, app(app(ty_Either, ddh), dea)) -> new_lt18(xuu33000, xuu34000, ddh, dea) 26.72/10.93 new_ltEs7(xuu3300, xuu3400, cdh) -> new_fsEs(new_compare9(xuu3300, xuu3400, cdh)) 26.72/10.93 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 26.72/10.93 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 26.72/10.93 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.93 new_compare0(:(xuu33000, xuu33001), :(xuu34000, xuu34001), baf) -> new_primCompAux0(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, baf), baf) 26.72/10.93 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Float) -> new_ltEs18(xuu33000, xuu34000) 26.72/10.93 new_ltEs6(xuu33001, xuu34001, ty_Ordering) -> new_ltEs12(xuu33001, xuu34001) 26.72/10.93 new_ltEs4(Left(xuu33000), Left(xuu34000), app(ty_Ratio, bfd), bfe) -> new_ltEs7(xuu33000, xuu34000, bfd) 26.72/10.93 new_esEs23(xuu33000, xuu34000, ty_Int) -> new_esEs19(xuu33000, xuu34000) 26.72/10.93 new_esEs27(xuu33001, xuu34001, app(app(ty_@2, dbg), dbh)) -> new_esEs4(xuu33001, xuu34001, dbg, dbh) 26.72/10.93 new_esEs21(xuu50001, xuu4001, app(ty_[], gg)) -> new_esEs16(xuu50001, xuu4001, gg) 26.72/10.93 new_ltEs6(xuu33001, xuu34001, ty_Char) -> new_ltEs11(xuu33001, xuu34001) 26.72/10.93 new_ltEs4(Left(xuu33000), Left(xuu34000), app(app(ty_@2, bff), bfg), bfe) -> new_ltEs5(xuu33000, xuu34000, bff, bfg) 26.72/10.93 new_esEs20(xuu50002, xuu4002, ty_@0) -> new_esEs9(xuu50002, xuu4002) 26.72/10.93 new_ltEs19(xuu3300, xuu3400, app(app(ty_Either, bgg), bfe)) -> new_ltEs4(xuu3300, xuu3400, bgg, bfe) 26.72/10.93 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 26.72/10.93 new_esEs17(False, False) -> True 26.72/10.93 new_esEs28(xuu33000, xuu34000, app(app(ty_@2, dda), ddb)) -> new_esEs4(xuu33000, xuu34000, dda, ddb) 26.72/10.93 new_esEs22(xuu50000, xuu4000, ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.93 new_ltEs12(EQ, LT) -> False 26.72/10.93 new_ltEs14(False, False) -> True 26.72/10.93 new_ltEs6(xuu33001, xuu34001, ty_Float) -> new_ltEs18(xuu33001, xuu34001) 26.72/10.93 new_ltEs8(Nothing, Nothing, cea) -> True 26.72/10.93 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.93 new_ltEs8(Just(xuu33000), Nothing, cea) -> False 26.72/10.93 new_esEs11(xuu50000, xuu4000, ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.93 new_lt6(xuu33000, xuu34000, ty_Double) -> new_lt16(xuu33000, xuu34000) 26.72/10.93 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.93 new_ltEs19(xuu3300, xuu3400, ty_Int) -> new_ltEs13(xuu3300, xuu3400) 26.72/10.93 new_esEs28(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) 26.72/10.93 new_esEs11(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.93 new_ltEs19(xuu3300, xuu3400, ty_Float) -> new_ltEs18(xuu3300, xuu3400) 26.72/10.93 new_esEs16(:(xuu50000, xuu50001), [], bfb) -> False 26.72/10.93 new_esEs16([], :(xuu4000, xuu4001), bfb) -> False 26.72/10.93 new_esEs5(Just(xuu50000), Just(xuu4000), app(ty_[], cdc)) -> new_esEs16(xuu50000, xuu4000, cdc) 26.72/10.93 new_esEs23(xuu33000, xuu34000, app(ty_[], bef)) -> new_esEs16(xuu33000, xuu34000, bef) 26.72/10.93 new_ltEs6(xuu33001, xuu34001, app(app(ty_Either, bdf), bdg)) -> new_ltEs4(xuu33001, xuu34001, bdf, bdg) 26.72/10.93 new_primCmpNat2(Succ(xuu3400), xuu3300) -> new_primCmpNat1(xuu3400, xuu3300) 26.72/10.93 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 26.72/10.93 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 26.72/10.93 new_esEs23(xuu33000, xuu34000, ty_Double) -> new_esEs13(xuu33000, xuu34000) 26.72/10.93 new_ltEs12(LT, EQ) -> True 26.72/10.93 new_compare25(Nothing, Just(xuu3400), False, cfd) -> LT 26.72/10.93 new_esEs29(xuu5000, xuu400, app(app(ty_@2, be), bf)) -> new_esEs4(xuu5000, xuu400, be, bf) 26.72/10.93 new_compare110(xuu33000, xuu34000, False, bca, bcb) -> GT 26.72/10.93 new_esEs21(xuu50001, xuu4001, ty_Int) -> new_esEs19(xuu50001, xuu4001) 26.72/10.93 new_lt19(xuu33001, xuu34001, ty_@0) -> new_lt15(xuu33001, xuu34001) 26.72/10.93 new_esEs11(xuu50000, xuu4000, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.93 new_esEs23(xuu33000, xuu34000, ty_Integer) -> new_esEs15(xuu33000, xuu34000) 26.72/10.93 new_lt20(xuu33000, xuu34000, ty_Char) -> new_lt5(xuu33000, xuu34000) 26.72/10.93 new_primEqNat0(Zero, Zero) -> True 26.72/10.93 new_compare8(xuu33000, xuu34000, ty_@0) -> new_compare18(xuu33000, xuu34000) 26.72/10.93 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.93 new_ltEs20(xuu33002, xuu34002, ty_Float) -> new_ltEs18(xuu33002, xuu34002) 26.72/10.93 new_esEs28(xuu33000, xuu34000, app(app(app(ty_@3, ddd), dde), ddf)) -> new_esEs6(xuu33000, xuu34000, ddd, dde, ddf) 26.72/10.93 new_esEs30(xuu22, xuu17, app(app(ty_Either, chb), chc)) -> new_esEs7(xuu22, xuu17, chb, chc) 26.72/10.93 new_esEs10(xuu50001, xuu4001, ty_@0) -> new_esEs9(xuu50001, xuu4001) 26.72/10.93 new_esEs29(xuu5000, xuu400, ty_Ordering) -> new_esEs8(xuu5000, xuu400) 26.72/10.93 new_compare23(xuu33000, xuu34000, bca, bcb) -> new_compare24(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, bca, bcb), bca, bcb) 26.72/10.93 new_ltEs14(True, False) -> False 26.72/10.93 new_esEs26(xuu50000, xuu4000, ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.93 new_compare113(xuu33000, xuu34000, False, bec, bed, bee) -> GT 26.72/10.93 new_esEs22(xuu50000, xuu4000, app(ty_[], baa)) -> new_esEs16(xuu50000, xuu4000, baa) 26.72/10.93 new_esEs22(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.93 new_asAs(False, xuu136) -> False 26.72/10.93 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Float, beh) -> new_esEs14(xuu50000, xuu4000) 26.72/10.93 new_esEs20(xuu50002, xuu4002, ty_Char) -> new_esEs12(xuu50002, xuu4002) 26.72/10.93 new_esEs29(xuu5000, xuu400, app(app(ty_Either, beg), beh)) -> new_esEs7(xuu5000, xuu400, beg, beh) 26.72/10.93 new_esEs27(xuu33001, xuu34001, app(ty_Maybe, dca)) -> new_esEs5(xuu33001, xuu34001, dca) 26.72/10.93 new_lt19(xuu33001, xuu34001, ty_Char) -> new_lt5(xuu33001, xuu34001) 26.72/10.93 new_compare28(xuu33000, xuu34000, True, bea, beb) -> EQ 26.72/10.93 new_lt20(xuu33000, xuu34000, ty_@0) -> new_lt15(xuu33000, xuu34000) 26.72/10.93 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Int) -> new_ltEs13(xuu33000, xuu34000) 26.72/10.93 new_esEs8(EQ, GT) -> False 26.72/10.93 new_esEs8(GT, EQ) -> False 26.72/10.93 new_ltEs4(Right(xuu33000), Left(xuu34000), bgg, bfe) -> False 26.72/10.93 new_esEs10(xuu50001, xuu4001, ty_Int) -> new_esEs19(xuu50001, xuu4001) 26.72/10.93 new_compare27(xuu33000, xuu34000, True) -> EQ 26.72/10.93 new_esEs7(Left(xuu50000), Right(xuu4000), beg, beh) -> False 26.72/10.93 new_esEs7(Right(xuu50000), Left(xuu4000), beg, beh) -> False 26.72/10.93 new_compare18(@0, @0) -> EQ 26.72/10.93 new_esEs11(xuu50000, xuu4000, app(ty_[], dg)) -> new_esEs16(xuu50000, xuu4000, dg) 26.72/10.93 new_compare14(Integer(xuu33000), Integer(xuu34000)) -> new_primCmpInt(xuu33000, xuu34000) 26.72/10.93 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(ty_Maybe, bhc)) -> new_ltEs8(xuu33000, xuu34000, bhc) 26.72/10.93 new_lt6(xuu33000, xuu34000, app(app(ty_Either, bca), bcb)) -> new_lt18(xuu33000, xuu34000, bca, bcb) 26.72/10.93 new_esEs21(xuu50001, xuu4001, ty_@0) -> new_esEs9(xuu50001, xuu4001) 26.72/10.93 new_compare16(xuu33000, xuu34000) -> new_compare26(xuu33000, xuu34000, new_esEs8(xuu33000, xuu34000)) 26.72/10.93 26.72/10.93 The set Q consists of the following terms: 26.72/10.93 26.72/10.93 new_esEs7(Right(x0), Right(x1), x2, ty_Integer) 26.72/10.93 new_ltEs8(Just(x0), Just(x1), ty_Bool) 26.72/10.93 new_esEs8(EQ, EQ) 26.72/10.93 new_esEs21(x0, x1, ty_Integer) 26.72/10.93 new_lt6(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.93 new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.72/10.93 new_esEs29(x0, x1, ty_Double) 26.72/10.93 new_esEs22(x0, x1, ty_@0) 26.72/10.93 new_compare0(:(x0, x1), [], x2) 26.72/10.93 new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) 26.72/10.93 new_esEs7(Left(x0), Left(x1), ty_Double, x2) 26.72/10.93 new_compare26(x0, x1, False) 26.72/10.93 new_esEs27(x0, x1, ty_Double) 26.72/10.93 new_esEs29(x0, x1, ty_Ordering) 26.72/10.93 new_compare8(x0, x1, ty_Double) 26.72/10.93 new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) 26.72/10.93 new_lt20(x0, x1, ty_Integer) 26.72/10.93 new_ltEs11(x0, x1) 26.72/10.93 new_esEs30(x0, x1, ty_Bool) 26.72/10.93 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 26.72/10.93 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 26.72/10.93 new_esEs22(x0, x1, ty_Bool) 26.72/10.94 new_esEs30(x0, x1, app(ty_Ratio, x2)) 26.72/10.94 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 26.72/10.94 new_lt6(x0, x1, app(ty_[], x2)) 26.72/10.94 new_esEs26(x0, x1, app(ty_Ratio, x2)) 26.72/10.94 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 26.72/10.94 new_compare12(x0, x1, x2) 26.72/10.94 new_ltEs8(Just(x0), Just(x1), ty_@0) 26.72/10.94 new_esEs26(x0, x1, ty_@0) 26.72/10.94 new_lt6(x0, x1, ty_Bool) 26.72/10.94 new_lt19(x0, x1, ty_@0) 26.72/10.94 new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.94 new_lt6(x0, x1, ty_@0) 26.72/10.94 new_primCmpNat1(Zero, Zero) 26.72/10.94 new_ltEs13(x0, x1) 26.72/10.94 new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.94 new_primCompAux00(x0, EQ) 26.72/10.94 new_compare8(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.94 new_compare28(x0, x1, True, x2, x3) 26.72/10.94 new_lt5(x0, x1) 26.72/10.94 new_esEs23(x0, x1, ty_Float) 26.72/10.94 new_esEs29(x0, x1, ty_Int) 26.72/10.94 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.94 new_esEs7(Left(x0), Left(x1), ty_Int, x2) 26.72/10.94 new_primEqInt(Pos(Zero), Pos(Zero)) 26.72/10.94 new_compare15(Char(x0), Char(x1)) 26.72/10.94 new_lt13(x0, x1) 26.72/10.94 new_compare6(x0, x1) 26.72/10.94 new_primCmpNat2(Zero, x0) 26.72/10.94 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.94 new_ltEs6(x0, x1, ty_Ordering) 26.72/10.94 new_esEs17(False, False) 26.72/10.94 new_lt9(x0, x1, x2) 26.72/10.94 new_esEs27(x0, x1, ty_Ordering) 26.72/10.94 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 26.72/10.94 new_esEs11(x0, x1, ty_Float) 26.72/10.94 new_primEqNat0(Zero, Succ(x0)) 26.72/10.94 new_primEqInt(Neg(Zero), Neg(Zero)) 26.72/10.94 new_esEs29(x0, x1, ty_Char) 26.72/10.94 new_esEs27(x0, x1, ty_Int) 26.72/10.94 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.94 new_lt19(x0, x1, ty_Int) 26.72/10.94 new_compare10(x0, x1, True, x2) 26.72/10.94 new_pePe(True, x0) 26.72/10.94 new_ltEs6(x0, x1, ty_Int) 26.72/10.94 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.94 new_esEs26(x0, x1, app(ty_Maybe, x2)) 26.72/10.94 new_lt6(x0, x1, ty_Integer) 26.72/10.94 new_esEs27(x0, x1, ty_Char) 26.72/10.94 new_esEs29(x0, x1, app(ty_Ratio, x2)) 26.72/10.94 new_compare113(x0, x1, True, x2, x3, x4) 26.72/10.94 new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.72/10.94 new_esEs20(x0, x1, ty_Integer) 26.72/10.94 new_esEs7(Right(x0), Right(x1), x2, ty_@0) 26.72/10.94 new_esEs7(Left(x0), Left(x1), ty_Char, x2) 26.72/10.94 new_ltEs12(GT, EQ) 26.72/10.94 new_ltEs12(EQ, GT) 26.72/10.94 new_esEs7(Right(x0), Right(x1), x2, ty_Float) 26.72/10.94 new_ltEs4(Right(x0), Right(x1), x2, ty_Ordering) 26.72/10.94 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.94 new_lt17(x0, x1) 26.72/10.94 new_esEs20(x0, x1, ty_Bool) 26.72/10.94 new_ltEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 26.72/10.94 new_compare112(x0, x1, True) 26.72/10.94 new_esEs26(x0, x1, ty_Int) 26.72/10.94 new_lt19(x0, x1, ty_Bool) 26.72/10.94 new_esEs30(x0, x1, ty_Integer) 26.72/10.94 new_lt6(x0, x1, app(ty_Ratio, x2)) 26.72/10.94 new_primMulInt(Pos(x0), Pos(x1)) 26.72/10.94 new_primEqInt(Pos(Zero), Neg(Zero)) 26.72/10.94 new_primEqInt(Neg(Zero), Pos(Zero)) 26.72/10.94 new_primMulNat0(Succ(x0), Succ(x1)) 26.72/10.94 new_ltEs6(x0, x1, ty_Double) 26.72/10.94 new_esEs10(x0, x1, app(ty_Maybe, x2)) 26.72/10.94 new_esEs18(:%(x0, x1), :%(x2, x3), x4) 26.72/10.94 new_esEs26(x0, x1, ty_Bool) 26.72/10.94 new_compare11(x0, x1, x2, x3) 26.72/10.94 new_esEs16([], :(x0, x1), x2) 26.72/10.94 new_esEs26(x0, x1, ty_Char) 26.72/10.94 new_ltEs6(x0, x1, ty_Char) 26.72/10.94 new_esEs26(x0, x1, ty_Double) 26.72/10.94 new_esEs20(x0, x1, app(ty_Maybe, x2)) 26.72/10.94 new_compare8(x0, x1, ty_Ordering) 26.72/10.94 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 26.72/10.94 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.72/10.94 new_compare110(x0, x1, False, x2, x3) 26.72/10.94 new_esEs22(x0, x1, app(ty_Maybe, x2)) 26.72/10.94 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 26.72/10.94 new_esEs5(Just(x0), Nothing, x1) 26.72/10.94 new_ltEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.72/10.94 new_ltEs19(x0, x1, app(ty_[], x2)) 26.72/10.94 new_esEs28(x0, x1, app(ty_Ratio, x2)) 26.72/10.94 new_lt19(x0, x1, ty_Char) 26.72/10.94 new_lt11(x0, x1) 26.72/10.94 new_ltEs8(Just(x0), Just(x1), ty_Integer) 26.72/10.94 new_lt19(x0, x1, ty_Double) 26.72/10.94 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.72/10.94 new_lt20(x0, x1, app(ty_Maybe, x2)) 26.72/10.94 new_compare13(x0, x1, x2, x3, x4) 26.72/10.94 new_sr(x0, x1) 26.72/10.94 new_fsEs(x0) 26.72/10.94 new_esEs28(x0, x1, ty_Ordering) 26.72/10.94 new_compare17(x0, x1) 26.72/10.94 new_compare8(x0, x1, ty_@0) 26.72/10.94 new_esEs30(x0, x1, ty_Ordering) 26.72/10.94 new_esEs7(Left(x0), Left(x1), ty_Bool, x2) 26.72/10.94 new_esEs27(x0, x1, ty_@0) 26.72/10.94 new_compare7(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 26.72/10.94 new_compare7(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 26.72/10.94 new_compare7(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 26.72/10.94 new_esEs9(@0, @0) 26.72/10.94 new_compare28(x0, x1, False, x2, x3) 26.72/10.94 new_compare25(x0, x1, True, x2) 26.72/10.94 new_ltEs8(Just(x0), Just(x1), ty_Double) 26.72/10.94 new_esEs22(x0, x1, ty_Float) 26.72/10.94 new_compare27(x0, x1, True) 26.72/10.94 new_ltEs4(Right(x0), Right(x1), x2, ty_Integer) 26.72/10.94 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.72/10.94 new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.72/10.94 new_esEs24(x0, x1, ty_Int) 26.72/10.94 new_esEs5(Just(x0), Just(x1), ty_Double) 26.72/10.94 new_esEs16(:(x0, x1), [], x2) 26.72/10.94 new_primCompAux00(x0, LT) 26.72/10.94 new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) 26.72/10.94 new_esEs29(x0, x1, ty_@0) 26.72/10.94 new_ltEs8(Just(x0), Just(x1), ty_Ordering) 26.72/10.94 new_esEs28(x0, x1, ty_Char) 26.72/10.94 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.94 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.94 new_esEs30(x0, x1, ty_Double) 26.72/10.94 new_compare26(x0, x1, True) 26.72/10.94 new_esEs11(x0, x1, app(ty_Maybe, x2)) 26.72/10.94 new_esEs15(Integer(x0), Integer(x1)) 26.72/10.94 new_lt19(x0, x1, app(ty_[], x2)) 26.72/10.94 new_esEs21(x0, x1, app(ty_Ratio, x2)) 26.72/10.94 new_ltEs15(x0, x1, x2) 26.72/10.94 new_esEs26(x0, x1, ty_Float) 26.72/10.94 new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.72/10.94 new_asAs(True, x0) 26.72/10.94 new_esEs16(:(x0, x1), :(x2, x3), x4) 26.72/10.94 new_lt8(x0, x1, x2, x3) 26.72/10.94 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.94 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.94 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.94 new_ltEs20(x0, x1, ty_Integer) 26.72/10.94 new_compare29(x0, x1, False, x2, x3, x4) 26.72/10.94 new_esEs22(x0, x1, app(ty_[], x2)) 26.72/10.94 new_esEs16([], [], x0) 26.72/10.94 new_ltEs20(x0, x1, ty_Float) 26.72/10.94 new_compare111(x0, x1, True) 26.72/10.94 new_esEs22(x0, x1, ty_Ordering) 26.72/10.94 new_compare110(x0, x1, True, x2, x3) 26.72/10.94 new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 26.72/10.94 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 26.72/10.94 new_compare0([], [], x0) 26.72/10.94 new_esEs7(Right(x0), Right(x1), x2, ty_Double) 26.72/10.94 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.94 new_ltEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.72/10.94 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.94 new_ltEs19(x0, x1, ty_Double) 26.72/10.94 new_esEs8(GT, GT) 26.72/10.94 new_esEs22(x0, x1, ty_Int) 26.72/10.94 new_esEs20(x0, x1, ty_Char) 26.72/10.94 new_ltEs12(EQ, LT) 26.72/10.94 new_ltEs12(LT, EQ) 26.72/10.94 new_compare0([], :(x0, x1), x2) 26.72/10.94 new_esEs8(LT, EQ) 26.72/10.94 new_esEs8(EQ, LT) 26.72/10.94 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.94 new_ltEs12(GT, GT) 26.72/10.94 new_esEs27(x0, x1, app(ty_Maybe, x2)) 26.72/10.94 new_primMulNat0(Succ(x0), Zero) 26.72/10.94 new_primCmpInt(Neg(Zero), Neg(Zero)) 26.72/10.94 new_esEs22(x0, x1, ty_Char) 26.72/10.94 new_esEs21(x0, x1, app(ty_[], x2)) 26.72/10.94 new_lt20(x0, x1, ty_@0) 26.72/10.94 new_esEs28(x0, x1, ty_Bool) 26.72/10.94 new_compare25(Nothing, Nothing, False, x0) 26.72/10.94 new_esEs19(x0, x1) 26.72/10.94 new_esEs11(x0, x1, ty_Double) 26.72/10.94 new_lt14(x0, x1, x2) 26.72/10.94 new_ltEs14(False, False) 26.72/10.94 new_esEs11(x0, x1, ty_@0) 26.72/10.94 new_esEs23(x0, x1, ty_Int) 26.72/10.94 new_compare10(x0, x1, False, x2) 26.72/10.94 new_ltEs6(x0, x1, app(ty_Ratio, x2)) 26.72/10.94 new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.72/10.94 new_lt19(x0, x1, ty_Integer) 26.72/10.94 new_esEs8(LT, LT) 26.72/10.94 new_esEs23(x0, x1, ty_Integer) 26.72/10.94 new_compare8(x0, x1, app(ty_Maybe, x2)) 26.72/10.94 new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 26.72/10.94 new_primCmpInt(Pos(Zero), Neg(Zero)) 26.72/10.94 new_primCmpInt(Neg(Zero), Pos(Zero)) 26.72/10.94 new_esEs30(x0, x1, app(ty_Maybe, x2)) 26.72/10.94 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.94 new_esEs28(x0, x1, ty_Float) 26.72/10.94 new_esEs20(x0, x1, ty_Int) 26.72/10.94 new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.72/10.94 new_esEs21(x0, x1, ty_@0) 26.72/10.94 new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.72/10.94 new_lt19(x0, x1, app(ty_Maybe, x2)) 26.72/10.94 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 26.72/10.94 new_esEs10(x0, x1, ty_Char) 26.72/10.94 new_ltEs4(Right(x0), Right(x1), x2, ty_Bool) 26.72/10.94 new_primEqNat0(Succ(x0), Zero) 26.72/10.94 new_lt15(x0, x1) 26.72/10.94 new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.94 new_ltEs20(x0, x1, ty_Int) 26.72/10.94 new_ltEs4(Right(x0), Right(x1), x2, ty_Float) 26.72/10.94 new_ltEs20(x0, x1, ty_Bool) 26.72/10.94 new_esEs22(x0, x1, ty_Integer) 26.72/10.94 new_esEs23(x0, x1, ty_Char) 26.72/10.94 new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.72/10.94 new_esEs29(x0, x1, app(ty_[], x2)) 26.72/10.94 new_esEs10(x0, x1, ty_Int) 26.72/10.94 new_esEs22(x0, x1, app(ty_Ratio, x2)) 26.72/10.94 new_ltEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.72/10.94 new_ltEs19(x0, x1, ty_@0) 26.72/10.94 new_esEs28(x0, x1, app(ty_[], x2)) 26.72/10.94 new_esEs28(x0, x1, ty_Int) 26.72/10.94 new_ltEs20(x0, x1, ty_Char) 26.72/10.94 new_compare114(x0, x1, False, x2, x3) 26.72/10.94 new_ltEs12(LT, LT) 26.72/10.94 new_esEs5(Nothing, Nothing, x0) 26.72/10.94 new_esEs20(x0, x1, ty_Float) 26.72/10.94 new_ltEs4(Left(x0), Left(x1), ty_Double, x2) 26.72/10.94 new_lt19(x0, x1, ty_Ordering) 26.72/10.94 new_esEs23(x0, x1, app(ty_Maybe, x2)) 26.72/10.94 new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) 26.72/10.94 new_ltEs4(Right(x0), Right(x1), x2, ty_Int) 26.72/10.94 new_esEs21(x0, x1, ty_Double) 26.72/10.94 new_esEs23(x0, x1, ty_Bool) 26.72/10.94 new_ltEs7(x0, x1, x2) 26.72/10.94 new_ltEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.72/10.94 new_ltEs17(x0, x1) 26.72/10.94 new_primCmpNat0(x0, Zero) 26.72/10.94 new_esEs10(x0, x1, ty_Float) 26.72/10.94 new_lt20(x0, x1, ty_Double) 26.72/10.94 new_esEs30(x0, x1, ty_@0) 26.72/10.94 new_ltEs4(Right(x0), Right(x1), x2, ty_Char) 26.72/10.94 new_compare113(x0, x1, False, x2, x3, x4) 26.72/10.94 new_compare25(Just(x0), Nothing, False, x1) 26.72/10.94 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.94 new_lt6(x0, x1, ty_Double) 26.72/10.94 new_esEs11(x0, x1, ty_Char) 26.72/10.94 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 26.72/10.94 new_compare27(x0, x1, False) 26.72/10.94 new_lt20(x0, x1, app(ty_Ratio, x2)) 26.72/10.94 new_ltEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.72/10.94 new_ltEs10(x0, x1) 26.72/10.94 new_esEs7(Left(x0), Left(x1), ty_Float, x2) 26.72/10.94 new_esEs29(x0, x1, ty_Float) 26.72/10.94 new_primCmpNat0(x0, Succ(x1)) 26.72/10.94 new_ltEs4(Left(x0), Left(x1), ty_Integer, x2) 26.72/10.94 new_esEs5(Just(x0), Just(x1), ty_@0) 26.72/10.94 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.72/10.94 new_esEs20(x0, x1, app(ty_Ratio, x2)) 26.72/10.94 new_primCmpNat1(Zero, Succ(x0)) 26.72/10.94 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.94 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.94 new_ltEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.72/10.94 new_esEs10(x0, x1, ty_@0) 26.72/10.94 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 26.72/10.94 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.94 new_compare24(x0, x1, False, x2, x3) 26.72/10.94 new_ltEs8(Nothing, Nothing, x0) 26.72/10.94 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.94 new_esEs24(x0, x1, ty_Integer) 26.72/10.94 new_primMulNat0(Zero, Zero) 26.72/10.94 new_ltEs4(Left(x0), Right(x1), x2, x3) 26.72/10.94 new_ltEs4(Right(x0), Left(x1), x2, x3) 26.72/10.94 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.94 new_primCmpNat2(Succ(x0), x1) 26.72/10.94 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.94 new_ltEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.72/10.94 new_compare8(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.94 new_esEs11(x0, x1, ty_Int) 26.72/10.94 new_esEs27(x0, x1, ty_Float) 26.72/10.94 new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.94 new_esEs10(x0, x1, app(ty_[], x2)) 26.72/10.94 new_lt12(x0, x1) 26.72/10.94 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.94 new_compare0(:(x0, x1), :(x2, x3), x4) 26.72/10.94 new_compare114(x0, x1, True, x2, x3) 26.72/10.94 new_esEs20(x0, x1, ty_Double) 26.72/10.94 new_esEs17(True, True) 26.72/10.94 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.94 new_ltEs6(x0, x1, ty_Float) 26.72/10.94 new_esEs23(x0, x1, ty_Double) 26.72/10.94 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 26.72/10.94 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 26.72/10.94 new_ltEs5(@2(x0, x1), @2(x2, x3), x4, x5) 26.72/10.94 new_ltEs19(x0, x1, ty_Int) 26.72/10.94 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 26.72/10.94 new_compare14(Integer(x0), Integer(x1)) 26.72/10.94 new_esEs7(Left(x0), Right(x1), x2, x3) 26.72/10.94 new_esEs7(Right(x0), Left(x1), x2, x3) 26.72/10.94 new_ltEs16(x0, x1) 26.72/10.94 new_compare8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.94 new_ltEs19(x0, x1, ty_Char) 26.72/10.94 new_primPlusNat0(Succ(x0), Succ(x1)) 26.72/10.94 new_lt16(x0, x1) 26.72/10.94 new_ltEs4(Left(x0), Left(x1), ty_@0, x2) 26.72/10.94 new_primEqNat0(Succ(x0), Succ(x1)) 26.72/10.94 new_esEs23(x0, x1, ty_Ordering) 26.72/10.94 new_esEs11(x0, x1, app(ty_Ratio, x2)) 26.72/10.94 new_esEs10(x0, x1, ty_Bool) 26.72/10.94 new_ltEs6(x0, x1, ty_Integer) 26.72/10.94 new_ltEs6(x0, x1, app(ty_Maybe, x2)) 26.72/10.94 new_esEs5(Just(x0), Just(x1), ty_Integer) 26.72/10.94 new_compare8(x0, x1, app(ty_[], x2)) 26.72/10.94 new_primPlusNat0(Zero, Zero) 26.72/10.94 new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.72/10.94 new_primCmpNat1(Succ(x0), Zero) 26.72/10.94 new_esEs10(x0, x1, ty_Integer) 26.72/10.94 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.94 new_pePe(False, x0) 26.72/10.94 new_ltEs14(True, True) 26.72/10.94 new_ltEs19(x0, x1, ty_Bool) 26.72/10.94 new_not(True) 26.72/10.94 new_esEs25(x0, x1, ty_Int) 26.72/10.94 new_ltEs20(x0, x1, app(ty_[], x2)) 26.72/10.94 new_esEs8(EQ, GT) 26.72/10.94 new_esEs8(GT, EQ) 26.72/10.94 new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.72/10.94 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.94 new_primMulNat0(Zero, Succ(x0)) 26.72/10.94 new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.72/10.94 new_esEs20(x0, x1, app(ty_[], x2)) 26.72/10.94 new_compare112(x0, x1, False) 26.72/10.94 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.94 new_lt20(x0, x1, ty_Ordering) 26.72/10.94 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.94 new_esEs11(x0, x1, ty_Ordering) 26.72/10.94 new_esEs20(x0, x1, ty_Ordering) 26.72/10.94 new_esEs29(x0, x1, ty_Integer) 26.72/10.94 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.72/10.94 new_esEs27(x0, x1, ty_Integer) 26.72/10.94 new_lt6(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.94 new_ltEs18(x0, x1) 26.72/10.94 new_ltEs20(x0, x1, ty_Ordering) 26.72/10.94 new_ltEs19(x0, x1, ty_Ordering) 26.72/10.94 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 26.72/10.94 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.94 new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.72/10.94 new_esEs17(False, True) 26.72/10.94 new_esEs17(True, False) 26.72/10.94 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.94 new_primPlusNat0(Succ(x0), Zero) 26.72/10.94 new_esEs28(x0, x1, ty_Integer) 26.72/10.94 new_esEs28(x0, x1, app(ty_Maybe, x2)) 26.72/10.94 new_ltEs19(x0, x1, ty_Integer) 26.72/10.94 new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.72/10.94 new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.72/10.94 new_ltEs12(EQ, EQ) 26.72/10.94 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.94 new_compare18(@0, @0) 26.72/10.94 new_esEs21(x0, x1, ty_Ordering) 26.72/10.94 new_esEs10(x0, x1, ty_Ordering) 26.72/10.94 new_esEs27(x0, x1, app(ty_[], x2)) 26.72/10.94 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.94 new_esEs13(Double(x0, x1), Double(x2, x3)) 26.72/10.94 new_esEs23(x0, x1, app(ty_Ratio, x2)) 26.72/10.94 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.94 new_lt7(x0, x1, x2) 26.72/10.94 new_compare8(x0, x1, ty_Integer) 26.72/10.94 new_lt10(x0, x1, x2, x3, x4) 26.72/10.94 new_primCmpInt(Pos(Zero), Pos(Zero)) 26.72/10.94 new_ltEs6(x0, x1, ty_Bool) 26.72/10.94 new_compare29(x0, x1, True, x2, x3, x4) 26.72/10.94 new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.72/10.94 new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) 26.72/10.94 new_ltEs4(Left(x0), Left(x1), ty_Int, x2) 26.72/10.94 new_compare8(x0, x1, app(ty_Ratio, x2)) 26.72/10.94 new_ltEs6(x0, x1, app(ty_[], x2)) 26.72/10.94 new_compare7(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 26.72/10.94 new_compare16(x0, x1) 26.72/10.94 new_ltEs8(Just(x0), Just(x1), ty_Float) 26.72/10.94 new_esEs22(x0, x1, ty_Double) 26.72/10.94 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.94 new_esEs23(x0, x1, app(ty_[], x2)) 26.72/10.94 new_esEs7(Right(x0), Right(x1), x2, ty_Int) 26.72/10.94 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.94 new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.72/10.94 new_esEs11(x0, x1, app(ty_[], x2)) 26.72/10.94 new_esEs30(x0, x1, ty_Float) 26.72/10.94 new_esEs27(x0, x1, ty_Bool) 26.72/10.94 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.94 new_ltEs4(Left(x0), Left(x1), ty_Char, x2) 26.72/10.94 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.94 new_esEs8(LT, GT) 26.72/10.94 new_esEs8(GT, LT) 26.72/10.94 new_primPlusNat1(x0, x1) 26.72/10.94 new_lt6(x0, x1, ty_Ordering) 26.72/10.94 new_esEs29(x0, x1, ty_Bool) 26.72/10.94 new_esEs12(Char(x0), Char(x1)) 26.72/10.94 new_esEs27(x0, x1, app(ty_Ratio, x2)) 26.72/10.94 new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) 26.72/10.94 new_lt18(x0, x1, x2, x3) 26.72/10.94 new_ltEs8(Just(x0), Just(x1), ty_Int) 26.72/10.94 new_lt19(x0, x1, ty_Float) 26.72/10.94 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.94 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 26.72/10.94 new_esEs5(Nothing, Just(x0), x1) 26.72/10.94 new_esEs20(x0, x1, ty_@0) 26.72/10.94 new_ltEs4(Left(x0), Left(x1), ty_Float, x2) 26.72/10.94 new_esEs26(x0, x1, ty_Ordering) 26.72/10.94 new_esEs7(Left(x0), Left(x1), ty_Integer, x2) 26.72/10.94 new_ltEs6(x0, x1, ty_@0) 26.72/10.94 new_ltEs4(Left(x0), Left(x1), ty_Ordering, x2) 26.72/10.94 new_esEs10(x0, x1, app(ty_Ratio, x2)) 26.72/10.94 new_esEs5(Just(x0), Just(x1), ty_Ordering) 26.72/10.94 new_esEs10(x0, x1, ty_Double) 26.72/10.94 new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.72/10.94 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 26.72/10.94 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 26.72/10.94 new_esEs29(x0, x1, app(ty_Maybe, x2)) 26.72/10.94 new_lt6(x0, x1, ty_Float) 26.72/10.94 new_compare8(x0, x1, ty_Bool) 26.72/10.94 new_esEs7(Right(x0), Right(x1), x2, ty_Char) 26.72/10.94 new_esEs26(x0, x1, app(ty_[], x2)) 26.72/10.94 new_compare24(x0, x1, True, x2, x3) 26.72/10.94 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.94 new_ltEs8(Just(x0), Nothing, x1) 26.72/10.94 new_esEs7(Left(x0), Left(x1), ty_@0, x2) 26.72/10.94 new_esEs11(x0, x1, ty_Integer) 26.72/10.94 new_primMulInt(Neg(x0), Neg(x1)) 26.72/10.94 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.94 new_esEs30(x0, x1, app(ty_[], x2)) 26.72/10.94 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.94 new_esEs23(x0, x1, ty_@0) 26.72/10.94 new_esEs26(x0, x1, ty_Integer) 26.72/10.94 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.94 new_esEs5(Just(x0), Just(x1), ty_Float) 26.72/10.94 new_compare23(x0, x1, x2, x3) 26.72/10.94 new_ltEs14(False, True) 26.72/10.94 new_ltEs14(True, False) 26.72/10.94 new_primPlusNat0(Zero, Succ(x0)) 26.72/10.94 new_primEqNat0(Zero, Zero) 26.72/10.94 new_compare8(x0, x1, ty_Char) 26.72/10.94 new_esEs25(x0, x1, ty_Integer) 26.72/10.94 new_primCompAux00(x0, GT) 26.72/10.94 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.94 new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) 26.72/10.94 new_lt20(x0, x1, app(ty_[], x2)) 26.72/10.94 new_ltEs4(Right(x0), Right(x1), x2, ty_@0) 26.72/10.94 new_not(False) 26.72/10.94 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 26.72/10.94 new_ltEs8(Just(x0), Just(x1), ty_Char) 26.72/10.94 new_esEs5(Just(x0), Just(x1), ty_Char) 26.72/10.94 new_esEs11(x0, x1, ty_Bool) 26.72/10.94 new_lt20(x0, x1, ty_Float) 26.72/10.94 new_ltEs19(x0, x1, ty_Float) 26.72/10.94 new_lt20(x0, x1, ty_Bool) 26.72/10.94 new_ltEs12(LT, GT) 26.72/10.94 new_ltEs12(GT, LT) 26.72/10.94 new_esEs30(x0, x1, ty_Char) 26.72/10.94 new_lt6(x0, x1, ty_Int) 26.72/10.94 new_compare8(x0, x1, ty_Int) 26.72/10.94 new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.72/10.94 new_esEs21(x0, x1, app(ty_Maybe, x2)) 26.72/10.94 new_sr0(Integer(x0), Integer(x1)) 26.72/10.94 new_lt6(x0, x1, app(ty_Maybe, x2)) 26.72/10.94 new_esEs21(x0, x1, ty_Bool) 26.72/10.94 new_esEs28(x0, x1, ty_Double) 26.72/10.94 new_esEs7(Right(x0), Right(x1), x2, ty_Bool) 26.72/10.94 new_esEs5(Just(x0), Just(x1), ty_Int) 26.72/10.94 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 26.72/10.94 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 26.72/10.94 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 26.72/10.94 new_esEs21(x0, x1, ty_Float) 26.72/10.94 new_compare25(Just(x0), Just(x1), False, x2) 26.72/10.94 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.94 new_ltEs20(x0, x1, ty_@0) 26.72/10.94 new_ltEs4(Left(x0), Left(x1), ty_Bool, x2) 26.72/10.94 new_lt19(x0, x1, app(ty_Ratio, x2)) 26.72/10.94 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.94 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.94 new_compare25(Nothing, Just(x0), False, x1) 26.72/10.94 new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.72/10.94 new_lt4(x0, x1) 26.72/10.94 new_asAs(False, x0) 26.72/10.94 new_esEs30(x0, x1, ty_Int) 26.72/10.94 new_primMulInt(Pos(x0), Neg(x1)) 26.72/10.94 new_primMulInt(Neg(x0), Pos(x1)) 26.72/10.94 new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.72/10.94 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 26.72/10.94 new_ltEs8(Nothing, Just(x0), x1) 26.72/10.94 new_esEs14(Float(x0, x1), Float(x2, x3)) 26.72/10.94 new_lt20(x0, x1, ty_Int) 26.72/10.94 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.72/10.94 new_primCmpNat1(Succ(x0), Succ(x1)) 26.72/10.94 new_esEs21(x0, x1, ty_Char) 26.72/10.94 new_compare111(x0, x1, False) 26.72/10.94 new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.72/10.94 new_ltEs4(Right(x0), Right(x1), x2, ty_Double) 26.72/10.94 new_esEs21(x0, x1, ty_Int) 26.72/10.94 new_lt6(x0, x1, ty_Char) 26.72/10.94 new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 26.72/10.94 new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 26.72/10.94 new_esEs5(Just(x0), Just(x1), ty_Bool) 26.72/10.94 new_compare8(x0, x1, ty_Float) 26.72/10.94 new_lt20(x0, x1, ty_Char) 26.72/10.94 new_ltEs20(x0, x1, ty_Double) 26.72/10.94 new_primCompAux0(x0, x1, x2, x3) 26.72/10.94 new_esEs28(x0, x1, ty_@0) 26.72/10.94 26.72/10.94 We have to consider all minimal (P,Q,R)-chains. 26.72/10.94 ---------------------------------------- 26.72/10.94 26.72/10.94 (35) DependencyGraphProof (EQUIVALENT) 26.72/10.94 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 1 SCC with 1 less node. 26.72/10.94 ---------------------------------------- 26.72/10.94 26.72/10.94 (36) 26.72/10.94 Obligation: 26.72/10.94 Q DP problem: 26.72/10.94 The TRS P consists of the following rules: 26.72/10.94 26.72/10.94 new_addToFM_C(xuu3, Branch(Just(xuu400), xuu41, xuu42, xuu43, xuu44), Just(xuu5000), xuu501, h, ba) -> new_addToFM_C21(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs8(new_compare25(Just(xuu5000), Just(xuu400), new_esEs29(xuu5000, xuu400, h), h), LT), h, ba) 26.72/10.94 new_addToFM_C21(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, bb, bc) -> new_addToFM_C12(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs8(new_compare25(Just(xuu22), Just(xuu17), new_esEs30(xuu22, xuu17, bb), bb), GT), bb, bc) 26.72/10.94 new_addToFM_C12(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu16, xuu21, Just(xuu22), xuu23, bb, bc) 26.72/10.94 new_addToFM_C(xuu3, Branch(Nothing, xuu41, xuu42, xuu43, xuu44), Just(xuu5000), xuu501, h, ba) -> new_addToFM_C20(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs8(GT, LT), h, ba) 26.72/10.94 new_addToFM_C20(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, False, h, ba) -> new_addToFM_C11(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs8(new_compare25(Just(xuu5000), Nothing, False, h), GT), h, ba) 26.72/10.94 new_addToFM_C11(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, True, h, ba) -> new_addToFM_C(xuu3, xuu44, Just(xuu5000), xuu501, h, ba) 26.72/10.94 new_addToFM_C21(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu16, xuu20, Just(xuu22), xuu23, bb, bc) 26.72/10.94 26.72/10.94 The TRS R consists of the following rules: 26.72/10.94 26.72/10.94 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Int) -> new_ltEs13(xuu33000, xuu34000) 26.72/10.94 new_esEs11(xuu50000, xuu4000, ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.94 new_primCmpInt(Neg(Succ(xuu3300)), Pos(xuu340)) -> LT 26.72/10.94 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 26.72/10.94 new_ltEs4(Left(xuu33000), Left(xuu34000), app(ty_[], bgd), bfe) -> new_ltEs15(xuu33000, xuu34000, bgd) 26.72/10.94 new_primPlusNat0(Zero, Zero) -> Zero 26.72/10.94 new_lt6(xuu33000, xuu34000, app(app(ty_@2, bea), beb)) -> new_lt8(xuu33000, xuu34000, bea, beb) 26.72/10.94 new_compare8(xuu33000, xuu34000, ty_Ordering) -> new_compare16(xuu33000, xuu34000) 26.72/10.94 new_pePe(True, xuu161) -> True 26.72/10.94 new_primCmpNat0(xuu3300, Succ(xuu3400)) -> new_primCmpNat1(xuu3300, xuu3400) 26.72/10.94 new_esEs30(xuu22, xuu17, ty_Ordering) -> new_esEs8(xuu22, xuu17) 26.72/10.94 new_esEs24(xuu50001, xuu4001, ty_Int) -> new_esEs19(xuu50001, xuu4001) 26.72/10.94 new_esEs30(xuu22, xuu17, ty_Int) -> new_esEs19(xuu22, xuu17) 26.72/10.94 new_esEs21(xuu50001, xuu4001, app(ty_Ratio, gh)) -> new_esEs18(xuu50001, xuu4001, gh) 26.72/10.94 new_esEs29(xuu5000, xuu400, ty_Char) -> new_esEs12(xuu5000, xuu400) 26.72/10.94 new_ltEs12(LT, LT) -> True 26.72/10.94 new_esEs10(xuu50001, xuu4001, app(app(app(ty_@3, cf), cg), da)) -> new_esEs6(xuu50001, xuu4001, cf, cg, da) 26.72/10.94 new_esEs30(xuu22, xuu17, app(app(ty_@2, chd), che)) -> new_esEs4(xuu22, xuu17, chd, che) 26.72/10.94 new_lt19(xuu33001, xuu34001, app(ty_[], dce)) -> new_lt14(xuu33001, xuu34001, dce) 26.72/10.94 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 26.72/10.94 new_esEs27(xuu33001, xuu34001, app(ty_[], dce)) -> new_esEs16(xuu33001, xuu34001, dce) 26.72/10.94 new_primCmpInt(Pos(Zero), Neg(Succ(xuu3400))) -> GT 26.72/10.94 new_esEs26(xuu50000, xuu4000, ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.94 new_esEs22(xuu50000, xuu4000, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.94 new_ltEs19(xuu3300, xuu3400, app(app(ty_@2, bcd), bce)) -> new_ltEs5(xuu3300, xuu3400, bcd, bce) 26.72/10.94 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(ty_[], bhg)) -> new_ltEs15(xuu33000, xuu34000, bhg) 26.72/10.94 new_lt7(xuu33000, xuu34000, bdh) -> new_esEs8(new_compare9(xuu33000, xuu34000, bdh), LT) 26.72/10.94 new_primMulNat0(Succ(xuu5000100), Succ(xuu400000)) -> new_primPlusNat1(new_primMulNat0(xuu5000100, Succ(xuu400000)), xuu400000) 26.72/10.94 new_compare8(xuu33000, xuu34000, app(ty_Ratio, bag)) -> new_compare9(xuu33000, xuu34000, bag) 26.72/10.94 new_esEs29(xuu5000, xuu400, ty_Float) -> new_esEs14(xuu5000, xuu400) 26.72/10.94 new_compare28(xuu33000, xuu34000, False, bea, beb) -> new_compare114(xuu33000, xuu34000, new_ltEs5(xuu33000, xuu34000, bea, beb), bea, beb) 26.72/10.94 new_esEs23(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) 26.72/10.94 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Double, beh) -> new_esEs13(xuu50000, xuu4000) 26.72/10.94 new_compare8(xuu33000, xuu34000, ty_Double) -> new_compare19(xuu33000, xuu34000) 26.72/10.94 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Double, bfe) -> new_ltEs17(xuu33000, xuu34000) 26.72/10.94 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.94 new_lt19(xuu33001, xuu34001, ty_Int) -> new_lt4(xuu33001, xuu34001) 26.72/10.94 new_lt19(xuu33001, xuu34001, app(app(ty_Either, dcf), dcg)) -> new_lt18(xuu33001, xuu34001, dcf, dcg) 26.72/10.94 new_primCmpNat1(Succ(xuu33000), Succ(xuu34000)) -> new_primCmpNat1(xuu33000, xuu34000) 26.72/10.94 new_ltEs19(xuu3300, xuu3400, ty_Char) -> new_ltEs11(xuu3300, xuu3400) 26.72/10.94 new_esEs28(xuu33000, xuu34000, app(app(ty_Either, ddh), dea)) -> new_esEs7(xuu33000, xuu34000, ddh, dea) 26.72/10.94 new_ltEs15(xuu3300, xuu3400, baf) -> new_fsEs(new_compare0(xuu3300, xuu3400, baf)) 26.72/10.94 new_esEs13(Double(xuu50000, xuu50001), Double(xuu4000, xuu4001)) -> new_esEs19(new_sr(xuu50000, xuu4001), new_sr(xuu50001, xuu4000)) 26.72/10.94 new_ltEs6(xuu33001, xuu34001, ty_@0) -> new_ltEs16(xuu33001, xuu34001) 26.72/10.94 new_compare26(xuu33000, xuu34000, True) -> EQ 26.72/10.94 new_esEs10(xuu50001, xuu4001, ty_Char) -> new_esEs12(xuu50001, xuu4001) 26.72/10.94 new_esEs8(GT, GT) -> True 26.72/10.94 new_primEqInt(Pos(Succ(xuu500000)), Pos(Zero)) -> False 26.72/10.94 new_primEqInt(Pos(Zero), Pos(Succ(xuu40000))) -> False 26.72/10.94 new_lt12(xuu33000, xuu34000) -> new_esEs8(new_compare16(xuu33000, xuu34000), LT) 26.72/10.94 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(app(app(ty_@3, ccc), ccd), cce)) -> new_esEs6(xuu50000, xuu4000, ccc, ccd, cce) 26.72/10.94 new_fsEs(xuu146) -> new_not(new_esEs8(xuu146, GT)) 26.72/10.94 new_esEs29(xuu5000, xuu400, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs6(xuu5000, xuu400, ed, ee, ef) 26.72/10.94 new_compare25(Just(xuu3300), Just(xuu3400), False, cfd) -> new_compare10(xuu3300, xuu3400, new_ltEs19(xuu3300, xuu3400, cfd), cfd) 26.72/10.94 new_ltEs19(xuu3300, xuu3400, ty_Bool) -> new_ltEs14(xuu3300, xuu3400) 26.72/10.94 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.94 new_esEs20(xuu50002, xuu4002, ty_Int) -> new_esEs19(xuu50002, xuu4002) 26.72/10.94 new_esEs8(EQ, EQ) -> True 26.72/10.94 new_ltEs20(xuu33002, xuu34002, ty_Char) -> new_ltEs11(xuu33002, xuu34002) 26.72/10.94 new_primEqNat0(Succ(xuu500000), Succ(xuu40000)) -> new_primEqNat0(xuu500000, xuu40000) 26.72/10.94 new_esEs30(xuu22, xuu17, ty_Char) -> new_esEs12(xuu22, xuu17) 26.72/10.94 new_esEs27(xuu33001, xuu34001, ty_Integer) -> new_esEs15(xuu33001, xuu34001) 26.72/10.94 new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare6(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 26.72/10.94 new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare6(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 26.72/10.94 new_ltEs20(xuu33002, xuu34002, ty_Integer) -> new_ltEs10(xuu33002, xuu34002) 26.72/10.94 new_esEs21(xuu50001, xuu4001, ty_Double) -> new_esEs13(xuu50001, xuu4001) 26.72/10.94 new_esEs10(xuu50001, xuu4001, ty_Float) -> new_esEs14(xuu50001, xuu4001) 26.72/10.94 new_esEs22(xuu50000, xuu4000, ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.94 new_not(True) -> False 26.72/10.94 new_lt20(xuu33000, xuu34000, app(ty_Ratio, dch)) -> new_lt7(xuu33000, xuu34000, dch) 26.72/10.94 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(app(ty_@2, bha), bhb)) -> new_ltEs5(xuu33000, xuu34000, bha, bhb) 26.72/10.94 new_ltEs12(LT, GT) -> True 26.72/10.94 new_lt14(xuu33000, xuu34000, bef) -> new_esEs8(new_compare0(xuu33000, xuu34000, bef), LT) 26.72/10.94 new_lt19(xuu33001, xuu34001, app(ty_Ratio, dbf)) -> new_lt7(xuu33001, xuu34001, dbf) 26.72/10.94 new_primCompAux00(xuu178, LT) -> LT 26.72/10.94 new_esEs10(xuu50001, xuu4001, app(ty_Ratio, ce)) -> new_esEs18(xuu50001, xuu4001, ce) 26.72/10.94 new_esEs21(xuu50001, xuu4001, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs6(xuu50001, xuu4001, ha, hb, hc) 26.72/10.94 new_esEs27(xuu33001, xuu34001, ty_Bool) -> new_esEs17(xuu33001, xuu34001) 26.72/10.94 new_esEs30(xuu22, xuu17, ty_Float) -> new_esEs14(xuu22, xuu17) 26.72/10.94 new_esEs20(xuu50002, xuu4002, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs6(xuu50002, xuu4002, fg, fh, ga) 26.72/10.94 new_esEs26(xuu50000, xuu4000, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.94 new_esEs20(xuu50002, xuu4002, app(app(ty_Either, eg), eh)) -> new_esEs7(xuu50002, xuu4002, eg, eh) 26.72/10.94 new_compare8(xuu33000, xuu34000, ty_Float) -> new_compare7(xuu33000, xuu34000) 26.72/10.94 new_ltEs19(xuu3300, xuu3400, ty_Integer) -> new_ltEs10(xuu3300, xuu3400) 26.72/10.94 new_esEs10(xuu50001, xuu4001, ty_Ordering) -> new_esEs8(xuu50001, xuu4001) 26.72/10.94 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Integer, beh) -> new_esEs15(xuu50000, xuu4000) 26.72/10.94 new_ltEs19(xuu3300, xuu3400, ty_Double) -> new_ltEs17(xuu3300, xuu3400) 26.72/10.94 new_esEs11(xuu50000, xuu4000, app(ty_Ratio, dh)) -> new_esEs18(xuu50000, xuu4000, dh) 26.72/10.94 new_primEqNat0(Succ(xuu500000), Zero) -> False 26.72/10.94 new_primEqNat0(Zero, Succ(xuu40000)) -> False 26.72/10.94 new_compare112(xuu33000, xuu34000, False) -> GT 26.72/10.94 new_ltEs20(xuu33002, xuu34002, app(ty_Maybe, dag)) -> new_ltEs8(xuu33002, xuu34002, dag) 26.72/10.94 new_esEs29(xuu5000, xuu400, ty_Int) -> new_esEs19(xuu5000, xuu400) 26.72/10.94 new_lt20(xuu33000, xuu34000, app(ty_[], ddg)) -> new_lt14(xuu33000, xuu34000, ddg) 26.72/10.94 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_ltEs9(xuu33000, xuu34000, bhd, bhe, bhf) 26.72/10.94 new_ltEs20(xuu33002, xuu34002, ty_Bool) -> new_ltEs14(xuu33002, xuu34002) 26.72/10.94 new_primCompAux00(xuu178, GT) -> GT 26.72/10.94 new_compare7(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare6(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 26.72/10.94 new_compare7(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare6(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 26.72/10.94 new_ltEs6(xuu33001, xuu34001, app(ty_Maybe, bda)) -> new_ltEs8(xuu33001, xuu34001, bda) 26.72/10.94 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.94 new_esEs5(Just(xuu50000), Just(xuu4000), app(ty_Ratio, cdd)) -> new_esEs18(xuu50000, xuu4000, cdd) 26.72/10.94 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Bool) -> new_ltEs14(xuu33000, xuu34000) 26.72/10.94 new_primCmpNat2(Zero, xuu3300) -> LT 26.72/10.94 new_esEs20(xuu50002, xuu4002, ty_Ordering) -> new_esEs8(xuu50002, xuu4002) 26.72/10.94 new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(ty_@2, cec), ced)) -> new_ltEs5(xuu33000, xuu34000, cec, ced) 26.72/10.94 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Integer, bfe) -> new_ltEs10(xuu33000, xuu34000) 26.72/10.94 new_primCmpInt(Pos(Succ(xuu3300)), Neg(xuu340)) -> GT 26.72/10.94 new_ltEs20(xuu33002, xuu34002, app(app(ty_@2, dae), daf)) -> new_ltEs5(xuu33002, xuu34002, dae, daf) 26.72/10.94 new_esEs20(xuu50002, xuu4002, app(app(ty_@2, fa), fb)) -> new_esEs4(xuu50002, xuu4002, fa, fb) 26.72/10.94 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_@0, bfe) -> new_ltEs16(xuu33000, xuu34000) 26.72/10.94 new_ltEs6(xuu33001, xuu34001, app(ty_Ratio, bcf)) -> new_ltEs7(xuu33001, xuu34001, bcf) 26.72/10.94 new_compare110(xuu33000, xuu34000, True, bca, bcb) -> LT 26.72/10.94 new_ltEs6(xuu33001, xuu34001, ty_Double) -> new_ltEs17(xuu33001, xuu34001) 26.72/10.94 new_esEs19(xuu5000, xuu400) -> new_primEqInt(xuu5000, xuu400) 26.72/10.94 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Bool, beh) -> new_esEs17(xuu50000, xuu4000) 26.72/10.94 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Char, bfe) -> new_ltEs11(xuu33000, xuu34000) 26.72/10.94 new_esEs22(xuu50000, xuu4000, app(ty_Ratio, bab)) -> new_esEs18(xuu50000, xuu4000, bab) 26.72/10.94 new_esEs7(Left(xuu50000), Left(xuu4000), app(app(app(ty_@3, cba), cbb), cbc), beh) -> new_esEs6(xuu50000, xuu4000, cba, cbb, cbc) 26.72/10.94 new_esEs26(xuu50000, xuu4000, ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.94 new_ltEs20(xuu33002, xuu34002, ty_Double) -> new_ltEs17(xuu33002, xuu34002) 26.72/10.94 new_esEs28(xuu33000, xuu34000, ty_Char) -> new_esEs12(xuu33000, xuu34000) 26.72/10.94 new_esEs28(xuu33000, xuu34000, app(ty_[], ddg)) -> new_esEs16(xuu33000, xuu34000, ddg) 26.72/10.94 new_esEs7(Left(xuu50000), Left(xuu4000), ty_@0, beh) -> new_esEs9(xuu50000, xuu4000) 26.72/10.94 new_primCompAux0(xuu33000, xuu34000, xuu172, baf) -> new_primCompAux00(xuu172, new_compare8(xuu33000, xuu34000, baf)) 26.72/10.94 new_ltEs6(xuu33001, xuu34001, app(ty_[], bde)) -> new_ltEs15(xuu33001, xuu34001, bde) 26.72/10.94 new_pePe(False, xuu161) -> xuu161 26.72/10.94 new_lt8(xuu33000, xuu34000, bea, beb) -> new_esEs8(new_compare11(xuu33000, xuu34000, bea, beb), LT) 26.72/10.94 new_esEs27(xuu33001, xuu34001, ty_Double) -> new_esEs13(xuu33001, xuu34001) 26.72/10.94 new_compare7(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare6(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 26.72/10.94 new_lt20(xuu33000, xuu34000, ty_Float) -> new_lt17(xuu33000, xuu34000) 26.72/10.94 new_ltEs12(GT, GT) -> True 26.72/10.94 new_lt9(xuu33000, xuu34000, bcc) -> new_esEs8(new_compare12(xuu33000, xuu34000, bcc), LT) 26.72/10.94 new_esEs11(xuu50000, xuu4000, ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.94 new_esEs7(Left(xuu50000), Left(xuu4000), app(app(ty_@2, cad), cae), beh) -> new_esEs4(xuu50000, xuu4000, cad, cae) 26.72/10.94 new_lt17(xuu33000, xuu34000) -> new_esEs8(new_compare7(xuu33000, xuu34000), LT) 26.72/10.94 new_esEs6(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), ed, ee, ef) -> new_asAs(new_esEs22(xuu50000, xuu4000, ed), new_asAs(new_esEs21(xuu50001, xuu4001, ee), new_esEs20(xuu50002, xuu4002, ef))) 26.72/10.94 new_esEs10(xuu50001, xuu4001, app(app(ty_Either, bg), bh)) -> new_esEs7(xuu50001, xuu4001, bg, bh) 26.72/10.94 new_compare114(xuu33000, xuu34000, True, bea, beb) -> LT 26.72/10.94 new_ltEs12(GT, EQ) -> False 26.72/10.94 new_ltEs6(xuu33001, xuu34001, app(app(ty_@2, bcg), bch)) -> new_ltEs5(xuu33001, xuu34001, bcg, bch) 26.72/10.94 new_compare8(xuu33000, xuu34000, ty_Int) -> new_compare6(xuu33000, xuu34000) 26.72/10.94 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(ty_Ratio, bgh)) -> new_ltEs7(xuu33000, xuu34000, bgh) 26.72/10.94 new_esEs26(xuu50000, xuu4000, ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.94 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.94 new_compare26(xuu33000, xuu34000, False) -> new_compare111(xuu33000, xuu34000, new_ltEs12(xuu33000, xuu34000)) 26.72/10.94 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Char) -> new_ltEs11(xuu33000, xuu34000) 26.72/10.94 new_compare10(xuu129, xuu130, False, bd) -> GT 26.72/10.94 new_lt20(xuu33000, xuu34000, ty_Integer) -> new_lt11(xuu33000, xuu34000) 26.72/10.94 new_lt20(xuu33000, xuu34000, app(ty_Maybe, ddc)) -> new_lt9(xuu33000, xuu34000, ddc) 26.72/10.94 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(ty_Ratio, ccb)) -> new_esEs18(xuu50000, xuu4000, ccb) 26.72/10.94 new_esEs8(LT, EQ) -> False 26.72/10.94 new_esEs8(EQ, LT) -> False 26.72/10.94 new_esEs21(xuu50001, xuu4001, app(app(ty_@2, gd), ge)) -> new_esEs4(xuu50001, xuu4001, gd, ge) 26.72/10.94 new_compare29(xuu33000, xuu34000, False, bec, bed, bee) -> new_compare113(xuu33000, xuu34000, new_ltEs9(xuu33000, xuu34000, bec, bed, bee), bec, bed, bee) 26.72/10.94 new_lt19(xuu33001, xuu34001, app(ty_Maybe, dca)) -> new_lt9(xuu33001, xuu34001, dca) 26.72/10.94 new_primEqInt(Pos(Zero), Neg(Succ(xuu40000))) -> False 26.72/10.94 new_primEqInt(Neg(Zero), Pos(Succ(xuu40000))) -> False 26.72/10.94 new_lt19(xuu33001, xuu34001, ty_Ordering) -> new_lt12(xuu33001, xuu34001) 26.72/10.94 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Integer) -> new_ltEs10(xuu33000, xuu34000) 26.72/10.94 new_esEs11(xuu50000, xuu4000, app(ty_Maybe, df)) -> new_esEs5(xuu50000, xuu4000, df) 26.72/10.94 new_esEs21(xuu50001, xuu4001, ty_Ordering) -> new_esEs8(xuu50001, xuu4001) 26.72/10.94 new_esEs18(:%(xuu50000, xuu50001), :%(xuu4000, xuu4001), bfc) -> new_asAs(new_esEs25(xuu50000, xuu4000, bfc), new_esEs24(xuu50001, xuu4001, bfc)) 26.72/10.94 new_esEs5(Just(xuu50000), Just(xuu4000), app(app(app(ty_@3, cde), cdf), cdg)) -> new_esEs6(xuu50000, xuu4000, cde, cdf, cdg) 26.72/10.94 new_ltEs14(True, True) -> True 26.72/10.94 new_esEs25(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.94 new_esEs21(xuu50001, xuu4001, ty_Float) -> new_esEs14(xuu50001, xuu4001) 26.72/10.94 new_esEs21(xuu50001, xuu4001, app(ty_Maybe, gf)) -> new_esEs5(xuu50001, xuu4001, gf) 26.72/10.94 new_esEs23(xuu33000, xuu34000, app(app(ty_Either, bca), bcb)) -> new_esEs7(xuu33000, xuu34000, bca, bcb) 26.72/10.94 new_esEs26(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.94 new_esEs5(Nothing, Nothing, bfa) -> True 26.72/10.94 new_esEs26(xuu50000, xuu4000, app(ty_[], cge)) -> new_esEs16(xuu50000, xuu4000, cge) 26.72/10.94 new_primEqInt(Neg(Succ(xuu500000)), Neg(Succ(xuu40000))) -> new_primEqNat0(xuu500000, xuu40000) 26.72/10.94 new_esEs5(Nothing, Just(xuu4000), bfa) -> False 26.72/10.94 new_esEs5(Just(xuu50000), Nothing, bfa) -> False 26.72/10.94 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Float, bfe) -> new_ltEs18(xuu33000, xuu34000) 26.72/10.94 new_primCmpInt(Neg(Zero), Pos(Succ(xuu3400))) -> LT 26.72/10.94 new_lt19(xuu33001, xuu34001, ty_Bool) -> new_lt13(xuu33001, xuu34001) 26.72/10.94 new_compare114(xuu33000, xuu34000, False, bea, beb) -> GT 26.72/10.94 new_ltEs20(xuu33002, xuu34002, ty_@0) -> new_ltEs16(xuu33002, xuu34002) 26.72/10.94 new_primMulInt(Pos(xuu500010), Pos(xuu40000)) -> Pos(new_primMulNat0(xuu500010, xuu40000)) 26.72/10.94 new_lt6(xuu33000, xuu34000, app(app(app(ty_@3, bec), bed), bee)) -> new_lt10(xuu33000, xuu34000, bec, bed, bee) 26.72/10.94 new_compare8(xuu33000, xuu34000, ty_Integer) -> new_compare14(xuu33000, xuu34000) 26.72/10.94 new_lt20(xuu33000, xuu34000, app(app(ty_@2, dda), ddb)) -> new_lt8(xuu33000, xuu34000, dda, ddb) 26.72/10.94 new_esEs7(Left(xuu50000), Left(xuu4000), app(app(ty_Either, cab), cac), beh) -> new_esEs7(xuu50000, xuu4000, cab, cac) 26.72/10.94 new_compare25(Just(xuu3300), Nothing, False, cfd) -> GT 26.72/10.94 new_esEs28(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) 26.72/10.94 new_compare10(xuu129, xuu130, True, bd) -> LT 26.72/10.94 new_lt19(xuu33001, xuu34001, ty_Float) -> new_lt17(xuu33001, xuu34001) 26.72/10.94 new_compare24(xuu33000, xuu34000, False, bca, bcb) -> new_compare110(xuu33000, xuu34000, new_ltEs4(xuu33000, xuu34000, bca, bcb), bca, bcb) 26.72/10.94 new_ltEs19(xuu3300, xuu3400, app(ty_Maybe, cea)) -> new_ltEs8(xuu3300, xuu3400, cea) 26.72/10.94 new_esEs10(xuu50001, xuu4001, app(app(ty_@2, ca), cb)) -> new_esEs4(xuu50001, xuu4001, ca, cb) 26.72/10.94 new_primMulNat0(Succ(xuu5000100), Zero) -> Zero 26.72/10.94 new_primMulNat0(Zero, Succ(xuu400000)) -> Zero 26.72/10.94 new_esEs29(xuu5000, xuu400, ty_Double) -> new_esEs13(xuu5000, xuu400) 26.72/10.94 new_lt19(xuu33001, xuu34001, ty_Integer) -> new_lt11(xuu33001, xuu34001) 26.72/10.94 new_ltEs6(xuu33001, xuu34001, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_ltEs9(xuu33001, xuu34001, bdb, bdc, bdd) 26.72/10.94 new_lt20(xuu33000, xuu34000, ty_Bool) -> new_lt13(xuu33000, xuu34000) 26.72/10.94 new_esEs23(xuu33000, xuu34000, app(ty_Maybe, bcc)) -> new_esEs5(xuu33000, xuu34000, bcc) 26.72/10.94 new_compare9(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Int) -> new_compare6(new_sr(xuu33000, xuu34001), new_sr(xuu34000, xuu33001)) 26.72/10.94 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Bool) -> new_ltEs14(xuu33000, xuu34000) 26.72/10.94 new_ltEs17(xuu3300, xuu3400) -> new_fsEs(new_compare19(xuu3300, xuu3400)) 26.72/10.94 new_esEs28(xuu33000, xuu34000, ty_Int) -> new_esEs19(xuu33000, xuu34000) 26.72/10.94 new_primPlusNat0(Succ(xuu28200), Zero) -> Succ(xuu28200) 26.72/10.94 new_primPlusNat0(Zero, Succ(xuu9600)) -> Succ(xuu9600) 26.72/10.94 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Int, bfe) -> new_ltEs13(xuu33000, xuu34000) 26.72/10.94 new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare6(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 26.72/10.94 new_ltEs10(xuu3300, xuu3400) -> new_fsEs(new_compare14(xuu3300, xuu3400)) 26.72/10.94 new_esEs26(xuu50000, xuu4000, app(ty_Ratio, cgf)) -> new_esEs18(xuu50000, xuu4000, cgf) 26.72/10.94 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) 26.72/10.94 new_esEs11(xuu50000, xuu4000, app(app(ty_@2, dd), de)) -> new_esEs4(xuu50000, xuu4000, dd, de) 26.72/10.94 new_ltEs4(Left(xuu33000), Left(xuu34000), app(ty_Maybe, bfh), bfe) -> new_ltEs8(xuu33000, xuu34000, bfh) 26.72/10.94 new_compare8(xuu33000, xuu34000, app(app(ty_@2, bah), bba)) -> new_compare11(xuu33000, xuu34000, bah, bba) 26.72/10.94 new_esEs8(LT, LT) -> True 26.72/10.94 new_compare111(xuu33000, xuu34000, True) -> LT 26.72/10.94 new_lt6(xuu33000, xuu34000, ty_Integer) -> new_lt11(xuu33000, xuu34000) 26.72/10.94 new_lt20(xuu33000, xuu34000, ty_Int) -> new_lt4(xuu33000, xuu34000) 26.72/10.94 new_lt6(xuu33000, xuu34000, ty_Ordering) -> new_lt12(xuu33000, xuu34000) 26.72/10.94 new_lt19(xuu33001, xuu34001, app(app(ty_@2, dbg), dbh)) -> new_lt8(xuu33001, xuu34001, dbg, dbh) 26.72/10.94 new_lt15(xuu33000, xuu34000) -> new_esEs8(new_compare18(xuu33000, xuu34000), LT) 26.72/10.94 new_ltEs19(xuu3300, xuu3400, app(app(app(ty_@3, cfe), cff), cfg)) -> new_ltEs9(xuu3300, xuu3400, cfe, cff, cfg) 26.72/10.94 new_esEs22(xuu50000, xuu4000, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs6(xuu50000, xuu4000, bac, bad, bae) 26.72/10.94 new_lt13(xuu33000, xuu34000) -> new_esEs8(new_compare17(xuu33000, xuu34000), LT) 26.72/10.94 new_ltEs4(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, bga), bgb), bgc), bfe) -> new_ltEs9(xuu33000, xuu34000, bga, bgb, bgc) 26.72/10.94 new_esEs28(xuu33000, xuu34000, ty_Bool) -> new_esEs17(xuu33000, xuu34000) 26.72/10.94 new_lt6(xuu33000, xuu34000, app(ty_[], bef)) -> new_lt14(xuu33000, xuu34000, bef) 26.72/10.94 new_ltEs11(xuu3300, xuu3400) -> new_fsEs(new_compare15(xuu3300, xuu3400)) 26.72/10.94 new_lt5(xuu33000, xuu34000) -> new_esEs8(new_compare15(xuu33000, xuu34000), LT) 26.72/10.94 new_ltEs9(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), cfe, cff, cfg) -> new_pePe(new_lt20(xuu33000, xuu34000, cfe), new_asAs(new_esEs28(xuu33000, xuu34000, cfe), new_pePe(new_lt19(xuu33001, xuu34001, cff), new_asAs(new_esEs27(xuu33001, xuu34001, cff), new_ltEs20(xuu33002, xuu34002, cfg))))) 26.72/10.94 new_esEs11(xuu50000, xuu4000, ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.94 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Char, beh) -> new_esEs12(xuu50000, xuu4000) 26.72/10.94 new_esEs27(xuu33001, xuu34001, ty_@0) -> new_esEs9(xuu33001, xuu34001) 26.72/10.94 new_esEs23(xuu33000, xuu34000, app(app(app(ty_@3, bec), bed), bee)) -> new_esEs6(xuu33000, xuu34000, bec, bed, bee) 26.72/10.94 new_esEs16([], [], bfb) -> True 26.72/10.94 new_esEs29(xuu5000, xuu400, ty_Bool) -> new_esEs17(xuu5000, xuu400) 26.72/10.94 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Float) -> new_ltEs18(xuu33000, xuu34000) 26.72/10.94 new_primMulInt(Neg(xuu500010), Neg(xuu40000)) -> Pos(new_primMulNat0(xuu500010, xuu40000)) 26.72/10.94 new_compare25(xuu330, xuu340, True, cfd) -> EQ 26.72/10.94 new_esEs10(xuu50001, xuu4001, app(ty_Maybe, cc)) -> new_esEs5(xuu50001, xuu4001, cc) 26.72/10.94 new_lt20(xuu33000, xuu34000, ty_Ordering) -> new_lt12(xuu33000, xuu34000) 26.72/10.94 new_compare8(xuu33000, xuu34000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_compare13(xuu33000, xuu34000, bbc, bbd, bbe) 26.72/10.94 new_lt16(xuu33000, xuu34000) -> new_esEs8(new_compare19(xuu33000, xuu34000), LT) 26.72/10.94 new_esEs28(xuu33000, xuu34000, ty_Integer) -> new_esEs15(xuu33000, xuu34000) 26.72/10.94 new_esEs22(xuu50000, xuu4000, app(ty_Maybe, hh)) -> new_esEs5(xuu50000, xuu4000, hh) 26.72/10.94 new_ltEs18(xuu3300, xuu3400) -> new_fsEs(new_compare7(xuu3300, xuu3400)) 26.72/10.94 new_esEs27(xuu33001, xuu34001, ty_Int) -> new_esEs19(xuu33001, xuu34001) 26.72/10.94 new_lt19(xuu33001, xuu34001, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_lt10(xuu33001, xuu34001, dcb, dcc, dcd) 26.72/10.94 new_lt6(xuu33000, xuu34000, app(ty_Ratio, bdh)) -> new_lt7(xuu33000, xuu34000, bdh) 26.72/10.94 new_lt6(xuu33000, xuu34000, ty_Bool) -> new_lt13(xuu33000, xuu34000) 26.72/10.94 new_compare13(xuu33000, xuu34000, bec, bed, bee) -> new_compare29(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, bec, bed, bee), bec, bed, bee) 26.72/10.94 new_esEs20(xuu50002, xuu4002, ty_Float) -> new_esEs14(xuu50002, xuu4002) 26.72/10.94 new_esEs5(Just(xuu50000), Just(xuu4000), app(ty_Maybe, cdb)) -> new_esEs5(xuu50000, xuu4000, cdb) 26.72/10.94 new_esEs23(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) 26.72/10.94 new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(ty_Either, cfb), cfc)) -> new_ltEs4(xuu33000, xuu34000, cfb, cfc) 26.72/10.94 new_compare6(xuu33, xuu34) -> new_primCmpInt(xuu33, xuu34) 26.72/10.94 new_esEs11(xuu50000, xuu4000, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs6(xuu50000, xuu4000, ea, eb, ec) 26.72/10.94 new_esEs23(xuu33000, xuu34000, app(app(ty_@2, bea), beb)) -> new_esEs4(xuu33000, xuu34000, bea, beb) 26.72/10.94 new_compare112(xuu33000, xuu34000, True) -> LT 26.72/10.94 new_lt20(xuu33000, xuu34000, app(app(app(ty_@3, ddd), dde), ddf)) -> new_lt10(xuu33000, xuu34000, ddd, dde, ddf) 26.72/10.94 new_ltEs20(xuu33002, xuu34002, app(app(app(ty_@3, dah), dba), dbb)) -> new_ltEs9(xuu33002, xuu34002, dah, dba, dbb) 26.72/10.94 new_primMulInt(Pos(xuu500010), Neg(xuu40000)) -> Neg(new_primMulNat0(xuu500010, xuu40000)) 26.72/10.94 new_primMulInt(Neg(xuu500010), Pos(xuu40000)) -> Neg(new_primMulNat0(xuu500010, xuu40000)) 26.72/10.94 new_esEs12(Char(xuu50000), Char(xuu4000)) -> new_primEqNat0(xuu50000, xuu4000) 26.72/10.94 new_esEs26(xuu50000, xuu4000, app(app(ty_Either, cfh), cga)) -> new_esEs7(xuu50000, xuu4000, cfh, cga) 26.72/10.94 new_esEs20(xuu50002, xuu4002, ty_Integer) -> new_esEs15(xuu50002, xuu4002) 26.72/10.94 new_esEs22(xuu50000, xuu4000, ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.94 new_esEs28(xuu33000, xuu34000, ty_Double) -> new_esEs13(xuu33000, xuu34000) 26.72/10.94 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.94 new_compare15(Char(xuu33000), Char(xuu34000)) -> new_primCmpNat1(xuu33000, xuu34000) 26.72/10.94 new_compare17(xuu33000, xuu34000) -> new_compare27(xuu33000, xuu34000, new_esEs17(xuu33000, xuu34000)) 26.72/10.94 new_primCmpInt(Pos(Succ(xuu3300)), Pos(xuu340)) -> new_primCmpNat0(xuu3300, xuu340) 26.72/10.94 new_esEs22(xuu50000, xuu4000, app(app(ty_@2, hf), hg)) -> new_esEs4(xuu50000, xuu4000, hf, hg) 26.72/10.94 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(app(ty_Either, bhh), caa)) -> new_ltEs4(xuu33000, xuu34000, bhh, caa) 26.72/10.94 new_ltEs13(xuu3300, xuu3400) -> new_fsEs(new_compare6(xuu3300, xuu3400)) 26.72/10.94 new_primCmpNat1(Succ(xuu33000), Zero) -> GT 26.72/10.94 new_esEs30(xuu22, xuu17, ty_Bool) -> new_esEs17(xuu22, xuu17) 26.72/10.94 new_esEs27(xuu33001, xuu34001, ty_Char) -> new_esEs12(xuu33001, xuu34001) 26.72/10.94 new_compare8(xuu33000, xuu34000, app(ty_Maybe, bbb)) -> new_compare12(xuu33000, xuu34000, bbb) 26.72/10.94 new_ltEs6(xuu33001, xuu34001, ty_Int) -> new_ltEs13(xuu33001, xuu34001) 26.72/10.94 new_ltEs19(xuu3300, xuu3400, ty_Ordering) -> new_ltEs12(xuu3300, xuu3400) 26.72/10.94 new_lt6(xuu33000, xuu34000, ty_Int) -> new_lt4(xuu33000, xuu34000) 26.72/10.94 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(app(ty_@2, cbf), cbg)) -> new_esEs4(xuu50000, xuu4000, cbf, cbg) 26.72/10.94 new_sr0(Integer(xuu330000), Integer(xuu340010)) -> Integer(new_primMulInt(xuu330000, xuu340010)) 26.72/10.94 new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_Ratio, ceb)) -> new_ltEs7(xuu33000, xuu34000, ceb) 26.72/10.94 new_esEs29(xuu5000, xuu400, app(ty_Maybe, bfa)) -> new_esEs5(xuu5000, xuu400, bfa) 26.72/10.94 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(ty_Maybe, cbh)) -> new_esEs5(xuu50000, xuu4000, cbh) 26.72/10.94 new_esEs27(xuu33001, xuu34001, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_esEs6(xuu33001, xuu34001, dcb, dcc, dcd) 26.72/10.94 new_esEs20(xuu50002, xuu4002, ty_Bool) -> new_esEs17(xuu50002, xuu4002) 26.72/10.94 new_ltEs20(xuu33002, xuu34002, app(app(ty_Either, dbd), dbe)) -> new_ltEs4(xuu33002, xuu34002, dbd, dbe) 26.72/10.94 new_esEs7(Left(xuu50000), Left(xuu4000), app(ty_[], cag), beh) -> new_esEs16(xuu50000, xuu4000, cag) 26.72/10.94 new_esEs5(Just(xuu50000), Just(xuu4000), app(app(ty_Either, ccf), ccg)) -> new_esEs7(xuu50000, xuu4000, ccf, ccg) 26.72/10.94 new_primCmpNat0(xuu3300, Zero) -> GT 26.72/10.94 new_esEs29(xuu5000, xuu400, ty_Integer) -> new_esEs15(xuu5000, xuu400) 26.72/10.94 new_compare8(xuu33000, xuu34000, app(ty_[], bbf)) -> new_compare0(xuu33000, xuu34000, bbf) 26.72/10.94 new_lt20(xuu33000, xuu34000, ty_Double) -> new_lt16(xuu33000, xuu34000) 26.72/10.94 new_esEs30(xuu22, xuu17, ty_Integer) -> new_esEs15(xuu22, xuu17) 26.72/10.94 new_ltEs19(xuu3300, xuu3400, app(ty_[], baf)) -> new_ltEs15(xuu3300, xuu3400, baf) 26.72/10.94 new_esEs15(Integer(xuu50000), Integer(xuu4000)) -> new_primEqInt(xuu50000, xuu4000) 26.72/10.94 new_compare0([], :(xuu34000, xuu34001), baf) -> LT 26.72/10.94 new_asAs(True, xuu136) -> xuu136 26.72/10.94 new_compare113(xuu33000, xuu34000, True, bec, bed, bee) -> LT 26.72/10.94 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_@0) -> new_ltEs16(xuu33000, xuu34000) 26.72/10.94 new_compare9(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Integer) -> new_compare14(new_sr0(xuu33000, xuu34001), new_sr0(xuu34000, xuu33001)) 26.72/10.94 new_ltEs5(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), bcd, bce) -> new_pePe(new_lt6(xuu33000, xuu34000, bcd), new_asAs(new_esEs23(xuu33000, xuu34000, bcd), new_ltEs6(xuu33001, xuu34001, bce))) 26.72/10.94 new_esEs17(False, True) -> False 26.72/10.94 new_esEs17(True, False) -> False 26.72/10.94 new_esEs10(xuu50001, xuu4001, app(ty_[], cd)) -> new_esEs16(xuu50001, xuu4001, cd) 26.72/10.94 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Int, beh) -> new_esEs19(xuu50000, xuu4000) 26.72/10.94 new_esEs23(xuu33000, xuu34000, app(ty_Ratio, bdh)) -> new_esEs18(xuu33000, xuu34000, bdh) 26.72/10.94 new_ltEs16(xuu3300, xuu3400) -> new_fsEs(new_compare18(xuu3300, xuu3400)) 26.72/10.94 new_lt19(xuu33001, xuu34001, ty_Double) -> new_lt16(xuu33001, xuu34001) 26.72/10.94 new_esEs26(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.94 new_esEs20(xuu50002, xuu4002, app(ty_Maybe, fc)) -> new_esEs5(xuu50002, xuu4002, fc) 26.72/10.94 new_esEs5(Just(xuu50000), Just(xuu4000), app(app(ty_@2, cch), cda)) -> new_esEs4(xuu50000, xuu4000, cch, cda) 26.72/10.94 new_compare11(xuu33000, xuu34000, bea, beb) -> new_compare28(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, bea, beb), bea, beb) 26.72/10.94 new_esEs27(xuu33001, xuu34001, ty_Float) -> new_esEs14(xuu33001, xuu34001) 26.72/10.94 new_esEs10(xuu50001, xuu4001, ty_Integer) -> new_esEs15(xuu50001, xuu4001) 26.72/10.94 new_esEs24(xuu50001, xuu4001, ty_Integer) -> new_esEs15(xuu50001, xuu4001) 26.72/10.94 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.94 new_esEs29(xuu5000, xuu400, app(ty_[], bfb)) -> new_esEs16(xuu5000, xuu400, bfb) 26.72/10.94 new_lt10(xuu33000, xuu34000, bec, bed, bee) -> new_esEs8(new_compare13(xuu33000, xuu34000, bec, bed, bee), LT) 26.72/10.94 new_lt6(xuu33000, xuu34000, ty_@0) -> new_lt15(xuu33000, xuu34000) 26.72/10.94 new_compare24(xuu33000, xuu34000, True, bca, bcb) -> EQ 26.72/10.94 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.94 new_primPlusNat1(xuu106, xuu400000) -> new_primPlusNat0(xuu106, Succ(xuu400000)) 26.72/10.94 new_esEs9(@0, @0) -> True 26.72/10.94 new_ltEs20(xuu33002, xuu34002, app(ty_[], dbc)) -> new_ltEs15(xuu33002, xuu34002, dbc) 26.72/10.94 new_esEs7(Left(xuu50000), Left(xuu4000), app(ty_Maybe, caf), beh) -> new_esEs5(xuu50000, xuu4000, caf) 26.72/10.94 new_primCompAux00(xuu178, EQ) -> xuu178 26.72/10.94 new_esEs11(xuu50000, xuu4000, app(app(ty_Either, db), dc)) -> new_esEs7(xuu50000, xuu4000, db, dc) 26.72/10.94 new_compare0([], [], baf) -> EQ 26.72/10.94 new_sr(xuu50001, xuu4000) -> new_primMulInt(xuu50001, xuu4000) 26.72/10.94 new_esEs25(xuu50000, xuu4000, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.94 new_esEs10(xuu50001, xuu4001, ty_Bool) -> new_esEs17(xuu50001, xuu4001) 26.72/10.94 new_esEs21(xuu50001, xuu4001, app(app(ty_Either, gb), gc)) -> new_esEs7(xuu50001, xuu4001, gb, gc) 26.72/10.94 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Integer) -> new_ltEs10(xuu33000, xuu34000) 26.72/10.94 new_primMulNat0(Zero, Zero) -> Zero 26.72/10.94 new_lt18(xuu33000, xuu34000, bca, bcb) -> new_esEs8(new_compare23(xuu33000, xuu34000, bca, bcb), LT) 26.72/10.94 new_ltEs20(xuu33002, xuu34002, ty_Ordering) -> new_ltEs12(xuu33002, xuu34002) 26.72/10.94 new_esEs23(xuu33000, xuu34000, ty_Float) -> new_esEs14(xuu33000, xuu34000) 26.72/10.94 new_lt6(xuu33000, xuu34000, ty_Char) -> new_lt5(xuu33000, xuu34000) 26.72/10.94 new_lt6(xuu33000, xuu34000, app(ty_Maybe, bcc)) -> new_lt9(xuu33000, xuu34000, bcc) 26.72/10.94 new_primCmpInt(Neg(Succ(xuu3300)), Neg(xuu340)) -> new_primCmpNat2(xuu340, xuu3300) 26.72/10.94 new_esEs30(xuu22, xuu17, ty_Double) -> new_esEs13(xuu22, xuu17) 26.72/10.94 new_esEs27(xuu33001, xuu34001, ty_Ordering) -> new_esEs8(xuu33001, xuu34001) 26.72/10.94 new_esEs30(xuu22, xuu17, app(ty_[], chg)) -> new_esEs16(xuu22, xuu17, chg) 26.72/10.94 new_esEs23(xuu33000, xuu34000, ty_Char) -> new_esEs12(xuu33000, xuu34000) 26.72/10.94 new_ltEs19(xuu3300, xuu3400, app(ty_Ratio, cdh)) -> new_ltEs7(xuu3300, xuu3400, cdh) 26.72/10.94 new_primCmpInt(Neg(Zero), Neg(Succ(xuu3400))) -> new_primCmpNat0(xuu3400, Zero) 26.72/10.94 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.94 new_esEs30(xuu22, xuu17, app(ty_Maybe, chf)) -> new_esEs5(xuu22, xuu17, chf) 26.72/10.94 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_@0) -> new_ltEs16(xuu33000, xuu34000) 26.72/10.94 new_compare111(xuu33000, xuu34000, False) -> GT 26.72/10.94 new_primCmpNat1(Zero, Zero) -> EQ 26.72/10.94 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.94 new_compare12(xuu33000, xuu34000, bcc) -> new_compare25(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, bcc), bcc) 26.72/10.94 new_esEs22(xuu50000, xuu4000, app(app(ty_Either, hd), he)) -> new_esEs7(xuu50000, xuu4000, hd, he) 26.72/10.94 new_ltEs6(xuu33001, xuu34001, ty_Bool) -> new_ltEs14(xuu33001, xuu34001) 26.72/10.94 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.94 new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare6(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 26.72/10.94 new_esEs22(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.94 new_esEs22(xuu50000, xuu4000, ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.94 new_esEs27(xuu33001, xuu34001, app(ty_Ratio, dbf)) -> new_esEs18(xuu33001, xuu34001, dbf) 26.72/10.94 new_esEs4(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), be, bf) -> new_asAs(new_esEs11(xuu50000, xuu4000, be), new_esEs10(xuu50001, xuu4001, bf)) 26.72/10.94 new_compare8(xuu33000, xuu34000, ty_Char) -> new_compare15(xuu33000, xuu34000) 26.72/10.94 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Double) -> new_ltEs17(xuu33000, xuu34000) 26.72/10.94 new_esEs28(xuu33000, xuu34000, app(ty_Ratio, dch)) -> new_esEs18(xuu33000, xuu34000, dch) 26.72/10.94 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.94 new_esEs16(:(xuu50000, xuu50001), :(xuu4000, xuu4001), bfb) -> new_asAs(new_esEs26(xuu50000, xuu4000, bfb), new_esEs16(xuu50001, xuu4001, bfb)) 26.72/10.94 new_ltEs14(False, True) -> True 26.72/10.94 new_ltEs19(xuu3300, xuu3400, ty_@0) -> new_ltEs16(xuu3300, xuu3400) 26.72/10.94 new_ltEs12(GT, LT) -> False 26.72/10.94 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Char) -> new_ltEs11(xuu33000, xuu34000) 26.72/10.94 new_compare29(xuu33000, xuu34000, True, bec, bed, bee) -> EQ 26.72/10.94 new_compare8(xuu33000, xuu34000, ty_Bool) -> new_compare17(xuu33000, xuu34000) 26.72/10.94 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Ordering, beh) -> new_esEs8(xuu50000, xuu4000) 26.72/10.94 new_compare7(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare6(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 26.72/10.94 new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_Maybe, cee)) -> new_ltEs8(xuu33000, xuu34000, cee) 26.72/10.94 new_esEs30(xuu22, xuu17, ty_@0) -> new_esEs9(xuu22, xuu17) 26.72/10.94 new_primEqInt(Neg(Succ(xuu500000)), Neg(Zero)) -> False 26.72/10.94 new_primEqInt(Neg(Zero), Neg(Succ(xuu40000))) -> False 26.72/10.94 new_ltEs8(Nothing, Just(xuu34000), cea) -> True 26.72/10.94 new_primEqInt(Pos(Succ(xuu500000)), Pos(Succ(xuu40000))) -> new_primEqNat0(xuu500000, xuu40000) 26.72/10.94 new_esEs20(xuu50002, xuu4002, ty_Double) -> new_esEs13(xuu50002, xuu4002) 26.72/10.94 new_esEs20(xuu50002, xuu4002, app(ty_[], fd)) -> new_esEs16(xuu50002, xuu4002, fd) 26.72/10.94 new_esEs26(xuu50000, xuu4000, app(app(ty_@2, cgb), cgc)) -> new_esEs4(xuu50000, xuu4000, cgb, cgc) 26.72/10.94 new_ltEs4(Left(xuu33000), Left(xuu34000), app(app(ty_Either, bge), bgf), bfe) -> new_ltEs4(xuu33000, xuu34000, bge, bgf) 26.72/10.94 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(ty_[], cca)) -> new_esEs16(xuu50000, xuu4000, cca) 26.72/10.94 new_esEs14(Float(xuu50000, xuu50001), Float(xuu4000, xuu4001)) -> new_esEs19(new_sr(xuu50000, xuu4001), new_sr(xuu50001, xuu4000)) 26.72/10.94 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(app(ty_Either, cbd), cbe)) -> new_esEs7(xuu50000, xuu4000, cbd, cbe) 26.72/10.94 new_esEs26(xuu50000, xuu4000, ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.94 new_primEqInt(Pos(Succ(xuu500000)), Neg(xuu4000)) -> False 26.72/10.94 new_primEqInt(Neg(Succ(xuu500000)), Pos(xuu4000)) -> False 26.72/10.94 new_ltEs20(xuu33002, xuu34002, app(ty_Ratio, dad)) -> new_ltEs7(xuu33002, xuu34002, dad) 26.72/10.94 new_esEs11(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.94 new_lt6(xuu33000, xuu34000, ty_Float) -> new_lt17(xuu33000, xuu34000) 26.72/10.94 new_esEs29(xuu5000, xuu400, ty_@0) -> new_esEs9(xuu5000, xuu400) 26.72/10.94 new_lt4(xuu330, xuu340) -> new_esEs8(new_compare6(xuu330, xuu340), LT) 26.72/10.94 new_ltEs12(EQ, GT) -> True 26.72/10.94 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 26.72/10.94 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Ordering, bfe) -> new_ltEs12(xuu33000, xuu34000) 26.72/10.94 new_esEs28(xuu33000, xuu34000, ty_Float) -> new_esEs14(xuu33000, xuu34000) 26.72/10.94 new_esEs28(xuu33000, xuu34000, app(ty_Maybe, ddc)) -> new_esEs5(xuu33000, xuu34000, ddc) 26.72/10.94 new_esEs17(True, True) -> True 26.72/10.94 new_ltEs12(EQ, EQ) -> True 26.72/10.94 new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, cef), ceg), ceh)) -> new_ltEs9(xuu33000, xuu34000, cef, ceg, ceh) 26.72/10.94 new_primCmpInt(Pos(Zero), Pos(Succ(xuu3400))) -> new_primCmpNat2(Zero, xuu3400) 26.72/10.94 new_esEs21(xuu50001, xuu4001, ty_Integer) -> new_esEs15(xuu50001, xuu4001) 26.72/10.94 new_ltEs20(xuu33002, xuu34002, ty_Int) -> new_ltEs13(xuu33002, xuu34002) 26.72/10.94 new_esEs26(xuu50000, xuu4000, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs6(xuu50000, xuu4000, cgg, cgh, cha) 26.72/10.94 new_esEs10(xuu50001, xuu4001, ty_Double) -> new_esEs13(xuu50001, xuu4001) 26.72/10.94 new_lt11(xuu33000, xuu34000) -> new_esEs8(new_compare14(xuu33000, xuu34000), LT) 26.72/10.94 new_esEs21(xuu50001, xuu4001, ty_Bool) -> new_esEs17(xuu50001, xuu4001) 26.72/10.94 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) 26.72/10.94 new_esEs23(xuu33000, xuu34000, ty_Bool) -> new_esEs17(xuu33000, xuu34000) 26.72/10.94 new_not(False) -> True 26.72/10.94 new_compare27(xuu33000, xuu34000, False) -> new_compare112(xuu33000, xuu34000, new_ltEs14(xuu33000, xuu34000)) 26.72/10.94 new_esEs30(xuu22, xuu17, app(ty_Ratio, chh)) -> new_esEs18(xuu22, xuu17, chh) 26.72/10.94 new_esEs5(Just(xuu50000), Just(xuu4000), ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.94 new_esEs27(xuu33001, xuu34001, app(app(ty_Either, dcf), dcg)) -> new_esEs7(xuu33001, xuu34001, dcf, dcg) 26.72/10.94 new_compare0(:(xuu33000, xuu33001), [], baf) -> GT 26.72/10.94 new_esEs8(LT, GT) -> False 26.72/10.94 new_esEs8(GT, LT) -> False 26.72/10.94 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Bool, bfe) -> new_ltEs14(xuu33000, xuu34000) 26.72/10.94 new_primPlusNat0(Succ(xuu28200), Succ(xuu9600)) -> Succ(Succ(new_primPlusNat0(xuu28200, xuu9600))) 26.72/10.94 new_esEs20(xuu50002, xuu4002, app(ty_Ratio, ff)) -> new_esEs18(xuu50002, xuu4002, ff) 26.72/10.94 new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_[], cfa)) -> new_ltEs15(xuu33000, xuu34000, cfa) 26.72/10.94 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Double) -> new_ltEs17(xuu33000, xuu34000) 26.72/10.94 new_esEs7(Left(xuu50000), Left(xuu4000), app(ty_Ratio, cah), beh) -> new_esEs18(xuu50000, xuu4000, cah) 26.72/10.94 new_esEs11(xuu50000, xuu4000, ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.94 new_esEs21(xuu50001, xuu4001, ty_Char) -> new_esEs12(xuu50001, xuu4001) 26.72/10.94 new_compare8(xuu33000, xuu34000, app(app(ty_Either, bbg), bbh)) -> new_compare23(xuu33000, xuu34000, bbg, bbh) 26.72/10.94 new_esEs29(xuu5000, xuu400, app(ty_Ratio, bfc)) -> new_esEs18(xuu5000, xuu400, bfc) 26.72/10.94 new_ltEs4(Left(xuu33000), Right(xuu34000), bgg, bfe) -> True 26.72/10.94 new_esEs30(xuu22, xuu17, app(app(app(ty_@3, daa), dab), dac)) -> new_esEs6(xuu22, xuu17, daa, dab, dac) 26.72/10.94 new_ltEs6(xuu33001, xuu34001, ty_Integer) -> new_ltEs10(xuu33001, xuu34001) 26.72/10.94 new_esEs26(xuu50000, xuu4000, app(ty_Maybe, cgd)) -> new_esEs5(xuu50000, xuu4000, cgd) 26.72/10.94 new_primCmpNat1(Zero, Succ(xuu34000)) -> LT 26.72/10.94 new_esEs22(xuu50000, xuu4000, ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.94 new_compare25(Nothing, Nothing, False, cfd) -> LT 26.72/10.94 new_lt20(xuu33000, xuu34000, app(app(ty_Either, ddh), dea)) -> new_lt18(xuu33000, xuu34000, ddh, dea) 26.72/10.94 new_ltEs7(xuu3300, xuu3400, cdh) -> new_fsEs(new_compare9(xuu3300, xuu3400, cdh)) 26.72/10.94 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 26.72/10.94 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 26.72/10.94 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.94 new_compare0(:(xuu33000, xuu33001), :(xuu34000, xuu34001), baf) -> new_primCompAux0(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, baf), baf) 26.72/10.94 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Float) -> new_ltEs18(xuu33000, xuu34000) 26.72/10.94 new_ltEs6(xuu33001, xuu34001, ty_Ordering) -> new_ltEs12(xuu33001, xuu34001) 26.72/10.94 new_ltEs4(Left(xuu33000), Left(xuu34000), app(ty_Ratio, bfd), bfe) -> new_ltEs7(xuu33000, xuu34000, bfd) 26.72/10.94 new_esEs23(xuu33000, xuu34000, ty_Int) -> new_esEs19(xuu33000, xuu34000) 26.72/10.94 new_esEs27(xuu33001, xuu34001, app(app(ty_@2, dbg), dbh)) -> new_esEs4(xuu33001, xuu34001, dbg, dbh) 26.72/10.94 new_esEs21(xuu50001, xuu4001, app(ty_[], gg)) -> new_esEs16(xuu50001, xuu4001, gg) 26.72/10.94 new_ltEs6(xuu33001, xuu34001, ty_Char) -> new_ltEs11(xuu33001, xuu34001) 26.72/10.94 new_ltEs4(Left(xuu33000), Left(xuu34000), app(app(ty_@2, bff), bfg), bfe) -> new_ltEs5(xuu33000, xuu34000, bff, bfg) 26.72/10.94 new_esEs20(xuu50002, xuu4002, ty_@0) -> new_esEs9(xuu50002, xuu4002) 26.72/10.94 new_ltEs19(xuu3300, xuu3400, app(app(ty_Either, bgg), bfe)) -> new_ltEs4(xuu3300, xuu3400, bgg, bfe) 26.72/10.94 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 26.72/10.94 new_esEs17(False, False) -> True 26.72/10.94 new_esEs28(xuu33000, xuu34000, app(app(ty_@2, dda), ddb)) -> new_esEs4(xuu33000, xuu34000, dda, ddb) 26.72/10.94 new_esEs22(xuu50000, xuu4000, ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.94 new_ltEs12(EQ, LT) -> False 26.72/10.94 new_ltEs14(False, False) -> True 26.72/10.94 new_ltEs6(xuu33001, xuu34001, ty_Float) -> new_ltEs18(xuu33001, xuu34001) 26.72/10.94 new_ltEs8(Nothing, Nothing, cea) -> True 26.72/10.94 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.94 new_ltEs8(Just(xuu33000), Nothing, cea) -> False 26.72/10.94 new_esEs11(xuu50000, xuu4000, ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.94 new_lt6(xuu33000, xuu34000, ty_Double) -> new_lt16(xuu33000, xuu34000) 26.72/10.94 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.94 new_ltEs19(xuu3300, xuu3400, ty_Int) -> new_ltEs13(xuu3300, xuu3400) 26.72/10.94 new_esEs28(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) 26.72/10.94 new_esEs11(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.94 new_ltEs19(xuu3300, xuu3400, ty_Float) -> new_ltEs18(xuu3300, xuu3400) 26.72/10.94 new_esEs16(:(xuu50000, xuu50001), [], bfb) -> False 26.72/10.94 new_esEs16([], :(xuu4000, xuu4001), bfb) -> False 26.72/10.94 new_esEs5(Just(xuu50000), Just(xuu4000), app(ty_[], cdc)) -> new_esEs16(xuu50000, xuu4000, cdc) 26.72/10.94 new_esEs23(xuu33000, xuu34000, app(ty_[], bef)) -> new_esEs16(xuu33000, xuu34000, bef) 26.72/10.94 new_ltEs6(xuu33001, xuu34001, app(app(ty_Either, bdf), bdg)) -> new_ltEs4(xuu33001, xuu34001, bdf, bdg) 26.72/10.94 new_primCmpNat2(Succ(xuu3400), xuu3300) -> new_primCmpNat1(xuu3400, xuu3300) 26.72/10.94 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 26.72/10.94 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 26.72/10.94 new_esEs23(xuu33000, xuu34000, ty_Double) -> new_esEs13(xuu33000, xuu34000) 26.72/10.94 new_ltEs12(LT, EQ) -> True 26.72/10.94 new_compare25(Nothing, Just(xuu3400), False, cfd) -> LT 26.72/10.94 new_esEs29(xuu5000, xuu400, app(app(ty_@2, be), bf)) -> new_esEs4(xuu5000, xuu400, be, bf) 26.72/10.94 new_compare110(xuu33000, xuu34000, False, bca, bcb) -> GT 26.72/10.94 new_esEs21(xuu50001, xuu4001, ty_Int) -> new_esEs19(xuu50001, xuu4001) 26.72/10.94 new_lt19(xuu33001, xuu34001, ty_@0) -> new_lt15(xuu33001, xuu34001) 26.72/10.94 new_esEs11(xuu50000, xuu4000, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.94 new_esEs23(xuu33000, xuu34000, ty_Integer) -> new_esEs15(xuu33000, xuu34000) 26.72/10.94 new_lt20(xuu33000, xuu34000, ty_Char) -> new_lt5(xuu33000, xuu34000) 26.72/10.94 new_primEqNat0(Zero, Zero) -> True 26.72/10.94 new_compare8(xuu33000, xuu34000, ty_@0) -> new_compare18(xuu33000, xuu34000) 26.72/10.94 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.94 new_ltEs20(xuu33002, xuu34002, ty_Float) -> new_ltEs18(xuu33002, xuu34002) 26.72/10.94 new_esEs28(xuu33000, xuu34000, app(app(app(ty_@3, ddd), dde), ddf)) -> new_esEs6(xuu33000, xuu34000, ddd, dde, ddf) 26.72/10.94 new_esEs30(xuu22, xuu17, app(app(ty_Either, chb), chc)) -> new_esEs7(xuu22, xuu17, chb, chc) 26.72/10.94 new_esEs10(xuu50001, xuu4001, ty_@0) -> new_esEs9(xuu50001, xuu4001) 26.72/10.94 new_esEs29(xuu5000, xuu400, ty_Ordering) -> new_esEs8(xuu5000, xuu400) 26.72/10.94 new_compare23(xuu33000, xuu34000, bca, bcb) -> new_compare24(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, bca, bcb), bca, bcb) 26.72/10.94 new_ltEs14(True, False) -> False 26.72/10.94 new_esEs26(xuu50000, xuu4000, ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.94 new_compare113(xuu33000, xuu34000, False, bec, bed, bee) -> GT 26.72/10.94 new_esEs22(xuu50000, xuu4000, app(ty_[], baa)) -> new_esEs16(xuu50000, xuu4000, baa) 26.72/10.94 new_esEs22(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.94 new_asAs(False, xuu136) -> False 26.72/10.94 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Float, beh) -> new_esEs14(xuu50000, xuu4000) 26.72/10.94 new_esEs20(xuu50002, xuu4002, ty_Char) -> new_esEs12(xuu50002, xuu4002) 26.72/10.94 new_esEs29(xuu5000, xuu400, app(app(ty_Either, beg), beh)) -> new_esEs7(xuu5000, xuu400, beg, beh) 26.72/10.94 new_esEs27(xuu33001, xuu34001, app(ty_Maybe, dca)) -> new_esEs5(xuu33001, xuu34001, dca) 26.72/10.94 new_lt19(xuu33001, xuu34001, ty_Char) -> new_lt5(xuu33001, xuu34001) 26.72/10.94 new_compare28(xuu33000, xuu34000, True, bea, beb) -> EQ 26.72/10.94 new_lt20(xuu33000, xuu34000, ty_@0) -> new_lt15(xuu33000, xuu34000) 26.72/10.94 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Int) -> new_ltEs13(xuu33000, xuu34000) 26.72/10.94 new_esEs8(EQ, GT) -> False 26.72/10.94 new_esEs8(GT, EQ) -> False 26.72/10.94 new_ltEs4(Right(xuu33000), Left(xuu34000), bgg, bfe) -> False 26.72/10.94 new_esEs10(xuu50001, xuu4001, ty_Int) -> new_esEs19(xuu50001, xuu4001) 26.72/10.94 new_compare27(xuu33000, xuu34000, True) -> EQ 26.72/10.94 new_esEs7(Left(xuu50000), Right(xuu4000), beg, beh) -> False 26.72/10.94 new_esEs7(Right(xuu50000), Left(xuu4000), beg, beh) -> False 26.72/10.94 new_compare18(@0, @0) -> EQ 26.72/10.94 new_esEs11(xuu50000, xuu4000, app(ty_[], dg)) -> new_esEs16(xuu50000, xuu4000, dg) 26.72/10.94 new_compare14(Integer(xuu33000), Integer(xuu34000)) -> new_primCmpInt(xuu33000, xuu34000) 26.72/10.94 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(ty_Maybe, bhc)) -> new_ltEs8(xuu33000, xuu34000, bhc) 26.72/10.94 new_lt6(xuu33000, xuu34000, app(app(ty_Either, bca), bcb)) -> new_lt18(xuu33000, xuu34000, bca, bcb) 26.72/10.94 new_esEs21(xuu50001, xuu4001, ty_@0) -> new_esEs9(xuu50001, xuu4001) 26.72/10.94 new_compare16(xuu33000, xuu34000) -> new_compare26(xuu33000, xuu34000, new_esEs8(xuu33000, xuu34000)) 26.72/10.94 26.72/10.94 The set Q consists of the following terms: 26.72/10.94 26.72/10.94 new_esEs7(Right(x0), Right(x1), x2, ty_Integer) 26.72/10.94 new_ltEs8(Just(x0), Just(x1), ty_Bool) 26.72/10.94 new_esEs8(EQ, EQ) 26.72/10.94 new_esEs21(x0, x1, ty_Integer) 26.72/10.94 new_lt6(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.94 new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.72/10.94 new_esEs29(x0, x1, ty_Double) 26.72/10.94 new_esEs22(x0, x1, ty_@0) 26.72/10.94 new_compare0(:(x0, x1), [], x2) 26.72/10.94 new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) 26.72/10.94 new_esEs7(Left(x0), Left(x1), ty_Double, x2) 26.72/10.94 new_compare26(x0, x1, False) 26.72/10.94 new_esEs27(x0, x1, ty_Double) 26.72/10.94 new_esEs29(x0, x1, ty_Ordering) 26.72/10.94 new_compare8(x0, x1, ty_Double) 26.72/10.94 new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) 26.72/10.94 new_lt20(x0, x1, ty_Integer) 26.72/10.94 new_ltEs11(x0, x1) 26.72/10.94 new_esEs30(x0, x1, ty_Bool) 26.72/10.94 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 26.72/10.94 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 26.72/10.94 new_esEs22(x0, x1, ty_Bool) 26.72/10.94 new_esEs30(x0, x1, app(ty_Ratio, x2)) 26.72/10.94 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 26.72/10.94 new_lt6(x0, x1, app(ty_[], x2)) 26.72/10.94 new_esEs26(x0, x1, app(ty_Ratio, x2)) 26.72/10.94 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 26.72/10.94 new_compare12(x0, x1, x2) 26.72/10.94 new_ltEs8(Just(x0), Just(x1), ty_@0) 26.72/10.94 new_esEs26(x0, x1, ty_@0) 26.72/10.94 new_lt6(x0, x1, ty_Bool) 26.72/10.94 new_lt19(x0, x1, ty_@0) 26.72/10.94 new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.94 new_lt6(x0, x1, ty_@0) 26.72/10.94 new_primCmpNat1(Zero, Zero) 26.72/10.94 new_ltEs13(x0, x1) 26.72/10.94 new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.94 new_primCompAux00(x0, EQ) 26.72/10.94 new_compare8(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.94 new_compare28(x0, x1, True, x2, x3) 26.72/10.94 new_lt5(x0, x1) 26.72/10.94 new_esEs23(x0, x1, ty_Float) 26.72/10.94 new_esEs29(x0, x1, ty_Int) 26.72/10.94 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.94 new_esEs7(Left(x0), Left(x1), ty_Int, x2) 26.72/10.94 new_primEqInt(Pos(Zero), Pos(Zero)) 26.72/10.94 new_compare15(Char(x0), Char(x1)) 26.72/10.94 new_lt13(x0, x1) 26.72/10.94 new_compare6(x0, x1) 26.72/10.94 new_primCmpNat2(Zero, x0) 26.72/10.94 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.94 new_ltEs6(x0, x1, ty_Ordering) 26.72/10.94 new_esEs17(False, False) 26.72/10.94 new_lt9(x0, x1, x2) 26.72/10.94 new_esEs27(x0, x1, ty_Ordering) 26.72/10.94 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 26.72/10.94 new_esEs11(x0, x1, ty_Float) 26.72/10.94 new_primEqNat0(Zero, Succ(x0)) 26.72/10.94 new_primEqInt(Neg(Zero), Neg(Zero)) 26.72/10.94 new_esEs29(x0, x1, ty_Char) 26.72/10.94 new_esEs27(x0, x1, ty_Int) 26.72/10.94 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.94 new_lt19(x0, x1, ty_Int) 26.72/10.94 new_compare10(x0, x1, True, x2) 26.72/10.94 new_pePe(True, x0) 26.72/10.94 new_ltEs6(x0, x1, ty_Int) 26.72/10.94 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.94 new_esEs26(x0, x1, app(ty_Maybe, x2)) 26.72/10.94 new_lt6(x0, x1, ty_Integer) 26.72/10.94 new_esEs27(x0, x1, ty_Char) 26.72/10.94 new_esEs29(x0, x1, app(ty_Ratio, x2)) 26.72/10.94 new_compare113(x0, x1, True, x2, x3, x4) 26.72/10.94 new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.72/10.94 new_esEs20(x0, x1, ty_Integer) 26.72/10.94 new_esEs7(Right(x0), Right(x1), x2, ty_@0) 26.72/10.94 new_esEs7(Left(x0), Left(x1), ty_Char, x2) 26.72/10.94 new_ltEs12(GT, EQ) 26.72/10.94 new_ltEs12(EQ, GT) 26.72/10.94 new_esEs7(Right(x0), Right(x1), x2, ty_Float) 26.72/10.94 new_ltEs4(Right(x0), Right(x1), x2, ty_Ordering) 26.72/10.94 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.94 new_lt17(x0, x1) 26.72/10.94 new_esEs20(x0, x1, ty_Bool) 26.72/10.94 new_ltEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 26.72/10.94 new_compare112(x0, x1, True) 26.72/10.94 new_esEs26(x0, x1, ty_Int) 26.72/10.94 new_lt19(x0, x1, ty_Bool) 26.72/10.94 new_esEs30(x0, x1, ty_Integer) 26.72/10.94 new_lt6(x0, x1, app(ty_Ratio, x2)) 26.72/10.94 new_primMulInt(Pos(x0), Pos(x1)) 26.72/10.94 new_primEqInt(Pos(Zero), Neg(Zero)) 26.72/10.94 new_primEqInt(Neg(Zero), Pos(Zero)) 26.72/10.94 new_primMulNat0(Succ(x0), Succ(x1)) 26.72/10.94 new_ltEs6(x0, x1, ty_Double) 26.72/10.94 new_esEs10(x0, x1, app(ty_Maybe, x2)) 26.72/10.94 new_esEs18(:%(x0, x1), :%(x2, x3), x4) 26.72/10.94 new_esEs26(x0, x1, ty_Bool) 26.72/10.94 new_compare11(x0, x1, x2, x3) 26.72/10.94 new_esEs16([], :(x0, x1), x2) 26.72/10.94 new_esEs26(x0, x1, ty_Char) 26.72/10.94 new_ltEs6(x0, x1, ty_Char) 26.72/10.94 new_esEs26(x0, x1, ty_Double) 26.72/10.94 new_esEs20(x0, x1, app(ty_Maybe, x2)) 26.72/10.94 new_compare8(x0, x1, ty_Ordering) 26.72/10.94 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 26.72/10.94 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.72/10.94 new_compare110(x0, x1, False, x2, x3) 26.72/10.94 new_esEs22(x0, x1, app(ty_Maybe, x2)) 26.72/10.94 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 26.72/10.94 new_esEs5(Just(x0), Nothing, x1) 26.72/10.94 new_ltEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.72/10.94 new_ltEs19(x0, x1, app(ty_[], x2)) 26.72/10.94 new_esEs28(x0, x1, app(ty_Ratio, x2)) 26.72/10.94 new_lt19(x0, x1, ty_Char) 26.72/10.94 new_lt11(x0, x1) 26.72/10.94 new_ltEs8(Just(x0), Just(x1), ty_Integer) 26.72/10.94 new_lt19(x0, x1, ty_Double) 26.72/10.94 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.72/10.94 new_lt20(x0, x1, app(ty_Maybe, x2)) 26.72/10.94 new_compare13(x0, x1, x2, x3, x4) 26.72/10.94 new_sr(x0, x1) 26.72/10.94 new_fsEs(x0) 26.72/10.94 new_esEs28(x0, x1, ty_Ordering) 26.72/10.94 new_compare17(x0, x1) 26.72/10.94 new_compare8(x0, x1, ty_@0) 26.72/10.94 new_esEs30(x0, x1, ty_Ordering) 26.72/10.94 new_esEs7(Left(x0), Left(x1), ty_Bool, x2) 26.72/10.94 new_esEs27(x0, x1, ty_@0) 26.72/10.94 new_compare7(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 26.72/10.94 new_compare7(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 26.72/10.94 new_compare7(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 26.72/10.94 new_esEs9(@0, @0) 26.72/10.94 new_compare28(x0, x1, False, x2, x3) 26.72/10.94 new_compare25(x0, x1, True, x2) 26.72/10.94 new_ltEs8(Just(x0), Just(x1), ty_Double) 26.72/10.94 new_esEs22(x0, x1, ty_Float) 26.72/10.94 new_compare27(x0, x1, True) 26.72/10.94 new_ltEs4(Right(x0), Right(x1), x2, ty_Integer) 26.72/10.94 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.72/10.94 new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.72/10.94 new_esEs24(x0, x1, ty_Int) 26.72/10.94 new_esEs5(Just(x0), Just(x1), ty_Double) 26.72/10.94 new_esEs16(:(x0, x1), [], x2) 26.72/10.94 new_primCompAux00(x0, LT) 26.72/10.94 new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) 26.72/10.94 new_esEs29(x0, x1, ty_@0) 26.72/10.94 new_ltEs8(Just(x0), Just(x1), ty_Ordering) 26.72/10.94 new_esEs28(x0, x1, ty_Char) 26.72/10.94 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.94 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.94 new_esEs30(x0, x1, ty_Double) 26.72/10.94 new_compare26(x0, x1, True) 26.72/10.94 new_esEs11(x0, x1, app(ty_Maybe, x2)) 26.72/10.94 new_esEs15(Integer(x0), Integer(x1)) 26.72/10.94 new_lt19(x0, x1, app(ty_[], x2)) 26.72/10.94 new_esEs21(x0, x1, app(ty_Ratio, x2)) 26.72/10.94 new_ltEs15(x0, x1, x2) 26.72/10.94 new_esEs26(x0, x1, ty_Float) 26.72/10.94 new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.72/10.94 new_asAs(True, x0) 26.72/10.94 new_esEs16(:(x0, x1), :(x2, x3), x4) 26.72/10.94 new_lt8(x0, x1, x2, x3) 26.72/10.94 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.94 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.94 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.94 new_ltEs20(x0, x1, ty_Integer) 26.72/10.94 new_compare29(x0, x1, False, x2, x3, x4) 26.72/10.94 new_esEs22(x0, x1, app(ty_[], x2)) 26.72/10.94 new_esEs16([], [], x0) 26.72/10.94 new_ltEs20(x0, x1, ty_Float) 26.72/10.94 new_compare111(x0, x1, True) 26.72/10.94 new_esEs22(x0, x1, ty_Ordering) 26.72/10.94 new_compare110(x0, x1, True, x2, x3) 26.72/10.94 new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 26.72/10.94 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 26.72/10.94 new_compare0([], [], x0) 26.72/10.94 new_esEs7(Right(x0), Right(x1), x2, ty_Double) 26.72/10.94 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.94 new_ltEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.72/10.94 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.94 new_ltEs19(x0, x1, ty_Double) 26.72/10.94 new_esEs8(GT, GT) 26.72/10.94 new_esEs22(x0, x1, ty_Int) 26.72/10.94 new_esEs20(x0, x1, ty_Char) 26.72/10.94 new_ltEs12(EQ, LT) 26.72/10.94 new_ltEs12(LT, EQ) 26.72/10.94 new_compare0([], :(x0, x1), x2) 26.72/10.94 new_esEs8(LT, EQ) 26.72/10.94 new_esEs8(EQ, LT) 26.72/10.94 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.94 new_ltEs12(GT, GT) 26.72/10.94 new_esEs27(x0, x1, app(ty_Maybe, x2)) 26.72/10.94 new_primMulNat0(Succ(x0), Zero) 26.72/10.94 new_primCmpInt(Neg(Zero), Neg(Zero)) 26.72/10.94 new_esEs22(x0, x1, ty_Char) 26.72/10.94 new_esEs21(x0, x1, app(ty_[], x2)) 26.72/10.94 new_lt20(x0, x1, ty_@0) 26.72/10.94 new_esEs28(x0, x1, ty_Bool) 26.72/10.94 new_compare25(Nothing, Nothing, False, x0) 26.72/10.94 new_esEs19(x0, x1) 26.72/10.94 new_esEs11(x0, x1, ty_Double) 26.72/10.94 new_lt14(x0, x1, x2) 26.72/10.94 new_ltEs14(False, False) 26.72/10.94 new_esEs11(x0, x1, ty_@0) 26.72/10.94 new_esEs23(x0, x1, ty_Int) 26.72/10.94 new_compare10(x0, x1, False, x2) 26.72/10.94 new_ltEs6(x0, x1, app(ty_Ratio, x2)) 26.72/10.94 new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.72/10.94 new_lt19(x0, x1, ty_Integer) 26.72/10.94 new_esEs8(LT, LT) 26.72/10.94 new_esEs23(x0, x1, ty_Integer) 26.72/10.94 new_compare8(x0, x1, app(ty_Maybe, x2)) 26.72/10.94 new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 26.72/10.94 new_primCmpInt(Pos(Zero), Neg(Zero)) 26.72/10.94 new_primCmpInt(Neg(Zero), Pos(Zero)) 26.72/10.94 new_esEs30(x0, x1, app(ty_Maybe, x2)) 26.72/10.94 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.94 new_esEs28(x0, x1, ty_Float) 26.72/10.94 new_esEs20(x0, x1, ty_Int) 26.72/10.94 new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.72/10.94 new_esEs21(x0, x1, ty_@0) 26.72/10.94 new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.72/10.94 new_lt19(x0, x1, app(ty_Maybe, x2)) 26.72/10.94 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 26.72/10.94 new_esEs10(x0, x1, ty_Char) 26.72/10.94 new_ltEs4(Right(x0), Right(x1), x2, ty_Bool) 26.72/10.94 new_primEqNat0(Succ(x0), Zero) 26.72/10.94 new_lt15(x0, x1) 26.72/10.94 new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.94 new_ltEs20(x0, x1, ty_Int) 26.72/10.94 new_ltEs4(Right(x0), Right(x1), x2, ty_Float) 26.72/10.94 new_ltEs20(x0, x1, ty_Bool) 26.72/10.94 new_esEs22(x0, x1, ty_Integer) 26.72/10.94 new_esEs23(x0, x1, ty_Char) 26.72/10.94 new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.72/10.94 new_esEs29(x0, x1, app(ty_[], x2)) 26.72/10.94 new_esEs10(x0, x1, ty_Int) 26.72/10.94 new_esEs22(x0, x1, app(ty_Ratio, x2)) 26.72/10.94 new_ltEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.72/10.94 new_ltEs19(x0, x1, ty_@0) 26.72/10.94 new_esEs28(x0, x1, app(ty_[], x2)) 26.72/10.94 new_esEs28(x0, x1, ty_Int) 26.72/10.94 new_ltEs20(x0, x1, ty_Char) 26.72/10.94 new_compare114(x0, x1, False, x2, x3) 26.72/10.94 new_ltEs12(LT, LT) 26.72/10.94 new_esEs5(Nothing, Nothing, x0) 26.72/10.94 new_esEs20(x0, x1, ty_Float) 26.72/10.94 new_ltEs4(Left(x0), Left(x1), ty_Double, x2) 26.72/10.94 new_lt19(x0, x1, ty_Ordering) 26.72/10.94 new_esEs23(x0, x1, app(ty_Maybe, x2)) 26.72/10.94 new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) 26.72/10.94 new_ltEs4(Right(x0), Right(x1), x2, ty_Int) 26.72/10.94 new_esEs21(x0, x1, ty_Double) 26.72/10.94 new_esEs23(x0, x1, ty_Bool) 26.72/10.94 new_ltEs7(x0, x1, x2) 26.72/10.94 new_ltEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.72/10.94 new_ltEs17(x0, x1) 26.72/10.94 new_primCmpNat0(x0, Zero) 26.72/10.94 new_esEs10(x0, x1, ty_Float) 26.72/10.94 new_lt20(x0, x1, ty_Double) 26.72/10.94 new_esEs30(x0, x1, ty_@0) 26.72/10.94 new_ltEs4(Right(x0), Right(x1), x2, ty_Char) 26.72/10.94 new_compare113(x0, x1, False, x2, x3, x4) 26.72/10.94 new_compare25(Just(x0), Nothing, False, x1) 26.72/10.94 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.94 new_lt6(x0, x1, ty_Double) 26.72/10.94 new_esEs11(x0, x1, ty_Char) 26.72/10.94 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 26.72/10.94 new_compare27(x0, x1, False) 26.72/10.94 new_lt20(x0, x1, app(ty_Ratio, x2)) 26.72/10.94 new_ltEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.72/10.94 new_ltEs10(x0, x1) 26.72/10.94 new_esEs7(Left(x0), Left(x1), ty_Float, x2) 26.72/10.94 new_esEs29(x0, x1, ty_Float) 26.72/10.94 new_primCmpNat0(x0, Succ(x1)) 26.72/10.94 new_ltEs4(Left(x0), Left(x1), ty_Integer, x2) 26.72/10.94 new_esEs5(Just(x0), Just(x1), ty_@0) 26.72/10.94 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.72/10.94 new_esEs20(x0, x1, app(ty_Ratio, x2)) 26.72/10.94 new_primCmpNat1(Zero, Succ(x0)) 26.72/10.94 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.94 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.94 new_ltEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.72/10.94 new_esEs10(x0, x1, ty_@0) 26.72/10.94 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 26.72/10.94 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.94 new_compare24(x0, x1, False, x2, x3) 26.72/10.94 new_ltEs8(Nothing, Nothing, x0) 26.72/10.94 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.94 new_esEs24(x0, x1, ty_Integer) 26.72/10.94 new_primMulNat0(Zero, Zero) 26.72/10.94 new_ltEs4(Left(x0), Right(x1), x2, x3) 26.72/10.94 new_ltEs4(Right(x0), Left(x1), x2, x3) 26.72/10.94 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.94 new_primCmpNat2(Succ(x0), x1) 26.72/10.94 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.94 new_ltEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.72/10.94 new_compare8(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.94 new_esEs11(x0, x1, ty_Int) 26.72/10.94 new_esEs27(x0, x1, ty_Float) 26.72/10.94 new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.94 new_esEs10(x0, x1, app(ty_[], x2)) 26.72/10.94 new_lt12(x0, x1) 26.72/10.94 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.94 new_compare0(:(x0, x1), :(x2, x3), x4) 26.72/10.94 new_compare114(x0, x1, True, x2, x3) 26.72/10.94 new_esEs20(x0, x1, ty_Double) 26.72/10.94 new_esEs17(True, True) 26.72/10.94 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.94 new_ltEs6(x0, x1, ty_Float) 26.72/10.94 new_esEs23(x0, x1, ty_Double) 26.72/10.94 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 26.72/10.94 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 26.72/10.94 new_ltEs5(@2(x0, x1), @2(x2, x3), x4, x5) 26.72/10.94 new_ltEs19(x0, x1, ty_Int) 26.72/10.94 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 26.72/10.94 new_compare14(Integer(x0), Integer(x1)) 26.72/10.94 new_esEs7(Left(x0), Right(x1), x2, x3) 26.72/10.94 new_esEs7(Right(x0), Left(x1), x2, x3) 26.72/10.94 new_ltEs16(x0, x1) 26.72/10.94 new_compare8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.94 new_ltEs19(x0, x1, ty_Char) 26.72/10.94 new_primPlusNat0(Succ(x0), Succ(x1)) 26.72/10.94 new_lt16(x0, x1) 26.72/10.94 new_ltEs4(Left(x0), Left(x1), ty_@0, x2) 26.72/10.94 new_primEqNat0(Succ(x0), Succ(x1)) 26.72/10.94 new_esEs23(x0, x1, ty_Ordering) 26.72/10.94 new_esEs11(x0, x1, app(ty_Ratio, x2)) 26.72/10.94 new_esEs10(x0, x1, ty_Bool) 26.72/10.94 new_ltEs6(x0, x1, ty_Integer) 26.72/10.94 new_ltEs6(x0, x1, app(ty_Maybe, x2)) 26.72/10.94 new_esEs5(Just(x0), Just(x1), ty_Integer) 26.72/10.94 new_compare8(x0, x1, app(ty_[], x2)) 26.72/10.94 new_primPlusNat0(Zero, Zero) 26.72/10.94 new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.72/10.94 new_primCmpNat1(Succ(x0), Zero) 26.72/10.94 new_esEs10(x0, x1, ty_Integer) 26.72/10.94 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.94 new_pePe(False, x0) 26.72/10.94 new_ltEs14(True, True) 26.72/10.94 new_ltEs19(x0, x1, ty_Bool) 26.72/10.94 new_not(True) 26.72/10.94 new_esEs25(x0, x1, ty_Int) 26.72/10.94 new_ltEs20(x0, x1, app(ty_[], x2)) 26.72/10.94 new_esEs8(EQ, GT) 26.72/10.94 new_esEs8(GT, EQ) 26.72/10.94 new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.72/10.94 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.94 new_primMulNat0(Zero, Succ(x0)) 26.72/10.94 new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.72/10.94 new_esEs20(x0, x1, app(ty_[], x2)) 26.72/10.94 new_compare112(x0, x1, False) 26.72/10.94 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.94 new_lt20(x0, x1, ty_Ordering) 26.72/10.94 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.94 new_esEs11(x0, x1, ty_Ordering) 26.72/10.94 new_esEs20(x0, x1, ty_Ordering) 26.72/10.94 new_esEs29(x0, x1, ty_Integer) 26.72/10.94 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.72/10.94 new_esEs27(x0, x1, ty_Integer) 26.72/10.94 new_lt6(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.94 new_ltEs18(x0, x1) 26.72/10.94 new_ltEs20(x0, x1, ty_Ordering) 26.72/10.94 new_ltEs19(x0, x1, ty_Ordering) 26.72/10.94 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 26.72/10.94 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.94 new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.72/10.94 new_esEs17(False, True) 26.72/10.94 new_esEs17(True, False) 26.72/10.94 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.94 new_primPlusNat0(Succ(x0), Zero) 26.72/10.94 new_esEs28(x0, x1, ty_Integer) 26.72/10.94 new_esEs28(x0, x1, app(ty_Maybe, x2)) 26.72/10.94 new_ltEs19(x0, x1, ty_Integer) 26.72/10.94 new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.72/10.94 new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.72/10.94 new_ltEs12(EQ, EQ) 26.72/10.94 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.94 new_compare18(@0, @0) 26.72/10.94 new_esEs21(x0, x1, ty_Ordering) 26.72/10.94 new_esEs10(x0, x1, ty_Ordering) 26.72/10.94 new_esEs27(x0, x1, app(ty_[], x2)) 26.72/10.94 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.94 new_esEs13(Double(x0, x1), Double(x2, x3)) 26.72/10.94 new_esEs23(x0, x1, app(ty_Ratio, x2)) 26.72/10.94 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.94 new_lt7(x0, x1, x2) 26.72/10.94 new_compare8(x0, x1, ty_Integer) 26.72/10.94 new_lt10(x0, x1, x2, x3, x4) 26.72/10.94 new_primCmpInt(Pos(Zero), Pos(Zero)) 26.72/10.94 new_ltEs6(x0, x1, ty_Bool) 26.72/10.94 new_compare29(x0, x1, True, x2, x3, x4) 26.72/10.94 new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.72/10.94 new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) 26.72/10.94 new_ltEs4(Left(x0), Left(x1), ty_Int, x2) 26.72/10.94 new_compare8(x0, x1, app(ty_Ratio, x2)) 26.72/10.94 new_ltEs6(x0, x1, app(ty_[], x2)) 26.72/10.94 new_compare7(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 26.72/10.94 new_compare16(x0, x1) 26.72/10.94 new_ltEs8(Just(x0), Just(x1), ty_Float) 26.72/10.94 new_esEs22(x0, x1, ty_Double) 26.72/10.94 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.94 new_esEs23(x0, x1, app(ty_[], x2)) 26.72/10.94 new_esEs7(Right(x0), Right(x1), x2, ty_Int) 26.72/10.94 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.94 new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.72/10.94 new_esEs11(x0, x1, app(ty_[], x2)) 26.72/10.94 new_esEs30(x0, x1, ty_Float) 26.72/10.94 new_esEs27(x0, x1, ty_Bool) 26.72/10.94 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.94 new_ltEs4(Left(x0), Left(x1), ty_Char, x2) 26.72/10.94 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.94 new_esEs8(LT, GT) 26.72/10.94 new_esEs8(GT, LT) 26.72/10.94 new_primPlusNat1(x0, x1) 26.72/10.94 new_lt6(x0, x1, ty_Ordering) 26.72/10.94 new_esEs29(x0, x1, ty_Bool) 26.72/10.94 new_esEs12(Char(x0), Char(x1)) 26.72/10.94 new_esEs27(x0, x1, app(ty_Ratio, x2)) 26.72/10.94 new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) 26.72/10.94 new_lt18(x0, x1, x2, x3) 26.72/10.94 new_ltEs8(Just(x0), Just(x1), ty_Int) 26.72/10.94 new_lt19(x0, x1, ty_Float) 26.72/10.94 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.94 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 26.72/10.94 new_esEs5(Nothing, Just(x0), x1) 26.72/10.94 new_esEs20(x0, x1, ty_@0) 26.72/10.94 new_ltEs4(Left(x0), Left(x1), ty_Float, x2) 26.72/10.94 new_esEs26(x0, x1, ty_Ordering) 26.72/10.94 new_esEs7(Left(x0), Left(x1), ty_Integer, x2) 26.72/10.94 new_ltEs6(x0, x1, ty_@0) 26.72/10.94 new_ltEs4(Left(x0), Left(x1), ty_Ordering, x2) 26.72/10.94 new_esEs10(x0, x1, app(ty_Ratio, x2)) 26.72/10.94 new_esEs5(Just(x0), Just(x1), ty_Ordering) 26.72/10.94 new_esEs10(x0, x1, ty_Double) 26.72/10.94 new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.72/10.94 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 26.72/10.94 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 26.72/10.94 new_esEs29(x0, x1, app(ty_Maybe, x2)) 26.72/10.94 new_lt6(x0, x1, ty_Float) 26.72/10.94 new_compare8(x0, x1, ty_Bool) 26.72/10.94 new_esEs7(Right(x0), Right(x1), x2, ty_Char) 26.72/10.94 new_esEs26(x0, x1, app(ty_[], x2)) 26.72/10.94 new_compare24(x0, x1, True, x2, x3) 26.72/10.94 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.94 new_ltEs8(Just(x0), Nothing, x1) 26.72/10.94 new_esEs7(Left(x0), Left(x1), ty_@0, x2) 26.72/10.94 new_esEs11(x0, x1, ty_Integer) 26.72/10.94 new_primMulInt(Neg(x0), Neg(x1)) 26.72/10.94 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.94 new_esEs30(x0, x1, app(ty_[], x2)) 26.72/10.94 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.94 new_esEs23(x0, x1, ty_@0) 26.72/10.94 new_esEs26(x0, x1, ty_Integer) 26.72/10.94 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.94 new_esEs5(Just(x0), Just(x1), ty_Float) 26.72/10.94 new_compare23(x0, x1, x2, x3) 26.72/10.94 new_ltEs14(False, True) 26.72/10.94 new_ltEs14(True, False) 26.72/10.94 new_primPlusNat0(Zero, Succ(x0)) 26.72/10.94 new_primEqNat0(Zero, Zero) 26.72/10.94 new_compare8(x0, x1, ty_Char) 26.72/10.94 new_esEs25(x0, x1, ty_Integer) 26.72/10.94 new_primCompAux00(x0, GT) 26.72/10.94 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.94 new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) 26.72/10.94 new_lt20(x0, x1, app(ty_[], x2)) 26.72/10.94 new_ltEs4(Right(x0), Right(x1), x2, ty_@0) 26.72/10.94 new_not(False) 26.72/10.94 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 26.72/10.94 new_ltEs8(Just(x0), Just(x1), ty_Char) 26.72/10.94 new_esEs5(Just(x0), Just(x1), ty_Char) 26.72/10.94 new_esEs11(x0, x1, ty_Bool) 26.72/10.94 new_lt20(x0, x1, ty_Float) 26.72/10.94 new_ltEs19(x0, x1, ty_Float) 26.72/10.94 new_lt20(x0, x1, ty_Bool) 26.72/10.94 new_ltEs12(LT, GT) 26.72/10.94 new_ltEs12(GT, LT) 26.72/10.94 new_esEs30(x0, x1, ty_Char) 26.72/10.94 new_lt6(x0, x1, ty_Int) 26.72/10.94 new_compare8(x0, x1, ty_Int) 26.72/10.94 new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.72/10.94 new_esEs21(x0, x1, app(ty_Maybe, x2)) 26.72/10.94 new_sr0(Integer(x0), Integer(x1)) 26.72/10.94 new_lt6(x0, x1, app(ty_Maybe, x2)) 26.72/10.94 new_esEs21(x0, x1, ty_Bool) 26.72/10.94 new_esEs28(x0, x1, ty_Double) 26.72/10.94 new_esEs7(Right(x0), Right(x1), x2, ty_Bool) 26.72/10.94 new_esEs5(Just(x0), Just(x1), ty_Int) 26.72/10.94 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 26.72/10.94 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 26.72/10.94 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 26.72/10.94 new_esEs21(x0, x1, ty_Float) 26.72/10.94 new_compare25(Just(x0), Just(x1), False, x2) 26.72/10.94 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.94 new_ltEs20(x0, x1, ty_@0) 26.72/10.94 new_ltEs4(Left(x0), Left(x1), ty_Bool, x2) 26.72/10.94 new_lt19(x0, x1, app(ty_Ratio, x2)) 26.72/10.94 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.94 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.94 new_compare25(Nothing, Just(x0), False, x1) 26.72/10.94 new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.72/10.94 new_lt4(x0, x1) 26.72/10.94 new_asAs(False, x0) 26.72/10.94 new_esEs30(x0, x1, ty_Int) 26.72/10.94 new_primMulInt(Pos(x0), Neg(x1)) 26.72/10.94 new_primMulInt(Neg(x0), Pos(x1)) 26.72/10.94 new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.72/10.94 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 26.72/10.94 new_ltEs8(Nothing, Just(x0), x1) 26.72/10.94 new_esEs14(Float(x0, x1), Float(x2, x3)) 26.72/10.94 new_lt20(x0, x1, ty_Int) 26.72/10.94 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.72/10.94 new_primCmpNat1(Succ(x0), Succ(x1)) 26.72/10.94 new_esEs21(x0, x1, ty_Char) 26.72/10.94 new_compare111(x0, x1, False) 26.72/10.94 new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.72/10.94 new_ltEs4(Right(x0), Right(x1), x2, ty_Double) 26.72/10.94 new_esEs21(x0, x1, ty_Int) 26.72/10.94 new_lt6(x0, x1, ty_Char) 26.72/10.94 new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 26.72/10.94 new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 26.72/10.94 new_esEs5(Just(x0), Just(x1), ty_Bool) 26.72/10.94 new_compare8(x0, x1, ty_Float) 26.72/10.94 new_lt20(x0, x1, ty_Char) 26.72/10.94 new_ltEs20(x0, x1, ty_Double) 26.72/10.94 new_primCompAux0(x0, x1, x2, x3) 26.72/10.94 new_esEs28(x0, x1, ty_@0) 26.72/10.94 26.72/10.94 We have to consider all minimal (P,Q,R)-chains. 26.72/10.94 ---------------------------------------- 26.72/10.94 26.72/10.94 (37) TransformationProof (EQUIVALENT) 26.72/10.94 By rewriting [LPAR04] the rule new_addToFM_C(xuu3, Branch(Nothing, xuu41, xuu42, xuu43, xuu44), Just(xuu5000), xuu501, h, ba) -> new_addToFM_C20(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs8(GT, LT), h, ba) at position [7] we obtained the following new rules [LPAR04]: 26.72/10.94 26.72/10.94 (new_addToFM_C(xuu3, Branch(Nothing, xuu41, xuu42, xuu43, xuu44), Just(xuu5000), xuu501, h, ba) -> new_addToFM_C20(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, False, h, ba),new_addToFM_C(xuu3, Branch(Nothing, xuu41, xuu42, xuu43, xuu44), Just(xuu5000), xuu501, h, ba) -> new_addToFM_C20(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, False, h, ba)) 26.72/10.94 26.72/10.94 26.72/10.94 ---------------------------------------- 26.72/10.94 26.72/10.94 (38) 26.72/10.94 Obligation: 26.72/10.94 Q DP problem: 26.72/10.94 The TRS P consists of the following rules: 26.72/10.94 26.72/10.94 new_addToFM_C(xuu3, Branch(Just(xuu400), xuu41, xuu42, xuu43, xuu44), Just(xuu5000), xuu501, h, ba) -> new_addToFM_C21(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs8(new_compare25(Just(xuu5000), Just(xuu400), new_esEs29(xuu5000, xuu400, h), h), LT), h, ba) 26.72/10.94 new_addToFM_C21(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, bb, bc) -> new_addToFM_C12(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs8(new_compare25(Just(xuu22), Just(xuu17), new_esEs30(xuu22, xuu17, bb), bb), GT), bb, bc) 26.72/10.94 new_addToFM_C12(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu16, xuu21, Just(xuu22), xuu23, bb, bc) 26.72/10.94 new_addToFM_C20(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, False, h, ba) -> new_addToFM_C11(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs8(new_compare25(Just(xuu5000), Nothing, False, h), GT), h, ba) 26.72/10.94 new_addToFM_C11(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, True, h, ba) -> new_addToFM_C(xuu3, xuu44, Just(xuu5000), xuu501, h, ba) 26.72/10.94 new_addToFM_C21(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu16, xuu20, Just(xuu22), xuu23, bb, bc) 26.72/10.94 new_addToFM_C(xuu3, Branch(Nothing, xuu41, xuu42, xuu43, xuu44), Just(xuu5000), xuu501, h, ba) -> new_addToFM_C20(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, False, h, ba) 26.72/10.94 26.72/10.94 The TRS R consists of the following rules: 26.72/10.94 26.72/10.94 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Int) -> new_ltEs13(xuu33000, xuu34000) 26.72/10.94 new_esEs11(xuu50000, xuu4000, ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.94 new_primCmpInt(Neg(Succ(xuu3300)), Pos(xuu340)) -> LT 26.72/10.94 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 26.72/10.94 new_ltEs4(Left(xuu33000), Left(xuu34000), app(ty_[], bgd), bfe) -> new_ltEs15(xuu33000, xuu34000, bgd) 26.72/10.94 new_primPlusNat0(Zero, Zero) -> Zero 26.72/10.94 new_lt6(xuu33000, xuu34000, app(app(ty_@2, bea), beb)) -> new_lt8(xuu33000, xuu34000, bea, beb) 26.72/10.94 new_compare8(xuu33000, xuu34000, ty_Ordering) -> new_compare16(xuu33000, xuu34000) 26.72/10.94 new_pePe(True, xuu161) -> True 26.72/10.94 new_primCmpNat0(xuu3300, Succ(xuu3400)) -> new_primCmpNat1(xuu3300, xuu3400) 26.72/10.94 new_esEs30(xuu22, xuu17, ty_Ordering) -> new_esEs8(xuu22, xuu17) 26.72/10.94 new_esEs24(xuu50001, xuu4001, ty_Int) -> new_esEs19(xuu50001, xuu4001) 26.72/10.94 new_esEs30(xuu22, xuu17, ty_Int) -> new_esEs19(xuu22, xuu17) 26.72/10.94 new_esEs21(xuu50001, xuu4001, app(ty_Ratio, gh)) -> new_esEs18(xuu50001, xuu4001, gh) 26.72/10.94 new_esEs29(xuu5000, xuu400, ty_Char) -> new_esEs12(xuu5000, xuu400) 26.72/10.94 new_ltEs12(LT, LT) -> True 26.72/10.94 new_esEs10(xuu50001, xuu4001, app(app(app(ty_@3, cf), cg), da)) -> new_esEs6(xuu50001, xuu4001, cf, cg, da) 26.72/10.94 new_esEs30(xuu22, xuu17, app(app(ty_@2, chd), che)) -> new_esEs4(xuu22, xuu17, chd, che) 26.72/10.94 new_lt19(xuu33001, xuu34001, app(ty_[], dce)) -> new_lt14(xuu33001, xuu34001, dce) 26.72/10.94 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 26.72/10.94 new_esEs27(xuu33001, xuu34001, app(ty_[], dce)) -> new_esEs16(xuu33001, xuu34001, dce) 26.72/10.94 new_primCmpInt(Pos(Zero), Neg(Succ(xuu3400))) -> GT 26.72/10.94 new_esEs26(xuu50000, xuu4000, ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.94 new_esEs22(xuu50000, xuu4000, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.94 new_ltEs19(xuu3300, xuu3400, app(app(ty_@2, bcd), bce)) -> new_ltEs5(xuu3300, xuu3400, bcd, bce) 26.72/10.94 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(ty_[], bhg)) -> new_ltEs15(xuu33000, xuu34000, bhg) 26.72/10.94 new_lt7(xuu33000, xuu34000, bdh) -> new_esEs8(new_compare9(xuu33000, xuu34000, bdh), LT) 26.72/10.94 new_primMulNat0(Succ(xuu5000100), Succ(xuu400000)) -> new_primPlusNat1(new_primMulNat0(xuu5000100, Succ(xuu400000)), xuu400000) 26.72/10.94 new_compare8(xuu33000, xuu34000, app(ty_Ratio, bag)) -> new_compare9(xuu33000, xuu34000, bag) 26.72/10.94 new_esEs29(xuu5000, xuu400, ty_Float) -> new_esEs14(xuu5000, xuu400) 26.72/10.94 new_compare28(xuu33000, xuu34000, False, bea, beb) -> new_compare114(xuu33000, xuu34000, new_ltEs5(xuu33000, xuu34000, bea, beb), bea, beb) 26.72/10.94 new_esEs23(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) 26.72/10.94 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Double, beh) -> new_esEs13(xuu50000, xuu4000) 26.72/10.94 new_compare8(xuu33000, xuu34000, ty_Double) -> new_compare19(xuu33000, xuu34000) 26.72/10.94 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Double, bfe) -> new_ltEs17(xuu33000, xuu34000) 26.72/10.94 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.94 new_lt19(xuu33001, xuu34001, ty_Int) -> new_lt4(xuu33001, xuu34001) 26.72/10.94 new_lt19(xuu33001, xuu34001, app(app(ty_Either, dcf), dcg)) -> new_lt18(xuu33001, xuu34001, dcf, dcg) 26.72/10.94 new_primCmpNat1(Succ(xuu33000), Succ(xuu34000)) -> new_primCmpNat1(xuu33000, xuu34000) 26.72/10.94 new_ltEs19(xuu3300, xuu3400, ty_Char) -> new_ltEs11(xuu3300, xuu3400) 26.72/10.94 new_esEs28(xuu33000, xuu34000, app(app(ty_Either, ddh), dea)) -> new_esEs7(xuu33000, xuu34000, ddh, dea) 26.72/10.94 new_ltEs15(xuu3300, xuu3400, baf) -> new_fsEs(new_compare0(xuu3300, xuu3400, baf)) 26.72/10.94 new_esEs13(Double(xuu50000, xuu50001), Double(xuu4000, xuu4001)) -> new_esEs19(new_sr(xuu50000, xuu4001), new_sr(xuu50001, xuu4000)) 26.72/10.94 new_ltEs6(xuu33001, xuu34001, ty_@0) -> new_ltEs16(xuu33001, xuu34001) 26.72/10.94 new_compare26(xuu33000, xuu34000, True) -> EQ 26.72/10.94 new_esEs10(xuu50001, xuu4001, ty_Char) -> new_esEs12(xuu50001, xuu4001) 26.72/10.94 new_esEs8(GT, GT) -> True 26.72/10.94 new_primEqInt(Pos(Succ(xuu500000)), Pos(Zero)) -> False 26.72/10.94 new_primEqInt(Pos(Zero), Pos(Succ(xuu40000))) -> False 26.72/10.94 new_lt12(xuu33000, xuu34000) -> new_esEs8(new_compare16(xuu33000, xuu34000), LT) 26.72/10.94 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(app(app(ty_@3, ccc), ccd), cce)) -> new_esEs6(xuu50000, xuu4000, ccc, ccd, cce) 26.72/10.94 new_fsEs(xuu146) -> new_not(new_esEs8(xuu146, GT)) 26.72/10.94 new_esEs29(xuu5000, xuu400, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs6(xuu5000, xuu400, ed, ee, ef) 26.72/10.94 new_compare25(Just(xuu3300), Just(xuu3400), False, cfd) -> new_compare10(xuu3300, xuu3400, new_ltEs19(xuu3300, xuu3400, cfd), cfd) 26.72/10.94 new_ltEs19(xuu3300, xuu3400, ty_Bool) -> new_ltEs14(xuu3300, xuu3400) 26.72/10.94 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.94 new_esEs20(xuu50002, xuu4002, ty_Int) -> new_esEs19(xuu50002, xuu4002) 26.72/10.94 new_esEs8(EQ, EQ) -> True 26.72/10.94 new_ltEs20(xuu33002, xuu34002, ty_Char) -> new_ltEs11(xuu33002, xuu34002) 26.72/10.94 new_primEqNat0(Succ(xuu500000), Succ(xuu40000)) -> new_primEqNat0(xuu500000, xuu40000) 26.72/10.94 new_esEs30(xuu22, xuu17, ty_Char) -> new_esEs12(xuu22, xuu17) 26.72/10.94 new_esEs27(xuu33001, xuu34001, ty_Integer) -> new_esEs15(xuu33001, xuu34001) 26.72/10.94 new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare6(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 26.72/10.94 new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare6(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 26.72/10.94 new_ltEs20(xuu33002, xuu34002, ty_Integer) -> new_ltEs10(xuu33002, xuu34002) 26.72/10.94 new_esEs21(xuu50001, xuu4001, ty_Double) -> new_esEs13(xuu50001, xuu4001) 26.72/10.94 new_esEs10(xuu50001, xuu4001, ty_Float) -> new_esEs14(xuu50001, xuu4001) 26.72/10.94 new_esEs22(xuu50000, xuu4000, ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.94 new_not(True) -> False 26.72/10.94 new_lt20(xuu33000, xuu34000, app(ty_Ratio, dch)) -> new_lt7(xuu33000, xuu34000, dch) 26.72/10.94 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(app(ty_@2, bha), bhb)) -> new_ltEs5(xuu33000, xuu34000, bha, bhb) 26.72/10.94 new_ltEs12(LT, GT) -> True 26.72/10.94 new_lt14(xuu33000, xuu34000, bef) -> new_esEs8(new_compare0(xuu33000, xuu34000, bef), LT) 26.72/10.94 new_lt19(xuu33001, xuu34001, app(ty_Ratio, dbf)) -> new_lt7(xuu33001, xuu34001, dbf) 26.72/10.94 new_primCompAux00(xuu178, LT) -> LT 26.72/10.94 new_esEs10(xuu50001, xuu4001, app(ty_Ratio, ce)) -> new_esEs18(xuu50001, xuu4001, ce) 26.72/10.94 new_esEs21(xuu50001, xuu4001, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs6(xuu50001, xuu4001, ha, hb, hc) 26.72/10.94 new_esEs27(xuu33001, xuu34001, ty_Bool) -> new_esEs17(xuu33001, xuu34001) 26.72/10.94 new_esEs30(xuu22, xuu17, ty_Float) -> new_esEs14(xuu22, xuu17) 26.72/10.94 new_esEs20(xuu50002, xuu4002, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs6(xuu50002, xuu4002, fg, fh, ga) 26.72/10.94 new_esEs26(xuu50000, xuu4000, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.94 new_esEs20(xuu50002, xuu4002, app(app(ty_Either, eg), eh)) -> new_esEs7(xuu50002, xuu4002, eg, eh) 26.72/10.94 new_compare8(xuu33000, xuu34000, ty_Float) -> new_compare7(xuu33000, xuu34000) 26.72/10.94 new_ltEs19(xuu3300, xuu3400, ty_Integer) -> new_ltEs10(xuu3300, xuu3400) 26.72/10.94 new_esEs10(xuu50001, xuu4001, ty_Ordering) -> new_esEs8(xuu50001, xuu4001) 26.72/10.94 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Integer, beh) -> new_esEs15(xuu50000, xuu4000) 26.72/10.94 new_ltEs19(xuu3300, xuu3400, ty_Double) -> new_ltEs17(xuu3300, xuu3400) 26.72/10.94 new_esEs11(xuu50000, xuu4000, app(ty_Ratio, dh)) -> new_esEs18(xuu50000, xuu4000, dh) 26.72/10.94 new_primEqNat0(Succ(xuu500000), Zero) -> False 26.72/10.94 new_primEqNat0(Zero, Succ(xuu40000)) -> False 26.72/10.94 new_compare112(xuu33000, xuu34000, False) -> GT 26.72/10.94 new_ltEs20(xuu33002, xuu34002, app(ty_Maybe, dag)) -> new_ltEs8(xuu33002, xuu34002, dag) 26.72/10.94 new_esEs29(xuu5000, xuu400, ty_Int) -> new_esEs19(xuu5000, xuu400) 26.72/10.94 new_lt20(xuu33000, xuu34000, app(ty_[], ddg)) -> new_lt14(xuu33000, xuu34000, ddg) 26.72/10.94 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_ltEs9(xuu33000, xuu34000, bhd, bhe, bhf) 26.72/10.94 new_ltEs20(xuu33002, xuu34002, ty_Bool) -> new_ltEs14(xuu33002, xuu34002) 26.72/10.94 new_primCompAux00(xuu178, GT) -> GT 26.72/10.94 new_compare7(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare6(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 26.72/10.94 new_compare7(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare6(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 26.72/10.94 new_ltEs6(xuu33001, xuu34001, app(ty_Maybe, bda)) -> new_ltEs8(xuu33001, xuu34001, bda) 26.72/10.94 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.94 new_esEs5(Just(xuu50000), Just(xuu4000), app(ty_Ratio, cdd)) -> new_esEs18(xuu50000, xuu4000, cdd) 26.72/10.94 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Bool) -> new_ltEs14(xuu33000, xuu34000) 26.72/10.94 new_primCmpNat2(Zero, xuu3300) -> LT 26.72/10.94 new_esEs20(xuu50002, xuu4002, ty_Ordering) -> new_esEs8(xuu50002, xuu4002) 26.72/10.94 new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(ty_@2, cec), ced)) -> new_ltEs5(xuu33000, xuu34000, cec, ced) 26.72/10.94 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Integer, bfe) -> new_ltEs10(xuu33000, xuu34000) 26.72/10.94 new_primCmpInt(Pos(Succ(xuu3300)), Neg(xuu340)) -> GT 26.72/10.94 new_ltEs20(xuu33002, xuu34002, app(app(ty_@2, dae), daf)) -> new_ltEs5(xuu33002, xuu34002, dae, daf) 26.72/10.94 new_esEs20(xuu50002, xuu4002, app(app(ty_@2, fa), fb)) -> new_esEs4(xuu50002, xuu4002, fa, fb) 26.72/10.94 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_@0, bfe) -> new_ltEs16(xuu33000, xuu34000) 26.72/10.94 new_ltEs6(xuu33001, xuu34001, app(ty_Ratio, bcf)) -> new_ltEs7(xuu33001, xuu34001, bcf) 26.72/10.94 new_compare110(xuu33000, xuu34000, True, bca, bcb) -> LT 26.72/10.94 new_ltEs6(xuu33001, xuu34001, ty_Double) -> new_ltEs17(xuu33001, xuu34001) 26.72/10.94 new_esEs19(xuu5000, xuu400) -> new_primEqInt(xuu5000, xuu400) 26.72/10.94 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Bool, beh) -> new_esEs17(xuu50000, xuu4000) 26.72/10.94 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Char, bfe) -> new_ltEs11(xuu33000, xuu34000) 26.72/10.94 new_esEs22(xuu50000, xuu4000, app(ty_Ratio, bab)) -> new_esEs18(xuu50000, xuu4000, bab) 26.72/10.94 new_esEs7(Left(xuu50000), Left(xuu4000), app(app(app(ty_@3, cba), cbb), cbc), beh) -> new_esEs6(xuu50000, xuu4000, cba, cbb, cbc) 26.72/10.94 new_esEs26(xuu50000, xuu4000, ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.94 new_ltEs20(xuu33002, xuu34002, ty_Double) -> new_ltEs17(xuu33002, xuu34002) 26.72/10.94 new_esEs28(xuu33000, xuu34000, ty_Char) -> new_esEs12(xuu33000, xuu34000) 26.72/10.94 new_esEs28(xuu33000, xuu34000, app(ty_[], ddg)) -> new_esEs16(xuu33000, xuu34000, ddg) 26.72/10.94 new_esEs7(Left(xuu50000), Left(xuu4000), ty_@0, beh) -> new_esEs9(xuu50000, xuu4000) 26.72/10.94 new_primCompAux0(xuu33000, xuu34000, xuu172, baf) -> new_primCompAux00(xuu172, new_compare8(xuu33000, xuu34000, baf)) 26.72/10.94 new_ltEs6(xuu33001, xuu34001, app(ty_[], bde)) -> new_ltEs15(xuu33001, xuu34001, bde) 26.72/10.94 new_pePe(False, xuu161) -> xuu161 26.72/10.94 new_lt8(xuu33000, xuu34000, bea, beb) -> new_esEs8(new_compare11(xuu33000, xuu34000, bea, beb), LT) 26.72/10.94 new_esEs27(xuu33001, xuu34001, ty_Double) -> new_esEs13(xuu33001, xuu34001) 26.72/10.94 new_compare7(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare6(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 26.72/10.94 new_lt20(xuu33000, xuu34000, ty_Float) -> new_lt17(xuu33000, xuu34000) 26.72/10.94 new_ltEs12(GT, GT) -> True 26.72/10.94 new_lt9(xuu33000, xuu34000, bcc) -> new_esEs8(new_compare12(xuu33000, xuu34000, bcc), LT) 26.72/10.94 new_esEs11(xuu50000, xuu4000, ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.94 new_esEs7(Left(xuu50000), Left(xuu4000), app(app(ty_@2, cad), cae), beh) -> new_esEs4(xuu50000, xuu4000, cad, cae) 26.72/10.94 new_lt17(xuu33000, xuu34000) -> new_esEs8(new_compare7(xuu33000, xuu34000), LT) 26.72/10.94 new_esEs6(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), ed, ee, ef) -> new_asAs(new_esEs22(xuu50000, xuu4000, ed), new_asAs(new_esEs21(xuu50001, xuu4001, ee), new_esEs20(xuu50002, xuu4002, ef))) 26.72/10.94 new_esEs10(xuu50001, xuu4001, app(app(ty_Either, bg), bh)) -> new_esEs7(xuu50001, xuu4001, bg, bh) 26.72/10.94 new_compare114(xuu33000, xuu34000, True, bea, beb) -> LT 26.72/10.94 new_ltEs12(GT, EQ) -> False 26.72/10.94 new_ltEs6(xuu33001, xuu34001, app(app(ty_@2, bcg), bch)) -> new_ltEs5(xuu33001, xuu34001, bcg, bch) 26.72/10.94 new_compare8(xuu33000, xuu34000, ty_Int) -> new_compare6(xuu33000, xuu34000) 26.72/10.94 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(ty_Ratio, bgh)) -> new_ltEs7(xuu33000, xuu34000, bgh) 26.72/10.94 new_esEs26(xuu50000, xuu4000, ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.94 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.94 new_compare26(xuu33000, xuu34000, False) -> new_compare111(xuu33000, xuu34000, new_ltEs12(xuu33000, xuu34000)) 26.72/10.94 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Char) -> new_ltEs11(xuu33000, xuu34000) 26.72/10.94 new_compare10(xuu129, xuu130, False, bd) -> GT 26.72/10.94 new_lt20(xuu33000, xuu34000, ty_Integer) -> new_lt11(xuu33000, xuu34000) 26.72/10.94 new_lt20(xuu33000, xuu34000, app(ty_Maybe, ddc)) -> new_lt9(xuu33000, xuu34000, ddc) 26.72/10.94 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(ty_Ratio, ccb)) -> new_esEs18(xuu50000, xuu4000, ccb) 26.72/10.94 new_esEs8(LT, EQ) -> False 26.72/10.94 new_esEs8(EQ, LT) -> False 26.72/10.94 new_esEs21(xuu50001, xuu4001, app(app(ty_@2, gd), ge)) -> new_esEs4(xuu50001, xuu4001, gd, ge) 26.72/10.94 new_compare29(xuu33000, xuu34000, False, bec, bed, bee) -> new_compare113(xuu33000, xuu34000, new_ltEs9(xuu33000, xuu34000, bec, bed, bee), bec, bed, bee) 26.72/10.94 new_lt19(xuu33001, xuu34001, app(ty_Maybe, dca)) -> new_lt9(xuu33001, xuu34001, dca) 26.72/10.94 new_primEqInt(Pos(Zero), Neg(Succ(xuu40000))) -> False 26.72/10.94 new_primEqInt(Neg(Zero), Pos(Succ(xuu40000))) -> False 26.72/10.94 new_lt19(xuu33001, xuu34001, ty_Ordering) -> new_lt12(xuu33001, xuu34001) 26.72/10.94 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Integer) -> new_ltEs10(xuu33000, xuu34000) 26.72/10.94 new_esEs11(xuu50000, xuu4000, app(ty_Maybe, df)) -> new_esEs5(xuu50000, xuu4000, df) 26.72/10.94 new_esEs21(xuu50001, xuu4001, ty_Ordering) -> new_esEs8(xuu50001, xuu4001) 26.72/10.94 new_esEs18(:%(xuu50000, xuu50001), :%(xuu4000, xuu4001), bfc) -> new_asAs(new_esEs25(xuu50000, xuu4000, bfc), new_esEs24(xuu50001, xuu4001, bfc)) 26.72/10.94 new_esEs5(Just(xuu50000), Just(xuu4000), app(app(app(ty_@3, cde), cdf), cdg)) -> new_esEs6(xuu50000, xuu4000, cde, cdf, cdg) 26.72/10.94 new_ltEs14(True, True) -> True 26.72/10.94 new_esEs25(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.94 new_esEs21(xuu50001, xuu4001, ty_Float) -> new_esEs14(xuu50001, xuu4001) 26.72/10.94 new_esEs21(xuu50001, xuu4001, app(ty_Maybe, gf)) -> new_esEs5(xuu50001, xuu4001, gf) 26.72/10.94 new_esEs23(xuu33000, xuu34000, app(app(ty_Either, bca), bcb)) -> new_esEs7(xuu33000, xuu34000, bca, bcb) 26.72/10.94 new_esEs26(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.94 new_esEs5(Nothing, Nothing, bfa) -> True 26.72/10.94 new_esEs26(xuu50000, xuu4000, app(ty_[], cge)) -> new_esEs16(xuu50000, xuu4000, cge) 26.72/10.94 new_primEqInt(Neg(Succ(xuu500000)), Neg(Succ(xuu40000))) -> new_primEqNat0(xuu500000, xuu40000) 26.72/10.94 new_esEs5(Nothing, Just(xuu4000), bfa) -> False 26.72/10.94 new_esEs5(Just(xuu50000), Nothing, bfa) -> False 26.72/10.94 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Float, bfe) -> new_ltEs18(xuu33000, xuu34000) 26.72/10.94 new_primCmpInt(Neg(Zero), Pos(Succ(xuu3400))) -> LT 26.72/10.94 new_lt19(xuu33001, xuu34001, ty_Bool) -> new_lt13(xuu33001, xuu34001) 26.72/10.94 new_compare114(xuu33000, xuu34000, False, bea, beb) -> GT 26.72/10.94 new_ltEs20(xuu33002, xuu34002, ty_@0) -> new_ltEs16(xuu33002, xuu34002) 26.72/10.94 new_primMulInt(Pos(xuu500010), Pos(xuu40000)) -> Pos(new_primMulNat0(xuu500010, xuu40000)) 26.72/10.94 new_lt6(xuu33000, xuu34000, app(app(app(ty_@3, bec), bed), bee)) -> new_lt10(xuu33000, xuu34000, bec, bed, bee) 26.72/10.94 new_compare8(xuu33000, xuu34000, ty_Integer) -> new_compare14(xuu33000, xuu34000) 26.72/10.94 new_lt20(xuu33000, xuu34000, app(app(ty_@2, dda), ddb)) -> new_lt8(xuu33000, xuu34000, dda, ddb) 26.72/10.94 new_esEs7(Left(xuu50000), Left(xuu4000), app(app(ty_Either, cab), cac), beh) -> new_esEs7(xuu50000, xuu4000, cab, cac) 26.72/10.94 new_compare25(Just(xuu3300), Nothing, False, cfd) -> GT 26.72/10.94 new_esEs28(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) 26.72/10.94 new_compare10(xuu129, xuu130, True, bd) -> LT 26.72/10.94 new_lt19(xuu33001, xuu34001, ty_Float) -> new_lt17(xuu33001, xuu34001) 26.72/10.94 new_compare24(xuu33000, xuu34000, False, bca, bcb) -> new_compare110(xuu33000, xuu34000, new_ltEs4(xuu33000, xuu34000, bca, bcb), bca, bcb) 26.72/10.94 new_ltEs19(xuu3300, xuu3400, app(ty_Maybe, cea)) -> new_ltEs8(xuu3300, xuu3400, cea) 26.72/10.94 new_esEs10(xuu50001, xuu4001, app(app(ty_@2, ca), cb)) -> new_esEs4(xuu50001, xuu4001, ca, cb) 26.72/10.94 new_primMulNat0(Succ(xuu5000100), Zero) -> Zero 26.72/10.94 new_primMulNat0(Zero, Succ(xuu400000)) -> Zero 26.72/10.94 new_esEs29(xuu5000, xuu400, ty_Double) -> new_esEs13(xuu5000, xuu400) 26.72/10.94 new_lt19(xuu33001, xuu34001, ty_Integer) -> new_lt11(xuu33001, xuu34001) 26.72/10.94 new_ltEs6(xuu33001, xuu34001, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_ltEs9(xuu33001, xuu34001, bdb, bdc, bdd) 26.72/10.94 new_lt20(xuu33000, xuu34000, ty_Bool) -> new_lt13(xuu33000, xuu34000) 26.72/10.94 new_esEs23(xuu33000, xuu34000, app(ty_Maybe, bcc)) -> new_esEs5(xuu33000, xuu34000, bcc) 26.72/10.94 new_compare9(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Int) -> new_compare6(new_sr(xuu33000, xuu34001), new_sr(xuu34000, xuu33001)) 26.72/10.94 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Bool) -> new_ltEs14(xuu33000, xuu34000) 26.72/10.94 new_ltEs17(xuu3300, xuu3400) -> new_fsEs(new_compare19(xuu3300, xuu3400)) 26.72/10.94 new_esEs28(xuu33000, xuu34000, ty_Int) -> new_esEs19(xuu33000, xuu34000) 26.72/10.94 new_primPlusNat0(Succ(xuu28200), Zero) -> Succ(xuu28200) 26.72/10.94 new_primPlusNat0(Zero, Succ(xuu9600)) -> Succ(xuu9600) 26.72/10.94 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Int, bfe) -> new_ltEs13(xuu33000, xuu34000) 26.72/10.94 new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare6(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 26.72/10.94 new_ltEs10(xuu3300, xuu3400) -> new_fsEs(new_compare14(xuu3300, xuu3400)) 26.72/10.94 new_esEs26(xuu50000, xuu4000, app(ty_Ratio, cgf)) -> new_esEs18(xuu50000, xuu4000, cgf) 26.72/10.94 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) 26.72/10.94 new_esEs11(xuu50000, xuu4000, app(app(ty_@2, dd), de)) -> new_esEs4(xuu50000, xuu4000, dd, de) 26.72/10.94 new_ltEs4(Left(xuu33000), Left(xuu34000), app(ty_Maybe, bfh), bfe) -> new_ltEs8(xuu33000, xuu34000, bfh) 26.72/10.94 new_compare8(xuu33000, xuu34000, app(app(ty_@2, bah), bba)) -> new_compare11(xuu33000, xuu34000, bah, bba) 26.72/10.94 new_esEs8(LT, LT) -> True 26.72/10.94 new_compare111(xuu33000, xuu34000, True) -> LT 26.72/10.94 new_lt6(xuu33000, xuu34000, ty_Integer) -> new_lt11(xuu33000, xuu34000) 26.72/10.94 new_lt20(xuu33000, xuu34000, ty_Int) -> new_lt4(xuu33000, xuu34000) 26.72/10.94 new_lt6(xuu33000, xuu34000, ty_Ordering) -> new_lt12(xuu33000, xuu34000) 26.72/10.94 new_lt19(xuu33001, xuu34001, app(app(ty_@2, dbg), dbh)) -> new_lt8(xuu33001, xuu34001, dbg, dbh) 26.72/10.94 new_lt15(xuu33000, xuu34000) -> new_esEs8(new_compare18(xuu33000, xuu34000), LT) 26.72/10.94 new_ltEs19(xuu3300, xuu3400, app(app(app(ty_@3, cfe), cff), cfg)) -> new_ltEs9(xuu3300, xuu3400, cfe, cff, cfg) 26.72/10.94 new_esEs22(xuu50000, xuu4000, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs6(xuu50000, xuu4000, bac, bad, bae) 26.72/10.94 new_lt13(xuu33000, xuu34000) -> new_esEs8(new_compare17(xuu33000, xuu34000), LT) 26.72/10.94 new_ltEs4(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, bga), bgb), bgc), bfe) -> new_ltEs9(xuu33000, xuu34000, bga, bgb, bgc) 26.72/10.94 new_esEs28(xuu33000, xuu34000, ty_Bool) -> new_esEs17(xuu33000, xuu34000) 26.72/10.94 new_lt6(xuu33000, xuu34000, app(ty_[], bef)) -> new_lt14(xuu33000, xuu34000, bef) 26.72/10.94 new_ltEs11(xuu3300, xuu3400) -> new_fsEs(new_compare15(xuu3300, xuu3400)) 26.72/10.94 new_lt5(xuu33000, xuu34000) -> new_esEs8(new_compare15(xuu33000, xuu34000), LT) 26.72/10.94 new_ltEs9(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), cfe, cff, cfg) -> new_pePe(new_lt20(xuu33000, xuu34000, cfe), new_asAs(new_esEs28(xuu33000, xuu34000, cfe), new_pePe(new_lt19(xuu33001, xuu34001, cff), new_asAs(new_esEs27(xuu33001, xuu34001, cff), new_ltEs20(xuu33002, xuu34002, cfg))))) 26.72/10.94 new_esEs11(xuu50000, xuu4000, ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.94 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Char, beh) -> new_esEs12(xuu50000, xuu4000) 26.72/10.94 new_esEs27(xuu33001, xuu34001, ty_@0) -> new_esEs9(xuu33001, xuu34001) 26.72/10.94 new_esEs23(xuu33000, xuu34000, app(app(app(ty_@3, bec), bed), bee)) -> new_esEs6(xuu33000, xuu34000, bec, bed, bee) 26.72/10.94 new_esEs16([], [], bfb) -> True 26.72/10.94 new_esEs29(xuu5000, xuu400, ty_Bool) -> new_esEs17(xuu5000, xuu400) 26.72/10.94 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Float) -> new_ltEs18(xuu33000, xuu34000) 26.72/10.94 new_primMulInt(Neg(xuu500010), Neg(xuu40000)) -> Pos(new_primMulNat0(xuu500010, xuu40000)) 26.72/10.94 new_compare25(xuu330, xuu340, True, cfd) -> EQ 26.72/10.94 new_esEs10(xuu50001, xuu4001, app(ty_Maybe, cc)) -> new_esEs5(xuu50001, xuu4001, cc) 26.72/10.94 new_lt20(xuu33000, xuu34000, ty_Ordering) -> new_lt12(xuu33000, xuu34000) 26.72/10.94 new_compare8(xuu33000, xuu34000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_compare13(xuu33000, xuu34000, bbc, bbd, bbe) 26.72/10.94 new_lt16(xuu33000, xuu34000) -> new_esEs8(new_compare19(xuu33000, xuu34000), LT) 26.72/10.94 new_esEs28(xuu33000, xuu34000, ty_Integer) -> new_esEs15(xuu33000, xuu34000) 26.72/10.94 new_esEs22(xuu50000, xuu4000, app(ty_Maybe, hh)) -> new_esEs5(xuu50000, xuu4000, hh) 26.72/10.94 new_ltEs18(xuu3300, xuu3400) -> new_fsEs(new_compare7(xuu3300, xuu3400)) 26.72/10.94 new_esEs27(xuu33001, xuu34001, ty_Int) -> new_esEs19(xuu33001, xuu34001) 26.72/10.94 new_lt19(xuu33001, xuu34001, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_lt10(xuu33001, xuu34001, dcb, dcc, dcd) 26.72/10.94 new_lt6(xuu33000, xuu34000, app(ty_Ratio, bdh)) -> new_lt7(xuu33000, xuu34000, bdh) 26.72/10.94 new_lt6(xuu33000, xuu34000, ty_Bool) -> new_lt13(xuu33000, xuu34000) 26.72/10.94 new_compare13(xuu33000, xuu34000, bec, bed, bee) -> new_compare29(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, bec, bed, bee), bec, bed, bee) 26.72/10.94 new_esEs20(xuu50002, xuu4002, ty_Float) -> new_esEs14(xuu50002, xuu4002) 26.72/10.94 new_esEs5(Just(xuu50000), Just(xuu4000), app(ty_Maybe, cdb)) -> new_esEs5(xuu50000, xuu4000, cdb) 26.72/10.94 new_esEs23(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) 26.72/10.94 new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(ty_Either, cfb), cfc)) -> new_ltEs4(xuu33000, xuu34000, cfb, cfc) 26.72/10.94 new_compare6(xuu33, xuu34) -> new_primCmpInt(xuu33, xuu34) 26.72/10.94 new_esEs11(xuu50000, xuu4000, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs6(xuu50000, xuu4000, ea, eb, ec) 26.72/10.94 new_esEs23(xuu33000, xuu34000, app(app(ty_@2, bea), beb)) -> new_esEs4(xuu33000, xuu34000, bea, beb) 26.72/10.94 new_compare112(xuu33000, xuu34000, True) -> LT 26.72/10.94 new_lt20(xuu33000, xuu34000, app(app(app(ty_@3, ddd), dde), ddf)) -> new_lt10(xuu33000, xuu34000, ddd, dde, ddf) 26.72/10.94 new_ltEs20(xuu33002, xuu34002, app(app(app(ty_@3, dah), dba), dbb)) -> new_ltEs9(xuu33002, xuu34002, dah, dba, dbb) 26.72/10.94 new_primMulInt(Pos(xuu500010), Neg(xuu40000)) -> Neg(new_primMulNat0(xuu500010, xuu40000)) 26.72/10.94 new_primMulInt(Neg(xuu500010), Pos(xuu40000)) -> Neg(new_primMulNat0(xuu500010, xuu40000)) 26.72/10.94 new_esEs12(Char(xuu50000), Char(xuu4000)) -> new_primEqNat0(xuu50000, xuu4000) 26.72/10.94 new_esEs26(xuu50000, xuu4000, app(app(ty_Either, cfh), cga)) -> new_esEs7(xuu50000, xuu4000, cfh, cga) 26.72/10.94 new_esEs20(xuu50002, xuu4002, ty_Integer) -> new_esEs15(xuu50002, xuu4002) 26.72/10.94 new_esEs22(xuu50000, xuu4000, ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.94 new_esEs28(xuu33000, xuu34000, ty_Double) -> new_esEs13(xuu33000, xuu34000) 26.72/10.94 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.94 new_compare15(Char(xuu33000), Char(xuu34000)) -> new_primCmpNat1(xuu33000, xuu34000) 26.72/10.94 new_compare17(xuu33000, xuu34000) -> new_compare27(xuu33000, xuu34000, new_esEs17(xuu33000, xuu34000)) 26.72/10.94 new_primCmpInt(Pos(Succ(xuu3300)), Pos(xuu340)) -> new_primCmpNat0(xuu3300, xuu340) 26.72/10.94 new_esEs22(xuu50000, xuu4000, app(app(ty_@2, hf), hg)) -> new_esEs4(xuu50000, xuu4000, hf, hg) 26.72/10.94 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(app(ty_Either, bhh), caa)) -> new_ltEs4(xuu33000, xuu34000, bhh, caa) 26.72/10.94 new_ltEs13(xuu3300, xuu3400) -> new_fsEs(new_compare6(xuu3300, xuu3400)) 26.72/10.94 new_primCmpNat1(Succ(xuu33000), Zero) -> GT 26.72/10.94 new_esEs30(xuu22, xuu17, ty_Bool) -> new_esEs17(xuu22, xuu17) 26.72/10.94 new_esEs27(xuu33001, xuu34001, ty_Char) -> new_esEs12(xuu33001, xuu34001) 26.72/10.94 new_compare8(xuu33000, xuu34000, app(ty_Maybe, bbb)) -> new_compare12(xuu33000, xuu34000, bbb) 26.72/10.94 new_ltEs6(xuu33001, xuu34001, ty_Int) -> new_ltEs13(xuu33001, xuu34001) 26.72/10.94 new_ltEs19(xuu3300, xuu3400, ty_Ordering) -> new_ltEs12(xuu3300, xuu3400) 26.72/10.94 new_lt6(xuu33000, xuu34000, ty_Int) -> new_lt4(xuu33000, xuu34000) 26.72/10.94 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(app(ty_@2, cbf), cbg)) -> new_esEs4(xuu50000, xuu4000, cbf, cbg) 26.72/10.94 new_sr0(Integer(xuu330000), Integer(xuu340010)) -> Integer(new_primMulInt(xuu330000, xuu340010)) 26.72/10.94 new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_Ratio, ceb)) -> new_ltEs7(xuu33000, xuu34000, ceb) 26.72/10.94 new_esEs29(xuu5000, xuu400, app(ty_Maybe, bfa)) -> new_esEs5(xuu5000, xuu400, bfa) 26.72/10.94 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(ty_Maybe, cbh)) -> new_esEs5(xuu50000, xuu4000, cbh) 26.72/10.94 new_esEs27(xuu33001, xuu34001, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_esEs6(xuu33001, xuu34001, dcb, dcc, dcd) 26.72/10.94 new_esEs20(xuu50002, xuu4002, ty_Bool) -> new_esEs17(xuu50002, xuu4002) 26.72/10.94 new_ltEs20(xuu33002, xuu34002, app(app(ty_Either, dbd), dbe)) -> new_ltEs4(xuu33002, xuu34002, dbd, dbe) 26.72/10.94 new_esEs7(Left(xuu50000), Left(xuu4000), app(ty_[], cag), beh) -> new_esEs16(xuu50000, xuu4000, cag) 26.72/10.94 new_esEs5(Just(xuu50000), Just(xuu4000), app(app(ty_Either, ccf), ccg)) -> new_esEs7(xuu50000, xuu4000, ccf, ccg) 26.72/10.94 new_primCmpNat0(xuu3300, Zero) -> GT 26.72/10.94 new_esEs29(xuu5000, xuu400, ty_Integer) -> new_esEs15(xuu5000, xuu400) 26.72/10.94 new_compare8(xuu33000, xuu34000, app(ty_[], bbf)) -> new_compare0(xuu33000, xuu34000, bbf) 26.72/10.94 new_lt20(xuu33000, xuu34000, ty_Double) -> new_lt16(xuu33000, xuu34000) 26.72/10.94 new_esEs30(xuu22, xuu17, ty_Integer) -> new_esEs15(xuu22, xuu17) 26.72/10.94 new_ltEs19(xuu3300, xuu3400, app(ty_[], baf)) -> new_ltEs15(xuu3300, xuu3400, baf) 26.72/10.94 new_esEs15(Integer(xuu50000), Integer(xuu4000)) -> new_primEqInt(xuu50000, xuu4000) 26.72/10.94 new_compare0([], :(xuu34000, xuu34001), baf) -> LT 26.72/10.94 new_asAs(True, xuu136) -> xuu136 26.72/10.94 new_compare113(xuu33000, xuu34000, True, bec, bed, bee) -> LT 26.72/10.94 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_@0) -> new_ltEs16(xuu33000, xuu34000) 26.72/10.94 new_compare9(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Integer) -> new_compare14(new_sr0(xuu33000, xuu34001), new_sr0(xuu34000, xuu33001)) 26.72/10.94 new_ltEs5(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), bcd, bce) -> new_pePe(new_lt6(xuu33000, xuu34000, bcd), new_asAs(new_esEs23(xuu33000, xuu34000, bcd), new_ltEs6(xuu33001, xuu34001, bce))) 26.72/10.94 new_esEs17(False, True) -> False 26.72/10.94 new_esEs17(True, False) -> False 26.72/10.94 new_esEs10(xuu50001, xuu4001, app(ty_[], cd)) -> new_esEs16(xuu50001, xuu4001, cd) 26.72/10.94 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Int, beh) -> new_esEs19(xuu50000, xuu4000) 26.72/10.94 new_esEs23(xuu33000, xuu34000, app(ty_Ratio, bdh)) -> new_esEs18(xuu33000, xuu34000, bdh) 26.72/10.94 new_ltEs16(xuu3300, xuu3400) -> new_fsEs(new_compare18(xuu3300, xuu3400)) 26.72/10.94 new_lt19(xuu33001, xuu34001, ty_Double) -> new_lt16(xuu33001, xuu34001) 26.72/10.94 new_esEs26(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.94 new_esEs20(xuu50002, xuu4002, app(ty_Maybe, fc)) -> new_esEs5(xuu50002, xuu4002, fc) 26.72/10.94 new_esEs5(Just(xuu50000), Just(xuu4000), app(app(ty_@2, cch), cda)) -> new_esEs4(xuu50000, xuu4000, cch, cda) 26.72/10.94 new_compare11(xuu33000, xuu34000, bea, beb) -> new_compare28(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, bea, beb), bea, beb) 26.72/10.94 new_esEs27(xuu33001, xuu34001, ty_Float) -> new_esEs14(xuu33001, xuu34001) 26.72/10.94 new_esEs10(xuu50001, xuu4001, ty_Integer) -> new_esEs15(xuu50001, xuu4001) 26.72/10.94 new_esEs24(xuu50001, xuu4001, ty_Integer) -> new_esEs15(xuu50001, xuu4001) 26.72/10.94 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.94 new_esEs29(xuu5000, xuu400, app(ty_[], bfb)) -> new_esEs16(xuu5000, xuu400, bfb) 26.72/10.94 new_lt10(xuu33000, xuu34000, bec, bed, bee) -> new_esEs8(new_compare13(xuu33000, xuu34000, bec, bed, bee), LT) 26.72/10.94 new_lt6(xuu33000, xuu34000, ty_@0) -> new_lt15(xuu33000, xuu34000) 26.72/10.94 new_compare24(xuu33000, xuu34000, True, bca, bcb) -> EQ 26.72/10.94 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.94 new_primPlusNat1(xuu106, xuu400000) -> new_primPlusNat0(xuu106, Succ(xuu400000)) 26.72/10.94 new_esEs9(@0, @0) -> True 26.72/10.94 new_ltEs20(xuu33002, xuu34002, app(ty_[], dbc)) -> new_ltEs15(xuu33002, xuu34002, dbc) 26.72/10.94 new_esEs7(Left(xuu50000), Left(xuu4000), app(ty_Maybe, caf), beh) -> new_esEs5(xuu50000, xuu4000, caf) 26.72/10.94 new_primCompAux00(xuu178, EQ) -> xuu178 26.72/10.94 new_esEs11(xuu50000, xuu4000, app(app(ty_Either, db), dc)) -> new_esEs7(xuu50000, xuu4000, db, dc) 26.72/10.94 new_compare0([], [], baf) -> EQ 26.72/10.94 new_sr(xuu50001, xuu4000) -> new_primMulInt(xuu50001, xuu4000) 26.72/10.94 new_esEs25(xuu50000, xuu4000, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.94 new_esEs10(xuu50001, xuu4001, ty_Bool) -> new_esEs17(xuu50001, xuu4001) 26.72/10.94 new_esEs21(xuu50001, xuu4001, app(app(ty_Either, gb), gc)) -> new_esEs7(xuu50001, xuu4001, gb, gc) 26.72/10.94 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Integer) -> new_ltEs10(xuu33000, xuu34000) 26.72/10.94 new_primMulNat0(Zero, Zero) -> Zero 26.72/10.94 new_lt18(xuu33000, xuu34000, bca, bcb) -> new_esEs8(new_compare23(xuu33000, xuu34000, bca, bcb), LT) 26.72/10.94 new_ltEs20(xuu33002, xuu34002, ty_Ordering) -> new_ltEs12(xuu33002, xuu34002) 26.72/10.94 new_esEs23(xuu33000, xuu34000, ty_Float) -> new_esEs14(xuu33000, xuu34000) 26.72/10.94 new_lt6(xuu33000, xuu34000, ty_Char) -> new_lt5(xuu33000, xuu34000) 26.72/10.94 new_lt6(xuu33000, xuu34000, app(ty_Maybe, bcc)) -> new_lt9(xuu33000, xuu34000, bcc) 26.72/10.94 new_primCmpInt(Neg(Succ(xuu3300)), Neg(xuu340)) -> new_primCmpNat2(xuu340, xuu3300) 26.72/10.94 new_esEs30(xuu22, xuu17, ty_Double) -> new_esEs13(xuu22, xuu17) 26.72/10.94 new_esEs27(xuu33001, xuu34001, ty_Ordering) -> new_esEs8(xuu33001, xuu34001) 26.72/10.94 new_esEs30(xuu22, xuu17, app(ty_[], chg)) -> new_esEs16(xuu22, xuu17, chg) 26.72/10.94 new_esEs23(xuu33000, xuu34000, ty_Char) -> new_esEs12(xuu33000, xuu34000) 26.72/10.94 new_ltEs19(xuu3300, xuu3400, app(ty_Ratio, cdh)) -> new_ltEs7(xuu3300, xuu3400, cdh) 26.72/10.94 new_primCmpInt(Neg(Zero), Neg(Succ(xuu3400))) -> new_primCmpNat0(xuu3400, Zero) 26.72/10.94 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.94 new_esEs30(xuu22, xuu17, app(ty_Maybe, chf)) -> new_esEs5(xuu22, xuu17, chf) 26.72/10.94 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_@0) -> new_ltEs16(xuu33000, xuu34000) 26.72/10.94 new_compare111(xuu33000, xuu34000, False) -> GT 26.72/10.94 new_primCmpNat1(Zero, Zero) -> EQ 26.72/10.94 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.94 new_compare12(xuu33000, xuu34000, bcc) -> new_compare25(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, bcc), bcc) 26.72/10.94 new_esEs22(xuu50000, xuu4000, app(app(ty_Either, hd), he)) -> new_esEs7(xuu50000, xuu4000, hd, he) 26.72/10.94 new_ltEs6(xuu33001, xuu34001, ty_Bool) -> new_ltEs14(xuu33001, xuu34001) 26.72/10.94 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.94 new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare6(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 26.72/10.94 new_esEs22(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.94 new_esEs22(xuu50000, xuu4000, ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.94 new_esEs27(xuu33001, xuu34001, app(ty_Ratio, dbf)) -> new_esEs18(xuu33001, xuu34001, dbf) 26.72/10.94 new_esEs4(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), be, bf) -> new_asAs(new_esEs11(xuu50000, xuu4000, be), new_esEs10(xuu50001, xuu4001, bf)) 26.72/10.94 new_compare8(xuu33000, xuu34000, ty_Char) -> new_compare15(xuu33000, xuu34000) 26.72/10.94 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Double) -> new_ltEs17(xuu33000, xuu34000) 26.72/10.95 new_esEs28(xuu33000, xuu34000, app(ty_Ratio, dch)) -> new_esEs18(xuu33000, xuu34000, dch) 26.72/10.95 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.95 new_esEs16(:(xuu50000, xuu50001), :(xuu4000, xuu4001), bfb) -> new_asAs(new_esEs26(xuu50000, xuu4000, bfb), new_esEs16(xuu50001, xuu4001, bfb)) 26.72/10.95 new_ltEs14(False, True) -> True 26.72/10.95 new_ltEs19(xuu3300, xuu3400, ty_@0) -> new_ltEs16(xuu3300, xuu3400) 26.72/10.95 new_ltEs12(GT, LT) -> False 26.72/10.95 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Char) -> new_ltEs11(xuu33000, xuu34000) 26.72/10.95 new_compare29(xuu33000, xuu34000, True, bec, bed, bee) -> EQ 26.72/10.95 new_compare8(xuu33000, xuu34000, ty_Bool) -> new_compare17(xuu33000, xuu34000) 26.72/10.95 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Ordering, beh) -> new_esEs8(xuu50000, xuu4000) 26.72/10.95 new_compare7(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare6(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 26.72/10.95 new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_Maybe, cee)) -> new_ltEs8(xuu33000, xuu34000, cee) 26.72/10.95 new_esEs30(xuu22, xuu17, ty_@0) -> new_esEs9(xuu22, xuu17) 26.72/10.95 new_primEqInt(Neg(Succ(xuu500000)), Neg(Zero)) -> False 26.72/10.95 new_primEqInt(Neg(Zero), Neg(Succ(xuu40000))) -> False 26.72/10.95 new_ltEs8(Nothing, Just(xuu34000), cea) -> True 26.72/10.95 new_primEqInt(Pos(Succ(xuu500000)), Pos(Succ(xuu40000))) -> new_primEqNat0(xuu500000, xuu40000) 26.72/10.95 new_esEs20(xuu50002, xuu4002, ty_Double) -> new_esEs13(xuu50002, xuu4002) 26.72/10.95 new_esEs20(xuu50002, xuu4002, app(ty_[], fd)) -> new_esEs16(xuu50002, xuu4002, fd) 26.72/10.95 new_esEs26(xuu50000, xuu4000, app(app(ty_@2, cgb), cgc)) -> new_esEs4(xuu50000, xuu4000, cgb, cgc) 26.72/10.95 new_ltEs4(Left(xuu33000), Left(xuu34000), app(app(ty_Either, bge), bgf), bfe) -> new_ltEs4(xuu33000, xuu34000, bge, bgf) 26.72/10.95 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(ty_[], cca)) -> new_esEs16(xuu50000, xuu4000, cca) 26.72/10.95 new_esEs14(Float(xuu50000, xuu50001), Float(xuu4000, xuu4001)) -> new_esEs19(new_sr(xuu50000, xuu4001), new_sr(xuu50001, xuu4000)) 26.72/10.95 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(app(ty_Either, cbd), cbe)) -> new_esEs7(xuu50000, xuu4000, cbd, cbe) 26.72/10.95 new_esEs26(xuu50000, xuu4000, ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.95 new_primEqInt(Pos(Succ(xuu500000)), Neg(xuu4000)) -> False 26.72/10.95 new_primEqInt(Neg(Succ(xuu500000)), Pos(xuu4000)) -> False 26.72/10.95 new_ltEs20(xuu33002, xuu34002, app(ty_Ratio, dad)) -> new_ltEs7(xuu33002, xuu34002, dad) 26.72/10.95 new_esEs11(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.95 new_lt6(xuu33000, xuu34000, ty_Float) -> new_lt17(xuu33000, xuu34000) 26.72/10.95 new_esEs29(xuu5000, xuu400, ty_@0) -> new_esEs9(xuu5000, xuu400) 26.72/10.95 new_lt4(xuu330, xuu340) -> new_esEs8(new_compare6(xuu330, xuu340), LT) 26.72/10.95 new_ltEs12(EQ, GT) -> True 26.72/10.95 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 26.72/10.95 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Ordering, bfe) -> new_ltEs12(xuu33000, xuu34000) 26.72/10.95 new_esEs28(xuu33000, xuu34000, ty_Float) -> new_esEs14(xuu33000, xuu34000) 26.72/10.95 new_esEs28(xuu33000, xuu34000, app(ty_Maybe, ddc)) -> new_esEs5(xuu33000, xuu34000, ddc) 26.72/10.95 new_esEs17(True, True) -> True 26.72/10.95 new_ltEs12(EQ, EQ) -> True 26.72/10.95 new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, cef), ceg), ceh)) -> new_ltEs9(xuu33000, xuu34000, cef, ceg, ceh) 26.72/10.95 new_primCmpInt(Pos(Zero), Pos(Succ(xuu3400))) -> new_primCmpNat2(Zero, xuu3400) 26.72/10.95 new_esEs21(xuu50001, xuu4001, ty_Integer) -> new_esEs15(xuu50001, xuu4001) 26.72/10.95 new_ltEs20(xuu33002, xuu34002, ty_Int) -> new_ltEs13(xuu33002, xuu34002) 26.72/10.95 new_esEs26(xuu50000, xuu4000, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs6(xuu50000, xuu4000, cgg, cgh, cha) 26.72/10.95 new_esEs10(xuu50001, xuu4001, ty_Double) -> new_esEs13(xuu50001, xuu4001) 26.72/10.95 new_lt11(xuu33000, xuu34000) -> new_esEs8(new_compare14(xuu33000, xuu34000), LT) 26.72/10.95 new_esEs21(xuu50001, xuu4001, ty_Bool) -> new_esEs17(xuu50001, xuu4001) 26.72/10.95 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) 26.72/10.95 new_esEs23(xuu33000, xuu34000, ty_Bool) -> new_esEs17(xuu33000, xuu34000) 26.72/10.95 new_not(False) -> True 26.72/10.95 new_compare27(xuu33000, xuu34000, False) -> new_compare112(xuu33000, xuu34000, new_ltEs14(xuu33000, xuu34000)) 26.72/10.95 new_esEs30(xuu22, xuu17, app(ty_Ratio, chh)) -> new_esEs18(xuu22, xuu17, chh) 26.72/10.95 new_esEs5(Just(xuu50000), Just(xuu4000), ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.95 new_esEs27(xuu33001, xuu34001, app(app(ty_Either, dcf), dcg)) -> new_esEs7(xuu33001, xuu34001, dcf, dcg) 26.72/10.95 new_compare0(:(xuu33000, xuu33001), [], baf) -> GT 26.72/10.95 new_esEs8(LT, GT) -> False 26.72/10.95 new_esEs8(GT, LT) -> False 26.72/10.95 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Bool, bfe) -> new_ltEs14(xuu33000, xuu34000) 26.72/10.95 new_primPlusNat0(Succ(xuu28200), Succ(xuu9600)) -> Succ(Succ(new_primPlusNat0(xuu28200, xuu9600))) 26.72/10.95 new_esEs20(xuu50002, xuu4002, app(ty_Ratio, ff)) -> new_esEs18(xuu50002, xuu4002, ff) 26.72/10.95 new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_[], cfa)) -> new_ltEs15(xuu33000, xuu34000, cfa) 26.72/10.95 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Double) -> new_ltEs17(xuu33000, xuu34000) 26.72/10.95 new_esEs7(Left(xuu50000), Left(xuu4000), app(ty_Ratio, cah), beh) -> new_esEs18(xuu50000, xuu4000, cah) 26.72/10.95 new_esEs11(xuu50000, xuu4000, ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.95 new_esEs21(xuu50001, xuu4001, ty_Char) -> new_esEs12(xuu50001, xuu4001) 26.72/10.95 new_compare8(xuu33000, xuu34000, app(app(ty_Either, bbg), bbh)) -> new_compare23(xuu33000, xuu34000, bbg, bbh) 26.72/10.95 new_esEs29(xuu5000, xuu400, app(ty_Ratio, bfc)) -> new_esEs18(xuu5000, xuu400, bfc) 26.72/10.95 new_ltEs4(Left(xuu33000), Right(xuu34000), bgg, bfe) -> True 26.72/10.95 new_esEs30(xuu22, xuu17, app(app(app(ty_@3, daa), dab), dac)) -> new_esEs6(xuu22, xuu17, daa, dab, dac) 26.72/10.95 new_ltEs6(xuu33001, xuu34001, ty_Integer) -> new_ltEs10(xuu33001, xuu34001) 26.72/10.95 new_esEs26(xuu50000, xuu4000, app(ty_Maybe, cgd)) -> new_esEs5(xuu50000, xuu4000, cgd) 26.72/10.95 new_primCmpNat1(Zero, Succ(xuu34000)) -> LT 26.72/10.95 new_esEs22(xuu50000, xuu4000, ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.95 new_compare25(Nothing, Nothing, False, cfd) -> LT 26.72/10.95 new_lt20(xuu33000, xuu34000, app(app(ty_Either, ddh), dea)) -> new_lt18(xuu33000, xuu34000, ddh, dea) 26.72/10.95 new_ltEs7(xuu3300, xuu3400, cdh) -> new_fsEs(new_compare9(xuu3300, xuu3400, cdh)) 26.72/10.95 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 26.72/10.95 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 26.72/10.95 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.95 new_compare0(:(xuu33000, xuu33001), :(xuu34000, xuu34001), baf) -> new_primCompAux0(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, baf), baf) 26.72/10.95 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Float) -> new_ltEs18(xuu33000, xuu34000) 26.72/10.95 new_ltEs6(xuu33001, xuu34001, ty_Ordering) -> new_ltEs12(xuu33001, xuu34001) 26.72/10.95 new_ltEs4(Left(xuu33000), Left(xuu34000), app(ty_Ratio, bfd), bfe) -> new_ltEs7(xuu33000, xuu34000, bfd) 26.72/10.95 new_esEs23(xuu33000, xuu34000, ty_Int) -> new_esEs19(xuu33000, xuu34000) 26.72/10.95 new_esEs27(xuu33001, xuu34001, app(app(ty_@2, dbg), dbh)) -> new_esEs4(xuu33001, xuu34001, dbg, dbh) 26.72/10.95 new_esEs21(xuu50001, xuu4001, app(ty_[], gg)) -> new_esEs16(xuu50001, xuu4001, gg) 26.72/10.95 new_ltEs6(xuu33001, xuu34001, ty_Char) -> new_ltEs11(xuu33001, xuu34001) 26.72/10.95 new_ltEs4(Left(xuu33000), Left(xuu34000), app(app(ty_@2, bff), bfg), bfe) -> new_ltEs5(xuu33000, xuu34000, bff, bfg) 26.72/10.95 new_esEs20(xuu50002, xuu4002, ty_@0) -> new_esEs9(xuu50002, xuu4002) 26.72/10.95 new_ltEs19(xuu3300, xuu3400, app(app(ty_Either, bgg), bfe)) -> new_ltEs4(xuu3300, xuu3400, bgg, bfe) 26.72/10.95 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 26.72/10.95 new_esEs17(False, False) -> True 26.72/10.95 new_esEs28(xuu33000, xuu34000, app(app(ty_@2, dda), ddb)) -> new_esEs4(xuu33000, xuu34000, dda, ddb) 26.72/10.95 new_esEs22(xuu50000, xuu4000, ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.95 new_ltEs12(EQ, LT) -> False 26.72/10.95 new_ltEs14(False, False) -> True 26.72/10.95 new_ltEs6(xuu33001, xuu34001, ty_Float) -> new_ltEs18(xuu33001, xuu34001) 26.72/10.95 new_ltEs8(Nothing, Nothing, cea) -> True 26.72/10.95 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.95 new_ltEs8(Just(xuu33000), Nothing, cea) -> False 26.72/10.95 new_esEs11(xuu50000, xuu4000, ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.95 new_lt6(xuu33000, xuu34000, ty_Double) -> new_lt16(xuu33000, xuu34000) 26.72/10.95 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.95 new_ltEs19(xuu3300, xuu3400, ty_Int) -> new_ltEs13(xuu3300, xuu3400) 26.72/10.95 new_esEs28(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) 26.72/10.95 new_esEs11(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.95 new_ltEs19(xuu3300, xuu3400, ty_Float) -> new_ltEs18(xuu3300, xuu3400) 26.72/10.95 new_esEs16(:(xuu50000, xuu50001), [], bfb) -> False 26.72/10.95 new_esEs16([], :(xuu4000, xuu4001), bfb) -> False 26.72/10.95 new_esEs5(Just(xuu50000), Just(xuu4000), app(ty_[], cdc)) -> new_esEs16(xuu50000, xuu4000, cdc) 26.72/10.95 new_esEs23(xuu33000, xuu34000, app(ty_[], bef)) -> new_esEs16(xuu33000, xuu34000, bef) 26.72/10.95 new_ltEs6(xuu33001, xuu34001, app(app(ty_Either, bdf), bdg)) -> new_ltEs4(xuu33001, xuu34001, bdf, bdg) 26.72/10.95 new_primCmpNat2(Succ(xuu3400), xuu3300) -> new_primCmpNat1(xuu3400, xuu3300) 26.72/10.95 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 26.72/10.95 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 26.72/10.95 new_esEs23(xuu33000, xuu34000, ty_Double) -> new_esEs13(xuu33000, xuu34000) 26.72/10.95 new_ltEs12(LT, EQ) -> True 26.72/10.95 new_compare25(Nothing, Just(xuu3400), False, cfd) -> LT 26.72/10.95 new_esEs29(xuu5000, xuu400, app(app(ty_@2, be), bf)) -> new_esEs4(xuu5000, xuu400, be, bf) 26.72/10.95 new_compare110(xuu33000, xuu34000, False, bca, bcb) -> GT 26.72/10.95 new_esEs21(xuu50001, xuu4001, ty_Int) -> new_esEs19(xuu50001, xuu4001) 26.72/10.95 new_lt19(xuu33001, xuu34001, ty_@0) -> new_lt15(xuu33001, xuu34001) 26.72/10.95 new_esEs11(xuu50000, xuu4000, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.95 new_esEs23(xuu33000, xuu34000, ty_Integer) -> new_esEs15(xuu33000, xuu34000) 26.72/10.95 new_lt20(xuu33000, xuu34000, ty_Char) -> new_lt5(xuu33000, xuu34000) 26.72/10.95 new_primEqNat0(Zero, Zero) -> True 26.72/10.95 new_compare8(xuu33000, xuu34000, ty_@0) -> new_compare18(xuu33000, xuu34000) 26.72/10.95 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.95 new_ltEs20(xuu33002, xuu34002, ty_Float) -> new_ltEs18(xuu33002, xuu34002) 26.72/10.95 new_esEs28(xuu33000, xuu34000, app(app(app(ty_@3, ddd), dde), ddf)) -> new_esEs6(xuu33000, xuu34000, ddd, dde, ddf) 26.72/10.95 new_esEs30(xuu22, xuu17, app(app(ty_Either, chb), chc)) -> new_esEs7(xuu22, xuu17, chb, chc) 26.72/10.95 new_esEs10(xuu50001, xuu4001, ty_@0) -> new_esEs9(xuu50001, xuu4001) 26.72/10.95 new_esEs29(xuu5000, xuu400, ty_Ordering) -> new_esEs8(xuu5000, xuu400) 26.72/10.95 new_compare23(xuu33000, xuu34000, bca, bcb) -> new_compare24(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, bca, bcb), bca, bcb) 26.72/10.95 new_ltEs14(True, False) -> False 26.72/10.95 new_esEs26(xuu50000, xuu4000, ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.95 new_compare113(xuu33000, xuu34000, False, bec, bed, bee) -> GT 26.72/10.95 new_esEs22(xuu50000, xuu4000, app(ty_[], baa)) -> new_esEs16(xuu50000, xuu4000, baa) 26.72/10.95 new_esEs22(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.95 new_asAs(False, xuu136) -> False 26.72/10.95 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Float, beh) -> new_esEs14(xuu50000, xuu4000) 26.72/10.95 new_esEs20(xuu50002, xuu4002, ty_Char) -> new_esEs12(xuu50002, xuu4002) 26.72/10.95 new_esEs29(xuu5000, xuu400, app(app(ty_Either, beg), beh)) -> new_esEs7(xuu5000, xuu400, beg, beh) 26.72/10.95 new_esEs27(xuu33001, xuu34001, app(ty_Maybe, dca)) -> new_esEs5(xuu33001, xuu34001, dca) 26.72/10.95 new_lt19(xuu33001, xuu34001, ty_Char) -> new_lt5(xuu33001, xuu34001) 26.72/10.95 new_compare28(xuu33000, xuu34000, True, bea, beb) -> EQ 26.72/10.95 new_lt20(xuu33000, xuu34000, ty_@0) -> new_lt15(xuu33000, xuu34000) 26.72/10.95 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Int) -> new_ltEs13(xuu33000, xuu34000) 26.72/10.95 new_esEs8(EQ, GT) -> False 26.72/10.95 new_esEs8(GT, EQ) -> False 26.72/10.95 new_ltEs4(Right(xuu33000), Left(xuu34000), bgg, bfe) -> False 26.72/10.95 new_esEs10(xuu50001, xuu4001, ty_Int) -> new_esEs19(xuu50001, xuu4001) 26.72/10.95 new_compare27(xuu33000, xuu34000, True) -> EQ 26.72/10.95 new_esEs7(Left(xuu50000), Right(xuu4000), beg, beh) -> False 26.72/10.95 new_esEs7(Right(xuu50000), Left(xuu4000), beg, beh) -> False 26.72/10.95 new_compare18(@0, @0) -> EQ 26.72/10.95 new_esEs11(xuu50000, xuu4000, app(ty_[], dg)) -> new_esEs16(xuu50000, xuu4000, dg) 26.72/10.95 new_compare14(Integer(xuu33000), Integer(xuu34000)) -> new_primCmpInt(xuu33000, xuu34000) 26.72/10.95 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(ty_Maybe, bhc)) -> new_ltEs8(xuu33000, xuu34000, bhc) 26.72/10.95 new_lt6(xuu33000, xuu34000, app(app(ty_Either, bca), bcb)) -> new_lt18(xuu33000, xuu34000, bca, bcb) 26.72/10.95 new_esEs21(xuu50001, xuu4001, ty_@0) -> new_esEs9(xuu50001, xuu4001) 26.72/10.95 new_compare16(xuu33000, xuu34000) -> new_compare26(xuu33000, xuu34000, new_esEs8(xuu33000, xuu34000)) 26.72/10.95 26.72/10.95 The set Q consists of the following terms: 26.72/10.95 26.72/10.95 new_esEs7(Right(x0), Right(x1), x2, ty_Integer) 26.72/10.95 new_ltEs8(Just(x0), Just(x1), ty_Bool) 26.72/10.95 new_esEs8(EQ, EQ) 26.72/10.95 new_esEs21(x0, x1, ty_Integer) 26.72/10.95 new_lt6(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.95 new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_esEs29(x0, x1, ty_Double) 26.72/10.95 new_esEs22(x0, x1, ty_@0) 26.72/10.95 new_compare0(:(x0, x1), [], x2) 26.72/10.95 new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) 26.72/10.95 new_esEs7(Left(x0), Left(x1), ty_Double, x2) 26.72/10.95 new_compare26(x0, x1, False) 26.72/10.95 new_esEs27(x0, x1, ty_Double) 26.72/10.95 new_esEs29(x0, x1, ty_Ordering) 26.72/10.95 new_compare8(x0, x1, ty_Double) 26.72/10.95 new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) 26.72/10.95 new_lt20(x0, x1, ty_Integer) 26.72/10.95 new_ltEs11(x0, x1) 26.72/10.95 new_esEs30(x0, x1, ty_Bool) 26.72/10.95 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 26.72/10.95 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 26.72/10.95 new_esEs22(x0, x1, ty_Bool) 26.72/10.95 new_esEs30(x0, x1, app(ty_Ratio, x2)) 26.72/10.95 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 26.72/10.95 new_lt6(x0, x1, app(ty_[], x2)) 26.72/10.95 new_esEs26(x0, x1, app(ty_Ratio, x2)) 26.72/10.95 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 26.72/10.95 new_compare12(x0, x1, x2) 26.72/10.95 new_ltEs8(Just(x0), Just(x1), ty_@0) 26.72/10.95 new_esEs26(x0, x1, ty_@0) 26.72/10.95 new_lt6(x0, x1, ty_Bool) 26.72/10.95 new_lt19(x0, x1, ty_@0) 26.72/10.95 new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_lt6(x0, x1, ty_@0) 26.72/10.95 new_primCmpNat1(Zero, Zero) 26.72/10.95 new_ltEs13(x0, x1) 26.72/10.95 new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.95 new_primCompAux00(x0, EQ) 26.72/10.95 new_compare8(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.95 new_compare28(x0, x1, True, x2, x3) 26.72/10.95 new_lt5(x0, x1) 26.72/10.95 new_esEs23(x0, x1, ty_Float) 26.72/10.95 new_esEs29(x0, x1, ty_Int) 26.72/10.95 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_esEs7(Left(x0), Left(x1), ty_Int, x2) 26.72/10.95 new_primEqInt(Pos(Zero), Pos(Zero)) 26.72/10.95 new_compare15(Char(x0), Char(x1)) 26.72/10.95 new_lt13(x0, x1) 26.72/10.95 new_compare6(x0, x1) 26.72/10.95 new_primCmpNat2(Zero, x0) 26.72/10.95 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_ltEs6(x0, x1, ty_Ordering) 26.72/10.95 new_esEs17(False, False) 26.72/10.95 new_lt9(x0, x1, x2) 26.72/10.95 new_esEs27(x0, x1, ty_Ordering) 26.72/10.95 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 26.72/10.95 new_esEs11(x0, x1, ty_Float) 26.72/10.95 new_primEqNat0(Zero, Succ(x0)) 26.72/10.95 new_primEqInt(Neg(Zero), Neg(Zero)) 26.72/10.95 new_esEs29(x0, x1, ty_Char) 26.72/10.95 new_esEs27(x0, x1, ty_Int) 26.72/10.95 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_lt19(x0, x1, ty_Int) 26.72/10.95 new_compare10(x0, x1, True, x2) 26.72/10.95 new_pePe(True, x0) 26.72/10.95 new_ltEs6(x0, x1, ty_Int) 26.72/10.95 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.95 new_esEs26(x0, x1, app(ty_Maybe, x2)) 26.72/10.95 new_lt6(x0, x1, ty_Integer) 26.72/10.95 new_esEs27(x0, x1, ty_Char) 26.72/10.95 new_esEs29(x0, x1, app(ty_Ratio, x2)) 26.72/10.95 new_compare113(x0, x1, True, x2, x3, x4) 26.72/10.95 new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.72/10.95 new_esEs20(x0, x1, ty_Integer) 26.72/10.95 new_esEs7(Right(x0), Right(x1), x2, ty_@0) 26.72/10.95 new_esEs7(Left(x0), Left(x1), ty_Char, x2) 26.72/10.95 new_ltEs12(GT, EQ) 26.72/10.95 new_ltEs12(EQ, GT) 26.72/10.95 new_esEs7(Right(x0), Right(x1), x2, ty_Float) 26.72/10.95 new_ltEs4(Right(x0), Right(x1), x2, ty_Ordering) 26.72/10.95 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.95 new_lt17(x0, x1) 26.72/10.95 new_esEs20(x0, x1, ty_Bool) 26.72/10.95 new_ltEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 26.72/10.95 new_compare112(x0, x1, True) 26.72/10.95 new_esEs26(x0, x1, ty_Int) 26.72/10.95 new_lt19(x0, x1, ty_Bool) 26.72/10.95 new_esEs30(x0, x1, ty_Integer) 26.72/10.95 new_lt6(x0, x1, app(ty_Ratio, x2)) 26.72/10.95 new_primMulInt(Pos(x0), Pos(x1)) 26.72/10.95 new_primEqInt(Pos(Zero), Neg(Zero)) 26.72/10.95 new_primEqInt(Neg(Zero), Pos(Zero)) 26.72/10.95 new_primMulNat0(Succ(x0), Succ(x1)) 26.72/10.95 new_ltEs6(x0, x1, ty_Double) 26.72/10.95 new_esEs10(x0, x1, app(ty_Maybe, x2)) 26.72/10.95 new_esEs18(:%(x0, x1), :%(x2, x3), x4) 26.72/10.95 new_esEs26(x0, x1, ty_Bool) 26.72/10.95 new_compare11(x0, x1, x2, x3) 26.72/10.95 new_esEs16([], :(x0, x1), x2) 26.72/10.95 new_esEs26(x0, x1, ty_Char) 26.72/10.95 new_ltEs6(x0, x1, ty_Char) 26.72/10.95 new_esEs26(x0, x1, ty_Double) 26.72/10.95 new_esEs20(x0, x1, app(ty_Maybe, x2)) 26.72/10.95 new_compare8(x0, x1, ty_Ordering) 26.72/10.95 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 26.72/10.95 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.72/10.95 new_compare110(x0, x1, False, x2, x3) 26.72/10.95 new_esEs22(x0, x1, app(ty_Maybe, x2)) 26.72/10.95 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 26.72/10.95 new_esEs5(Just(x0), Nothing, x1) 26.72/10.95 new_ltEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.72/10.95 new_ltEs19(x0, x1, app(ty_[], x2)) 26.72/10.95 new_esEs28(x0, x1, app(ty_Ratio, x2)) 26.72/10.95 new_lt19(x0, x1, ty_Char) 26.72/10.95 new_lt11(x0, x1) 26.72/10.95 new_ltEs8(Just(x0), Just(x1), ty_Integer) 26.72/10.95 new_lt19(x0, x1, ty_Double) 26.72/10.95 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.72/10.95 new_lt20(x0, x1, app(ty_Maybe, x2)) 26.72/10.95 new_compare13(x0, x1, x2, x3, x4) 26.72/10.95 new_sr(x0, x1) 26.72/10.95 new_fsEs(x0) 26.72/10.95 new_esEs28(x0, x1, ty_Ordering) 26.72/10.95 new_compare17(x0, x1) 26.72/10.95 new_compare8(x0, x1, ty_@0) 26.72/10.95 new_esEs30(x0, x1, ty_Ordering) 26.72/10.95 new_esEs7(Left(x0), Left(x1), ty_Bool, x2) 26.72/10.95 new_esEs27(x0, x1, ty_@0) 26.72/10.95 new_compare7(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 26.72/10.95 new_compare7(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 26.72/10.95 new_compare7(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 26.72/10.95 new_esEs9(@0, @0) 26.72/10.95 new_compare28(x0, x1, False, x2, x3) 26.72/10.95 new_compare25(x0, x1, True, x2) 26.72/10.95 new_ltEs8(Just(x0), Just(x1), ty_Double) 26.72/10.95 new_esEs22(x0, x1, ty_Float) 26.72/10.95 new_compare27(x0, x1, True) 26.72/10.95 new_ltEs4(Right(x0), Right(x1), x2, ty_Integer) 26.72/10.95 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.72/10.95 new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.72/10.95 new_esEs24(x0, x1, ty_Int) 26.72/10.95 new_esEs5(Just(x0), Just(x1), ty_Double) 26.72/10.95 new_esEs16(:(x0, x1), [], x2) 26.72/10.95 new_primCompAux00(x0, LT) 26.72/10.95 new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) 26.72/10.95 new_esEs29(x0, x1, ty_@0) 26.72/10.95 new_ltEs8(Just(x0), Just(x1), ty_Ordering) 26.72/10.95 new_esEs28(x0, x1, ty_Char) 26.72/10.95 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.95 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.95 new_esEs30(x0, x1, ty_Double) 26.72/10.95 new_compare26(x0, x1, True) 26.72/10.95 new_esEs11(x0, x1, app(ty_Maybe, x2)) 26.72/10.95 new_esEs15(Integer(x0), Integer(x1)) 26.72/10.95 new_lt19(x0, x1, app(ty_[], x2)) 26.72/10.95 new_esEs21(x0, x1, app(ty_Ratio, x2)) 26.72/10.95 new_ltEs15(x0, x1, x2) 26.72/10.95 new_esEs26(x0, x1, ty_Float) 26.72/10.95 new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.72/10.95 new_asAs(True, x0) 26.72/10.95 new_esEs16(:(x0, x1), :(x2, x3), x4) 26.72/10.95 new_lt8(x0, x1, x2, x3) 26.72/10.95 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.95 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.95 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.95 new_ltEs20(x0, x1, ty_Integer) 26.72/10.95 new_compare29(x0, x1, False, x2, x3, x4) 26.72/10.95 new_esEs22(x0, x1, app(ty_[], x2)) 26.72/10.95 new_esEs16([], [], x0) 26.72/10.95 new_ltEs20(x0, x1, ty_Float) 26.72/10.95 new_compare111(x0, x1, True) 26.72/10.95 new_esEs22(x0, x1, ty_Ordering) 26.72/10.95 new_compare110(x0, x1, True, x2, x3) 26.72/10.95 new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 26.72/10.95 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 26.72/10.95 new_compare0([], [], x0) 26.72/10.95 new_esEs7(Right(x0), Right(x1), x2, ty_Double) 26.72/10.95 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_ltEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.72/10.95 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_ltEs19(x0, x1, ty_Double) 26.72/10.95 new_esEs8(GT, GT) 26.72/10.95 new_esEs22(x0, x1, ty_Int) 26.72/10.95 new_esEs20(x0, x1, ty_Char) 26.72/10.95 new_ltEs12(EQ, LT) 26.72/10.95 new_ltEs12(LT, EQ) 26.72/10.95 new_compare0([], :(x0, x1), x2) 26.72/10.95 new_esEs8(LT, EQ) 26.72/10.95 new_esEs8(EQ, LT) 26.72/10.95 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.95 new_ltEs12(GT, GT) 26.72/10.95 new_esEs27(x0, x1, app(ty_Maybe, x2)) 26.72/10.95 new_primMulNat0(Succ(x0), Zero) 26.72/10.95 new_primCmpInt(Neg(Zero), Neg(Zero)) 26.72/10.95 new_esEs22(x0, x1, ty_Char) 26.72/10.95 new_esEs21(x0, x1, app(ty_[], x2)) 26.72/10.95 new_lt20(x0, x1, ty_@0) 26.72/10.95 new_esEs28(x0, x1, ty_Bool) 26.72/10.95 new_compare25(Nothing, Nothing, False, x0) 26.72/10.95 new_esEs19(x0, x1) 26.72/10.95 new_esEs11(x0, x1, ty_Double) 26.72/10.95 new_lt14(x0, x1, x2) 26.72/10.95 new_ltEs14(False, False) 26.72/10.95 new_esEs11(x0, x1, ty_@0) 26.72/10.95 new_esEs23(x0, x1, ty_Int) 26.72/10.95 new_compare10(x0, x1, False, x2) 26.72/10.95 new_ltEs6(x0, x1, app(ty_Ratio, x2)) 26.72/10.95 new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.72/10.95 new_lt19(x0, x1, ty_Integer) 26.72/10.95 new_esEs8(LT, LT) 26.72/10.95 new_esEs23(x0, x1, ty_Integer) 26.72/10.95 new_compare8(x0, x1, app(ty_Maybe, x2)) 26.72/10.95 new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 26.72/10.95 new_primCmpInt(Pos(Zero), Neg(Zero)) 26.72/10.95 new_primCmpInt(Neg(Zero), Pos(Zero)) 26.72/10.95 new_esEs30(x0, x1, app(ty_Maybe, x2)) 26.72/10.95 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.95 new_esEs28(x0, x1, ty_Float) 26.72/10.95 new_esEs20(x0, x1, ty_Int) 26.72/10.95 new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.72/10.95 new_esEs21(x0, x1, ty_@0) 26.72/10.95 new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.72/10.95 new_lt19(x0, x1, app(ty_Maybe, x2)) 26.72/10.95 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 26.72/10.95 new_esEs10(x0, x1, ty_Char) 26.72/10.95 new_ltEs4(Right(x0), Right(x1), x2, ty_Bool) 26.72/10.95 new_primEqNat0(Succ(x0), Zero) 26.72/10.95 new_lt15(x0, x1) 26.72/10.95 new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.95 new_ltEs20(x0, x1, ty_Int) 26.72/10.95 new_ltEs4(Right(x0), Right(x1), x2, ty_Float) 26.72/10.95 new_ltEs20(x0, x1, ty_Bool) 26.72/10.95 new_esEs22(x0, x1, ty_Integer) 26.72/10.95 new_esEs23(x0, x1, ty_Char) 26.72/10.95 new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.72/10.95 new_esEs29(x0, x1, app(ty_[], x2)) 26.72/10.95 new_esEs10(x0, x1, ty_Int) 26.72/10.95 new_esEs22(x0, x1, app(ty_Ratio, x2)) 26.72/10.95 new_ltEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.72/10.95 new_ltEs19(x0, x1, ty_@0) 26.72/10.95 new_esEs28(x0, x1, app(ty_[], x2)) 26.72/10.95 new_esEs28(x0, x1, ty_Int) 26.72/10.95 new_ltEs20(x0, x1, ty_Char) 26.72/10.95 new_compare114(x0, x1, False, x2, x3) 26.72/10.95 new_ltEs12(LT, LT) 26.72/10.95 new_esEs5(Nothing, Nothing, x0) 26.72/10.95 new_esEs20(x0, x1, ty_Float) 26.72/10.95 new_ltEs4(Left(x0), Left(x1), ty_Double, x2) 26.72/10.95 new_lt19(x0, x1, ty_Ordering) 26.72/10.95 new_esEs23(x0, x1, app(ty_Maybe, x2)) 26.72/10.95 new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) 26.72/10.95 new_ltEs4(Right(x0), Right(x1), x2, ty_Int) 26.72/10.95 new_esEs21(x0, x1, ty_Double) 26.72/10.95 new_esEs23(x0, x1, ty_Bool) 26.72/10.95 new_ltEs7(x0, x1, x2) 26.72/10.95 new_ltEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.72/10.95 new_ltEs17(x0, x1) 26.72/10.95 new_primCmpNat0(x0, Zero) 26.72/10.95 new_esEs10(x0, x1, ty_Float) 26.72/10.95 new_lt20(x0, x1, ty_Double) 26.72/10.95 new_esEs30(x0, x1, ty_@0) 26.72/10.95 new_ltEs4(Right(x0), Right(x1), x2, ty_Char) 26.72/10.95 new_compare113(x0, x1, False, x2, x3, x4) 26.72/10.95 new_compare25(Just(x0), Nothing, False, x1) 26.72/10.95 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.95 new_lt6(x0, x1, ty_Double) 26.72/10.95 new_esEs11(x0, x1, ty_Char) 26.72/10.95 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 26.72/10.95 new_compare27(x0, x1, False) 26.72/10.95 new_lt20(x0, x1, app(ty_Ratio, x2)) 26.72/10.95 new_ltEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.72/10.95 new_ltEs10(x0, x1) 26.72/10.95 new_esEs7(Left(x0), Left(x1), ty_Float, x2) 26.72/10.95 new_esEs29(x0, x1, ty_Float) 26.72/10.95 new_primCmpNat0(x0, Succ(x1)) 26.72/10.95 new_ltEs4(Left(x0), Left(x1), ty_Integer, x2) 26.72/10.95 new_esEs5(Just(x0), Just(x1), ty_@0) 26.72/10.95 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.72/10.95 new_esEs20(x0, x1, app(ty_Ratio, x2)) 26.72/10.95 new_primCmpNat1(Zero, Succ(x0)) 26.72/10.95 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.95 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_ltEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.72/10.95 new_esEs10(x0, x1, ty_@0) 26.72/10.95 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 26.72/10.95 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_compare24(x0, x1, False, x2, x3) 26.72/10.95 new_ltEs8(Nothing, Nothing, x0) 26.72/10.95 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.95 new_esEs24(x0, x1, ty_Integer) 26.72/10.95 new_primMulNat0(Zero, Zero) 26.72/10.95 new_ltEs4(Left(x0), Right(x1), x2, x3) 26.72/10.95 new_ltEs4(Right(x0), Left(x1), x2, x3) 26.72/10.95 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_primCmpNat2(Succ(x0), x1) 26.72/10.95 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.95 new_ltEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.72/10.95 new_compare8(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.95 new_esEs11(x0, x1, ty_Int) 26.72/10.95 new_esEs27(x0, x1, ty_Float) 26.72/10.95 new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_esEs10(x0, x1, app(ty_[], x2)) 26.72/10.95 new_lt12(x0, x1) 26.72/10.95 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.95 new_compare0(:(x0, x1), :(x2, x3), x4) 26.72/10.95 new_compare114(x0, x1, True, x2, x3) 26.72/10.95 new_esEs20(x0, x1, ty_Double) 26.72/10.95 new_esEs17(True, True) 26.72/10.95 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.95 new_ltEs6(x0, x1, ty_Float) 26.72/10.95 new_esEs23(x0, x1, ty_Double) 26.72/10.95 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 26.72/10.95 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 26.72/10.95 new_ltEs5(@2(x0, x1), @2(x2, x3), x4, x5) 26.72/10.95 new_ltEs19(x0, x1, ty_Int) 26.72/10.95 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 26.72/10.95 new_compare14(Integer(x0), Integer(x1)) 26.72/10.95 new_esEs7(Left(x0), Right(x1), x2, x3) 26.72/10.95 new_esEs7(Right(x0), Left(x1), x2, x3) 26.72/10.95 new_ltEs16(x0, x1) 26.72/10.95 new_compare8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_ltEs19(x0, x1, ty_Char) 26.72/10.95 new_primPlusNat0(Succ(x0), Succ(x1)) 26.72/10.95 new_lt16(x0, x1) 26.72/10.95 new_ltEs4(Left(x0), Left(x1), ty_@0, x2) 26.72/10.95 new_primEqNat0(Succ(x0), Succ(x1)) 26.72/10.95 new_esEs23(x0, x1, ty_Ordering) 26.72/10.95 new_esEs11(x0, x1, app(ty_Ratio, x2)) 26.72/10.95 new_esEs10(x0, x1, ty_Bool) 26.72/10.95 new_ltEs6(x0, x1, ty_Integer) 26.72/10.95 new_ltEs6(x0, x1, app(ty_Maybe, x2)) 26.72/10.95 new_esEs5(Just(x0), Just(x1), ty_Integer) 26.72/10.95 new_compare8(x0, x1, app(ty_[], x2)) 26.72/10.95 new_primPlusNat0(Zero, Zero) 26.72/10.95 new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.72/10.95 new_primCmpNat1(Succ(x0), Zero) 26.72/10.95 new_esEs10(x0, x1, ty_Integer) 26.72/10.95 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.95 new_pePe(False, x0) 26.72/10.95 new_ltEs14(True, True) 26.72/10.95 new_ltEs19(x0, x1, ty_Bool) 26.72/10.95 new_not(True) 26.72/10.95 new_esEs25(x0, x1, ty_Int) 26.72/10.95 new_ltEs20(x0, x1, app(ty_[], x2)) 26.72/10.95 new_esEs8(EQ, GT) 26.72/10.95 new_esEs8(GT, EQ) 26.72/10.95 new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.72/10.95 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.95 new_primMulNat0(Zero, Succ(x0)) 26.72/10.95 new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.72/10.95 new_esEs20(x0, x1, app(ty_[], x2)) 26.72/10.95 new_compare112(x0, x1, False) 26.72/10.95 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.95 new_lt20(x0, x1, ty_Ordering) 26.72/10.95 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.95 new_esEs11(x0, x1, ty_Ordering) 26.72/10.95 new_esEs20(x0, x1, ty_Ordering) 26.72/10.95 new_esEs29(x0, x1, ty_Integer) 26.72/10.95 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.72/10.95 new_esEs27(x0, x1, ty_Integer) 26.72/10.95 new_lt6(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.95 new_ltEs18(x0, x1) 26.72/10.95 new_ltEs20(x0, x1, ty_Ordering) 26.72/10.95 new_ltEs19(x0, x1, ty_Ordering) 26.72/10.95 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 26.72/10.95 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.95 new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.72/10.95 new_esEs17(False, True) 26.72/10.95 new_esEs17(True, False) 26.72/10.95 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_primPlusNat0(Succ(x0), Zero) 26.72/10.95 new_esEs28(x0, x1, ty_Integer) 26.72/10.95 new_esEs28(x0, x1, app(ty_Maybe, x2)) 26.72/10.95 new_ltEs19(x0, x1, ty_Integer) 26.72/10.95 new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.72/10.95 new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.72/10.95 new_ltEs12(EQ, EQ) 26.72/10.95 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_compare18(@0, @0) 26.72/10.95 new_esEs21(x0, x1, ty_Ordering) 26.72/10.95 new_esEs10(x0, x1, ty_Ordering) 26.72/10.95 new_esEs27(x0, x1, app(ty_[], x2)) 26.72/10.95 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_esEs13(Double(x0, x1), Double(x2, x3)) 26.72/10.95 new_esEs23(x0, x1, app(ty_Ratio, x2)) 26.72/10.95 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_lt7(x0, x1, x2) 26.72/10.95 new_compare8(x0, x1, ty_Integer) 26.72/10.95 new_lt10(x0, x1, x2, x3, x4) 26.72/10.95 new_primCmpInt(Pos(Zero), Pos(Zero)) 26.72/10.95 new_ltEs6(x0, x1, ty_Bool) 26.72/10.95 new_compare29(x0, x1, True, x2, x3, x4) 26.72/10.95 new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.72/10.95 new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) 26.72/10.95 new_ltEs4(Left(x0), Left(x1), ty_Int, x2) 26.72/10.95 new_compare8(x0, x1, app(ty_Ratio, x2)) 26.72/10.95 new_ltEs6(x0, x1, app(ty_[], x2)) 26.72/10.95 new_compare7(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 26.72/10.95 new_compare16(x0, x1) 26.72/10.95 new_ltEs8(Just(x0), Just(x1), ty_Float) 26.72/10.95 new_esEs22(x0, x1, ty_Double) 26.72/10.95 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_esEs23(x0, x1, app(ty_[], x2)) 26.72/10.95 new_esEs7(Right(x0), Right(x1), x2, ty_Int) 26.72/10.95 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.95 new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.72/10.95 new_esEs11(x0, x1, app(ty_[], x2)) 26.72/10.95 new_esEs30(x0, x1, ty_Float) 26.72/10.95 new_esEs27(x0, x1, ty_Bool) 26.72/10.95 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.95 new_ltEs4(Left(x0), Left(x1), ty_Char, x2) 26.72/10.95 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.95 new_esEs8(LT, GT) 26.72/10.95 new_esEs8(GT, LT) 26.72/10.95 new_primPlusNat1(x0, x1) 26.72/10.95 new_lt6(x0, x1, ty_Ordering) 26.72/10.95 new_esEs29(x0, x1, ty_Bool) 26.72/10.95 new_esEs12(Char(x0), Char(x1)) 26.72/10.95 new_esEs27(x0, x1, app(ty_Ratio, x2)) 26.72/10.95 new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) 26.72/10.95 new_lt18(x0, x1, x2, x3) 26.72/10.95 new_ltEs8(Just(x0), Just(x1), ty_Int) 26.72/10.95 new_lt19(x0, x1, ty_Float) 26.72/10.95 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 26.72/10.95 new_esEs5(Nothing, Just(x0), x1) 26.72/10.95 new_esEs20(x0, x1, ty_@0) 26.72/10.95 new_ltEs4(Left(x0), Left(x1), ty_Float, x2) 26.72/10.95 new_esEs26(x0, x1, ty_Ordering) 26.72/10.95 new_esEs7(Left(x0), Left(x1), ty_Integer, x2) 26.72/10.95 new_ltEs6(x0, x1, ty_@0) 26.72/10.95 new_ltEs4(Left(x0), Left(x1), ty_Ordering, x2) 26.72/10.95 new_esEs10(x0, x1, app(ty_Ratio, x2)) 26.72/10.95 new_esEs5(Just(x0), Just(x1), ty_Ordering) 26.72/10.95 new_esEs10(x0, x1, ty_Double) 26.72/10.95 new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.72/10.95 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 26.72/10.95 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 26.72/10.95 new_esEs29(x0, x1, app(ty_Maybe, x2)) 26.72/10.95 new_lt6(x0, x1, ty_Float) 26.72/10.95 new_compare8(x0, x1, ty_Bool) 26.72/10.95 new_esEs7(Right(x0), Right(x1), x2, ty_Char) 26.72/10.95 new_esEs26(x0, x1, app(ty_[], x2)) 26.72/10.95 new_compare24(x0, x1, True, x2, x3) 26.72/10.95 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.95 new_ltEs8(Just(x0), Nothing, x1) 26.72/10.95 new_esEs7(Left(x0), Left(x1), ty_@0, x2) 26.72/10.95 new_esEs11(x0, x1, ty_Integer) 26.72/10.95 new_primMulInt(Neg(x0), Neg(x1)) 26.72/10.95 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.95 new_esEs30(x0, x1, app(ty_[], x2)) 26.72/10.95 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.95 new_esEs23(x0, x1, ty_@0) 26.72/10.95 new_esEs26(x0, x1, ty_Integer) 26.72/10.95 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.95 new_esEs5(Just(x0), Just(x1), ty_Float) 26.72/10.95 new_compare23(x0, x1, x2, x3) 26.72/10.95 new_ltEs14(False, True) 26.72/10.95 new_ltEs14(True, False) 26.72/10.95 new_primPlusNat0(Zero, Succ(x0)) 26.72/10.95 new_primEqNat0(Zero, Zero) 26.72/10.95 new_compare8(x0, x1, ty_Char) 26.72/10.95 new_esEs25(x0, x1, ty_Integer) 26.72/10.95 new_primCompAux00(x0, GT) 26.72/10.95 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.95 new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) 26.72/10.95 new_lt20(x0, x1, app(ty_[], x2)) 26.72/10.95 new_ltEs4(Right(x0), Right(x1), x2, ty_@0) 26.72/10.95 new_not(False) 26.72/10.95 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 26.72/10.95 new_ltEs8(Just(x0), Just(x1), ty_Char) 26.72/10.95 new_esEs5(Just(x0), Just(x1), ty_Char) 26.72/10.95 new_esEs11(x0, x1, ty_Bool) 26.72/10.95 new_lt20(x0, x1, ty_Float) 26.72/10.95 new_ltEs19(x0, x1, ty_Float) 26.72/10.95 new_lt20(x0, x1, ty_Bool) 26.72/10.95 new_ltEs12(LT, GT) 26.72/10.95 new_ltEs12(GT, LT) 26.72/10.95 new_esEs30(x0, x1, ty_Char) 26.72/10.95 new_lt6(x0, x1, ty_Int) 26.72/10.95 new_compare8(x0, x1, ty_Int) 26.72/10.95 new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_esEs21(x0, x1, app(ty_Maybe, x2)) 26.72/10.95 new_sr0(Integer(x0), Integer(x1)) 26.72/10.95 new_lt6(x0, x1, app(ty_Maybe, x2)) 26.72/10.95 new_esEs21(x0, x1, ty_Bool) 26.72/10.95 new_esEs28(x0, x1, ty_Double) 26.72/10.95 new_esEs7(Right(x0), Right(x1), x2, ty_Bool) 26.72/10.95 new_esEs5(Just(x0), Just(x1), ty_Int) 26.72/10.95 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 26.72/10.95 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 26.72/10.95 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 26.72/10.95 new_esEs21(x0, x1, ty_Float) 26.72/10.95 new_compare25(Just(x0), Just(x1), False, x2) 26.72/10.95 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_ltEs20(x0, x1, ty_@0) 26.72/10.95 new_ltEs4(Left(x0), Left(x1), ty_Bool, x2) 26.72/10.95 new_lt19(x0, x1, app(ty_Ratio, x2)) 26.72/10.95 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.95 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.95 new_compare25(Nothing, Just(x0), False, x1) 26.72/10.95 new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.72/10.95 new_lt4(x0, x1) 26.72/10.95 new_asAs(False, x0) 26.72/10.95 new_esEs30(x0, x1, ty_Int) 26.72/10.95 new_primMulInt(Pos(x0), Neg(x1)) 26.72/10.95 new_primMulInt(Neg(x0), Pos(x1)) 26.72/10.95 new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.72/10.95 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 26.72/10.95 new_ltEs8(Nothing, Just(x0), x1) 26.72/10.95 new_esEs14(Float(x0, x1), Float(x2, x3)) 26.72/10.95 new_lt20(x0, x1, ty_Int) 26.72/10.95 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.72/10.95 new_primCmpNat1(Succ(x0), Succ(x1)) 26.72/10.95 new_esEs21(x0, x1, ty_Char) 26.72/10.95 new_compare111(x0, x1, False) 26.72/10.95 new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.72/10.95 new_ltEs4(Right(x0), Right(x1), x2, ty_Double) 26.72/10.95 new_esEs21(x0, x1, ty_Int) 26.72/10.95 new_lt6(x0, x1, ty_Char) 26.72/10.95 new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 26.72/10.95 new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 26.72/10.95 new_esEs5(Just(x0), Just(x1), ty_Bool) 26.72/10.95 new_compare8(x0, x1, ty_Float) 26.72/10.95 new_lt20(x0, x1, ty_Char) 26.72/10.95 new_ltEs20(x0, x1, ty_Double) 26.72/10.95 new_primCompAux0(x0, x1, x2, x3) 26.72/10.95 new_esEs28(x0, x1, ty_@0) 26.72/10.95 26.72/10.95 We have to consider all minimal (P,Q,R)-chains. 26.72/10.95 ---------------------------------------- 26.72/10.95 26.72/10.95 (39) TransformationProof (EQUIVALENT) 26.72/10.95 By rewriting [LPAR04] the rule new_addToFM_C20(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, False, h, ba) -> new_addToFM_C11(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs8(new_compare25(Just(xuu5000), Nothing, False, h), GT), h, ba) at position [7,0] we obtained the following new rules [LPAR04]: 26.72/10.95 26.72/10.95 (new_addToFM_C20(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, False, h, ba) -> new_addToFM_C11(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs8(GT, GT), h, ba),new_addToFM_C20(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, False, h, ba) -> new_addToFM_C11(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs8(GT, GT), h, ba)) 26.72/10.95 26.72/10.95 26.72/10.95 ---------------------------------------- 26.72/10.95 26.72/10.95 (40) 26.72/10.95 Obligation: 26.72/10.95 Q DP problem: 26.72/10.95 The TRS P consists of the following rules: 26.72/10.95 26.72/10.95 new_addToFM_C(xuu3, Branch(Just(xuu400), xuu41, xuu42, xuu43, xuu44), Just(xuu5000), xuu501, h, ba) -> new_addToFM_C21(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs8(new_compare25(Just(xuu5000), Just(xuu400), new_esEs29(xuu5000, xuu400, h), h), LT), h, ba) 26.72/10.95 new_addToFM_C21(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, bb, bc) -> new_addToFM_C12(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs8(new_compare25(Just(xuu22), Just(xuu17), new_esEs30(xuu22, xuu17, bb), bb), GT), bb, bc) 26.72/10.95 new_addToFM_C12(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu16, xuu21, Just(xuu22), xuu23, bb, bc) 26.72/10.95 new_addToFM_C11(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, True, h, ba) -> new_addToFM_C(xuu3, xuu44, Just(xuu5000), xuu501, h, ba) 26.72/10.95 new_addToFM_C21(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu16, xuu20, Just(xuu22), xuu23, bb, bc) 26.72/10.95 new_addToFM_C(xuu3, Branch(Nothing, xuu41, xuu42, xuu43, xuu44), Just(xuu5000), xuu501, h, ba) -> new_addToFM_C20(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, False, h, ba) 26.72/10.95 new_addToFM_C20(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, False, h, ba) -> new_addToFM_C11(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs8(GT, GT), h, ba) 26.72/10.95 26.72/10.95 The TRS R consists of the following rules: 26.72/10.95 26.72/10.95 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Int) -> new_ltEs13(xuu33000, xuu34000) 26.72/10.95 new_esEs11(xuu50000, xuu4000, ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.95 new_primCmpInt(Neg(Succ(xuu3300)), Pos(xuu340)) -> LT 26.72/10.95 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 26.72/10.95 new_ltEs4(Left(xuu33000), Left(xuu34000), app(ty_[], bgd), bfe) -> new_ltEs15(xuu33000, xuu34000, bgd) 26.72/10.95 new_primPlusNat0(Zero, Zero) -> Zero 26.72/10.95 new_lt6(xuu33000, xuu34000, app(app(ty_@2, bea), beb)) -> new_lt8(xuu33000, xuu34000, bea, beb) 26.72/10.95 new_compare8(xuu33000, xuu34000, ty_Ordering) -> new_compare16(xuu33000, xuu34000) 26.72/10.95 new_pePe(True, xuu161) -> True 26.72/10.95 new_primCmpNat0(xuu3300, Succ(xuu3400)) -> new_primCmpNat1(xuu3300, xuu3400) 26.72/10.95 new_esEs30(xuu22, xuu17, ty_Ordering) -> new_esEs8(xuu22, xuu17) 26.72/10.95 new_esEs24(xuu50001, xuu4001, ty_Int) -> new_esEs19(xuu50001, xuu4001) 26.72/10.95 new_esEs30(xuu22, xuu17, ty_Int) -> new_esEs19(xuu22, xuu17) 26.72/10.95 new_esEs21(xuu50001, xuu4001, app(ty_Ratio, gh)) -> new_esEs18(xuu50001, xuu4001, gh) 26.72/10.95 new_esEs29(xuu5000, xuu400, ty_Char) -> new_esEs12(xuu5000, xuu400) 26.72/10.95 new_ltEs12(LT, LT) -> True 26.72/10.95 new_esEs10(xuu50001, xuu4001, app(app(app(ty_@3, cf), cg), da)) -> new_esEs6(xuu50001, xuu4001, cf, cg, da) 26.72/10.95 new_esEs30(xuu22, xuu17, app(app(ty_@2, chd), che)) -> new_esEs4(xuu22, xuu17, chd, che) 26.72/10.95 new_lt19(xuu33001, xuu34001, app(ty_[], dce)) -> new_lt14(xuu33001, xuu34001, dce) 26.72/10.95 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 26.72/10.95 new_esEs27(xuu33001, xuu34001, app(ty_[], dce)) -> new_esEs16(xuu33001, xuu34001, dce) 26.72/10.95 new_primCmpInt(Pos(Zero), Neg(Succ(xuu3400))) -> GT 26.72/10.95 new_esEs26(xuu50000, xuu4000, ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.95 new_esEs22(xuu50000, xuu4000, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.95 new_ltEs19(xuu3300, xuu3400, app(app(ty_@2, bcd), bce)) -> new_ltEs5(xuu3300, xuu3400, bcd, bce) 26.72/10.95 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(ty_[], bhg)) -> new_ltEs15(xuu33000, xuu34000, bhg) 26.72/10.95 new_lt7(xuu33000, xuu34000, bdh) -> new_esEs8(new_compare9(xuu33000, xuu34000, bdh), LT) 26.72/10.95 new_primMulNat0(Succ(xuu5000100), Succ(xuu400000)) -> new_primPlusNat1(new_primMulNat0(xuu5000100, Succ(xuu400000)), xuu400000) 26.72/10.95 new_compare8(xuu33000, xuu34000, app(ty_Ratio, bag)) -> new_compare9(xuu33000, xuu34000, bag) 26.72/10.95 new_esEs29(xuu5000, xuu400, ty_Float) -> new_esEs14(xuu5000, xuu400) 26.72/10.95 new_compare28(xuu33000, xuu34000, False, bea, beb) -> new_compare114(xuu33000, xuu34000, new_ltEs5(xuu33000, xuu34000, bea, beb), bea, beb) 26.72/10.95 new_esEs23(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) 26.72/10.95 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Double, beh) -> new_esEs13(xuu50000, xuu4000) 26.72/10.95 new_compare8(xuu33000, xuu34000, ty_Double) -> new_compare19(xuu33000, xuu34000) 26.72/10.95 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Double, bfe) -> new_ltEs17(xuu33000, xuu34000) 26.72/10.95 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.95 new_lt19(xuu33001, xuu34001, ty_Int) -> new_lt4(xuu33001, xuu34001) 26.72/10.95 new_lt19(xuu33001, xuu34001, app(app(ty_Either, dcf), dcg)) -> new_lt18(xuu33001, xuu34001, dcf, dcg) 26.72/10.95 new_primCmpNat1(Succ(xuu33000), Succ(xuu34000)) -> new_primCmpNat1(xuu33000, xuu34000) 26.72/10.95 new_ltEs19(xuu3300, xuu3400, ty_Char) -> new_ltEs11(xuu3300, xuu3400) 26.72/10.95 new_esEs28(xuu33000, xuu34000, app(app(ty_Either, ddh), dea)) -> new_esEs7(xuu33000, xuu34000, ddh, dea) 26.72/10.95 new_ltEs15(xuu3300, xuu3400, baf) -> new_fsEs(new_compare0(xuu3300, xuu3400, baf)) 26.72/10.95 new_esEs13(Double(xuu50000, xuu50001), Double(xuu4000, xuu4001)) -> new_esEs19(new_sr(xuu50000, xuu4001), new_sr(xuu50001, xuu4000)) 26.72/10.95 new_ltEs6(xuu33001, xuu34001, ty_@0) -> new_ltEs16(xuu33001, xuu34001) 26.72/10.95 new_compare26(xuu33000, xuu34000, True) -> EQ 26.72/10.95 new_esEs10(xuu50001, xuu4001, ty_Char) -> new_esEs12(xuu50001, xuu4001) 26.72/10.95 new_esEs8(GT, GT) -> True 26.72/10.95 new_primEqInt(Pos(Succ(xuu500000)), Pos(Zero)) -> False 26.72/10.95 new_primEqInt(Pos(Zero), Pos(Succ(xuu40000))) -> False 26.72/10.95 new_lt12(xuu33000, xuu34000) -> new_esEs8(new_compare16(xuu33000, xuu34000), LT) 26.72/10.95 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(app(app(ty_@3, ccc), ccd), cce)) -> new_esEs6(xuu50000, xuu4000, ccc, ccd, cce) 26.72/10.95 new_fsEs(xuu146) -> new_not(new_esEs8(xuu146, GT)) 26.72/10.95 new_esEs29(xuu5000, xuu400, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs6(xuu5000, xuu400, ed, ee, ef) 26.72/10.95 new_compare25(Just(xuu3300), Just(xuu3400), False, cfd) -> new_compare10(xuu3300, xuu3400, new_ltEs19(xuu3300, xuu3400, cfd), cfd) 26.72/10.95 new_ltEs19(xuu3300, xuu3400, ty_Bool) -> new_ltEs14(xuu3300, xuu3400) 26.72/10.95 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.95 new_esEs20(xuu50002, xuu4002, ty_Int) -> new_esEs19(xuu50002, xuu4002) 26.72/10.95 new_esEs8(EQ, EQ) -> True 26.72/10.95 new_ltEs20(xuu33002, xuu34002, ty_Char) -> new_ltEs11(xuu33002, xuu34002) 26.72/10.95 new_primEqNat0(Succ(xuu500000), Succ(xuu40000)) -> new_primEqNat0(xuu500000, xuu40000) 26.72/10.95 new_esEs30(xuu22, xuu17, ty_Char) -> new_esEs12(xuu22, xuu17) 26.72/10.95 new_esEs27(xuu33001, xuu34001, ty_Integer) -> new_esEs15(xuu33001, xuu34001) 26.72/10.95 new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare6(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 26.72/10.95 new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare6(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 26.72/10.95 new_ltEs20(xuu33002, xuu34002, ty_Integer) -> new_ltEs10(xuu33002, xuu34002) 26.72/10.95 new_esEs21(xuu50001, xuu4001, ty_Double) -> new_esEs13(xuu50001, xuu4001) 26.72/10.95 new_esEs10(xuu50001, xuu4001, ty_Float) -> new_esEs14(xuu50001, xuu4001) 26.72/10.95 new_esEs22(xuu50000, xuu4000, ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.95 new_not(True) -> False 26.72/10.95 new_lt20(xuu33000, xuu34000, app(ty_Ratio, dch)) -> new_lt7(xuu33000, xuu34000, dch) 26.72/10.95 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(app(ty_@2, bha), bhb)) -> new_ltEs5(xuu33000, xuu34000, bha, bhb) 26.72/10.95 new_ltEs12(LT, GT) -> True 26.72/10.95 new_lt14(xuu33000, xuu34000, bef) -> new_esEs8(new_compare0(xuu33000, xuu34000, bef), LT) 26.72/10.95 new_lt19(xuu33001, xuu34001, app(ty_Ratio, dbf)) -> new_lt7(xuu33001, xuu34001, dbf) 26.72/10.95 new_primCompAux00(xuu178, LT) -> LT 26.72/10.95 new_esEs10(xuu50001, xuu4001, app(ty_Ratio, ce)) -> new_esEs18(xuu50001, xuu4001, ce) 26.72/10.95 new_esEs21(xuu50001, xuu4001, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs6(xuu50001, xuu4001, ha, hb, hc) 26.72/10.95 new_esEs27(xuu33001, xuu34001, ty_Bool) -> new_esEs17(xuu33001, xuu34001) 26.72/10.95 new_esEs30(xuu22, xuu17, ty_Float) -> new_esEs14(xuu22, xuu17) 26.72/10.95 new_esEs20(xuu50002, xuu4002, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs6(xuu50002, xuu4002, fg, fh, ga) 26.72/10.95 new_esEs26(xuu50000, xuu4000, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.95 new_esEs20(xuu50002, xuu4002, app(app(ty_Either, eg), eh)) -> new_esEs7(xuu50002, xuu4002, eg, eh) 26.72/10.95 new_compare8(xuu33000, xuu34000, ty_Float) -> new_compare7(xuu33000, xuu34000) 26.72/10.95 new_ltEs19(xuu3300, xuu3400, ty_Integer) -> new_ltEs10(xuu3300, xuu3400) 26.72/10.95 new_esEs10(xuu50001, xuu4001, ty_Ordering) -> new_esEs8(xuu50001, xuu4001) 26.72/10.95 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Integer, beh) -> new_esEs15(xuu50000, xuu4000) 26.72/10.95 new_ltEs19(xuu3300, xuu3400, ty_Double) -> new_ltEs17(xuu3300, xuu3400) 26.72/10.95 new_esEs11(xuu50000, xuu4000, app(ty_Ratio, dh)) -> new_esEs18(xuu50000, xuu4000, dh) 26.72/10.95 new_primEqNat0(Succ(xuu500000), Zero) -> False 26.72/10.95 new_primEqNat0(Zero, Succ(xuu40000)) -> False 26.72/10.95 new_compare112(xuu33000, xuu34000, False) -> GT 26.72/10.95 new_ltEs20(xuu33002, xuu34002, app(ty_Maybe, dag)) -> new_ltEs8(xuu33002, xuu34002, dag) 26.72/10.95 new_esEs29(xuu5000, xuu400, ty_Int) -> new_esEs19(xuu5000, xuu400) 26.72/10.95 new_lt20(xuu33000, xuu34000, app(ty_[], ddg)) -> new_lt14(xuu33000, xuu34000, ddg) 26.72/10.95 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_ltEs9(xuu33000, xuu34000, bhd, bhe, bhf) 26.72/10.95 new_ltEs20(xuu33002, xuu34002, ty_Bool) -> new_ltEs14(xuu33002, xuu34002) 26.72/10.95 new_primCompAux00(xuu178, GT) -> GT 26.72/10.95 new_compare7(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare6(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 26.72/10.95 new_compare7(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare6(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 26.72/10.95 new_ltEs6(xuu33001, xuu34001, app(ty_Maybe, bda)) -> new_ltEs8(xuu33001, xuu34001, bda) 26.72/10.95 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.95 new_esEs5(Just(xuu50000), Just(xuu4000), app(ty_Ratio, cdd)) -> new_esEs18(xuu50000, xuu4000, cdd) 26.72/10.95 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Bool) -> new_ltEs14(xuu33000, xuu34000) 26.72/10.95 new_primCmpNat2(Zero, xuu3300) -> LT 26.72/10.95 new_esEs20(xuu50002, xuu4002, ty_Ordering) -> new_esEs8(xuu50002, xuu4002) 26.72/10.95 new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(ty_@2, cec), ced)) -> new_ltEs5(xuu33000, xuu34000, cec, ced) 26.72/10.95 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Integer, bfe) -> new_ltEs10(xuu33000, xuu34000) 26.72/10.95 new_primCmpInt(Pos(Succ(xuu3300)), Neg(xuu340)) -> GT 26.72/10.95 new_ltEs20(xuu33002, xuu34002, app(app(ty_@2, dae), daf)) -> new_ltEs5(xuu33002, xuu34002, dae, daf) 26.72/10.95 new_esEs20(xuu50002, xuu4002, app(app(ty_@2, fa), fb)) -> new_esEs4(xuu50002, xuu4002, fa, fb) 26.72/10.95 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_@0, bfe) -> new_ltEs16(xuu33000, xuu34000) 26.72/10.95 new_ltEs6(xuu33001, xuu34001, app(ty_Ratio, bcf)) -> new_ltEs7(xuu33001, xuu34001, bcf) 26.72/10.95 new_compare110(xuu33000, xuu34000, True, bca, bcb) -> LT 26.72/10.95 new_ltEs6(xuu33001, xuu34001, ty_Double) -> new_ltEs17(xuu33001, xuu34001) 26.72/10.95 new_esEs19(xuu5000, xuu400) -> new_primEqInt(xuu5000, xuu400) 26.72/10.95 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Bool, beh) -> new_esEs17(xuu50000, xuu4000) 26.72/10.95 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Char, bfe) -> new_ltEs11(xuu33000, xuu34000) 26.72/10.95 new_esEs22(xuu50000, xuu4000, app(ty_Ratio, bab)) -> new_esEs18(xuu50000, xuu4000, bab) 26.72/10.95 new_esEs7(Left(xuu50000), Left(xuu4000), app(app(app(ty_@3, cba), cbb), cbc), beh) -> new_esEs6(xuu50000, xuu4000, cba, cbb, cbc) 26.72/10.95 new_esEs26(xuu50000, xuu4000, ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.95 new_ltEs20(xuu33002, xuu34002, ty_Double) -> new_ltEs17(xuu33002, xuu34002) 26.72/10.95 new_esEs28(xuu33000, xuu34000, ty_Char) -> new_esEs12(xuu33000, xuu34000) 26.72/10.95 new_esEs28(xuu33000, xuu34000, app(ty_[], ddg)) -> new_esEs16(xuu33000, xuu34000, ddg) 26.72/10.95 new_esEs7(Left(xuu50000), Left(xuu4000), ty_@0, beh) -> new_esEs9(xuu50000, xuu4000) 26.72/10.95 new_primCompAux0(xuu33000, xuu34000, xuu172, baf) -> new_primCompAux00(xuu172, new_compare8(xuu33000, xuu34000, baf)) 26.72/10.95 new_ltEs6(xuu33001, xuu34001, app(ty_[], bde)) -> new_ltEs15(xuu33001, xuu34001, bde) 26.72/10.95 new_pePe(False, xuu161) -> xuu161 26.72/10.95 new_lt8(xuu33000, xuu34000, bea, beb) -> new_esEs8(new_compare11(xuu33000, xuu34000, bea, beb), LT) 26.72/10.95 new_esEs27(xuu33001, xuu34001, ty_Double) -> new_esEs13(xuu33001, xuu34001) 26.72/10.95 new_compare7(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare6(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 26.72/10.95 new_lt20(xuu33000, xuu34000, ty_Float) -> new_lt17(xuu33000, xuu34000) 26.72/10.95 new_ltEs12(GT, GT) -> True 26.72/10.95 new_lt9(xuu33000, xuu34000, bcc) -> new_esEs8(new_compare12(xuu33000, xuu34000, bcc), LT) 26.72/10.95 new_esEs11(xuu50000, xuu4000, ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.95 new_esEs7(Left(xuu50000), Left(xuu4000), app(app(ty_@2, cad), cae), beh) -> new_esEs4(xuu50000, xuu4000, cad, cae) 26.72/10.95 new_lt17(xuu33000, xuu34000) -> new_esEs8(new_compare7(xuu33000, xuu34000), LT) 26.72/10.95 new_esEs6(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), ed, ee, ef) -> new_asAs(new_esEs22(xuu50000, xuu4000, ed), new_asAs(new_esEs21(xuu50001, xuu4001, ee), new_esEs20(xuu50002, xuu4002, ef))) 26.72/10.95 new_esEs10(xuu50001, xuu4001, app(app(ty_Either, bg), bh)) -> new_esEs7(xuu50001, xuu4001, bg, bh) 26.72/10.95 new_compare114(xuu33000, xuu34000, True, bea, beb) -> LT 26.72/10.95 new_ltEs12(GT, EQ) -> False 26.72/10.95 new_ltEs6(xuu33001, xuu34001, app(app(ty_@2, bcg), bch)) -> new_ltEs5(xuu33001, xuu34001, bcg, bch) 26.72/10.95 new_compare8(xuu33000, xuu34000, ty_Int) -> new_compare6(xuu33000, xuu34000) 26.72/10.95 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(ty_Ratio, bgh)) -> new_ltEs7(xuu33000, xuu34000, bgh) 26.72/10.95 new_esEs26(xuu50000, xuu4000, ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.95 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.95 new_compare26(xuu33000, xuu34000, False) -> new_compare111(xuu33000, xuu34000, new_ltEs12(xuu33000, xuu34000)) 26.72/10.95 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Char) -> new_ltEs11(xuu33000, xuu34000) 26.72/10.95 new_compare10(xuu129, xuu130, False, bd) -> GT 26.72/10.95 new_lt20(xuu33000, xuu34000, ty_Integer) -> new_lt11(xuu33000, xuu34000) 26.72/10.95 new_lt20(xuu33000, xuu34000, app(ty_Maybe, ddc)) -> new_lt9(xuu33000, xuu34000, ddc) 26.72/10.95 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(ty_Ratio, ccb)) -> new_esEs18(xuu50000, xuu4000, ccb) 26.72/10.95 new_esEs8(LT, EQ) -> False 26.72/10.95 new_esEs8(EQ, LT) -> False 26.72/10.95 new_esEs21(xuu50001, xuu4001, app(app(ty_@2, gd), ge)) -> new_esEs4(xuu50001, xuu4001, gd, ge) 26.72/10.95 new_compare29(xuu33000, xuu34000, False, bec, bed, bee) -> new_compare113(xuu33000, xuu34000, new_ltEs9(xuu33000, xuu34000, bec, bed, bee), bec, bed, bee) 26.72/10.95 new_lt19(xuu33001, xuu34001, app(ty_Maybe, dca)) -> new_lt9(xuu33001, xuu34001, dca) 26.72/10.95 new_primEqInt(Pos(Zero), Neg(Succ(xuu40000))) -> False 26.72/10.95 new_primEqInt(Neg(Zero), Pos(Succ(xuu40000))) -> False 26.72/10.95 new_lt19(xuu33001, xuu34001, ty_Ordering) -> new_lt12(xuu33001, xuu34001) 26.72/10.95 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Integer) -> new_ltEs10(xuu33000, xuu34000) 26.72/10.95 new_esEs11(xuu50000, xuu4000, app(ty_Maybe, df)) -> new_esEs5(xuu50000, xuu4000, df) 26.72/10.95 new_esEs21(xuu50001, xuu4001, ty_Ordering) -> new_esEs8(xuu50001, xuu4001) 26.72/10.95 new_esEs18(:%(xuu50000, xuu50001), :%(xuu4000, xuu4001), bfc) -> new_asAs(new_esEs25(xuu50000, xuu4000, bfc), new_esEs24(xuu50001, xuu4001, bfc)) 26.72/10.95 new_esEs5(Just(xuu50000), Just(xuu4000), app(app(app(ty_@3, cde), cdf), cdg)) -> new_esEs6(xuu50000, xuu4000, cde, cdf, cdg) 26.72/10.95 new_ltEs14(True, True) -> True 26.72/10.95 new_esEs25(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.95 new_esEs21(xuu50001, xuu4001, ty_Float) -> new_esEs14(xuu50001, xuu4001) 26.72/10.95 new_esEs21(xuu50001, xuu4001, app(ty_Maybe, gf)) -> new_esEs5(xuu50001, xuu4001, gf) 26.72/10.95 new_esEs23(xuu33000, xuu34000, app(app(ty_Either, bca), bcb)) -> new_esEs7(xuu33000, xuu34000, bca, bcb) 26.72/10.95 new_esEs26(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.95 new_esEs5(Nothing, Nothing, bfa) -> True 26.72/10.95 new_esEs26(xuu50000, xuu4000, app(ty_[], cge)) -> new_esEs16(xuu50000, xuu4000, cge) 26.72/10.95 new_primEqInt(Neg(Succ(xuu500000)), Neg(Succ(xuu40000))) -> new_primEqNat0(xuu500000, xuu40000) 26.72/10.95 new_esEs5(Nothing, Just(xuu4000), bfa) -> False 26.72/10.95 new_esEs5(Just(xuu50000), Nothing, bfa) -> False 26.72/10.95 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Float, bfe) -> new_ltEs18(xuu33000, xuu34000) 26.72/10.95 new_primCmpInt(Neg(Zero), Pos(Succ(xuu3400))) -> LT 26.72/10.95 new_lt19(xuu33001, xuu34001, ty_Bool) -> new_lt13(xuu33001, xuu34001) 26.72/10.95 new_compare114(xuu33000, xuu34000, False, bea, beb) -> GT 26.72/10.95 new_ltEs20(xuu33002, xuu34002, ty_@0) -> new_ltEs16(xuu33002, xuu34002) 26.72/10.95 new_primMulInt(Pos(xuu500010), Pos(xuu40000)) -> Pos(new_primMulNat0(xuu500010, xuu40000)) 26.72/10.95 new_lt6(xuu33000, xuu34000, app(app(app(ty_@3, bec), bed), bee)) -> new_lt10(xuu33000, xuu34000, bec, bed, bee) 26.72/10.95 new_compare8(xuu33000, xuu34000, ty_Integer) -> new_compare14(xuu33000, xuu34000) 26.72/10.95 new_lt20(xuu33000, xuu34000, app(app(ty_@2, dda), ddb)) -> new_lt8(xuu33000, xuu34000, dda, ddb) 26.72/10.95 new_esEs7(Left(xuu50000), Left(xuu4000), app(app(ty_Either, cab), cac), beh) -> new_esEs7(xuu50000, xuu4000, cab, cac) 26.72/10.95 new_compare25(Just(xuu3300), Nothing, False, cfd) -> GT 26.72/10.95 new_esEs28(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) 26.72/10.95 new_compare10(xuu129, xuu130, True, bd) -> LT 26.72/10.95 new_lt19(xuu33001, xuu34001, ty_Float) -> new_lt17(xuu33001, xuu34001) 26.72/10.95 new_compare24(xuu33000, xuu34000, False, bca, bcb) -> new_compare110(xuu33000, xuu34000, new_ltEs4(xuu33000, xuu34000, bca, bcb), bca, bcb) 26.72/10.95 new_ltEs19(xuu3300, xuu3400, app(ty_Maybe, cea)) -> new_ltEs8(xuu3300, xuu3400, cea) 26.72/10.95 new_esEs10(xuu50001, xuu4001, app(app(ty_@2, ca), cb)) -> new_esEs4(xuu50001, xuu4001, ca, cb) 26.72/10.95 new_primMulNat0(Succ(xuu5000100), Zero) -> Zero 26.72/10.95 new_primMulNat0(Zero, Succ(xuu400000)) -> Zero 26.72/10.95 new_esEs29(xuu5000, xuu400, ty_Double) -> new_esEs13(xuu5000, xuu400) 26.72/10.95 new_lt19(xuu33001, xuu34001, ty_Integer) -> new_lt11(xuu33001, xuu34001) 26.72/10.95 new_ltEs6(xuu33001, xuu34001, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_ltEs9(xuu33001, xuu34001, bdb, bdc, bdd) 26.72/10.95 new_lt20(xuu33000, xuu34000, ty_Bool) -> new_lt13(xuu33000, xuu34000) 26.72/10.95 new_esEs23(xuu33000, xuu34000, app(ty_Maybe, bcc)) -> new_esEs5(xuu33000, xuu34000, bcc) 26.72/10.95 new_compare9(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Int) -> new_compare6(new_sr(xuu33000, xuu34001), new_sr(xuu34000, xuu33001)) 26.72/10.95 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Bool) -> new_ltEs14(xuu33000, xuu34000) 26.72/10.95 new_ltEs17(xuu3300, xuu3400) -> new_fsEs(new_compare19(xuu3300, xuu3400)) 26.72/10.95 new_esEs28(xuu33000, xuu34000, ty_Int) -> new_esEs19(xuu33000, xuu34000) 26.72/10.95 new_primPlusNat0(Succ(xuu28200), Zero) -> Succ(xuu28200) 26.72/10.95 new_primPlusNat0(Zero, Succ(xuu9600)) -> Succ(xuu9600) 26.72/10.95 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Int, bfe) -> new_ltEs13(xuu33000, xuu34000) 26.72/10.95 new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare6(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 26.72/10.95 new_ltEs10(xuu3300, xuu3400) -> new_fsEs(new_compare14(xuu3300, xuu3400)) 26.72/10.95 new_esEs26(xuu50000, xuu4000, app(ty_Ratio, cgf)) -> new_esEs18(xuu50000, xuu4000, cgf) 26.72/10.95 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) 26.72/10.95 new_esEs11(xuu50000, xuu4000, app(app(ty_@2, dd), de)) -> new_esEs4(xuu50000, xuu4000, dd, de) 26.72/10.95 new_ltEs4(Left(xuu33000), Left(xuu34000), app(ty_Maybe, bfh), bfe) -> new_ltEs8(xuu33000, xuu34000, bfh) 26.72/10.95 new_compare8(xuu33000, xuu34000, app(app(ty_@2, bah), bba)) -> new_compare11(xuu33000, xuu34000, bah, bba) 26.72/10.95 new_esEs8(LT, LT) -> True 26.72/10.95 new_compare111(xuu33000, xuu34000, True) -> LT 26.72/10.95 new_lt6(xuu33000, xuu34000, ty_Integer) -> new_lt11(xuu33000, xuu34000) 26.72/10.95 new_lt20(xuu33000, xuu34000, ty_Int) -> new_lt4(xuu33000, xuu34000) 26.72/10.95 new_lt6(xuu33000, xuu34000, ty_Ordering) -> new_lt12(xuu33000, xuu34000) 26.72/10.95 new_lt19(xuu33001, xuu34001, app(app(ty_@2, dbg), dbh)) -> new_lt8(xuu33001, xuu34001, dbg, dbh) 26.72/10.95 new_lt15(xuu33000, xuu34000) -> new_esEs8(new_compare18(xuu33000, xuu34000), LT) 26.72/10.95 new_ltEs19(xuu3300, xuu3400, app(app(app(ty_@3, cfe), cff), cfg)) -> new_ltEs9(xuu3300, xuu3400, cfe, cff, cfg) 26.72/10.95 new_esEs22(xuu50000, xuu4000, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs6(xuu50000, xuu4000, bac, bad, bae) 26.72/10.95 new_lt13(xuu33000, xuu34000) -> new_esEs8(new_compare17(xuu33000, xuu34000), LT) 26.72/10.95 new_ltEs4(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, bga), bgb), bgc), bfe) -> new_ltEs9(xuu33000, xuu34000, bga, bgb, bgc) 26.72/10.95 new_esEs28(xuu33000, xuu34000, ty_Bool) -> new_esEs17(xuu33000, xuu34000) 26.72/10.95 new_lt6(xuu33000, xuu34000, app(ty_[], bef)) -> new_lt14(xuu33000, xuu34000, bef) 26.72/10.95 new_ltEs11(xuu3300, xuu3400) -> new_fsEs(new_compare15(xuu3300, xuu3400)) 26.72/10.95 new_lt5(xuu33000, xuu34000) -> new_esEs8(new_compare15(xuu33000, xuu34000), LT) 26.72/10.95 new_ltEs9(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), cfe, cff, cfg) -> new_pePe(new_lt20(xuu33000, xuu34000, cfe), new_asAs(new_esEs28(xuu33000, xuu34000, cfe), new_pePe(new_lt19(xuu33001, xuu34001, cff), new_asAs(new_esEs27(xuu33001, xuu34001, cff), new_ltEs20(xuu33002, xuu34002, cfg))))) 26.72/10.95 new_esEs11(xuu50000, xuu4000, ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.95 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Char, beh) -> new_esEs12(xuu50000, xuu4000) 26.72/10.95 new_esEs27(xuu33001, xuu34001, ty_@0) -> new_esEs9(xuu33001, xuu34001) 26.72/10.95 new_esEs23(xuu33000, xuu34000, app(app(app(ty_@3, bec), bed), bee)) -> new_esEs6(xuu33000, xuu34000, bec, bed, bee) 26.72/10.95 new_esEs16([], [], bfb) -> True 26.72/10.95 new_esEs29(xuu5000, xuu400, ty_Bool) -> new_esEs17(xuu5000, xuu400) 26.72/10.95 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Float) -> new_ltEs18(xuu33000, xuu34000) 26.72/10.95 new_primMulInt(Neg(xuu500010), Neg(xuu40000)) -> Pos(new_primMulNat0(xuu500010, xuu40000)) 26.72/10.95 new_compare25(xuu330, xuu340, True, cfd) -> EQ 26.72/10.95 new_esEs10(xuu50001, xuu4001, app(ty_Maybe, cc)) -> new_esEs5(xuu50001, xuu4001, cc) 26.72/10.95 new_lt20(xuu33000, xuu34000, ty_Ordering) -> new_lt12(xuu33000, xuu34000) 26.72/10.95 new_compare8(xuu33000, xuu34000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_compare13(xuu33000, xuu34000, bbc, bbd, bbe) 26.72/10.95 new_lt16(xuu33000, xuu34000) -> new_esEs8(new_compare19(xuu33000, xuu34000), LT) 26.72/10.95 new_esEs28(xuu33000, xuu34000, ty_Integer) -> new_esEs15(xuu33000, xuu34000) 26.72/10.95 new_esEs22(xuu50000, xuu4000, app(ty_Maybe, hh)) -> new_esEs5(xuu50000, xuu4000, hh) 26.72/10.95 new_ltEs18(xuu3300, xuu3400) -> new_fsEs(new_compare7(xuu3300, xuu3400)) 26.72/10.95 new_esEs27(xuu33001, xuu34001, ty_Int) -> new_esEs19(xuu33001, xuu34001) 26.72/10.95 new_lt19(xuu33001, xuu34001, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_lt10(xuu33001, xuu34001, dcb, dcc, dcd) 26.72/10.95 new_lt6(xuu33000, xuu34000, app(ty_Ratio, bdh)) -> new_lt7(xuu33000, xuu34000, bdh) 26.72/10.95 new_lt6(xuu33000, xuu34000, ty_Bool) -> new_lt13(xuu33000, xuu34000) 26.72/10.95 new_compare13(xuu33000, xuu34000, bec, bed, bee) -> new_compare29(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, bec, bed, bee), bec, bed, bee) 26.72/10.95 new_esEs20(xuu50002, xuu4002, ty_Float) -> new_esEs14(xuu50002, xuu4002) 26.72/10.95 new_esEs5(Just(xuu50000), Just(xuu4000), app(ty_Maybe, cdb)) -> new_esEs5(xuu50000, xuu4000, cdb) 26.72/10.95 new_esEs23(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) 26.72/10.95 new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(ty_Either, cfb), cfc)) -> new_ltEs4(xuu33000, xuu34000, cfb, cfc) 26.72/10.95 new_compare6(xuu33, xuu34) -> new_primCmpInt(xuu33, xuu34) 26.72/10.95 new_esEs11(xuu50000, xuu4000, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs6(xuu50000, xuu4000, ea, eb, ec) 26.72/10.95 new_esEs23(xuu33000, xuu34000, app(app(ty_@2, bea), beb)) -> new_esEs4(xuu33000, xuu34000, bea, beb) 26.72/10.95 new_compare112(xuu33000, xuu34000, True) -> LT 26.72/10.95 new_lt20(xuu33000, xuu34000, app(app(app(ty_@3, ddd), dde), ddf)) -> new_lt10(xuu33000, xuu34000, ddd, dde, ddf) 26.72/10.95 new_ltEs20(xuu33002, xuu34002, app(app(app(ty_@3, dah), dba), dbb)) -> new_ltEs9(xuu33002, xuu34002, dah, dba, dbb) 26.72/10.95 new_primMulInt(Pos(xuu500010), Neg(xuu40000)) -> Neg(new_primMulNat0(xuu500010, xuu40000)) 26.72/10.95 new_primMulInt(Neg(xuu500010), Pos(xuu40000)) -> Neg(new_primMulNat0(xuu500010, xuu40000)) 26.72/10.95 new_esEs12(Char(xuu50000), Char(xuu4000)) -> new_primEqNat0(xuu50000, xuu4000) 26.72/10.95 new_esEs26(xuu50000, xuu4000, app(app(ty_Either, cfh), cga)) -> new_esEs7(xuu50000, xuu4000, cfh, cga) 26.72/10.95 new_esEs20(xuu50002, xuu4002, ty_Integer) -> new_esEs15(xuu50002, xuu4002) 26.72/10.95 new_esEs22(xuu50000, xuu4000, ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.95 new_esEs28(xuu33000, xuu34000, ty_Double) -> new_esEs13(xuu33000, xuu34000) 26.72/10.95 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.95 new_compare15(Char(xuu33000), Char(xuu34000)) -> new_primCmpNat1(xuu33000, xuu34000) 26.72/10.95 new_compare17(xuu33000, xuu34000) -> new_compare27(xuu33000, xuu34000, new_esEs17(xuu33000, xuu34000)) 26.72/10.95 new_primCmpInt(Pos(Succ(xuu3300)), Pos(xuu340)) -> new_primCmpNat0(xuu3300, xuu340) 26.72/10.95 new_esEs22(xuu50000, xuu4000, app(app(ty_@2, hf), hg)) -> new_esEs4(xuu50000, xuu4000, hf, hg) 26.72/10.95 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(app(ty_Either, bhh), caa)) -> new_ltEs4(xuu33000, xuu34000, bhh, caa) 26.72/10.95 new_ltEs13(xuu3300, xuu3400) -> new_fsEs(new_compare6(xuu3300, xuu3400)) 26.72/10.95 new_primCmpNat1(Succ(xuu33000), Zero) -> GT 26.72/10.95 new_esEs30(xuu22, xuu17, ty_Bool) -> new_esEs17(xuu22, xuu17) 26.72/10.95 new_esEs27(xuu33001, xuu34001, ty_Char) -> new_esEs12(xuu33001, xuu34001) 26.72/10.95 new_compare8(xuu33000, xuu34000, app(ty_Maybe, bbb)) -> new_compare12(xuu33000, xuu34000, bbb) 26.72/10.95 new_ltEs6(xuu33001, xuu34001, ty_Int) -> new_ltEs13(xuu33001, xuu34001) 26.72/10.95 new_ltEs19(xuu3300, xuu3400, ty_Ordering) -> new_ltEs12(xuu3300, xuu3400) 26.72/10.95 new_lt6(xuu33000, xuu34000, ty_Int) -> new_lt4(xuu33000, xuu34000) 26.72/10.95 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(app(ty_@2, cbf), cbg)) -> new_esEs4(xuu50000, xuu4000, cbf, cbg) 26.72/10.95 new_sr0(Integer(xuu330000), Integer(xuu340010)) -> Integer(new_primMulInt(xuu330000, xuu340010)) 26.72/10.95 new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_Ratio, ceb)) -> new_ltEs7(xuu33000, xuu34000, ceb) 26.72/10.95 new_esEs29(xuu5000, xuu400, app(ty_Maybe, bfa)) -> new_esEs5(xuu5000, xuu400, bfa) 26.72/10.95 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(ty_Maybe, cbh)) -> new_esEs5(xuu50000, xuu4000, cbh) 26.72/10.95 new_esEs27(xuu33001, xuu34001, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_esEs6(xuu33001, xuu34001, dcb, dcc, dcd) 26.72/10.95 new_esEs20(xuu50002, xuu4002, ty_Bool) -> new_esEs17(xuu50002, xuu4002) 26.72/10.95 new_ltEs20(xuu33002, xuu34002, app(app(ty_Either, dbd), dbe)) -> new_ltEs4(xuu33002, xuu34002, dbd, dbe) 26.72/10.95 new_esEs7(Left(xuu50000), Left(xuu4000), app(ty_[], cag), beh) -> new_esEs16(xuu50000, xuu4000, cag) 26.72/10.95 new_esEs5(Just(xuu50000), Just(xuu4000), app(app(ty_Either, ccf), ccg)) -> new_esEs7(xuu50000, xuu4000, ccf, ccg) 26.72/10.95 new_primCmpNat0(xuu3300, Zero) -> GT 26.72/10.95 new_esEs29(xuu5000, xuu400, ty_Integer) -> new_esEs15(xuu5000, xuu400) 26.72/10.95 new_compare8(xuu33000, xuu34000, app(ty_[], bbf)) -> new_compare0(xuu33000, xuu34000, bbf) 26.72/10.95 new_lt20(xuu33000, xuu34000, ty_Double) -> new_lt16(xuu33000, xuu34000) 26.72/10.95 new_esEs30(xuu22, xuu17, ty_Integer) -> new_esEs15(xuu22, xuu17) 26.72/10.95 new_ltEs19(xuu3300, xuu3400, app(ty_[], baf)) -> new_ltEs15(xuu3300, xuu3400, baf) 26.72/10.95 new_esEs15(Integer(xuu50000), Integer(xuu4000)) -> new_primEqInt(xuu50000, xuu4000) 26.72/10.95 new_compare0([], :(xuu34000, xuu34001), baf) -> LT 26.72/10.95 new_asAs(True, xuu136) -> xuu136 26.72/10.95 new_compare113(xuu33000, xuu34000, True, bec, bed, bee) -> LT 26.72/10.95 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_@0) -> new_ltEs16(xuu33000, xuu34000) 26.72/10.95 new_compare9(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Integer) -> new_compare14(new_sr0(xuu33000, xuu34001), new_sr0(xuu34000, xuu33001)) 26.72/10.95 new_ltEs5(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), bcd, bce) -> new_pePe(new_lt6(xuu33000, xuu34000, bcd), new_asAs(new_esEs23(xuu33000, xuu34000, bcd), new_ltEs6(xuu33001, xuu34001, bce))) 26.72/10.95 new_esEs17(False, True) -> False 26.72/10.95 new_esEs17(True, False) -> False 26.72/10.95 new_esEs10(xuu50001, xuu4001, app(ty_[], cd)) -> new_esEs16(xuu50001, xuu4001, cd) 26.72/10.95 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Int, beh) -> new_esEs19(xuu50000, xuu4000) 26.72/10.95 new_esEs23(xuu33000, xuu34000, app(ty_Ratio, bdh)) -> new_esEs18(xuu33000, xuu34000, bdh) 26.72/10.95 new_ltEs16(xuu3300, xuu3400) -> new_fsEs(new_compare18(xuu3300, xuu3400)) 26.72/10.95 new_lt19(xuu33001, xuu34001, ty_Double) -> new_lt16(xuu33001, xuu34001) 26.72/10.95 new_esEs26(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.95 new_esEs20(xuu50002, xuu4002, app(ty_Maybe, fc)) -> new_esEs5(xuu50002, xuu4002, fc) 26.72/10.95 new_esEs5(Just(xuu50000), Just(xuu4000), app(app(ty_@2, cch), cda)) -> new_esEs4(xuu50000, xuu4000, cch, cda) 26.72/10.95 new_compare11(xuu33000, xuu34000, bea, beb) -> new_compare28(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, bea, beb), bea, beb) 26.72/10.95 new_esEs27(xuu33001, xuu34001, ty_Float) -> new_esEs14(xuu33001, xuu34001) 26.72/10.95 new_esEs10(xuu50001, xuu4001, ty_Integer) -> new_esEs15(xuu50001, xuu4001) 26.72/10.95 new_esEs24(xuu50001, xuu4001, ty_Integer) -> new_esEs15(xuu50001, xuu4001) 26.72/10.95 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.95 new_esEs29(xuu5000, xuu400, app(ty_[], bfb)) -> new_esEs16(xuu5000, xuu400, bfb) 26.72/10.95 new_lt10(xuu33000, xuu34000, bec, bed, bee) -> new_esEs8(new_compare13(xuu33000, xuu34000, bec, bed, bee), LT) 26.72/10.95 new_lt6(xuu33000, xuu34000, ty_@0) -> new_lt15(xuu33000, xuu34000) 26.72/10.95 new_compare24(xuu33000, xuu34000, True, bca, bcb) -> EQ 26.72/10.95 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.95 new_primPlusNat1(xuu106, xuu400000) -> new_primPlusNat0(xuu106, Succ(xuu400000)) 26.72/10.95 new_esEs9(@0, @0) -> True 26.72/10.95 new_ltEs20(xuu33002, xuu34002, app(ty_[], dbc)) -> new_ltEs15(xuu33002, xuu34002, dbc) 26.72/10.95 new_esEs7(Left(xuu50000), Left(xuu4000), app(ty_Maybe, caf), beh) -> new_esEs5(xuu50000, xuu4000, caf) 26.72/10.95 new_primCompAux00(xuu178, EQ) -> xuu178 26.72/10.95 new_esEs11(xuu50000, xuu4000, app(app(ty_Either, db), dc)) -> new_esEs7(xuu50000, xuu4000, db, dc) 26.72/10.95 new_compare0([], [], baf) -> EQ 26.72/10.95 new_sr(xuu50001, xuu4000) -> new_primMulInt(xuu50001, xuu4000) 26.72/10.95 new_esEs25(xuu50000, xuu4000, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.95 new_esEs10(xuu50001, xuu4001, ty_Bool) -> new_esEs17(xuu50001, xuu4001) 26.72/10.95 new_esEs21(xuu50001, xuu4001, app(app(ty_Either, gb), gc)) -> new_esEs7(xuu50001, xuu4001, gb, gc) 26.72/10.95 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Integer) -> new_ltEs10(xuu33000, xuu34000) 26.72/10.95 new_primMulNat0(Zero, Zero) -> Zero 26.72/10.95 new_lt18(xuu33000, xuu34000, bca, bcb) -> new_esEs8(new_compare23(xuu33000, xuu34000, bca, bcb), LT) 26.72/10.95 new_ltEs20(xuu33002, xuu34002, ty_Ordering) -> new_ltEs12(xuu33002, xuu34002) 26.72/10.95 new_esEs23(xuu33000, xuu34000, ty_Float) -> new_esEs14(xuu33000, xuu34000) 26.72/10.95 new_lt6(xuu33000, xuu34000, ty_Char) -> new_lt5(xuu33000, xuu34000) 26.72/10.95 new_lt6(xuu33000, xuu34000, app(ty_Maybe, bcc)) -> new_lt9(xuu33000, xuu34000, bcc) 26.72/10.95 new_primCmpInt(Neg(Succ(xuu3300)), Neg(xuu340)) -> new_primCmpNat2(xuu340, xuu3300) 26.72/10.95 new_esEs30(xuu22, xuu17, ty_Double) -> new_esEs13(xuu22, xuu17) 26.72/10.95 new_esEs27(xuu33001, xuu34001, ty_Ordering) -> new_esEs8(xuu33001, xuu34001) 26.72/10.95 new_esEs30(xuu22, xuu17, app(ty_[], chg)) -> new_esEs16(xuu22, xuu17, chg) 26.72/10.95 new_esEs23(xuu33000, xuu34000, ty_Char) -> new_esEs12(xuu33000, xuu34000) 26.72/10.95 new_ltEs19(xuu3300, xuu3400, app(ty_Ratio, cdh)) -> new_ltEs7(xuu3300, xuu3400, cdh) 26.72/10.95 new_primCmpInt(Neg(Zero), Neg(Succ(xuu3400))) -> new_primCmpNat0(xuu3400, Zero) 26.72/10.95 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.95 new_esEs30(xuu22, xuu17, app(ty_Maybe, chf)) -> new_esEs5(xuu22, xuu17, chf) 26.72/10.95 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_@0) -> new_ltEs16(xuu33000, xuu34000) 26.72/10.95 new_compare111(xuu33000, xuu34000, False) -> GT 26.72/10.95 new_primCmpNat1(Zero, Zero) -> EQ 26.72/10.95 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.95 new_compare12(xuu33000, xuu34000, bcc) -> new_compare25(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, bcc), bcc) 26.72/10.95 new_esEs22(xuu50000, xuu4000, app(app(ty_Either, hd), he)) -> new_esEs7(xuu50000, xuu4000, hd, he) 26.72/10.95 new_ltEs6(xuu33001, xuu34001, ty_Bool) -> new_ltEs14(xuu33001, xuu34001) 26.72/10.95 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.95 new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare6(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 26.72/10.95 new_esEs22(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.95 new_esEs22(xuu50000, xuu4000, ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.95 new_esEs27(xuu33001, xuu34001, app(ty_Ratio, dbf)) -> new_esEs18(xuu33001, xuu34001, dbf) 26.72/10.95 new_esEs4(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), be, bf) -> new_asAs(new_esEs11(xuu50000, xuu4000, be), new_esEs10(xuu50001, xuu4001, bf)) 26.72/10.95 new_compare8(xuu33000, xuu34000, ty_Char) -> new_compare15(xuu33000, xuu34000) 26.72/10.95 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Double) -> new_ltEs17(xuu33000, xuu34000) 26.72/10.95 new_esEs28(xuu33000, xuu34000, app(ty_Ratio, dch)) -> new_esEs18(xuu33000, xuu34000, dch) 26.72/10.95 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.95 new_esEs16(:(xuu50000, xuu50001), :(xuu4000, xuu4001), bfb) -> new_asAs(new_esEs26(xuu50000, xuu4000, bfb), new_esEs16(xuu50001, xuu4001, bfb)) 26.72/10.95 new_ltEs14(False, True) -> True 26.72/10.95 new_ltEs19(xuu3300, xuu3400, ty_@0) -> new_ltEs16(xuu3300, xuu3400) 26.72/10.95 new_ltEs12(GT, LT) -> False 26.72/10.95 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Char) -> new_ltEs11(xuu33000, xuu34000) 26.72/10.95 new_compare29(xuu33000, xuu34000, True, bec, bed, bee) -> EQ 26.72/10.95 new_compare8(xuu33000, xuu34000, ty_Bool) -> new_compare17(xuu33000, xuu34000) 26.72/10.95 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Ordering, beh) -> new_esEs8(xuu50000, xuu4000) 26.72/10.95 new_compare7(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare6(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 26.72/10.95 new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_Maybe, cee)) -> new_ltEs8(xuu33000, xuu34000, cee) 26.72/10.95 new_esEs30(xuu22, xuu17, ty_@0) -> new_esEs9(xuu22, xuu17) 26.72/10.95 new_primEqInt(Neg(Succ(xuu500000)), Neg(Zero)) -> False 26.72/10.95 new_primEqInt(Neg(Zero), Neg(Succ(xuu40000))) -> False 26.72/10.95 new_ltEs8(Nothing, Just(xuu34000), cea) -> True 26.72/10.95 new_primEqInt(Pos(Succ(xuu500000)), Pos(Succ(xuu40000))) -> new_primEqNat0(xuu500000, xuu40000) 26.72/10.95 new_esEs20(xuu50002, xuu4002, ty_Double) -> new_esEs13(xuu50002, xuu4002) 26.72/10.95 new_esEs20(xuu50002, xuu4002, app(ty_[], fd)) -> new_esEs16(xuu50002, xuu4002, fd) 26.72/10.95 new_esEs26(xuu50000, xuu4000, app(app(ty_@2, cgb), cgc)) -> new_esEs4(xuu50000, xuu4000, cgb, cgc) 26.72/10.95 new_ltEs4(Left(xuu33000), Left(xuu34000), app(app(ty_Either, bge), bgf), bfe) -> new_ltEs4(xuu33000, xuu34000, bge, bgf) 26.72/10.95 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(ty_[], cca)) -> new_esEs16(xuu50000, xuu4000, cca) 26.72/10.95 new_esEs14(Float(xuu50000, xuu50001), Float(xuu4000, xuu4001)) -> new_esEs19(new_sr(xuu50000, xuu4001), new_sr(xuu50001, xuu4000)) 26.72/10.95 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(app(ty_Either, cbd), cbe)) -> new_esEs7(xuu50000, xuu4000, cbd, cbe) 26.72/10.95 new_esEs26(xuu50000, xuu4000, ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.95 new_primEqInt(Pos(Succ(xuu500000)), Neg(xuu4000)) -> False 26.72/10.95 new_primEqInt(Neg(Succ(xuu500000)), Pos(xuu4000)) -> False 26.72/10.95 new_ltEs20(xuu33002, xuu34002, app(ty_Ratio, dad)) -> new_ltEs7(xuu33002, xuu34002, dad) 26.72/10.95 new_esEs11(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.95 new_lt6(xuu33000, xuu34000, ty_Float) -> new_lt17(xuu33000, xuu34000) 26.72/10.95 new_esEs29(xuu5000, xuu400, ty_@0) -> new_esEs9(xuu5000, xuu400) 26.72/10.95 new_lt4(xuu330, xuu340) -> new_esEs8(new_compare6(xuu330, xuu340), LT) 26.72/10.95 new_ltEs12(EQ, GT) -> True 26.72/10.95 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 26.72/10.95 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Ordering, bfe) -> new_ltEs12(xuu33000, xuu34000) 26.72/10.95 new_esEs28(xuu33000, xuu34000, ty_Float) -> new_esEs14(xuu33000, xuu34000) 26.72/10.95 new_esEs28(xuu33000, xuu34000, app(ty_Maybe, ddc)) -> new_esEs5(xuu33000, xuu34000, ddc) 26.72/10.95 new_esEs17(True, True) -> True 26.72/10.95 new_ltEs12(EQ, EQ) -> True 26.72/10.95 new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, cef), ceg), ceh)) -> new_ltEs9(xuu33000, xuu34000, cef, ceg, ceh) 26.72/10.95 new_primCmpInt(Pos(Zero), Pos(Succ(xuu3400))) -> new_primCmpNat2(Zero, xuu3400) 26.72/10.95 new_esEs21(xuu50001, xuu4001, ty_Integer) -> new_esEs15(xuu50001, xuu4001) 26.72/10.95 new_ltEs20(xuu33002, xuu34002, ty_Int) -> new_ltEs13(xuu33002, xuu34002) 26.72/10.95 new_esEs26(xuu50000, xuu4000, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs6(xuu50000, xuu4000, cgg, cgh, cha) 26.72/10.95 new_esEs10(xuu50001, xuu4001, ty_Double) -> new_esEs13(xuu50001, xuu4001) 26.72/10.95 new_lt11(xuu33000, xuu34000) -> new_esEs8(new_compare14(xuu33000, xuu34000), LT) 26.72/10.95 new_esEs21(xuu50001, xuu4001, ty_Bool) -> new_esEs17(xuu50001, xuu4001) 26.72/10.95 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) 26.72/10.95 new_esEs23(xuu33000, xuu34000, ty_Bool) -> new_esEs17(xuu33000, xuu34000) 26.72/10.95 new_not(False) -> True 26.72/10.95 new_compare27(xuu33000, xuu34000, False) -> new_compare112(xuu33000, xuu34000, new_ltEs14(xuu33000, xuu34000)) 26.72/10.95 new_esEs30(xuu22, xuu17, app(ty_Ratio, chh)) -> new_esEs18(xuu22, xuu17, chh) 26.72/10.95 new_esEs5(Just(xuu50000), Just(xuu4000), ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.95 new_esEs27(xuu33001, xuu34001, app(app(ty_Either, dcf), dcg)) -> new_esEs7(xuu33001, xuu34001, dcf, dcg) 26.72/10.95 new_compare0(:(xuu33000, xuu33001), [], baf) -> GT 26.72/10.95 new_esEs8(LT, GT) -> False 26.72/10.95 new_esEs8(GT, LT) -> False 26.72/10.95 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Bool, bfe) -> new_ltEs14(xuu33000, xuu34000) 26.72/10.95 new_primPlusNat0(Succ(xuu28200), Succ(xuu9600)) -> Succ(Succ(new_primPlusNat0(xuu28200, xuu9600))) 26.72/10.95 new_esEs20(xuu50002, xuu4002, app(ty_Ratio, ff)) -> new_esEs18(xuu50002, xuu4002, ff) 26.72/10.95 new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_[], cfa)) -> new_ltEs15(xuu33000, xuu34000, cfa) 26.72/10.95 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Double) -> new_ltEs17(xuu33000, xuu34000) 26.72/10.95 new_esEs7(Left(xuu50000), Left(xuu4000), app(ty_Ratio, cah), beh) -> new_esEs18(xuu50000, xuu4000, cah) 26.72/10.95 new_esEs11(xuu50000, xuu4000, ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.95 new_esEs21(xuu50001, xuu4001, ty_Char) -> new_esEs12(xuu50001, xuu4001) 26.72/10.95 new_compare8(xuu33000, xuu34000, app(app(ty_Either, bbg), bbh)) -> new_compare23(xuu33000, xuu34000, bbg, bbh) 26.72/10.95 new_esEs29(xuu5000, xuu400, app(ty_Ratio, bfc)) -> new_esEs18(xuu5000, xuu400, bfc) 26.72/10.95 new_ltEs4(Left(xuu33000), Right(xuu34000), bgg, bfe) -> True 26.72/10.95 new_esEs30(xuu22, xuu17, app(app(app(ty_@3, daa), dab), dac)) -> new_esEs6(xuu22, xuu17, daa, dab, dac) 26.72/10.95 new_ltEs6(xuu33001, xuu34001, ty_Integer) -> new_ltEs10(xuu33001, xuu34001) 26.72/10.95 new_esEs26(xuu50000, xuu4000, app(ty_Maybe, cgd)) -> new_esEs5(xuu50000, xuu4000, cgd) 26.72/10.95 new_primCmpNat1(Zero, Succ(xuu34000)) -> LT 26.72/10.95 new_esEs22(xuu50000, xuu4000, ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.95 new_compare25(Nothing, Nothing, False, cfd) -> LT 26.72/10.95 new_lt20(xuu33000, xuu34000, app(app(ty_Either, ddh), dea)) -> new_lt18(xuu33000, xuu34000, ddh, dea) 26.72/10.95 new_ltEs7(xuu3300, xuu3400, cdh) -> new_fsEs(new_compare9(xuu3300, xuu3400, cdh)) 26.72/10.95 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 26.72/10.95 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 26.72/10.95 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.95 new_compare0(:(xuu33000, xuu33001), :(xuu34000, xuu34001), baf) -> new_primCompAux0(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, baf), baf) 26.72/10.95 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Float) -> new_ltEs18(xuu33000, xuu34000) 26.72/10.95 new_ltEs6(xuu33001, xuu34001, ty_Ordering) -> new_ltEs12(xuu33001, xuu34001) 26.72/10.95 new_ltEs4(Left(xuu33000), Left(xuu34000), app(ty_Ratio, bfd), bfe) -> new_ltEs7(xuu33000, xuu34000, bfd) 26.72/10.95 new_esEs23(xuu33000, xuu34000, ty_Int) -> new_esEs19(xuu33000, xuu34000) 26.72/10.95 new_esEs27(xuu33001, xuu34001, app(app(ty_@2, dbg), dbh)) -> new_esEs4(xuu33001, xuu34001, dbg, dbh) 26.72/10.95 new_esEs21(xuu50001, xuu4001, app(ty_[], gg)) -> new_esEs16(xuu50001, xuu4001, gg) 26.72/10.95 new_ltEs6(xuu33001, xuu34001, ty_Char) -> new_ltEs11(xuu33001, xuu34001) 26.72/10.95 new_ltEs4(Left(xuu33000), Left(xuu34000), app(app(ty_@2, bff), bfg), bfe) -> new_ltEs5(xuu33000, xuu34000, bff, bfg) 26.72/10.95 new_esEs20(xuu50002, xuu4002, ty_@0) -> new_esEs9(xuu50002, xuu4002) 26.72/10.95 new_ltEs19(xuu3300, xuu3400, app(app(ty_Either, bgg), bfe)) -> new_ltEs4(xuu3300, xuu3400, bgg, bfe) 26.72/10.95 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 26.72/10.95 new_esEs17(False, False) -> True 26.72/10.95 new_esEs28(xuu33000, xuu34000, app(app(ty_@2, dda), ddb)) -> new_esEs4(xuu33000, xuu34000, dda, ddb) 26.72/10.95 new_esEs22(xuu50000, xuu4000, ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.95 new_ltEs12(EQ, LT) -> False 26.72/10.95 new_ltEs14(False, False) -> True 26.72/10.95 new_ltEs6(xuu33001, xuu34001, ty_Float) -> new_ltEs18(xuu33001, xuu34001) 26.72/10.95 new_ltEs8(Nothing, Nothing, cea) -> True 26.72/10.95 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.95 new_ltEs8(Just(xuu33000), Nothing, cea) -> False 26.72/10.95 new_esEs11(xuu50000, xuu4000, ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.95 new_lt6(xuu33000, xuu34000, ty_Double) -> new_lt16(xuu33000, xuu34000) 26.72/10.95 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.95 new_ltEs19(xuu3300, xuu3400, ty_Int) -> new_ltEs13(xuu3300, xuu3400) 26.72/10.95 new_esEs28(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) 26.72/10.95 new_esEs11(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.95 new_ltEs19(xuu3300, xuu3400, ty_Float) -> new_ltEs18(xuu3300, xuu3400) 26.72/10.95 new_esEs16(:(xuu50000, xuu50001), [], bfb) -> False 26.72/10.95 new_esEs16([], :(xuu4000, xuu4001), bfb) -> False 26.72/10.95 new_esEs5(Just(xuu50000), Just(xuu4000), app(ty_[], cdc)) -> new_esEs16(xuu50000, xuu4000, cdc) 26.72/10.95 new_esEs23(xuu33000, xuu34000, app(ty_[], bef)) -> new_esEs16(xuu33000, xuu34000, bef) 26.72/10.95 new_ltEs6(xuu33001, xuu34001, app(app(ty_Either, bdf), bdg)) -> new_ltEs4(xuu33001, xuu34001, bdf, bdg) 26.72/10.95 new_primCmpNat2(Succ(xuu3400), xuu3300) -> new_primCmpNat1(xuu3400, xuu3300) 26.72/10.95 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 26.72/10.95 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 26.72/10.95 new_esEs23(xuu33000, xuu34000, ty_Double) -> new_esEs13(xuu33000, xuu34000) 26.72/10.95 new_ltEs12(LT, EQ) -> True 26.72/10.95 new_compare25(Nothing, Just(xuu3400), False, cfd) -> LT 26.72/10.95 new_esEs29(xuu5000, xuu400, app(app(ty_@2, be), bf)) -> new_esEs4(xuu5000, xuu400, be, bf) 26.72/10.95 new_compare110(xuu33000, xuu34000, False, bca, bcb) -> GT 26.72/10.95 new_esEs21(xuu50001, xuu4001, ty_Int) -> new_esEs19(xuu50001, xuu4001) 26.72/10.95 new_lt19(xuu33001, xuu34001, ty_@0) -> new_lt15(xuu33001, xuu34001) 26.72/10.95 new_esEs11(xuu50000, xuu4000, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.95 new_esEs23(xuu33000, xuu34000, ty_Integer) -> new_esEs15(xuu33000, xuu34000) 26.72/10.95 new_lt20(xuu33000, xuu34000, ty_Char) -> new_lt5(xuu33000, xuu34000) 26.72/10.95 new_primEqNat0(Zero, Zero) -> True 26.72/10.95 new_compare8(xuu33000, xuu34000, ty_@0) -> new_compare18(xuu33000, xuu34000) 26.72/10.95 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.95 new_ltEs20(xuu33002, xuu34002, ty_Float) -> new_ltEs18(xuu33002, xuu34002) 26.72/10.95 new_esEs28(xuu33000, xuu34000, app(app(app(ty_@3, ddd), dde), ddf)) -> new_esEs6(xuu33000, xuu34000, ddd, dde, ddf) 26.72/10.95 new_esEs30(xuu22, xuu17, app(app(ty_Either, chb), chc)) -> new_esEs7(xuu22, xuu17, chb, chc) 26.72/10.95 new_esEs10(xuu50001, xuu4001, ty_@0) -> new_esEs9(xuu50001, xuu4001) 26.72/10.95 new_esEs29(xuu5000, xuu400, ty_Ordering) -> new_esEs8(xuu5000, xuu400) 26.72/10.95 new_compare23(xuu33000, xuu34000, bca, bcb) -> new_compare24(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, bca, bcb), bca, bcb) 26.72/10.95 new_ltEs14(True, False) -> False 26.72/10.95 new_esEs26(xuu50000, xuu4000, ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.95 new_compare113(xuu33000, xuu34000, False, bec, bed, bee) -> GT 26.72/10.95 new_esEs22(xuu50000, xuu4000, app(ty_[], baa)) -> new_esEs16(xuu50000, xuu4000, baa) 26.72/10.95 new_esEs22(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.95 new_asAs(False, xuu136) -> False 26.72/10.95 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Float, beh) -> new_esEs14(xuu50000, xuu4000) 26.72/10.95 new_esEs20(xuu50002, xuu4002, ty_Char) -> new_esEs12(xuu50002, xuu4002) 26.72/10.95 new_esEs29(xuu5000, xuu400, app(app(ty_Either, beg), beh)) -> new_esEs7(xuu5000, xuu400, beg, beh) 26.72/10.95 new_esEs27(xuu33001, xuu34001, app(ty_Maybe, dca)) -> new_esEs5(xuu33001, xuu34001, dca) 26.72/10.95 new_lt19(xuu33001, xuu34001, ty_Char) -> new_lt5(xuu33001, xuu34001) 26.72/10.95 new_compare28(xuu33000, xuu34000, True, bea, beb) -> EQ 26.72/10.95 new_lt20(xuu33000, xuu34000, ty_@0) -> new_lt15(xuu33000, xuu34000) 26.72/10.95 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Int) -> new_ltEs13(xuu33000, xuu34000) 26.72/10.95 new_esEs8(EQ, GT) -> False 26.72/10.95 new_esEs8(GT, EQ) -> False 26.72/10.95 new_ltEs4(Right(xuu33000), Left(xuu34000), bgg, bfe) -> False 26.72/10.95 new_esEs10(xuu50001, xuu4001, ty_Int) -> new_esEs19(xuu50001, xuu4001) 26.72/10.95 new_compare27(xuu33000, xuu34000, True) -> EQ 26.72/10.95 new_esEs7(Left(xuu50000), Right(xuu4000), beg, beh) -> False 26.72/10.95 new_esEs7(Right(xuu50000), Left(xuu4000), beg, beh) -> False 26.72/10.95 new_compare18(@0, @0) -> EQ 26.72/10.95 new_esEs11(xuu50000, xuu4000, app(ty_[], dg)) -> new_esEs16(xuu50000, xuu4000, dg) 26.72/10.95 new_compare14(Integer(xuu33000), Integer(xuu34000)) -> new_primCmpInt(xuu33000, xuu34000) 26.72/10.95 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(ty_Maybe, bhc)) -> new_ltEs8(xuu33000, xuu34000, bhc) 26.72/10.95 new_lt6(xuu33000, xuu34000, app(app(ty_Either, bca), bcb)) -> new_lt18(xuu33000, xuu34000, bca, bcb) 26.72/10.95 new_esEs21(xuu50001, xuu4001, ty_@0) -> new_esEs9(xuu50001, xuu4001) 26.72/10.95 new_compare16(xuu33000, xuu34000) -> new_compare26(xuu33000, xuu34000, new_esEs8(xuu33000, xuu34000)) 26.72/10.95 26.72/10.95 The set Q consists of the following terms: 26.72/10.95 26.72/10.95 new_esEs7(Right(x0), Right(x1), x2, ty_Integer) 26.72/10.95 new_ltEs8(Just(x0), Just(x1), ty_Bool) 26.72/10.95 new_esEs8(EQ, EQ) 26.72/10.95 new_esEs21(x0, x1, ty_Integer) 26.72/10.95 new_lt6(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.95 new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_esEs29(x0, x1, ty_Double) 26.72/10.95 new_esEs22(x0, x1, ty_@0) 26.72/10.95 new_compare0(:(x0, x1), [], x2) 26.72/10.95 new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) 26.72/10.95 new_esEs7(Left(x0), Left(x1), ty_Double, x2) 26.72/10.95 new_compare26(x0, x1, False) 26.72/10.95 new_esEs27(x0, x1, ty_Double) 26.72/10.95 new_esEs29(x0, x1, ty_Ordering) 26.72/10.95 new_compare8(x0, x1, ty_Double) 26.72/10.95 new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) 26.72/10.95 new_lt20(x0, x1, ty_Integer) 26.72/10.95 new_ltEs11(x0, x1) 26.72/10.95 new_esEs30(x0, x1, ty_Bool) 26.72/10.95 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 26.72/10.95 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 26.72/10.95 new_esEs22(x0, x1, ty_Bool) 26.72/10.95 new_esEs30(x0, x1, app(ty_Ratio, x2)) 26.72/10.95 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 26.72/10.95 new_lt6(x0, x1, app(ty_[], x2)) 26.72/10.95 new_esEs26(x0, x1, app(ty_Ratio, x2)) 26.72/10.95 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 26.72/10.95 new_compare12(x0, x1, x2) 26.72/10.95 new_ltEs8(Just(x0), Just(x1), ty_@0) 26.72/10.95 new_esEs26(x0, x1, ty_@0) 26.72/10.95 new_lt6(x0, x1, ty_Bool) 26.72/10.95 new_lt19(x0, x1, ty_@0) 26.72/10.95 new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_lt6(x0, x1, ty_@0) 26.72/10.95 new_primCmpNat1(Zero, Zero) 26.72/10.95 new_ltEs13(x0, x1) 26.72/10.95 new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.95 new_primCompAux00(x0, EQ) 26.72/10.95 new_compare8(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.95 new_compare28(x0, x1, True, x2, x3) 26.72/10.95 new_lt5(x0, x1) 26.72/10.95 new_esEs23(x0, x1, ty_Float) 26.72/10.95 new_esEs29(x0, x1, ty_Int) 26.72/10.95 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_esEs7(Left(x0), Left(x1), ty_Int, x2) 26.72/10.95 new_primEqInt(Pos(Zero), Pos(Zero)) 26.72/10.95 new_compare15(Char(x0), Char(x1)) 26.72/10.95 new_lt13(x0, x1) 26.72/10.95 new_compare6(x0, x1) 26.72/10.95 new_primCmpNat2(Zero, x0) 26.72/10.95 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_ltEs6(x0, x1, ty_Ordering) 26.72/10.95 new_esEs17(False, False) 26.72/10.95 new_lt9(x0, x1, x2) 26.72/10.95 new_esEs27(x0, x1, ty_Ordering) 26.72/10.95 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 26.72/10.95 new_esEs11(x0, x1, ty_Float) 26.72/10.95 new_primEqNat0(Zero, Succ(x0)) 26.72/10.95 new_primEqInt(Neg(Zero), Neg(Zero)) 26.72/10.95 new_esEs29(x0, x1, ty_Char) 26.72/10.95 new_esEs27(x0, x1, ty_Int) 26.72/10.95 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_lt19(x0, x1, ty_Int) 26.72/10.95 new_compare10(x0, x1, True, x2) 26.72/10.95 new_pePe(True, x0) 26.72/10.95 new_ltEs6(x0, x1, ty_Int) 26.72/10.95 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.95 new_esEs26(x0, x1, app(ty_Maybe, x2)) 26.72/10.95 new_lt6(x0, x1, ty_Integer) 26.72/10.95 new_esEs27(x0, x1, ty_Char) 26.72/10.95 new_esEs29(x0, x1, app(ty_Ratio, x2)) 26.72/10.95 new_compare113(x0, x1, True, x2, x3, x4) 26.72/10.95 new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.72/10.95 new_esEs20(x0, x1, ty_Integer) 26.72/10.95 new_esEs7(Right(x0), Right(x1), x2, ty_@0) 26.72/10.95 new_esEs7(Left(x0), Left(x1), ty_Char, x2) 26.72/10.95 new_ltEs12(GT, EQ) 26.72/10.95 new_ltEs12(EQ, GT) 26.72/10.95 new_esEs7(Right(x0), Right(x1), x2, ty_Float) 26.72/10.95 new_ltEs4(Right(x0), Right(x1), x2, ty_Ordering) 26.72/10.95 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.95 new_lt17(x0, x1) 26.72/10.95 new_esEs20(x0, x1, ty_Bool) 26.72/10.95 new_ltEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 26.72/10.95 new_compare112(x0, x1, True) 26.72/10.95 new_esEs26(x0, x1, ty_Int) 26.72/10.95 new_lt19(x0, x1, ty_Bool) 26.72/10.95 new_esEs30(x0, x1, ty_Integer) 26.72/10.95 new_lt6(x0, x1, app(ty_Ratio, x2)) 26.72/10.95 new_primMulInt(Pos(x0), Pos(x1)) 26.72/10.95 new_primEqInt(Pos(Zero), Neg(Zero)) 26.72/10.95 new_primEqInt(Neg(Zero), Pos(Zero)) 26.72/10.95 new_primMulNat0(Succ(x0), Succ(x1)) 26.72/10.95 new_ltEs6(x0, x1, ty_Double) 26.72/10.95 new_esEs10(x0, x1, app(ty_Maybe, x2)) 26.72/10.95 new_esEs18(:%(x0, x1), :%(x2, x3), x4) 26.72/10.95 new_esEs26(x0, x1, ty_Bool) 26.72/10.95 new_compare11(x0, x1, x2, x3) 26.72/10.95 new_esEs16([], :(x0, x1), x2) 26.72/10.95 new_esEs26(x0, x1, ty_Char) 26.72/10.95 new_ltEs6(x0, x1, ty_Char) 26.72/10.95 new_esEs26(x0, x1, ty_Double) 26.72/10.95 new_esEs20(x0, x1, app(ty_Maybe, x2)) 26.72/10.95 new_compare8(x0, x1, ty_Ordering) 26.72/10.95 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 26.72/10.95 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.72/10.95 new_compare110(x0, x1, False, x2, x3) 26.72/10.95 new_esEs22(x0, x1, app(ty_Maybe, x2)) 26.72/10.95 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 26.72/10.95 new_esEs5(Just(x0), Nothing, x1) 26.72/10.95 new_ltEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.72/10.95 new_ltEs19(x0, x1, app(ty_[], x2)) 26.72/10.95 new_esEs28(x0, x1, app(ty_Ratio, x2)) 26.72/10.95 new_lt19(x0, x1, ty_Char) 26.72/10.95 new_lt11(x0, x1) 26.72/10.95 new_ltEs8(Just(x0), Just(x1), ty_Integer) 26.72/10.95 new_lt19(x0, x1, ty_Double) 26.72/10.95 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.72/10.95 new_lt20(x0, x1, app(ty_Maybe, x2)) 26.72/10.95 new_compare13(x0, x1, x2, x3, x4) 26.72/10.95 new_sr(x0, x1) 26.72/10.95 new_fsEs(x0) 26.72/10.95 new_esEs28(x0, x1, ty_Ordering) 26.72/10.95 new_compare17(x0, x1) 26.72/10.95 new_compare8(x0, x1, ty_@0) 26.72/10.95 new_esEs30(x0, x1, ty_Ordering) 26.72/10.95 new_esEs7(Left(x0), Left(x1), ty_Bool, x2) 26.72/10.95 new_esEs27(x0, x1, ty_@0) 26.72/10.95 new_compare7(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 26.72/10.95 new_compare7(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 26.72/10.95 new_compare7(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 26.72/10.95 new_esEs9(@0, @0) 26.72/10.95 new_compare28(x0, x1, False, x2, x3) 26.72/10.95 new_compare25(x0, x1, True, x2) 26.72/10.95 new_ltEs8(Just(x0), Just(x1), ty_Double) 26.72/10.95 new_esEs22(x0, x1, ty_Float) 26.72/10.95 new_compare27(x0, x1, True) 26.72/10.95 new_ltEs4(Right(x0), Right(x1), x2, ty_Integer) 26.72/10.95 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.72/10.95 new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.72/10.95 new_esEs24(x0, x1, ty_Int) 26.72/10.95 new_esEs5(Just(x0), Just(x1), ty_Double) 26.72/10.95 new_esEs16(:(x0, x1), [], x2) 26.72/10.95 new_primCompAux00(x0, LT) 26.72/10.95 new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) 26.72/10.95 new_esEs29(x0, x1, ty_@0) 26.72/10.95 new_ltEs8(Just(x0), Just(x1), ty_Ordering) 26.72/10.95 new_esEs28(x0, x1, ty_Char) 26.72/10.95 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.95 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.95 new_esEs30(x0, x1, ty_Double) 26.72/10.95 new_compare26(x0, x1, True) 26.72/10.95 new_esEs11(x0, x1, app(ty_Maybe, x2)) 26.72/10.95 new_esEs15(Integer(x0), Integer(x1)) 26.72/10.95 new_lt19(x0, x1, app(ty_[], x2)) 26.72/10.95 new_esEs21(x0, x1, app(ty_Ratio, x2)) 26.72/10.95 new_ltEs15(x0, x1, x2) 26.72/10.95 new_esEs26(x0, x1, ty_Float) 26.72/10.95 new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.72/10.95 new_asAs(True, x0) 26.72/10.95 new_esEs16(:(x0, x1), :(x2, x3), x4) 26.72/10.95 new_lt8(x0, x1, x2, x3) 26.72/10.95 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.95 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.95 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.95 new_ltEs20(x0, x1, ty_Integer) 26.72/10.95 new_compare29(x0, x1, False, x2, x3, x4) 26.72/10.95 new_esEs22(x0, x1, app(ty_[], x2)) 26.72/10.95 new_esEs16([], [], x0) 26.72/10.95 new_ltEs20(x0, x1, ty_Float) 26.72/10.95 new_compare111(x0, x1, True) 26.72/10.95 new_esEs22(x0, x1, ty_Ordering) 26.72/10.95 new_compare110(x0, x1, True, x2, x3) 26.72/10.95 new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 26.72/10.95 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 26.72/10.95 new_compare0([], [], x0) 26.72/10.95 new_esEs7(Right(x0), Right(x1), x2, ty_Double) 26.72/10.95 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_ltEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.72/10.95 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_ltEs19(x0, x1, ty_Double) 26.72/10.95 new_esEs8(GT, GT) 26.72/10.95 new_esEs22(x0, x1, ty_Int) 26.72/10.95 new_esEs20(x0, x1, ty_Char) 26.72/10.95 new_ltEs12(EQ, LT) 26.72/10.95 new_ltEs12(LT, EQ) 26.72/10.95 new_compare0([], :(x0, x1), x2) 26.72/10.95 new_esEs8(LT, EQ) 26.72/10.95 new_esEs8(EQ, LT) 26.72/10.95 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.95 new_ltEs12(GT, GT) 26.72/10.95 new_esEs27(x0, x1, app(ty_Maybe, x2)) 26.72/10.95 new_primMulNat0(Succ(x0), Zero) 26.72/10.95 new_primCmpInt(Neg(Zero), Neg(Zero)) 26.72/10.95 new_esEs22(x0, x1, ty_Char) 26.72/10.95 new_esEs21(x0, x1, app(ty_[], x2)) 26.72/10.95 new_lt20(x0, x1, ty_@0) 26.72/10.95 new_esEs28(x0, x1, ty_Bool) 26.72/10.95 new_compare25(Nothing, Nothing, False, x0) 26.72/10.95 new_esEs19(x0, x1) 26.72/10.95 new_esEs11(x0, x1, ty_Double) 26.72/10.95 new_lt14(x0, x1, x2) 26.72/10.95 new_ltEs14(False, False) 26.72/10.95 new_esEs11(x0, x1, ty_@0) 26.72/10.95 new_esEs23(x0, x1, ty_Int) 26.72/10.95 new_compare10(x0, x1, False, x2) 26.72/10.95 new_ltEs6(x0, x1, app(ty_Ratio, x2)) 26.72/10.95 new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.72/10.95 new_lt19(x0, x1, ty_Integer) 26.72/10.95 new_esEs8(LT, LT) 26.72/10.95 new_esEs23(x0, x1, ty_Integer) 26.72/10.95 new_compare8(x0, x1, app(ty_Maybe, x2)) 26.72/10.95 new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 26.72/10.95 new_primCmpInt(Pos(Zero), Neg(Zero)) 26.72/10.95 new_primCmpInt(Neg(Zero), Pos(Zero)) 26.72/10.95 new_esEs30(x0, x1, app(ty_Maybe, x2)) 26.72/10.95 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.95 new_esEs28(x0, x1, ty_Float) 26.72/10.95 new_esEs20(x0, x1, ty_Int) 26.72/10.95 new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.72/10.95 new_esEs21(x0, x1, ty_@0) 26.72/10.95 new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.72/10.95 new_lt19(x0, x1, app(ty_Maybe, x2)) 26.72/10.95 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 26.72/10.95 new_esEs10(x0, x1, ty_Char) 26.72/10.95 new_ltEs4(Right(x0), Right(x1), x2, ty_Bool) 26.72/10.95 new_primEqNat0(Succ(x0), Zero) 26.72/10.95 new_lt15(x0, x1) 26.72/10.95 new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.95 new_ltEs20(x0, x1, ty_Int) 26.72/10.95 new_ltEs4(Right(x0), Right(x1), x2, ty_Float) 26.72/10.95 new_ltEs20(x0, x1, ty_Bool) 26.72/10.95 new_esEs22(x0, x1, ty_Integer) 26.72/10.95 new_esEs23(x0, x1, ty_Char) 26.72/10.95 new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.72/10.95 new_esEs29(x0, x1, app(ty_[], x2)) 26.72/10.95 new_esEs10(x0, x1, ty_Int) 26.72/10.95 new_esEs22(x0, x1, app(ty_Ratio, x2)) 26.72/10.95 new_ltEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.72/10.95 new_ltEs19(x0, x1, ty_@0) 26.72/10.95 new_esEs28(x0, x1, app(ty_[], x2)) 26.72/10.95 new_esEs28(x0, x1, ty_Int) 26.72/10.95 new_ltEs20(x0, x1, ty_Char) 26.72/10.95 new_compare114(x0, x1, False, x2, x3) 26.72/10.95 new_ltEs12(LT, LT) 26.72/10.95 new_esEs5(Nothing, Nothing, x0) 26.72/10.95 new_esEs20(x0, x1, ty_Float) 26.72/10.95 new_ltEs4(Left(x0), Left(x1), ty_Double, x2) 26.72/10.95 new_lt19(x0, x1, ty_Ordering) 26.72/10.95 new_esEs23(x0, x1, app(ty_Maybe, x2)) 26.72/10.95 new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) 26.72/10.95 new_ltEs4(Right(x0), Right(x1), x2, ty_Int) 26.72/10.95 new_esEs21(x0, x1, ty_Double) 26.72/10.95 new_esEs23(x0, x1, ty_Bool) 26.72/10.95 new_ltEs7(x0, x1, x2) 26.72/10.95 new_ltEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.72/10.95 new_ltEs17(x0, x1) 26.72/10.95 new_primCmpNat0(x0, Zero) 26.72/10.95 new_esEs10(x0, x1, ty_Float) 26.72/10.95 new_lt20(x0, x1, ty_Double) 26.72/10.95 new_esEs30(x0, x1, ty_@0) 26.72/10.95 new_ltEs4(Right(x0), Right(x1), x2, ty_Char) 26.72/10.95 new_compare113(x0, x1, False, x2, x3, x4) 26.72/10.95 new_compare25(Just(x0), Nothing, False, x1) 26.72/10.95 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.95 new_lt6(x0, x1, ty_Double) 26.72/10.95 new_esEs11(x0, x1, ty_Char) 26.72/10.95 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 26.72/10.95 new_compare27(x0, x1, False) 26.72/10.95 new_lt20(x0, x1, app(ty_Ratio, x2)) 26.72/10.95 new_ltEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.72/10.95 new_ltEs10(x0, x1) 26.72/10.95 new_esEs7(Left(x0), Left(x1), ty_Float, x2) 26.72/10.95 new_esEs29(x0, x1, ty_Float) 26.72/10.95 new_primCmpNat0(x0, Succ(x1)) 26.72/10.95 new_ltEs4(Left(x0), Left(x1), ty_Integer, x2) 26.72/10.95 new_esEs5(Just(x0), Just(x1), ty_@0) 26.72/10.95 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.72/10.95 new_esEs20(x0, x1, app(ty_Ratio, x2)) 26.72/10.95 new_primCmpNat1(Zero, Succ(x0)) 26.72/10.95 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.95 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_ltEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.72/10.95 new_esEs10(x0, x1, ty_@0) 26.72/10.95 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 26.72/10.95 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_compare24(x0, x1, False, x2, x3) 26.72/10.95 new_ltEs8(Nothing, Nothing, x0) 26.72/10.95 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.95 new_esEs24(x0, x1, ty_Integer) 26.72/10.95 new_primMulNat0(Zero, Zero) 26.72/10.95 new_ltEs4(Left(x0), Right(x1), x2, x3) 26.72/10.95 new_ltEs4(Right(x0), Left(x1), x2, x3) 26.72/10.95 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_primCmpNat2(Succ(x0), x1) 26.72/10.95 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.95 new_ltEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.72/10.95 new_compare8(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.95 new_esEs11(x0, x1, ty_Int) 26.72/10.95 new_esEs27(x0, x1, ty_Float) 26.72/10.95 new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_esEs10(x0, x1, app(ty_[], x2)) 26.72/10.95 new_lt12(x0, x1) 26.72/10.95 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.95 new_compare0(:(x0, x1), :(x2, x3), x4) 26.72/10.95 new_compare114(x0, x1, True, x2, x3) 26.72/10.95 new_esEs20(x0, x1, ty_Double) 26.72/10.95 new_esEs17(True, True) 26.72/10.95 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.95 new_ltEs6(x0, x1, ty_Float) 26.72/10.95 new_esEs23(x0, x1, ty_Double) 26.72/10.95 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 26.72/10.95 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 26.72/10.95 new_ltEs5(@2(x0, x1), @2(x2, x3), x4, x5) 26.72/10.95 new_ltEs19(x0, x1, ty_Int) 26.72/10.95 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 26.72/10.95 new_compare14(Integer(x0), Integer(x1)) 26.72/10.95 new_esEs7(Left(x0), Right(x1), x2, x3) 26.72/10.95 new_esEs7(Right(x0), Left(x1), x2, x3) 26.72/10.95 new_ltEs16(x0, x1) 26.72/10.95 new_compare8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_ltEs19(x0, x1, ty_Char) 26.72/10.95 new_primPlusNat0(Succ(x0), Succ(x1)) 26.72/10.95 new_lt16(x0, x1) 26.72/10.95 new_ltEs4(Left(x0), Left(x1), ty_@0, x2) 26.72/10.95 new_primEqNat0(Succ(x0), Succ(x1)) 26.72/10.95 new_esEs23(x0, x1, ty_Ordering) 26.72/10.95 new_esEs11(x0, x1, app(ty_Ratio, x2)) 26.72/10.95 new_esEs10(x0, x1, ty_Bool) 26.72/10.95 new_ltEs6(x0, x1, ty_Integer) 26.72/10.95 new_ltEs6(x0, x1, app(ty_Maybe, x2)) 26.72/10.95 new_esEs5(Just(x0), Just(x1), ty_Integer) 26.72/10.95 new_compare8(x0, x1, app(ty_[], x2)) 26.72/10.95 new_primPlusNat0(Zero, Zero) 26.72/10.95 new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.72/10.95 new_primCmpNat1(Succ(x0), Zero) 26.72/10.95 new_esEs10(x0, x1, ty_Integer) 26.72/10.95 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.95 new_pePe(False, x0) 26.72/10.95 new_ltEs14(True, True) 26.72/10.95 new_ltEs19(x0, x1, ty_Bool) 26.72/10.95 new_not(True) 26.72/10.95 new_esEs25(x0, x1, ty_Int) 26.72/10.95 new_ltEs20(x0, x1, app(ty_[], x2)) 26.72/10.95 new_esEs8(EQ, GT) 26.72/10.95 new_esEs8(GT, EQ) 26.72/10.95 new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.72/10.95 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.95 new_primMulNat0(Zero, Succ(x0)) 26.72/10.95 new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.72/10.95 new_esEs20(x0, x1, app(ty_[], x2)) 26.72/10.95 new_compare112(x0, x1, False) 26.72/10.95 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.95 new_lt20(x0, x1, ty_Ordering) 26.72/10.95 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.95 new_esEs11(x0, x1, ty_Ordering) 26.72/10.95 new_esEs20(x0, x1, ty_Ordering) 26.72/10.95 new_esEs29(x0, x1, ty_Integer) 26.72/10.95 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.72/10.95 new_esEs27(x0, x1, ty_Integer) 26.72/10.95 new_lt6(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.95 new_ltEs18(x0, x1) 26.72/10.95 new_ltEs20(x0, x1, ty_Ordering) 26.72/10.95 new_ltEs19(x0, x1, ty_Ordering) 26.72/10.95 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 26.72/10.95 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.95 new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.72/10.95 new_esEs17(False, True) 26.72/10.95 new_esEs17(True, False) 26.72/10.95 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_primPlusNat0(Succ(x0), Zero) 26.72/10.95 new_esEs28(x0, x1, ty_Integer) 26.72/10.95 new_esEs28(x0, x1, app(ty_Maybe, x2)) 26.72/10.95 new_ltEs19(x0, x1, ty_Integer) 26.72/10.95 new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.72/10.95 new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.72/10.95 new_ltEs12(EQ, EQ) 26.72/10.95 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_compare18(@0, @0) 26.72/10.95 new_esEs21(x0, x1, ty_Ordering) 26.72/10.95 new_esEs10(x0, x1, ty_Ordering) 26.72/10.95 new_esEs27(x0, x1, app(ty_[], x2)) 26.72/10.95 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_esEs13(Double(x0, x1), Double(x2, x3)) 26.72/10.95 new_esEs23(x0, x1, app(ty_Ratio, x2)) 26.72/10.95 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_lt7(x0, x1, x2) 26.72/10.95 new_compare8(x0, x1, ty_Integer) 26.72/10.95 new_lt10(x0, x1, x2, x3, x4) 26.72/10.95 new_primCmpInt(Pos(Zero), Pos(Zero)) 26.72/10.95 new_ltEs6(x0, x1, ty_Bool) 26.72/10.95 new_compare29(x0, x1, True, x2, x3, x4) 26.72/10.95 new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.72/10.95 new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) 26.72/10.95 new_ltEs4(Left(x0), Left(x1), ty_Int, x2) 26.72/10.95 new_compare8(x0, x1, app(ty_Ratio, x2)) 26.72/10.95 new_ltEs6(x0, x1, app(ty_[], x2)) 26.72/10.95 new_compare7(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 26.72/10.95 new_compare16(x0, x1) 26.72/10.95 new_ltEs8(Just(x0), Just(x1), ty_Float) 26.72/10.95 new_esEs22(x0, x1, ty_Double) 26.72/10.95 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_esEs23(x0, x1, app(ty_[], x2)) 26.72/10.95 new_esEs7(Right(x0), Right(x1), x2, ty_Int) 26.72/10.95 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.95 new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.72/10.95 new_esEs11(x0, x1, app(ty_[], x2)) 26.72/10.95 new_esEs30(x0, x1, ty_Float) 26.72/10.95 new_esEs27(x0, x1, ty_Bool) 26.72/10.95 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.95 new_ltEs4(Left(x0), Left(x1), ty_Char, x2) 26.72/10.95 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.95 new_esEs8(LT, GT) 26.72/10.95 new_esEs8(GT, LT) 26.72/10.95 new_primPlusNat1(x0, x1) 26.72/10.95 new_lt6(x0, x1, ty_Ordering) 26.72/10.95 new_esEs29(x0, x1, ty_Bool) 26.72/10.95 new_esEs12(Char(x0), Char(x1)) 26.72/10.95 new_esEs27(x0, x1, app(ty_Ratio, x2)) 26.72/10.95 new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) 26.72/10.95 new_lt18(x0, x1, x2, x3) 26.72/10.95 new_ltEs8(Just(x0), Just(x1), ty_Int) 26.72/10.95 new_lt19(x0, x1, ty_Float) 26.72/10.95 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 26.72/10.95 new_esEs5(Nothing, Just(x0), x1) 26.72/10.95 new_esEs20(x0, x1, ty_@0) 26.72/10.95 new_ltEs4(Left(x0), Left(x1), ty_Float, x2) 26.72/10.95 new_esEs26(x0, x1, ty_Ordering) 26.72/10.95 new_esEs7(Left(x0), Left(x1), ty_Integer, x2) 26.72/10.95 new_ltEs6(x0, x1, ty_@0) 26.72/10.95 new_ltEs4(Left(x0), Left(x1), ty_Ordering, x2) 26.72/10.95 new_esEs10(x0, x1, app(ty_Ratio, x2)) 26.72/10.95 new_esEs5(Just(x0), Just(x1), ty_Ordering) 26.72/10.95 new_esEs10(x0, x1, ty_Double) 26.72/10.95 new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.72/10.95 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 26.72/10.95 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 26.72/10.95 new_esEs29(x0, x1, app(ty_Maybe, x2)) 26.72/10.95 new_lt6(x0, x1, ty_Float) 26.72/10.95 new_compare8(x0, x1, ty_Bool) 26.72/10.95 new_esEs7(Right(x0), Right(x1), x2, ty_Char) 26.72/10.95 new_esEs26(x0, x1, app(ty_[], x2)) 26.72/10.95 new_compare24(x0, x1, True, x2, x3) 26.72/10.95 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.95 new_ltEs8(Just(x0), Nothing, x1) 26.72/10.95 new_esEs7(Left(x0), Left(x1), ty_@0, x2) 26.72/10.95 new_esEs11(x0, x1, ty_Integer) 26.72/10.95 new_primMulInt(Neg(x0), Neg(x1)) 26.72/10.95 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.95 new_esEs30(x0, x1, app(ty_[], x2)) 26.72/10.95 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.95 new_esEs23(x0, x1, ty_@0) 26.72/10.95 new_esEs26(x0, x1, ty_Integer) 26.72/10.95 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.95 new_esEs5(Just(x0), Just(x1), ty_Float) 26.72/10.95 new_compare23(x0, x1, x2, x3) 26.72/10.95 new_ltEs14(False, True) 26.72/10.95 new_ltEs14(True, False) 26.72/10.95 new_primPlusNat0(Zero, Succ(x0)) 26.72/10.95 new_primEqNat0(Zero, Zero) 26.72/10.95 new_compare8(x0, x1, ty_Char) 26.72/10.95 new_esEs25(x0, x1, ty_Integer) 26.72/10.95 new_primCompAux00(x0, GT) 26.72/10.95 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.95 new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) 26.72/10.95 new_lt20(x0, x1, app(ty_[], x2)) 26.72/10.95 new_ltEs4(Right(x0), Right(x1), x2, ty_@0) 26.72/10.95 new_not(False) 26.72/10.95 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 26.72/10.95 new_ltEs8(Just(x0), Just(x1), ty_Char) 26.72/10.95 new_esEs5(Just(x0), Just(x1), ty_Char) 26.72/10.95 new_esEs11(x0, x1, ty_Bool) 26.72/10.95 new_lt20(x0, x1, ty_Float) 26.72/10.95 new_ltEs19(x0, x1, ty_Float) 26.72/10.95 new_lt20(x0, x1, ty_Bool) 26.72/10.95 new_ltEs12(LT, GT) 26.72/10.95 new_ltEs12(GT, LT) 26.72/10.95 new_esEs30(x0, x1, ty_Char) 26.72/10.95 new_lt6(x0, x1, ty_Int) 26.72/10.95 new_compare8(x0, x1, ty_Int) 26.72/10.95 new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_esEs21(x0, x1, app(ty_Maybe, x2)) 26.72/10.95 new_sr0(Integer(x0), Integer(x1)) 26.72/10.95 new_lt6(x0, x1, app(ty_Maybe, x2)) 26.72/10.95 new_esEs21(x0, x1, ty_Bool) 26.72/10.95 new_esEs28(x0, x1, ty_Double) 26.72/10.95 new_esEs7(Right(x0), Right(x1), x2, ty_Bool) 26.72/10.95 new_esEs5(Just(x0), Just(x1), ty_Int) 26.72/10.95 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 26.72/10.95 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 26.72/10.95 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 26.72/10.95 new_esEs21(x0, x1, ty_Float) 26.72/10.95 new_compare25(Just(x0), Just(x1), False, x2) 26.72/10.95 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.95 new_ltEs20(x0, x1, ty_@0) 26.72/10.95 new_ltEs4(Left(x0), Left(x1), ty_Bool, x2) 26.72/10.95 new_lt19(x0, x1, app(ty_Ratio, x2)) 26.72/10.95 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.95 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.95 new_compare25(Nothing, Just(x0), False, x1) 26.72/10.95 new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.72/10.95 new_lt4(x0, x1) 26.72/10.95 new_asAs(False, x0) 26.72/10.95 new_esEs30(x0, x1, ty_Int) 26.72/10.95 new_primMulInt(Pos(x0), Neg(x1)) 26.72/10.95 new_primMulInt(Neg(x0), Pos(x1)) 26.72/10.95 new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.72/10.95 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 26.72/10.95 new_ltEs8(Nothing, Just(x0), x1) 26.72/10.95 new_esEs14(Float(x0, x1), Float(x2, x3)) 26.72/10.95 new_lt20(x0, x1, ty_Int) 26.72/10.95 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.72/10.95 new_primCmpNat1(Succ(x0), Succ(x1)) 26.72/10.95 new_esEs21(x0, x1, ty_Char) 26.72/10.95 new_compare111(x0, x1, False) 26.72/10.95 new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.72/10.95 new_ltEs4(Right(x0), Right(x1), x2, ty_Double) 26.72/10.95 new_esEs21(x0, x1, ty_Int) 26.72/10.95 new_lt6(x0, x1, ty_Char) 26.72/10.95 new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 26.72/10.95 new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 26.72/10.95 new_esEs5(Just(x0), Just(x1), ty_Bool) 26.72/10.95 new_compare8(x0, x1, ty_Float) 26.72/10.95 new_lt20(x0, x1, ty_Char) 26.72/10.95 new_ltEs20(x0, x1, ty_Double) 26.72/10.95 new_primCompAux0(x0, x1, x2, x3) 26.72/10.95 new_esEs28(x0, x1, ty_@0) 26.72/10.95 26.72/10.95 We have to consider all minimal (P,Q,R)-chains. 26.72/10.95 ---------------------------------------- 26.72/10.95 26.72/10.95 (41) TransformationProof (EQUIVALENT) 26.72/10.95 By rewriting [LPAR04] the rule new_addToFM_C20(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, False, h, ba) -> new_addToFM_C11(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs8(GT, GT), h, ba) at position [7] we obtained the following new rules [LPAR04]: 26.72/10.95 26.72/10.95 (new_addToFM_C20(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, False, h, ba) -> new_addToFM_C11(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, True, h, ba),new_addToFM_C20(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, False, h, ba) -> new_addToFM_C11(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, True, h, ba)) 26.72/10.95 26.72/10.95 26.72/10.95 ---------------------------------------- 26.72/10.95 26.72/10.95 (42) 26.72/10.95 Obligation: 26.72/10.95 Q DP problem: 26.72/10.95 The TRS P consists of the following rules: 26.72/10.95 26.72/10.95 new_addToFM_C(xuu3, Branch(Just(xuu400), xuu41, xuu42, xuu43, xuu44), Just(xuu5000), xuu501, h, ba) -> new_addToFM_C21(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs8(new_compare25(Just(xuu5000), Just(xuu400), new_esEs29(xuu5000, xuu400, h), h), LT), h, ba) 26.72/10.95 new_addToFM_C21(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, bb, bc) -> new_addToFM_C12(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs8(new_compare25(Just(xuu22), Just(xuu17), new_esEs30(xuu22, xuu17, bb), bb), GT), bb, bc) 26.72/10.95 new_addToFM_C12(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu16, xuu21, Just(xuu22), xuu23, bb, bc) 26.72/10.95 new_addToFM_C11(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, True, h, ba) -> new_addToFM_C(xuu3, xuu44, Just(xuu5000), xuu501, h, ba) 26.72/10.95 new_addToFM_C21(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu16, xuu20, Just(xuu22), xuu23, bb, bc) 26.72/10.95 new_addToFM_C(xuu3, Branch(Nothing, xuu41, xuu42, xuu43, xuu44), Just(xuu5000), xuu501, h, ba) -> new_addToFM_C20(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, False, h, ba) 26.72/10.95 new_addToFM_C20(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, False, h, ba) -> new_addToFM_C11(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, True, h, ba) 26.72/10.95 26.72/10.95 The TRS R consists of the following rules: 26.72/10.95 26.72/10.95 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Int) -> new_ltEs13(xuu33000, xuu34000) 26.72/10.95 new_esEs11(xuu50000, xuu4000, ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.95 new_primCmpInt(Neg(Succ(xuu3300)), Pos(xuu340)) -> LT 26.72/10.95 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 26.72/10.95 new_ltEs4(Left(xuu33000), Left(xuu34000), app(ty_[], bgd), bfe) -> new_ltEs15(xuu33000, xuu34000, bgd) 26.72/10.95 new_primPlusNat0(Zero, Zero) -> Zero 26.72/10.95 new_lt6(xuu33000, xuu34000, app(app(ty_@2, bea), beb)) -> new_lt8(xuu33000, xuu34000, bea, beb) 26.72/10.95 new_compare8(xuu33000, xuu34000, ty_Ordering) -> new_compare16(xuu33000, xuu34000) 26.72/10.95 new_pePe(True, xuu161) -> True 26.72/10.95 new_primCmpNat0(xuu3300, Succ(xuu3400)) -> new_primCmpNat1(xuu3300, xuu3400) 26.72/10.95 new_esEs30(xuu22, xuu17, ty_Ordering) -> new_esEs8(xuu22, xuu17) 26.72/10.95 new_esEs24(xuu50001, xuu4001, ty_Int) -> new_esEs19(xuu50001, xuu4001) 26.72/10.95 new_esEs30(xuu22, xuu17, ty_Int) -> new_esEs19(xuu22, xuu17) 26.72/10.95 new_esEs21(xuu50001, xuu4001, app(ty_Ratio, gh)) -> new_esEs18(xuu50001, xuu4001, gh) 26.72/10.95 new_esEs29(xuu5000, xuu400, ty_Char) -> new_esEs12(xuu5000, xuu400) 26.72/10.95 new_ltEs12(LT, LT) -> True 26.72/10.95 new_esEs10(xuu50001, xuu4001, app(app(app(ty_@3, cf), cg), da)) -> new_esEs6(xuu50001, xuu4001, cf, cg, da) 26.72/10.95 new_esEs30(xuu22, xuu17, app(app(ty_@2, chd), che)) -> new_esEs4(xuu22, xuu17, chd, che) 26.72/10.95 new_lt19(xuu33001, xuu34001, app(ty_[], dce)) -> new_lt14(xuu33001, xuu34001, dce) 26.72/10.95 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 26.72/10.95 new_esEs27(xuu33001, xuu34001, app(ty_[], dce)) -> new_esEs16(xuu33001, xuu34001, dce) 26.72/10.95 new_primCmpInt(Pos(Zero), Neg(Succ(xuu3400))) -> GT 26.72/10.95 new_esEs26(xuu50000, xuu4000, ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.95 new_esEs22(xuu50000, xuu4000, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.95 new_ltEs19(xuu3300, xuu3400, app(app(ty_@2, bcd), bce)) -> new_ltEs5(xuu3300, xuu3400, bcd, bce) 26.72/10.95 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(ty_[], bhg)) -> new_ltEs15(xuu33000, xuu34000, bhg) 26.72/10.95 new_lt7(xuu33000, xuu34000, bdh) -> new_esEs8(new_compare9(xuu33000, xuu34000, bdh), LT) 26.72/10.95 new_primMulNat0(Succ(xuu5000100), Succ(xuu400000)) -> new_primPlusNat1(new_primMulNat0(xuu5000100, Succ(xuu400000)), xuu400000) 26.72/10.95 new_compare8(xuu33000, xuu34000, app(ty_Ratio, bag)) -> new_compare9(xuu33000, xuu34000, bag) 26.72/10.95 new_esEs29(xuu5000, xuu400, ty_Float) -> new_esEs14(xuu5000, xuu400) 26.72/10.95 new_compare28(xuu33000, xuu34000, False, bea, beb) -> new_compare114(xuu33000, xuu34000, new_ltEs5(xuu33000, xuu34000, bea, beb), bea, beb) 26.72/10.95 new_esEs23(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) 26.72/10.95 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Double, beh) -> new_esEs13(xuu50000, xuu4000) 26.72/10.95 new_compare8(xuu33000, xuu34000, ty_Double) -> new_compare19(xuu33000, xuu34000) 26.72/10.95 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Double, bfe) -> new_ltEs17(xuu33000, xuu34000) 26.72/10.95 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.95 new_lt19(xuu33001, xuu34001, ty_Int) -> new_lt4(xuu33001, xuu34001) 26.72/10.95 new_lt19(xuu33001, xuu34001, app(app(ty_Either, dcf), dcg)) -> new_lt18(xuu33001, xuu34001, dcf, dcg) 26.72/10.95 new_primCmpNat1(Succ(xuu33000), Succ(xuu34000)) -> new_primCmpNat1(xuu33000, xuu34000) 26.72/10.95 new_ltEs19(xuu3300, xuu3400, ty_Char) -> new_ltEs11(xuu3300, xuu3400) 26.72/10.95 new_esEs28(xuu33000, xuu34000, app(app(ty_Either, ddh), dea)) -> new_esEs7(xuu33000, xuu34000, ddh, dea) 26.72/10.95 new_ltEs15(xuu3300, xuu3400, baf) -> new_fsEs(new_compare0(xuu3300, xuu3400, baf)) 26.72/10.95 new_esEs13(Double(xuu50000, xuu50001), Double(xuu4000, xuu4001)) -> new_esEs19(new_sr(xuu50000, xuu4001), new_sr(xuu50001, xuu4000)) 26.72/10.95 new_ltEs6(xuu33001, xuu34001, ty_@0) -> new_ltEs16(xuu33001, xuu34001) 26.72/10.95 new_compare26(xuu33000, xuu34000, True) -> EQ 26.72/10.95 new_esEs10(xuu50001, xuu4001, ty_Char) -> new_esEs12(xuu50001, xuu4001) 26.72/10.95 new_esEs8(GT, GT) -> True 26.72/10.95 new_primEqInt(Pos(Succ(xuu500000)), Pos(Zero)) -> False 26.72/10.95 new_primEqInt(Pos(Zero), Pos(Succ(xuu40000))) -> False 26.72/10.95 new_lt12(xuu33000, xuu34000) -> new_esEs8(new_compare16(xuu33000, xuu34000), LT) 26.72/10.95 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(app(app(ty_@3, ccc), ccd), cce)) -> new_esEs6(xuu50000, xuu4000, ccc, ccd, cce) 26.72/10.95 new_fsEs(xuu146) -> new_not(new_esEs8(xuu146, GT)) 26.72/10.95 new_esEs29(xuu5000, xuu400, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs6(xuu5000, xuu400, ed, ee, ef) 26.72/10.95 new_compare25(Just(xuu3300), Just(xuu3400), False, cfd) -> new_compare10(xuu3300, xuu3400, new_ltEs19(xuu3300, xuu3400, cfd), cfd) 26.72/10.95 new_ltEs19(xuu3300, xuu3400, ty_Bool) -> new_ltEs14(xuu3300, xuu3400) 26.72/10.95 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.95 new_esEs20(xuu50002, xuu4002, ty_Int) -> new_esEs19(xuu50002, xuu4002) 26.72/10.95 new_esEs8(EQ, EQ) -> True 26.72/10.95 new_ltEs20(xuu33002, xuu34002, ty_Char) -> new_ltEs11(xuu33002, xuu34002) 26.72/10.95 new_primEqNat0(Succ(xuu500000), Succ(xuu40000)) -> new_primEqNat0(xuu500000, xuu40000) 26.72/10.95 new_esEs30(xuu22, xuu17, ty_Char) -> new_esEs12(xuu22, xuu17) 26.72/10.95 new_esEs27(xuu33001, xuu34001, ty_Integer) -> new_esEs15(xuu33001, xuu34001) 26.72/10.95 new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare6(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 26.72/10.95 new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare6(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 26.72/10.95 new_ltEs20(xuu33002, xuu34002, ty_Integer) -> new_ltEs10(xuu33002, xuu34002) 26.72/10.95 new_esEs21(xuu50001, xuu4001, ty_Double) -> new_esEs13(xuu50001, xuu4001) 26.72/10.95 new_esEs10(xuu50001, xuu4001, ty_Float) -> new_esEs14(xuu50001, xuu4001) 26.72/10.95 new_esEs22(xuu50000, xuu4000, ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.95 new_not(True) -> False 26.72/10.95 new_lt20(xuu33000, xuu34000, app(ty_Ratio, dch)) -> new_lt7(xuu33000, xuu34000, dch) 26.72/10.95 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(app(ty_@2, bha), bhb)) -> new_ltEs5(xuu33000, xuu34000, bha, bhb) 26.72/10.95 new_ltEs12(LT, GT) -> True 26.72/10.95 new_lt14(xuu33000, xuu34000, bef) -> new_esEs8(new_compare0(xuu33000, xuu34000, bef), LT) 26.72/10.95 new_lt19(xuu33001, xuu34001, app(ty_Ratio, dbf)) -> new_lt7(xuu33001, xuu34001, dbf) 26.72/10.95 new_primCompAux00(xuu178, LT) -> LT 26.72/10.95 new_esEs10(xuu50001, xuu4001, app(ty_Ratio, ce)) -> new_esEs18(xuu50001, xuu4001, ce) 26.72/10.95 new_esEs21(xuu50001, xuu4001, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs6(xuu50001, xuu4001, ha, hb, hc) 26.72/10.95 new_esEs27(xuu33001, xuu34001, ty_Bool) -> new_esEs17(xuu33001, xuu34001) 26.72/10.95 new_esEs30(xuu22, xuu17, ty_Float) -> new_esEs14(xuu22, xuu17) 26.72/10.95 new_esEs20(xuu50002, xuu4002, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs6(xuu50002, xuu4002, fg, fh, ga) 26.72/10.95 new_esEs26(xuu50000, xuu4000, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.95 new_esEs20(xuu50002, xuu4002, app(app(ty_Either, eg), eh)) -> new_esEs7(xuu50002, xuu4002, eg, eh) 26.72/10.95 new_compare8(xuu33000, xuu34000, ty_Float) -> new_compare7(xuu33000, xuu34000) 26.72/10.95 new_ltEs19(xuu3300, xuu3400, ty_Integer) -> new_ltEs10(xuu3300, xuu3400) 26.72/10.95 new_esEs10(xuu50001, xuu4001, ty_Ordering) -> new_esEs8(xuu50001, xuu4001) 26.72/10.95 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Integer, beh) -> new_esEs15(xuu50000, xuu4000) 26.72/10.95 new_ltEs19(xuu3300, xuu3400, ty_Double) -> new_ltEs17(xuu3300, xuu3400) 26.72/10.95 new_esEs11(xuu50000, xuu4000, app(ty_Ratio, dh)) -> new_esEs18(xuu50000, xuu4000, dh) 26.72/10.95 new_primEqNat0(Succ(xuu500000), Zero) -> False 26.72/10.95 new_primEqNat0(Zero, Succ(xuu40000)) -> False 26.72/10.95 new_compare112(xuu33000, xuu34000, False) -> GT 26.72/10.95 new_ltEs20(xuu33002, xuu34002, app(ty_Maybe, dag)) -> new_ltEs8(xuu33002, xuu34002, dag) 26.72/10.95 new_esEs29(xuu5000, xuu400, ty_Int) -> new_esEs19(xuu5000, xuu400) 26.72/10.95 new_lt20(xuu33000, xuu34000, app(ty_[], ddg)) -> new_lt14(xuu33000, xuu34000, ddg) 26.72/10.95 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_ltEs9(xuu33000, xuu34000, bhd, bhe, bhf) 26.72/10.95 new_ltEs20(xuu33002, xuu34002, ty_Bool) -> new_ltEs14(xuu33002, xuu34002) 26.72/10.95 new_primCompAux00(xuu178, GT) -> GT 26.72/10.95 new_compare7(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare6(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 26.72/10.95 new_compare7(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare6(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 26.72/10.95 new_ltEs6(xuu33001, xuu34001, app(ty_Maybe, bda)) -> new_ltEs8(xuu33001, xuu34001, bda) 26.72/10.95 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.95 new_esEs5(Just(xuu50000), Just(xuu4000), app(ty_Ratio, cdd)) -> new_esEs18(xuu50000, xuu4000, cdd) 26.72/10.95 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Bool) -> new_ltEs14(xuu33000, xuu34000) 26.72/10.95 new_primCmpNat2(Zero, xuu3300) -> LT 26.72/10.95 new_esEs20(xuu50002, xuu4002, ty_Ordering) -> new_esEs8(xuu50002, xuu4002) 26.72/10.95 new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(ty_@2, cec), ced)) -> new_ltEs5(xuu33000, xuu34000, cec, ced) 26.72/10.95 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Integer, bfe) -> new_ltEs10(xuu33000, xuu34000) 26.72/10.95 new_primCmpInt(Pos(Succ(xuu3300)), Neg(xuu340)) -> GT 26.72/10.95 new_ltEs20(xuu33002, xuu34002, app(app(ty_@2, dae), daf)) -> new_ltEs5(xuu33002, xuu34002, dae, daf) 26.72/10.95 new_esEs20(xuu50002, xuu4002, app(app(ty_@2, fa), fb)) -> new_esEs4(xuu50002, xuu4002, fa, fb) 26.72/10.95 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_@0, bfe) -> new_ltEs16(xuu33000, xuu34000) 26.72/10.95 new_ltEs6(xuu33001, xuu34001, app(ty_Ratio, bcf)) -> new_ltEs7(xuu33001, xuu34001, bcf) 26.72/10.95 new_compare110(xuu33000, xuu34000, True, bca, bcb) -> LT 26.72/10.95 new_ltEs6(xuu33001, xuu34001, ty_Double) -> new_ltEs17(xuu33001, xuu34001) 26.72/10.95 new_esEs19(xuu5000, xuu400) -> new_primEqInt(xuu5000, xuu400) 26.72/10.95 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Bool, beh) -> new_esEs17(xuu50000, xuu4000) 26.72/10.95 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Char, bfe) -> new_ltEs11(xuu33000, xuu34000) 26.72/10.95 new_esEs22(xuu50000, xuu4000, app(ty_Ratio, bab)) -> new_esEs18(xuu50000, xuu4000, bab) 26.72/10.95 new_esEs7(Left(xuu50000), Left(xuu4000), app(app(app(ty_@3, cba), cbb), cbc), beh) -> new_esEs6(xuu50000, xuu4000, cba, cbb, cbc) 26.72/10.95 new_esEs26(xuu50000, xuu4000, ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.95 new_ltEs20(xuu33002, xuu34002, ty_Double) -> new_ltEs17(xuu33002, xuu34002) 26.72/10.95 new_esEs28(xuu33000, xuu34000, ty_Char) -> new_esEs12(xuu33000, xuu34000) 26.72/10.95 new_esEs28(xuu33000, xuu34000, app(ty_[], ddg)) -> new_esEs16(xuu33000, xuu34000, ddg) 26.72/10.95 new_esEs7(Left(xuu50000), Left(xuu4000), ty_@0, beh) -> new_esEs9(xuu50000, xuu4000) 26.72/10.95 new_primCompAux0(xuu33000, xuu34000, xuu172, baf) -> new_primCompAux00(xuu172, new_compare8(xuu33000, xuu34000, baf)) 26.72/10.95 new_ltEs6(xuu33001, xuu34001, app(ty_[], bde)) -> new_ltEs15(xuu33001, xuu34001, bde) 26.72/10.95 new_pePe(False, xuu161) -> xuu161 26.72/10.95 new_lt8(xuu33000, xuu34000, bea, beb) -> new_esEs8(new_compare11(xuu33000, xuu34000, bea, beb), LT) 26.72/10.95 new_esEs27(xuu33001, xuu34001, ty_Double) -> new_esEs13(xuu33001, xuu34001) 26.72/10.95 new_compare7(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare6(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 26.72/10.95 new_lt20(xuu33000, xuu34000, ty_Float) -> new_lt17(xuu33000, xuu34000) 26.72/10.95 new_ltEs12(GT, GT) -> True 26.72/10.95 new_lt9(xuu33000, xuu34000, bcc) -> new_esEs8(new_compare12(xuu33000, xuu34000, bcc), LT) 26.72/10.95 new_esEs11(xuu50000, xuu4000, ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.95 new_esEs7(Left(xuu50000), Left(xuu4000), app(app(ty_@2, cad), cae), beh) -> new_esEs4(xuu50000, xuu4000, cad, cae) 26.72/10.95 new_lt17(xuu33000, xuu34000) -> new_esEs8(new_compare7(xuu33000, xuu34000), LT) 26.72/10.95 new_esEs6(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), ed, ee, ef) -> new_asAs(new_esEs22(xuu50000, xuu4000, ed), new_asAs(new_esEs21(xuu50001, xuu4001, ee), new_esEs20(xuu50002, xuu4002, ef))) 26.72/10.95 new_esEs10(xuu50001, xuu4001, app(app(ty_Either, bg), bh)) -> new_esEs7(xuu50001, xuu4001, bg, bh) 26.72/10.95 new_compare114(xuu33000, xuu34000, True, bea, beb) -> LT 26.72/10.95 new_ltEs12(GT, EQ) -> False 26.72/10.95 new_ltEs6(xuu33001, xuu34001, app(app(ty_@2, bcg), bch)) -> new_ltEs5(xuu33001, xuu34001, bcg, bch) 26.72/10.95 new_compare8(xuu33000, xuu34000, ty_Int) -> new_compare6(xuu33000, xuu34000) 26.72/10.95 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(ty_Ratio, bgh)) -> new_ltEs7(xuu33000, xuu34000, bgh) 26.72/10.95 new_esEs26(xuu50000, xuu4000, ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.95 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.95 new_compare26(xuu33000, xuu34000, False) -> new_compare111(xuu33000, xuu34000, new_ltEs12(xuu33000, xuu34000)) 26.72/10.96 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Char) -> new_ltEs11(xuu33000, xuu34000) 26.72/10.96 new_compare10(xuu129, xuu130, False, bd) -> GT 26.72/10.96 new_lt20(xuu33000, xuu34000, ty_Integer) -> new_lt11(xuu33000, xuu34000) 26.72/10.96 new_lt20(xuu33000, xuu34000, app(ty_Maybe, ddc)) -> new_lt9(xuu33000, xuu34000, ddc) 26.72/10.96 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(ty_Ratio, ccb)) -> new_esEs18(xuu50000, xuu4000, ccb) 26.72/10.96 new_esEs8(LT, EQ) -> False 26.72/10.96 new_esEs8(EQ, LT) -> False 26.72/10.96 new_esEs21(xuu50001, xuu4001, app(app(ty_@2, gd), ge)) -> new_esEs4(xuu50001, xuu4001, gd, ge) 26.72/10.96 new_compare29(xuu33000, xuu34000, False, bec, bed, bee) -> new_compare113(xuu33000, xuu34000, new_ltEs9(xuu33000, xuu34000, bec, bed, bee), bec, bed, bee) 26.72/10.96 new_lt19(xuu33001, xuu34001, app(ty_Maybe, dca)) -> new_lt9(xuu33001, xuu34001, dca) 26.72/10.96 new_primEqInt(Pos(Zero), Neg(Succ(xuu40000))) -> False 26.72/10.96 new_primEqInt(Neg(Zero), Pos(Succ(xuu40000))) -> False 26.72/10.96 new_lt19(xuu33001, xuu34001, ty_Ordering) -> new_lt12(xuu33001, xuu34001) 26.72/10.96 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Integer) -> new_ltEs10(xuu33000, xuu34000) 26.72/10.96 new_esEs11(xuu50000, xuu4000, app(ty_Maybe, df)) -> new_esEs5(xuu50000, xuu4000, df) 26.72/10.96 new_esEs21(xuu50001, xuu4001, ty_Ordering) -> new_esEs8(xuu50001, xuu4001) 26.72/10.96 new_esEs18(:%(xuu50000, xuu50001), :%(xuu4000, xuu4001), bfc) -> new_asAs(new_esEs25(xuu50000, xuu4000, bfc), new_esEs24(xuu50001, xuu4001, bfc)) 26.72/10.96 new_esEs5(Just(xuu50000), Just(xuu4000), app(app(app(ty_@3, cde), cdf), cdg)) -> new_esEs6(xuu50000, xuu4000, cde, cdf, cdg) 26.72/10.96 new_ltEs14(True, True) -> True 26.72/10.96 new_esEs25(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.96 new_esEs21(xuu50001, xuu4001, ty_Float) -> new_esEs14(xuu50001, xuu4001) 26.72/10.96 new_esEs21(xuu50001, xuu4001, app(ty_Maybe, gf)) -> new_esEs5(xuu50001, xuu4001, gf) 26.72/10.96 new_esEs23(xuu33000, xuu34000, app(app(ty_Either, bca), bcb)) -> new_esEs7(xuu33000, xuu34000, bca, bcb) 26.72/10.96 new_esEs26(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.96 new_esEs5(Nothing, Nothing, bfa) -> True 26.72/10.96 new_esEs26(xuu50000, xuu4000, app(ty_[], cge)) -> new_esEs16(xuu50000, xuu4000, cge) 26.72/10.96 new_primEqInt(Neg(Succ(xuu500000)), Neg(Succ(xuu40000))) -> new_primEqNat0(xuu500000, xuu40000) 26.72/10.96 new_esEs5(Nothing, Just(xuu4000), bfa) -> False 26.72/10.96 new_esEs5(Just(xuu50000), Nothing, bfa) -> False 26.72/10.96 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Float, bfe) -> new_ltEs18(xuu33000, xuu34000) 26.72/10.96 new_primCmpInt(Neg(Zero), Pos(Succ(xuu3400))) -> LT 26.72/10.96 new_lt19(xuu33001, xuu34001, ty_Bool) -> new_lt13(xuu33001, xuu34001) 26.72/10.96 new_compare114(xuu33000, xuu34000, False, bea, beb) -> GT 26.72/10.96 new_ltEs20(xuu33002, xuu34002, ty_@0) -> new_ltEs16(xuu33002, xuu34002) 26.72/10.96 new_primMulInt(Pos(xuu500010), Pos(xuu40000)) -> Pos(new_primMulNat0(xuu500010, xuu40000)) 26.72/10.96 new_lt6(xuu33000, xuu34000, app(app(app(ty_@3, bec), bed), bee)) -> new_lt10(xuu33000, xuu34000, bec, bed, bee) 26.72/10.96 new_compare8(xuu33000, xuu34000, ty_Integer) -> new_compare14(xuu33000, xuu34000) 26.72/10.96 new_lt20(xuu33000, xuu34000, app(app(ty_@2, dda), ddb)) -> new_lt8(xuu33000, xuu34000, dda, ddb) 26.72/10.96 new_esEs7(Left(xuu50000), Left(xuu4000), app(app(ty_Either, cab), cac), beh) -> new_esEs7(xuu50000, xuu4000, cab, cac) 26.72/10.96 new_compare25(Just(xuu3300), Nothing, False, cfd) -> GT 26.72/10.96 new_esEs28(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) 26.72/10.96 new_compare10(xuu129, xuu130, True, bd) -> LT 26.72/10.96 new_lt19(xuu33001, xuu34001, ty_Float) -> new_lt17(xuu33001, xuu34001) 26.72/10.96 new_compare24(xuu33000, xuu34000, False, bca, bcb) -> new_compare110(xuu33000, xuu34000, new_ltEs4(xuu33000, xuu34000, bca, bcb), bca, bcb) 26.72/10.96 new_ltEs19(xuu3300, xuu3400, app(ty_Maybe, cea)) -> new_ltEs8(xuu3300, xuu3400, cea) 26.72/10.96 new_esEs10(xuu50001, xuu4001, app(app(ty_@2, ca), cb)) -> new_esEs4(xuu50001, xuu4001, ca, cb) 26.72/10.96 new_primMulNat0(Succ(xuu5000100), Zero) -> Zero 26.72/10.96 new_primMulNat0(Zero, Succ(xuu400000)) -> Zero 26.72/10.96 new_esEs29(xuu5000, xuu400, ty_Double) -> new_esEs13(xuu5000, xuu400) 26.72/10.96 new_lt19(xuu33001, xuu34001, ty_Integer) -> new_lt11(xuu33001, xuu34001) 26.72/10.96 new_ltEs6(xuu33001, xuu34001, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_ltEs9(xuu33001, xuu34001, bdb, bdc, bdd) 26.72/10.96 new_lt20(xuu33000, xuu34000, ty_Bool) -> new_lt13(xuu33000, xuu34000) 26.72/10.96 new_esEs23(xuu33000, xuu34000, app(ty_Maybe, bcc)) -> new_esEs5(xuu33000, xuu34000, bcc) 26.72/10.96 new_compare9(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Int) -> new_compare6(new_sr(xuu33000, xuu34001), new_sr(xuu34000, xuu33001)) 26.72/10.96 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Bool) -> new_ltEs14(xuu33000, xuu34000) 26.72/10.96 new_ltEs17(xuu3300, xuu3400) -> new_fsEs(new_compare19(xuu3300, xuu3400)) 26.72/10.96 new_esEs28(xuu33000, xuu34000, ty_Int) -> new_esEs19(xuu33000, xuu34000) 26.72/10.96 new_primPlusNat0(Succ(xuu28200), Zero) -> Succ(xuu28200) 26.72/10.96 new_primPlusNat0(Zero, Succ(xuu9600)) -> Succ(xuu9600) 26.72/10.96 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Int, bfe) -> new_ltEs13(xuu33000, xuu34000) 26.72/10.96 new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare6(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 26.72/10.96 new_ltEs10(xuu3300, xuu3400) -> new_fsEs(new_compare14(xuu3300, xuu3400)) 26.72/10.96 new_esEs26(xuu50000, xuu4000, app(ty_Ratio, cgf)) -> new_esEs18(xuu50000, xuu4000, cgf) 26.72/10.96 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) 26.72/10.96 new_esEs11(xuu50000, xuu4000, app(app(ty_@2, dd), de)) -> new_esEs4(xuu50000, xuu4000, dd, de) 26.72/10.96 new_ltEs4(Left(xuu33000), Left(xuu34000), app(ty_Maybe, bfh), bfe) -> new_ltEs8(xuu33000, xuu34000, bfh) 26.72/10.96 new_compare8(xuu33000, xuu34000, app(app(ty_@2, bah), bba)) -> new_compare11(xuu33000, xuu34000, bah, bba) 26.72/10.96 new_esEs8(LT, LT) -> True 26.72/10.96 new_compare111(xuu33000, xuu34000, True) -> LT 26.72/10.96 new_lt6(xuu33000, xuu34000, ty_Integer) -> new_lt11(xuu33000, xuu34000) 26.72/10.96 new_lt20(xuu33000, xuu34000, ty_Int) -> new_lt4(xuu33000, xuu34000) 26.72/10.96 new_lt6(xuu33000, xuu34000, ty_Ordering) -> new_lt12(xuu33000, xuu34000) 26.72/10.96 new_lt19(xuu33001, xuu34001, app(app(ty_@2, dbg), dbh)) -> new_lt8(xuu33001, xuu34001, dbg, dbh) 26.72/10.96 new_lt15(xuu33000, xuu34000) -> new_esEs8(new_compare18(xuu33000, xuu34000), LT) 26.72/10.96 new_ltEs19(xuu3300, xuu3400, app(app(app(ty_@3, cfe), cff), cfg)) -> new_ltEs9(xuu3300, xuu3400, cfe, cff, cfg) 26.72/10.96 new_esEs22(xuu50000, xuu4000, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs6(xuu50000, xuu4000, bac, bad, bae) 26.72/10.96 new_lt13(xuu33000, xuu34000) -> new_esEs8(new_compare17(xuu33000, xuu34000), LT) 26.72/10.96 new_ltEs4(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, bga), bgb), bgc), bfe) -> new_ltEs9(xuu33000, xuu34000, bga, bgb, bgc) 26.72/10.96 new_esEs28(xuu33000, xuu34000, ty_Bool) -> new_esEs17(xuu33000, xuu34000) 26.72/10.96 new_lt6(xuu33000, xuu34000, app(ty_[], bef)) -> new_lt14(xuu33000, xuu34000, bef) 26.72/10.96 new_ltEs11(xuu3300, xuu3400) -> new_fsEs(new_compare15(xuu3300, xuu3400)) 26.72/10.96 new_lt5(xuu33000, xuu34000) -> new_esEs8(new_compare15(xuu33000, xuu34000), LT) 26.72/10.96 new_ltEs9(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), cfe, cff, cfg) -> new_pePe(new_lt20(xuu33000, xuu34000, cfe), new_asAs(new_esEs28(xuu33000, xuu34000, cfe), new_pePe(new_lt19(xuu33001, xuu34001, cff), new_asAs(new_esEs27(xuu33001, xuu34001, cff), new_ltEs20(xuu33002, xuu34002, cfg))))) 26.72/10.96 new_esEs11(xuu50000, xuu4000, ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.96 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Char, beh) -> new_esEs12(xuu50000, xuu4000) 26.72/10.96 new_esEs27(xuu33001, xuu34001, ty_@0) -> new_esEs9(xuu33001, xuu34001) 26.72/10.96 new_esEs23(xuu33000, xuu34000, app(app(app(ty_@3, bec), bed), bee)) -> new_esEs6(xuu33000, xuu34000, bec, bed, bee) 26.72/10.96 new_esEs16([], [], bfb) -> True 26.72/10.96 new_esEs29(xuu5000, xuu400, ty_Bool) -> new_esEs17(xuu5000, xuu400) 26.72/10.96 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Float) -> new_ltEs18(xuu33000, xuu34000) 26.72/10.96 new_primMulInt(Neg(xuu500010), Neg(xuu40000)) -> Pos(new_primMulNat0(xuu500010, xuu40000)) 26.72/10.96 new_compare25(xuu330, xuu340, True, cfd) -> EQ 26.72/10.96 new_esEs10(xuu50001, xuu4001, app(ty_Maybe, cc)) -> new_esEs5(xuu50001, xuu4001, cc) 26.72/10.96 new_lt20(xuu33000, xuu34000, ty_Ordering) -> new_lt12(xuu33000, xuu34000) 26.72/10.96 new_compare8(xuu33000, xuu34000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_compare13(xuu33000, xuu34000, bbc, bbd, bbe) 26.72/10.96 new_lt16(xuu33000, xuu34000) -> new_esEs8(new_compare19(xuu33000, xuu34000), LT) 26.72/10.96 new_esEs28(xuu33000, xuu34000, ty_Integer) -> new_esEs15(xuu33000, xuu34000) 26.72/10.96 new_esEs22(xuu50000, xuu4000, app(ty_Maybe, hh)) -> new_esEs5(xuu50000, xuu4000, hh) 26.72/10.96 new_ltEs18(xuu3300, xuu3400) -> new_fsEs(new_compare7(xuu3300, xuu3400)) 26.72/10.96 new_esEs27(xuu33001, xuu34001, ty_Int) -> new_esEs19(xuu33001, xuu34001) 26.72/10.96 new_lt19(xuu33001, xuu34001, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_lt10(xuu33001, xuu34001, dcb, dcc, dcd) 26.72/10.96 new_lt6(xuu33000, xuu34000, app(ty_Ratio, bdh)) -> new_lt7(xuu33000, xuu34000, bdh) 26.72/10.96 new_lt6(xuu33000, xuu34000, ty_Bool) -> new_lt13(xuu33000, xuu34000) 26.72/10.96 new_compare13(xuu33000, xuu34000, bec, bed, bee) -> new_compare29(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, bec, bed, bee), bec, bed, bee) 26.72/10.96 new_esEs20(xuu50002, xuu4002, ty_Float) -> new_esEs14(xuu50002, xuu4002) 26.72/10.96 new_esEs5(Just(xuu50000), Just(xuu4000), app(ty_Maybe, cdb)) -> new_esEs5(xuu50000, xuu4000, cdb) 26.72/10.96 new_esEs23(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) 26.72/10.96 new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(ty_Either, cfb), cfc)) -> new_ltEs4(xuu33000, xuu34000, cfb, cfc) 26.72/10.96 new_compare6(xuu33, xuu34) -> new_primCmpInt(xuu33, xuu34) 26.72/10.96 new_esEs11(xuu50000, xuu4000, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs6(xuu50000, xuu4000, ea, eb, ec) 26.72/10.96 new_esEs23(xuu33000, xuu34000, app(app(ty_@2, bea), beb)) -> new_esEs4(xuu33000, xuu34000, bea, beb) 26.72/10.96 new_compare112(xuu33000, xuu34000, True) -> LT 26.72/10.96 new_lt20(xuu33000, xuu34000, app(app(app(ty_@3, ddd), dde), ddf)) -> new_lt10(xuu33000, xuu34000, ddd, dde, ddf) 26.72/10.96 new_ltEs20(xuu33002, xuu34002, app(app(app(ty_@3, dah), dba), dbb)) -> new_ltEs9(xuu33002, xuu34002, dah, dba, dbb) 26.72/10.96 new_primMulInt(Pos(xuu500010), Neg(xuu40000)) -> Neg(new_primMulNat0(xuu500010, xuu40000)) 26.72/10.96 new_primMulInt(Neg(xuu500010), Pos(xuu40000)) -> Neg(new_primMulNat0(xuu500010, xuu40000)) 26.72/10.96 new_esEs12(Char(xuu50000), Char(xuu4000)) -> new_primEqNat0(xuu50000, xuu4000) 26.72/10.96 new_esEs26(xuu50000, xuu4000, app(app(ty_Either, cfh), cga)) -> new_esEs7(xuu50000, xuu4000, cfh, cga) 26.72/10.96 new_esEs20(xuu50002, xuu4002, ty_Integer) -> new_esEs15(xuu50002, xuu4002) 26.72/10.96 new_esEs22(xuu50000, xuu4000, ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.96 new_esEs28(xuu33000, xuu34000, ty_Double) -> new_esEs13(xuu33000, xuu34000) 26.72/10.96 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.96 new_compare15(Char(xuu33000), Char(xuu34000)) -> new_primCmpNat1(xuu33000, xuu34000) 26.72/10.96 new_compare17(xuu33000, xuu34000) -> new_compare27(xuu33000, xuu34000, new_esEs17(xuu33000, xuu34000)) 26.72/10.96 new_primCmpInt(Pos(Succ(xuu3300)), Pos(xuu340)) -> new_primCmpNat0(xuu3300, xuu340) 26.72/10.96 new_esEs22(xuu50000, xuu4000, app(app(ty_@2, hf), hg)) -> new_esEs4(xuu50000, xuu4000, hf, hg) 26.72/10.96 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(app(ty_Either, bhh), caa)) -> new_ltEs4(xuu33000, xuu34000, bhh, caa) 26.72/10.96 new_ltEs13(xuu3300, xuu3400) -> new_fsEs(new_compare6(xuu3300, xuu3400)) 26.72/10.96 new_primCmpNat1(Succ(xuu33000), Zero) -> GT 26.72/10.96 new_esEs30(xuu22, xuu17, ty_Bool) -> new_esEs17(xuu22, xuu17) 26.72/10.96 new_esEs27(xuu33001, xuu34001, ty_Char) -> new_esEs12(xuu33001, xuu34001) 26.72/10.96 new_compare8(xuu33000, xuu34000, app(ty_Maybe, bbb)) -> new_compare12(xuu33000, xuu34000, bbb) 26.72/10.96 new_ltEs6(xuu33001, xuu34001, ty_Int) -> new_ltEs13(xuu33001, xuu34001) 26.72/10.96 new_ltEs19(xuu3300, xuu3400, ty_Ordering) -> new_ltEs12(xuu3300, xuu3400) 26.72/10.96 new_lt6(xuu33000, xuu34000, ty_Int) -> new_lt4(xuu33000, xuu34000) 26.72/10.96 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(app(ty_@2, cbf), cbg)) -> new_esEs4(xuu50000, xuu4000, cbf, cbg) 26.72/10.96 new_sr0(Integer(xuu330000), Integer(xuu340010)) -> Integer(new_primMulInt(xuu330000, xuu340010)) 26.72/10.96 new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_Ratio, ceb)) -> new_ltEs7(xuu33000, xuu34000, ceb) 26.72/10.96 new_esEs29(xuu5000, xuu400, app(ty_Maybe, bfa)) -> new_esEs5(xuu5000, xuu400, bfa) 26.72/10.96 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(ty_Maybe, cbh)) -> new_esEs5(xuu50000, xuu4000, cbh) 26.72/10.96 new_esEs27(xuu33001, xuu34001, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_esEs6(xuu33001, xuu34001, dcb, dcc, dcd) 26.72/10.96 new_esEs20(xuu50002, xuu4002, ty_Bool) -> new_esEs17(xuu50002, xuu4002) 26.72/10.96 new_ltEs20(xuu33002, xuu34002, app(app(ty_Either, dbd), dbe)) -> new_ltEs4(xuu33002, xuu34002, dbd, dbe) 26.72/10.96 new_esEs7(Left(xuu50000), Left(xuu4000), app(ty_[], cag), beh) -> new_esEs16(xuu50000, xuu4000, cag) 26.72/10.96 new_esEs5(Just(xuu50000), Just(xuu4000), app(app(ty_Either, ccf), ccg)) -> new_esEs7(xuu50000, xuu4000, ccf, ccg) 26.72/10.96 new_primCmpNat0(xuu3300, Zero) -> GT 26.72/10.96 new_esEs29(xuu5000, xuu400, ty_Integer) -> new_esEs15(xuu5000, xuu400) 26.72/10.96 new_compare8(xuu33000, xuu34000, app(ty_[], bbf)) -> new_compare0(xuu33000, xuu34000, bbf) 26.72/10.96 new_lt20(xuu33000, xuu34000, ty_Double) -> new_lt16(xuu33000, xuu34000) 26.72/10.96 new_esEs30(xuu22, xuu17, ty_Integer) -> new_esEs15(xuu22, xuu17) 26.72/10.96 new_ltEs19(xuu3300, xuu3400, app(ty_[], baf)) -> new_ltEs15(xuu3300, xuu3400, baf) 26.72/10.96 new_esEs15(Integer(xuu50000), Integer(xuu4000)) -> new_primEqInt(xuu50000, xuu4000) 26.72/10.96 new_compare0([], :(xuu34000, xuu34001), baf) -> LT 26.72/10.96 new_asAs(True, xuu136) -> xuu136 26.72/10.96 new_compare113(xuu33000, xuu34000, True, bec, bed, bee) -> LT 26.72/10.96 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_@0) -> new_ltEs16(xuu33000, xuu34000) 26.72/10.96 new_compare9(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Integer) -> new_compare14(new_sr0(xuu33000, xuu34001), new_sr0(xuu34000, xuu33001)) 26.72/10.96 new_ltEs5(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), bcd, bce) -> new_pePe(new_lt6(xuu33000, xuu34000, bcd), new_asAs(new_esEs23(xuu33000, xuu34000, bcd), new_ltEs6(xuu33001, xuu34001, bce))) 26.72/10.96 new_esEs17(False, True) -> False 26.72/10.96 new_esEs17(True, False) -> False 26.72/10.96 new_esEs10(xuu50001, xuu4001, app(ty_[], cd)) -> new_esEs16(xuu50001, xuu4001, cd) 26.72/10.96 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Int, beh) -> new_esEs19(xuu50000, xuu4000) 26.72/10.96 new_esEs23(xuu33000, xuu34000, app(ty_Ratio, bdh)) -> new_esEs18(xuu33000, xuu34000, bdh) 26.72/10.96 new_ltEs16(xuu3300, xuu3400) -> new_fsEs(new_compare18(xuu3300, xuu3400)) 26.72/10.96 new_lt19(xuu33001, xuu34001, ty_Double) -> new_lt16(xuu33001, xuu34001) 26.72/10.96 new_esEs26(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.96 new_esEs20(xuu50002, xuu4002, app(ty_Maybe, fc)) -> new_esEs5(xuu50002, xuu4002, fc) 26.72/10.96 new_esEs5(Just(xuu50000), Just(xuu4000), app(app(ty_@2, cch), cda)) -> new_esEs4(xuu50000, xuu4000, cch, cda) 26.72/10.96 new_compare11(xuu33000, xuu34000, bea, beb) -> new_compare28(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, bea, beb), bea, beb) 26.72/10.96 new_esEs27(xuu33001, xuu34001, ty_Float) -> new_esEs14(xuu33001, xuu34001) 26.72/10.96 new_esEs10(xuu50001, xuu4001, ty_Integer) -> new_esEs15(xuu50001, xuu4001) 26.72/10.96 new_esEs24(xuu50001, xuu4001, ty_Integer) -> new_esEs15(xuu50001, xuu4001) 26.72/10.96 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.96 new_esEs29(xuu5000, xuu400, app(ty_[], bfb)) -> new_esEs16(xuu5000, xuu400, bfb) 26.72/10.96 new_lt10(xuu33000, xuu34000, bec, bed, bee) -> new_esEs8(new_compare13(xuu33000, xuu34000, bec, bed, bee), LT) 26.72/10.96 new_lt6(xuu33000, xuu34000, ty_@0) -> new_lt15(xuu33000, xuu34000) 26.72/10.96 new_compare24(xuu33000, xuu34000, True, bca, bcb) -> EQ 26.72/10.96 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.96 new_primPlusNat1(xuu106, xuu400000) -> new_primPlusNat0(xuu106, Succ(xuu400000)) 26.72/10.96 new_esEs9(@0, @0) -> True 26.72/10.96 new_ltEs20(xuu33002, xuu34002, app(ty_[], dbc)) -> new_ltEs15(xuu33002, xuu34002, dbc) 26.72/10.96 new_esEs7(Left(xuu50000), Left(xuu4000), app(ty_Maybe, caf), beh) -> new_esEs5(xuu50000, xuu4000, caf) 26.72/10.96 new_primCompAux00(xuu178, EQ) -> xuu178 26.72/10.96 new_esEs11(xuu50000, xuu4000, app(app(ty_Either, db), dc)) -> new_esEs7(xuu50000, xuu4000, db, dc) 26.72/10.96 new_compare0([], [], baf) -> EQ 26.72/10.96 new_sr(xuu50001, xuu4000) -> new_primMulInt(xuu50001, xuu4000) 26.72/10.96 new_esEs25(xuu50000, xuu4000, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.96 new_esEs10(xuu50001, xuu4001, ty_Bool) -> new_esEs17(xuu50001, xuu4001) 26.72/10.96 new_esEs21(xuu50001, xuu4001, app(app(ty_Either, gb), gc)) -> new_esEs7(xuu50001, xuu4001, gb, gc) 26.72/10.96 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Integer) -> new_ltEs10(xuu33000, xuu34000) 26.72/10.96 new_primMulNat0(Zero, Zero) -> Zero 26.72/10.96 new_lt18(xuu33000, xuu34000, bca, bcb) -> new_esEs8(new_compare23(xuu33000, xuu34000, bca, bcb), LT) 26.72/10.96 new_ltEs20(xuu33002, xuu34002, ty_Ordering) -> new_ltEs12(xuu33002, xuu34002) 26.72/10.96 new_esEs23(xuu33000, xuu34000, ty_Float) -> new_esEs14(xuu33000, xuu34000) 26.72/10.96 new_lt6(xuu33000, xuu34000, ty_Char) -> new_lt5(xuu33000, xuu34000) 26.72/10.96 new_lt6(xuu33000, xuu34000, app(ty_Maybe, bcc)) -> new_lt9(xuu33000, xuu34000, bcc) 26.72/10.96 new_primCmpInt(Neg(Succ(xuu3300)), Neg(xuu340)) -> new_primCmpNat2(xuu340, xuu3300) 26.72/10.96 new_esEs30(xuu22, xuu17, ty_Double) -> new_esEs13(xuu22, xuu17) 26.72/10.96 new_esEs27(xuu33001, xuu34001, ty_Ordering) -> new_esEs8(xuu33001, xuu34001) 26.72/10.96 new_esEs30(xuu22, xuu17, app(ty_[], chg)) -> new_esEs16(xuu22, xuu17, chg) 26.72/10.96 new_esEs23(xuu33000, xuu34000, ty_Char) -> new_esEs12(xuu33000, xuu34000) 26.72/10.96 new_ltEs19(xuu3300, xuu3400, app(ty_Ratio, cdh)) -> new_ltEs7(xuu3300, xuu3400, cdh) 26.72/10.96 new_primCmpInt(Neg(Zero), Neg(Succ(xuu3400))) -> new_primCmpNat0(xuu3400, Zero) 26.72/10.96 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.96 new_esEs30(xuu22, xuu17, app(ty_Maybe, chf)) -> new_esEs5(xuu22, xuu17, chf) 26.72/10.96 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_@0) -> new_ltEs16(xuu33000, xuu34000) 26.72/10.96 new_compare111(xuu33000, xuu34000, False) -> GT 26.72/10.96 new_primCmpNat1(Zero, Zero) -> EQ 26.72/10.96 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.96 new_compare12(xuu33000, xuu34000, bcc) -> new_compare25(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, bcc), bcc) 26.72/10.96 new_esEs22(xuu50000, xuu4000, app(app(ty_Either, hd), he)) -> new_esEs7(xuu50000, xuu4000, hd, he) 26.72/10.96 new_ltEs6(xuu33001, xuu34001, ty_Bool) -> new_ltEs14(xuu33001, xuu34001) 26.72/10.96 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.96 new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare6(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 26.72/10.96 new_esEs22(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.96 new_esEs22(xuu50000, xuu4000, ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.96 new_esEs27(xuu33001, xuu34001, app(ty_Ratio, dbf)) -> new_esEs18(xuu33001, xuu34001, dbf) 26.72/10.96 new_esEs4(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), be, bf) -> new_asAs(new_esEs11(xuu50000, xuu4000, be), new_esEs10(xuu50001, xuu4001, bf)) 26.72/10.96 new_compare8(xuu33000, xuu34000, ty_Char) -> new_compare15(xuu33000, xuu34000) 26.72/10.96 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Double) -> new_ltEs17(xuu33000, xuu34000) 26.72/10.96 new_esEs28(xuu33000, xuu34000, app(ty_Ratio, dch)) -> new_esEs18(xuu33000, xuu34000, dch) 26.72/10.96 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.96 new_esEs16(:(xuu50000, xuu50001), :(xuu4000, xuu4001), bfb) -> new_asAs(new_esEs26(xuu50000, xuu4000, bfb), new_esEs16(xuu50001, xuu4001, bfb)) 26.72/10.96 new_ltEs14(False, True) -> True 26.72/10.96 new_ltEs19(xuu3300, xuu3400, ty_@0) -> new_ltEs16(xuu3300, xuu3400) 26.72/10.96 new_ltEs12(GT, LT) -> False 26.72/10.96 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Char) -> new_ltEs11(xuu33000, xuu34000) 26.72/10.96 new_compare29(xuu33000, xuu34000, True, bec, bed, bee) -> EQ 26.72/10.96 new_compare8(xuu33000, xuu34000, ty_Bool) -> new_compare17(xuu33000, xuu34000) 26.72/10.96 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Ordering, beh) -> new_esEs8(xuu50000, xuu4000) 26.72/10.96 new_compare7(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare6(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 26.72/10.96 new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_Maybe, cee)) -> new_ltEs8(xuu33000, xuu34000, cee) 26.72/10.96 new_esEs30(xuu22, xuu17, ty_@0) -> new_esEs9(xuu22, xuu17) 26.72/10.96 new_primEqInt(Neg(Succ(xuu500000)), Neg(Zero)) -> False 26.72/10.96 new_primEqInt(Neg(Zero), Neg(Succ(xuu40000))) -> False 26.72/10.96 new_ltEs8(Nothing, Just(xuu34000), cea) -> True 26.72/10.96 new_primEqInt(Pos(Succ(xuu500000)), Pos(Succ(xuu40000))) -> new_primEqNat0(xuu500000, xuu40000) 26.72/10.96 new_esEs20(xuu50002, xuu4002, ty_Double) -> new_esEs13(xuu50002, xuu4002) 26.72/10.96 new_esEs20(xuu50002, xuu4002, app(ty_[], fd)) -> new_esEs16(xuu50002, xuu4002, fd) 26.72/10.96 new_esEs26(xuu50000, xuu4000, app(app(ty_@2, cgb), cgc)) -> new_esEs4(xuu50000, xuu4000, cgb, cgc) 26.72/10.96 new_ltEs4(Left(xuu33000), Left(xuu34000), app(app(ty_Either, bge), bgf), bfe) -> new_ltEs4(xuu33000, xuu34000, bge, bgf) 26.72/10.96 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(ty_[], cca)) -> new_esEs16(xuu50000, xuu4000, cca) 26.72/10.96 new_esEs14(Float(xuu50000, xuu50001), Float(xuu4000, xuu4001)) -> new_esEs19(new_sr(xuu50000, xuu4001), new_sr(xuu50001, xuu4000)) 26.72/10.96 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(app(ty_Either, cbd), cbe)) -> new_esEs7(xuu50000, xuu4000, cbd, cbe) 26.72/10.96 new_esEs26(xuu50000, xuu4000, ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.96 new_primEqInt(Pos(Succ(xuu500000)), Neg(xuu4000)) -> False 26.72/10.96 new_primEqInt(Neg(Succ(xuu500000)), Pos(xuu4000)) -> False 26.72/10.96 new_ltEs20(xuu33002, xuu34002, app(ty_Ratio, dad)) -> new_ltEs7(xuu33002, xuu34002, dad) 26.72/10.96 new_esEs11(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.96 new_lt6(xuu33000, xuu34000, ty_Float) -> new_lt17(xuu33000, xuu34000) 26.72/10.96 new_esEs29(xuu5000, xuu400, ty_@0) -> new_esEs9(xuu5000, xuu400) 26.72/10.96 new_lt4(xuu330, xuu340) -> new_esEs8(new_compare6(xuu330, xuu340), LT) 26.72/10.96 new_ltEs12(EQ, GT) -> True 26.72/10.96 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 26.72/10.96 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Ordering, bfe) -> new_ltEs12(xuu33000, xuu34000) 26.72/10.96 new_esEs28(xuu33000, xuu34000, ty_Float) -> new_esEs14(xuu33000, xuu34000) 26.72/10.96 new_esEs28(xuu33000, xuu34000, app(ty_Maybe, ddc)) -> new_esEs5(xuu33000, xuu34000, ddc) 26.72/10.96 new_esEs17(True, True) -> True 26.72/10.96 new_ltEs12(EQ, EQ) -> True 26.72/10.96 new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, cef), ceg), ceh)) -> new_ltEs9(xuu33000, xuu34000, cef, ceg, ceh) 26.72/10.96 new_primCmpInt(Pos(Zero), Pos(Succ(xuu3400))) -> new_primCmpNat2(Zero, xuu3400) 26.72/10.96 new_esEs21(xuu50001, xuu4001, ty_Integer) -> new_esEs15(xuu50001, xuu4001) 26.72/10.96 new_ltEs20(xuu33002, xuu34002, ty_Int) -> new_ltEs13(xuu33002, xuu34002) 26.72/10.96 new_esEs26(xuu50000, xuu4000, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs6(xuu50000, xuu4000, cgg, cgh, cha) 26.72/10.96 new_esEs10(xuu50001, xuu4001, ty_Double) -> new_esEs13(xuu50001, xuu4001) 26.72/10.96 new_lt11(xuu33000, xuu34000) -> new_esEs8(new_compare14(xuu33000, xuu34000), LT) 26.72/10.96 new_esEs21(xuu50001, xuu4001, ty_Bool) -> new_esEs17(xuu50001, xuu4001) 26.72/10.96 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) 26.72/10.96 new_esEs23(xuu33000, xuu34000, ty_Bool) -> new_esEs17(xuu33000, xuu34000) 26.72/10.96 new_not(False) -> True 26.72/10.96 new_compare27(xuu33000, xuu34000, False) -> new_compare112(xuu33000, xuu34000, new_ltEs14(xuu33000, xuu34000)) 26.72/10.96 new_esEs30(xuu22, xuu17, app(ty_Ratio, chh)) -> new_esEs18(xuu22, xuu17, chh) 26.72/10.96 new_esEs5(Just(xuu50000), Just(xuu4000), ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.96 new_esEs27(xuu33001, xuu34001, app(app(ty_Either, dcf), dcg)) -> new_esEs7(xuu33001, xuu34001, dcf, dcg) 26.72/10.96 new_compare0(:(xuu33000, xuu33001), [], baf) -> GT 26.72/10.96 new_esEs8(LT, GT) -> False 26.72/10.96 new_esEs8(GT, LT) -> False 26.72/10.96 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Bool, bfe) -> new_ltEs14(xuu33000, xuu34000) 26.72/10.96 new_primPlusNat0(Succ(xuu28200), Succ(xuu9600)) -> Succ(Succ(new_primPlusNat0(xuu28200, xuu9600))) 26.72/10.96 new_esEs20(xuu50002, xuu4002, app(ty_Ratio, ff)) -> new_esEs18(xuu50002, xuu4002, ff) 26.72/10.96 new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_[], cfa)) -> new_ltEs15(xuu33000, xuu34000, cfa) 26.72/10.96 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Double) -> new_ltEs17(xuu33000, xuu34000) 26.72/10.96 new_esEs7(Left(xuu50000), Left(xuu4000), app(ty_Ratio, cah), beh) -> new_esEs18(xuu50000, xuu4000, cah) 26.72/10.96 new_esEs11(xuu50000, xuu4000, ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.96 new_esEs21(xuu50001, xuu4001, ty_Char) -> new_esEs12(xuu50001, xuu4001) 26.72/10.96 new_compare8(xuu33000, xuu34000, app(app(ty_Either, bbg), bbh)) -> new_compare23(xuu33000, xuu34000, bbg, bbh) 26.72/10.96 new_esEs29(xuu5000, xuu400, app(ty_Ratio, bfc)) -> new_esEs18(xuu5000, xuu400, bfc) 26.72/10.96 new_ltEs4(Left(xuu33000), Right(xuu34000), bgg, bfe) -> True 26.72/10.96 new_esEs30(xuu22, xuu17, app(app(app(ty_@3, daa), dab), dac)) -> new_esEs6(xuu22, xuu17, daa, dab, dac) 26.72/10.96 new_ltEs6(xuu33001, xuu34001, ty_Integer) -> new_ltEs10(xuu33001, xuu34001) 26.72/10.96 new_esEs26(xuu50000, xuu4000, app(ty_Maybe, cgd)) -> new_esEs5(xuu50000, xuu4000, cgd) 26.72/10.96 new_primCmpNat1(Zero, Succ(xuu34000)) -> LT 26.72/10.96 new_esEs22(xuu50000, xuu4000, ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.96 new_compare25(Nothing, Nothing, False, cfd) -> LT 26.72/10.96 new_lt20(xuu33000, xuu34000, app(app(ty_Either, ddh), dea)) -> new_lt18(xuu33000, xuu34000, ddh, dea) 26.72/10.96 new_ltEs7(xuu3300, xuu3400, cdh) -> new_fsEs(new_compare9(xuu3300, xuu3400, cdh)) 26.72/10.96 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 26.72/10.96 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 26.72/10.96 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.96 new_compare0(:(xuu33000, xuu33001), :(xuu34000, xuu34001), baf) -> new_primCompAux0(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, baf), baf) 26.72/10.96 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Float) -> new_ltEs18(xuu33000, xuu34000) 26.72/10.96 new_ltEs6(xuu33001, xuu34001, ty_Ordering) -> new_ltEs12(xuu33001, xuu34001) 26.72/10.96 new_ltEs4(Left(xuu33000), Left(xuu34000), app(ty_Ratio, bfd), bfe) -> new_ltEs7(xuu33000, xuu34000, bfd) 26.72/10.96 new_esEs23(xuu33000, xuu34000, ty_Int) -> new_esEs19(xuu33000, xuu34000) 26.72/10.96 new_esEs27(xuu33001, xuu34001, app(app(ty_@2, dbg), dbh)) -> new_esEs4(xuu33001, xuu34001, dbg, dbh) 26.72/10.96 new_esEs21(xuu50001, xuu4001, app(ty_[], gg)) -> new_esEs16(xuu50001, xuu4001, gg) 26.72/10.96 new_ltEs6(xuu33001, xuu34001, ty_Char) -> new_ltEs11(xuu33001, xuu34001) 26.72/10.96 new_ltEs4(Left(xuu33000), Left(xuu34000), app(app(ty_@2, bff), bfg), bfe) -> new_ltEs5(xuu33000, xuu34000, bff, bfg) 26.72/10.96 new_esEs20(xuu50002, xuu4002, ty_@0) -> new_esEs9(xuu50002, xuu4002) 26.72/10.96 new_ltEs19(xuu3300, xuu3400, app(app(ty_Either, bgg), bfe)) -> new_ltEs4(xuu3300, xuu3400, bgg, bfe) 26.72/10.96 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 26.72/10.96 new_esEs17(False, False) -> True 26.72/10.96 new_esEs28(xuu33000, xuu34000, app(app(ty_@2, dda), ddb)) -> new_esEs4(xuu33000, xuu34000, dda, ddb) 26.72/10.96 new_esEs22(xuu50000, xuu4000, ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.96 new_ltEs12(EQ, LT) -> False 26.72/10.96 new_ltEs14(False, False) -> True 26.72/10.96 new_ltEs6(xuu33001, xuu34001, ty_Float) -> new_ltEs18(xuu33001, xuu34001) 26.72/10.96 new_ltEs8(Nothing, Nothing, cea) -> True 26.72/10.96 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.96 new_ltEs8(Just(xuu33000), Nothing, cea) -> False 26.72/10.96 new_esEs11(xuu50000, xuu4000, ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.96 new_lt6(xuu33000, xuu34000, ty_Double) -> new_lt16(xuu33000, xuu34000) 26.72/10.96 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.96 new_ltEs19(xuu3300, xuu3400, ty_Int) -> new_ltEs13(xuu3300, xuu3400) 26.72/10.96 new_esEs28(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) 26.72/10.96 new_esEs11(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.96 new_ltEs19(xuu3300, xuu3400, ty_Float) -> new_ltEs18(xuu3300, xuu3400) 26.72/10.96 new_esEs16(:(xuu50000, xuu50001), [], bfb) -> False 26.72/10.96 new_esEs16([], :(xuu4000, xuu4001), bfb) -> False 26.72/10.96 new_esEs5(Just(xuu50000), Just(xuu4000), app(ty_[], cdc)) -> new_esEs16(xuu50000, xuu4000, cdc) 26.72/10.96 new_esEs23(xuu33000, xuu34000, app(ty_[], bef)) -> new_esEs16(xuu33000, xuu34000, bef) 26.72/10.96 new_ltEs6(xuu33001, xuu34001, app(app(ty_Either, bdf), bdg)) -> new_ltEs4(xuu33001, xuu34001, bdf, bdg) 26.72/10.96 new_primCmpNat2(Succ(xuu3400), xuu3300) -> new_primCmpNat1(xuu3400, xuu3300) 26.72/10.96 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 26.72/10.96 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 26.72/10.96 new_esEs23(xuu33000, xuu34000, ty_Double) -> new_esEs13(xuu33000, xuu34000) 26.72/10.96 new_ltEs12(LT, EQ) -> True 26.72/10.96 new_compare25(Nothing, Just(xuu3400), False, cfd) -> LT 26.72/10.96 new_esEs29(xuu5000, xuu400, app(app(ty_@2, be), bf)) -> new_esEs4(xuu5000, xuu400, be, bf) 26.72/10.96 new_compare110(xuu33000, xuu34000, False, bca, bcb) -> GT 26.72/10.96 new_esEs21(xuu50001, xuu4001, ty_Int) -> new_esEs19(xuu50001, xuu4001) 26.72/10.96 new_lt19(xuu33001, xuu34001, ty_@0) -> new_lt15(xuu33001, xuu34001) 26.72/10.96 new_esEs11(xuu50000, xuu4000, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.96 new_esEs23(xuu33000, xuu34000, ty_Integer) -> new_esEs15(xuu33000, xuu34000) 26.72/10.96 new_lt20(xuu33000, xuu34000, ty_Char) -> new_lt5(xuu33000, xuu34000) 26.72/10.96 new_primEqNat0(Zero, Zero) -> True 26.72/10.96 new_compare8(xuu33000, xuu34000, ty_@0) -> new_compare18(xuu33000, xuu34000) 26.72/10.96 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.96 new_ltEs20(xuu33002, xuu34002, ty_Float) -> new_ltEs18(xuu33002, xuu34002) 26.72/10.96 new_esEs28(xuu33000, xuu34000, app(app(app(ty_@3, ddd), dde), ddf)) -> new_esEs6(xuu33000, xuu34000, ddd, dde, ddf) 26.72/10.96 new_esEs30(xuu22, xuu17, app(app(ty_Either, chb), chc)) -> new_esEs7(xuu22, xuu17, chb, chc) 26.72/10.96 new_esEs10(xuu50001, xuu4001, ty_@0) -> new_esEs9(xuu50001, xuu4001) 26.72/10.96 new_esEs29(xuu5000, xuu400, ty_Ordering) -> new_esEs8(xuu5000, xuu400) 26.72/10.96 new_compare23(xuu33000, xuu34000, bca, bcb) -> new_compare24(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, bca, bcb), bca, bcb) 26.72/10.96 new_ltEs14(True, False) -> False 26.72/10.96 new_esEs26(xuu50000, xuu4000, ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.96 new_compare113(xuu33000, xuu34000, False, bec, bed, bee) -> GT 26.72/10.96 new_esEs22(xuu50000, xuu4000, app(ty_[], baa)) -> new_esEs16(xuu50000, xuu4000, baa) 26.72/10.96 new_esEs22(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.96 new_asAs(False, xuu136) -> False 26.72/10.96 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Float, beh) -> new_esEs14(xuu50000, xuu4000) 26.72/10.96 new_esEs20(xuu50002, xuu4002, ty_Char) -> new_esEs12(xuu50002, xuu4002) 26.72/10.96 new_esEs29(xuu5000, xuu400, app(app(ty_Either, beg), beh)) -> new_esEs7(xuu5000, xuu400, beg, beh) 26.72/10.96 new_esEs27(xuu33001, xuu34001, app(ty_Maybe, dca)) -> new_esEs5(xuu33001, xuu34001, dca) 26.72/10.96 new_lt19(xuu33001, xuu34001, ty_Char) -> new_lt5(xuu33001, xuu34001) 26.72/10.96 new_compare28(xuu33000, xuu34000, True, bea, beb) -> EQ 26.72/10.96 new_lt20(xuu33000, xuu34000, ty_@0) -> new_lt15(xuu33000, xuu34000) 26.72/10.96 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Int) -> new_ltEs13(xuu33000, xuu34000) 26.72/10.96 new_esEs8(EQ, GT) -> False 26.72/10.96 new_esEs8(GT, EQ) -> False 26.72/10.96 new_ltEs4(Right(xuu33000), Left(xuu34000), bgg, bfe) -> False 26.72/10.96 new_esEs10(xuu50001, xuu4001, ty_Int) -> new_esEs19(xuu50001, xuu4001) 26.72/10.96 new_compare27(xuu33000, xuu34000, True) -> EQ 26.72/10.96 new_esEs7(Left(xuu50000), Right(xuu4000), beg, beh) -> False 26.72/10.96 new_esEs7(Right(xuu50000), Left(xuu4000), beg, beh) -> False 26.72/10.96 new_compare18(@0, @0) -> EQ 26.72/10.96 new_esEs11(xuu50000, xuu4000, app(ty_[], dg)) -> new_esEs16(xuu50000, xuu4000, dg) 26.72/10.96 new_compare14(Integer(xuu33000), Integer(xuu34000)) -> new_primCmpInt(xuu33000, xuu34000) 26.72/10.96 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(ty_Maybe, bhc)) -> new_ltEs8(xuu33000, xuu34000, bhc) 26.72/10.96 new_lt6(xuu33000, xuu34000, app(app(ty_Either, bca), bcb)) -> new_lt18(xuu33000, xuu34000, bca, bcb) 26.72/10.96 new_esEs21(xuu50001, xuu4001, ty_@0) -> new_esEs9(xuu50001, xuu4001) 26.72/10.96 new_compare16(xuu33000, xuu34000) -> new_compare26(xuu33000, xuu34000, new_esEs8(xuu33000, xuu34000)) 26.72/10.96 26.72/10.96 The set Q consists of the following terms: 26.72/10.96 26.72/10.96 new_esEs7(Right(x0), Right(x1), x2, ty_Integer) 26.72/10.96 new_ltEs8(Just(x0), Just(x1), ty_Bool) 26.72/10.96 new_esEs8(EQ, EQ) 26.72/10.96 new_esEs21(x0, x1, ty_Integer) 26.72/10.96 new_lt6(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.96 new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.72/10.96 new_esEs29(x0, x1, ty_Double) 26.72/10.96 new_esEs22(x0, x1, ty_@0) 26.72/10.96 new_compare0(:(x0, x1), [], x2) 26.72/10.96 new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) 26.72/10.96 new_esEs7(Left(x0), Left(x1), ty_Double, x2) 26.72/10.96 new_compare26(x0, x1, False) 26.72/10.96 new_esEs27(x0, x1, ty_Double) 26.72/10.96 new_esEs29(x0, x1, ty_Ordering) 26.72/10.96 new_compare8(x0, x1, ty_Double) 26.72/10.96 new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) 26.72/10.96 new_lt20(x0, x1, ty_Integer) 26.72/10.96 new_ltEs11(x0, x1) 26.72/10.96 new_esEs30(x0, x1, ty_Bool) 26.72/10.96 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 26.72/10.96 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 26.72/10.96 new_esEs22(x0, x1, ty_Bool) 26.72/10.96 new_esEs30(x0, x1, app(ty_Ratio, x2)) 26.72/10.96 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 26.72/10.96 new_lt6(x0, x1, app(ty_[], x2)) 26.72/10.96 new_esEs26(x0, x1, app(ty_Ratio, x2)) 26.72/10.96 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 26.72/10.96 new_compare12(x0, x1, x2) 26.72/10.96 new_ltEs8(Just(x0), Just(x1), ty_@0) 26.72/10.96 new_esEs26(x0, x1, ty_@0) 26.72/10.96 new_lt6(x0, x1, ty_Bool) 26.72/10.96 new_lt19(x0, x1, ty_@0) 26.72/10.96 new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.96 new_lt6(x0, x1, ty_@0) 26.72/10.96 new_primCmpNat1(Zero, Zero) 26.72/10.96 new_ltEs13(x0, x1) 26.72/10.96 new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.96 new_primCompAux00(x0, EQ) 26.72/10.96 new_compare8(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.96 new_compare28(x0, x1, True, x2, x3) 26.72/10.96 new_lt5(x0, x1) 26.72/10.96 new_esEs23(x0, x1, ty_Float) 26.72/10.96 new_esEs29(x0, x1, ty_Int) 26.72/10.96 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.96 new_esEs7(Left(x0), Left(x1), ty_Int, x2) 26.72/10.96 new_primEqInt(Pos(Zero), Pos(Zero)) 26.72/10.96 new_compare15(Char(x0), Char(x1)) 26.72/10.96 new_lt13(x0, x1) 26.72/10.96 new_compare6(x0, x1) 26.72/10.96 new_primCmpNat2(Zero, x0) 26.72/10.96 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.96 new_ltEs6(x0, x1, ty_Ordering) 26.72/10.96 new_esEs17(False, False) 26.72/10.96 new_lt9(x0, x1, x2) 26.72/10.96 new_esEs27(x0, x1, ty_Ordering) 26.72/10.96 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 26.72/10.96 new_esEs11(x0, x1, ty_Float) 26.72/10.96 new_primEqNat0(Zero, Succ(x0)) 26.72/10.96 new_primEqInt(Neg(Zero), Neg(Zero)) 26.72/10.96 new_esEs29(x0, x1, ty_Char) 26.72/10.96 new_esEs27(x0, x1, ty_Int) 26.72/10.96 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.96 new_lt19(x0, x1, ty_Int) 26.72/10.96 new_compare10(x0, x1, True, x2) 26.72/10.96 new_pePe(True, x0) 26.72/10.96 new_ltEs6(x0, x1, ty_Int) 26.72/10.96 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.96 new_esEs26(x0, x1, app(ty_Maybe, x2)) 26.72/10.96 new_lt6(x0, x1, ty_Integer) 26.72/10.96 new_esEs27(x0, x1, ty_Char) 26.72/10.96 new_esEs29(x0, x1, app(ty_Ratio, x2)) 26.72/10.96 new_compare113(x0, x1, True, x2, x3, x4) 26.72/10.96 new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.72/10.96 new_esEs20(x0, x1, ty_Integer) 26.72/10.96 new_esEs7(Right(x0), Right(x1), x2, ty_@0) 26.72/10.96 new_esEs7(Left(x0), Left(x1), ty_Char, x2) 26.72/10.96 new_ltEs12(GT, EQ) 26.72/10.96 new_ltEs12(EQ, GT) 26.72/10.96 new_esEs7(Right(x0), Right(x1), x2, ty_Float) 26.72/10.96 new_ltEs4(Right(x0), Right(x1), x2, ty_Ordering) 26.72/10.96 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.96 new_lt17(x0, x1) 26.72/10.96 new_esEs20(x0, x1, ty_Bool) 26.72/10.96 new_ltEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 26.72/10.96 new_compare112(x0, x1, True) 26.72/10.96 new_esEs26(x0, x1, ty_Int) 26.72/10.96 new_lt19(x0, x1, ty_Bool) 26.72/10.96 new_esEs30(x0, x1, ty_Integer) 26.72/10.96 new_lt6(x0, x1, app(ty_Ratio, x2)) 26.72/10.96 new_primMulInt(Pos(x0), Pos(x1)) 26.72/10.96 new_primEqInt(Pos(Zero), Neg(Zero)) 26.72/10.96 new_primEqInt(Neg(Zero), Pos(Zero)) 26.72/10.96 new_primMulNat0(Succ(x0), Succ(x1)) 26.72/10.96 new_ltEs6(x0, x1, ty_Double) 26.72/10.96 new_esEs10(x0, x1, app(ty_Maybe, x2)) 26.72/10.96 new_esEs18(:%(x0, x1), :%(x2, x3), x4) 26.72/10.96 new_esEs26(x0, x1, ty_Bool) 26.72/10.96 new_compare11(x0, x1, x2, x3) 26.72/10.96 new_esEs16([], :(x0, x1), x2) 26.72/10.96 new_esEs26(x0, x1, ty_Char) 26.72/10.96 new_ltEs6(x0, x1, ty_Char) 26.72/10.96 new_esEs26(x0, x1, ty_Double) 26.72/10.96 new_esEs20(x0, x1, app(ty_Maybe, x2)) 26.72/10.96 new_compare8(x0, x1, ty_Ordering) 26.72/10.96 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 26.72/10.96 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.72/10.96 new_compare110(x0, x1, False, x2, x3) 26.72/10.96 new_esEs22(x0, x1, app(ty_Maybe, x2)) 26.72/10.96 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 26.72/10.96 new_esEs5(Just(x0), Nothing, x1) 26.72/10.96 new_ltEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.72/10.96 new_ltEs19(x0, x1, app(ty_[], x2)) 26.72/10.96 new_esEs28(x0, x1, app(ty_Ratio, x2)) 26.72/10.96 new_lt19(x0, x1, ty_Char) 26.72/10.96 new_lt11(x0, x1) 26.72/10.96 new_ltEs8(Just(x0), Just(x1), ty_Integer) 26.72/10.96 new_lt19(x0, x1, ty_Double) 26.72/10.96 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.72/10.96 new_lt20(x0, x1, app(ty_Maybe, x2)) 26.72/10.96 new_compare13(x0, x1, x2, x3, x4) 26.72/10.96 new_sr(x0, x1) 26.72/10.96 new_fsEs(x0) 26.72/10.96 new_esEs28(x0, x1, ty_Ordering) 26.72/10.96 new_compare17(x0, x1) 26.72/10.96 new_compare8(x0, x1, ty_@0) 26.72/10.96 new_esEs30(x0, x1, ty_Ordering) 26.72/10.96 new_esEs7(Left(x0), Left(x1), ty_Bool, x2) 26.72/10.96 new_esEs27(x0, x1, ty_@0) 26.72/10.96 new_compare7(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 26.72/10.96 new_compare7(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 26.72/10.96 new_compare7(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 26.72/10.96 new_esEs9(@0, @0) 26.72/10.96 new_compare28(x0, x1, False, x2, x3) 26.72/10.96 new_compare25(x0, x1, True, x2) 26.72/10.96 new_ltEs8(Just(x0), Just(x1), ty_Double) 26.72/10.96 new_esEs22(x0, x1, ty_Float) 26.72/10.96 new_compare27(x0, x1, True) 26.72/10.96 new_ltEs4(Right(x0), Right(x1), x2, ty_Integer) 26.72/10.96 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.72/10.96 new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.72/10.96 new_esEs24(x0, x1, ty_Int) 26.72/10.96 new_esEs5(Just(x0), Just(x1), ty_Double) 26.72/10.96 new_esEs16(:(x0, x1), [], x2) 26.72/10.96 new_primCompAux00(x0, LT) 26.72/10.96 new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) 26.72/10.96 new_esEs29(x0, x1, ty_@0) 26.72/10.96 new_ltEs8(Just(x0), Just(x1), ty_Ordering) 26.72/10.96 new_esEs28(x0, x1, ty_Char) 26.72/10.96 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.96 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.96 new_esEs30(x0, x1, ty_Double) 26.72/10.96 new_compare26(x0, x1, True) 26.72/10.96 new_esEs11(x0, x1, app(ty_Maybe, x2)) 26.72/10.96 new_esEs15(Integer(x0), Integer(x1)) 26.72/10.96 new_lt19(x0, x1, app(ty_[], x2)) 26.72/10.96 new_esEs21(x0, x1, app(ty_Ratio, x2)) 26.72/10.96 new_ltEs15(x0, x1, x2) 26.72/10.96 new_esEs26(x0, x1, ty_Float) 26.72/10.96 new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.72/10.96 new_asAs(True, x0) 26.72/10.96 new_esEs16(:(x0, x1), :(x2, x3), x4) 26.72/10.96 new_lt8(x0, x1, x2, x3) 26.72/10.96 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.96 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.96 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.96 new_ltEs20(x0, x1, ty_Integer) 26.72/10.96 new_compare29(x0, x1, False, x2, x3, x4) 26.72/10.96 new_esEs22(x0, x1, app(ty_[], x2)) 26.72/10.96 new_esEs16([], [], x0) 26.72/10.96 new_ltEs20(x0, x1, ty_Float) 26.72/10.96 new_compare111(x0, x1, True) 26.72/10.96 new_esEs22(x0, x1, ty_Ordering) 26.72/10.96 new_compare110(x0, x1, True, x2, x3) 26.72/10.96 new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 26.72/10.96 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 26.72/10.96 new_compare0([], [], x0) 26.72/10.96 new_esEs7(Right(x0), Right(x1), x2, ty_Double) 26.72/10.96 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.96 new_ltEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.72/10.96 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.96 new_ltEs19(x0, x1, ty_Double) 26.72/10.96 new_esEs8(GT, GT) 26.72/10.96 new_esEs22(x0, x1, ty_Int) 26.72/10.96 new_esEs20(x0, x1, ty_Char) 26.72/10.96 new_ltEs12(EQ, LT) 26.72/10.96 new_ltEs12(LT, EQ) 26.72/10.96 new_compare0([], :(x0, x1), x2) 26.72/10.96 new_esEs8(LT, EQ) 26.72/10.96 new_esEs8(EQ, LT) 26.72/10.96 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.96 new_ltEs12(GT, GT) 26.72/10.96 new_esEs27(x0, x1, app(ty_Maybe, x2)) 26.72/10.96 new_primMulNat0(Succ(x0), Zero) 26.72/10.96 new_primCmpInt(Neg(Zero), Neg(Zero)) 26.72/10.96 new_esEs22(x0, x1, ty_Char) 26.72/10.96 new_esEs21(x0, x1, app(ty_[], x2)) 26.72/10.96 new_lt20(x0, x1, ty_@0) 26.72/10.96 new_esEs28(x0, x1, ty_Bool) 26.72/10.96 new_compare25(Nothing, Nothing, False, x0) 26.72/10.96 new_esEs19(x0, x1) 26.72/10.96 new_esEs11(x0, x1, ty_Double) 26.72/10.96 new_lt14(x0, x1, x2) 26.72/10.96 new_ltEs14(False, False) 26.72/10.96 new_esEs11(x0, x1, ty_@0) 26.72/10.96 new_esEs23(x0, x1, ty_Int) 26.72/10.96 new_compare10(x0, x1, False, x2) 26.72/10.96 new_ltEs6(x0, x1, app(ty_Ratio, x2)) 26.72/10.96 new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.72/10.96 new_lt19(x0, x1, ty_Integer) 26.72/10.96 new_esEs8(LT, LT) 26.72/10.96 new_esEs23(x0, x1, ty_Integer) 26.72/10.96 new_compare8(x0, x1, app(ty_Maybe, x2)) 26.72/10.96 new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 26.72/10.96 new_primCmpInt(Pos(Zero), Neg(Zero)) 26.72/10.96 new_primCmpInt(Neg(Zero), Pos(Zero)) 26.72/10.96 new_esEs30(x0, x1, app(ty_Maybe, x2)) 26.72/10.96 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.96 new_esEs28(x0, x1, ty_Float) 26.72/10.96 new_esEs20(x0, x1, ty_Int) 26.72/10.96 new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.72/10.96 new_esEs21(x0, x1, ty_@0) 26.72/10.96 new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.72/10.96 new_lt19(x0, x1, app(ty_Maybe, x2)) 26.72/10.96 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 26.72/10.96 new_esEs10(x0, x1, ty_Char) 26.72/10.96 new_ltEs4(Right(x0), Right(x1), x2, ty_Bool) 26.72/10.96 new_primEqNat0(Succ(x0), Zero) 26.72/10.96 new_lt15(x0, x1) 26.72/10.96 new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.96 new_ltEs20(x0, x1, ty_Int) 26.72/10.96 new_ltEs4(Right(x0), Right(x1), x2, ty_Float) 26.72/10.96 new_ltEs20(x0, x1, ty_Bool) 26.72/10.96 new_esEs22(x0, x1, ty_Integer) 26.72/10.96 new_esEs23(x0, x1, ty_Char) 26.72/10.96 new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.72/10.96 new_esEs29(x0, x1, app(ty_[], x2)) 26.72/10.96 new_esEs10(x0, x1, ty_Int) 26.72/10.96 new_esEs22(x0, x1, app(ty_Ratio, x2)) 26.72/10.96 new_ltEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.72/10.96 new_ltEs19(x0, x1, ty_@0) 26.72/10.96 new_esEs28(x0, x1, app(ty_[], x2)) 26.72/10.96 new_esEs28(x0, x1, ty_Int) 26.72/10.96 new_ltEs20(x0, x1, ty_Char) 26.72/10.96 new_compare114(x0, x1, False, x2, x3) 26.72/10.96 new_ltEs12(LT, LT) 26.72/10.96 new_esEs5(Nothing, Nothing, x0) 26.72/10.96 new_esEs20(x0, x1, ty_Float) 26.72/10.96 new_ltEs4(Left(x0), Left(x1), ty_Double, x2) 26.72/10.96 new_lt19(x0, x1, ty_Ordering) 26.72/10.96 new_esEs23(x0, x1, app(ty_Maybe, x2)) 26.72/10.96 new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) 26.72/10.96 new_ltEs4(Right(x0), Right(x1), x2, ty_Int) 26.72/10.96 new_esEs21(x0, x1, ty_Double) 26.72/10.96 new_esEs23(x0, x1, ty_Bool) 26.72/10.96 new_ltEs7(x0, x1, x2) 26.72/10.96 new_ltEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.72/10.96 new_ltEs17(x0, x1) 26.72/10.96 new_primCmpNat0(x0, Zero) 26.72/10.96 new_esEs10(x0, x1, ty_Float) 26.72/10.96 new_lt20(x0, x1, ty_Double) 26.72/10.96 new_esEs30(x0, x1, ty_@0) 26.72/10.96 new_ltEs4(Right(x0), Right(x1), x2, ty_Char) 26.72/10.96 new_compare113(x0, x1, False, x2, x3, x4) 26.72/10.96 new_compare25(Just(x0), Nothing, False, x1) 26.72/10.96 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.96 new_lt6(x0, x1, ty_Double) 26.72/10.96 new_esEs11(x0, x1, ty_Char) 26.72/10.96 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 26.72/10.96 new_compare27(x0, x1, False) 26.72/10.96 new_lt20(x0, x1, app(ty_Ratio, x2)) 26.72/10.96 new_ltEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.72/10.96 new_ltEs10(x0, x1) 26.72/10.96 new_esEs7(Left(x0), Left(x1), ty_Float, x2) 26.72/10.96 new_esEs29(x0, x1, ty_Float) 26.72/10.96 new_primCmpNat0(x0, Succ(x1)) 26.72/10.96 new_ltEs4(Left(x0), Left(x1), ty_Integer, x2) 26.72/10.96 new_esEs5(Just(x0), Just(x1), ty_@0) 26.72/10.96 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.72/10.96 new_esEs20(x0, x1, app(ty_Ratio, x2)) 26.72/10.96 new_primCmpNat1(Zero, Succ(x0)) 26.72/10.96 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.96 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.96 new_ltEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.72/10.96 new_esEs10(x0, x1, ty_@0) 26.72/10.96 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 26.72/10.96 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.96 new_compare24(x0, x1, False, x2, x3) 26.72/10.96 new_ltEs8(Nothing, Nothing, x0) 26.72/10.96 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.96 new_esEs24(x0, x1, ty_Integer) 26.72/10.96 new_primMulNat0(Zero, Zero) 26.72/10.96 new_ltEs4(Left(x0), Right(x1), x2, x3) 26.72/10.96 new_ltEs4(Right(x0), Left(x1), x2, x3) 26.72/10.96 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.96 new_primCmpNat2(Succ(x0), x1) 26.72/10.96 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.96 new_ltEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.72/10.96 new_compare8(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.96 new_esEs11(x0, x1, ty_Int) 26.72/10.96 new_esEs27(x0, x1, ty_Float) 26.72/10.96 new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.96 new_esEs10(x0, x1, app(ty_[], x2)) 26.72/10.96 new_lt12(x0, x1) 26.72/10.96 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.96 new_compare0(:(x0, x1), :(x2, x3), x4) 26.72/10.96 new_compare114(x0, x1, True, x2, x3) 26.72/10.96 new_esEs20(x0, x1, ty_Double) 26.72/10.96 new_esEs17(True, True) 26.72/10.96 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.96 new_ltEs6(x0, x1, ty_Float) 26.72/10.96 new_esEs23(x0, x1, ty_Double) 26.72/10.96 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 26.72/10.96 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 26.72/10.96 new_ltEs5(@2(x0, x1), @2(x2, x3), x4, x5) 26.72/10.96 new_ltEs19(x0, x1, ty_Int) 26.72/10.96 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 26.72/10.96 new_compare14(Integer(x0), Integer(x1)) 26.72/10.96 new_esEs7(Left(x0), Right(x1), x2, x3) 26.72/10.96 new_esEs7(Right(x0), Left(x1), x2, x3) 26.72/10.96 new_ltEs16(x0, x1) 26.72/10.96 new_compare8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.96 new_ltEs19(x0, x1, ty_Char) 26.72/10.96 new_primPlusNat0(Succ(x0), Succ(x1)) 26.72/10.96 new_lt16(x0, x1) 26.72/10.96 new_ltEs4(Left(x0), Left(x1), ty_@0, x2) 26.72/10.96 new_primEqNat0(Succ(x0), Succ(x1)) 26.72/10.96 new_esEs23(x0, x1, ty_Ordering) 26.72/10.96 new_esEs11(x0, x1, app(ty_Ratio, x2)) 26.72/10.96 new_esEs10(x0, x1, ty_Bool) 26.72/10.96 new_ltEs6(x0, x1, ty_Integer) 26.72/10.96 new_ltEs6(x0, x1, app(ty_Maybe, x2)) 26.72/10.96 new_esEs5(Just(x0), Just(x1), ty_Integer) 26.72/10.96 new_compare8(x0, x1, app(ty_[], x2)) 26.72/10.96 new_primPlusNat0(Zero, Zero) 26.72/10.96 new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.72/10.96 new_primCmpNat1(Succ(x0), Zero) 26.72/10.96 new_esEs10(x0, x1, ty_Integer) 26.72/10.96 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.96 new_pePe(False, x0) 26.72/10.96 new_ltEs14(True, True) 26.72/10.96 new_ltEs19(x0, x1, ty_Bool) 26.72/10.96 new_not(True) 26.72/10.96 new_esEs25(x0, x1, ty_Int) 26.72/10.96 new_ltEs20(x0, x1, app(ty_[], x2)) 26.72/10.96 new_esEs8(EQ, GT) 26.72/10.96 new_esEs8(GT, EQ) 26.72/10.96 new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.72/10.96 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.96 new_primMulNat0(Zero, Succ(x0)) 26.72/10.96 new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.72/10.96 new_esEs20(x0, x1, app(ty_[], x2)) 26.72/10.96 new_compare112(x0, x1, False) 26.72/10.96 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.96 new_lt20(x0, x1, ty_Ordering) 26.72/10.96 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.96 new_esEs11(x0, x1, ty_Ordering) 26.72/10.96 new_esEs20(x0, x1, ty_Ordering) 26.72/10.96 new_esEs29(x0, x1, ty_Integer) 26.72/10.96 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.72/10.96 new_esEs27(x0, x1, ty_Integer) 26.72/10.96 new_lt6(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.96 new_ltEs18(x0, x1) 26.72/10.96 new_ltEs20(x0, x1, ty_Ordering) 26.72/10.96 new_ltEs19(x0, x1, ty_Ordering) 26.72/10.96 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 26.72/10.96 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.96 new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.72/10.96 new_esEs17(False, True) 26.72/10.96 new_esEs17(True, False) 26.72/10.96 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.96 new_primPlusNat0(Succ(x0), Zero) 26.72/10.96 new_esEs28(x0, x1, ty_Integer) 26.72/10.96 new_esEs28(x0, x1, app(ty_Maybe, x2)) 26.72/10.96 new_ltEs19(x0, x1, ty_Integer) 26.72/10.96 new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.72/10.96 new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.72/10.96 new_ltEs12(EQ, EQ) 26.72/10.96 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.96 new_compare18(@0, @0) 26.72/10.96 new_esEs21(x0, x1, ty_Ordering) 26.72/10.96 new_esEs10(x0, x1, ty_Ordering) 26.72/10.96 new_esEs27(x0, x1, app(ty_[], x2)) 26.72/10.96 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.96 new_esEs13(Double(x0, x1), Double(x2, x3)) 26.72/10.96 new_esEs23(x0, x1, app(ty_Ratio, x2)) 26.72/10.96 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.96 new_lt7(x0, x1, x2) 26.72/10.96 new_compare8(x0, x1, ty_Integer) 26.72/10.96 new_lt10(x0, x1, x2, x3, x4) 26.72/10.96 new_primCmpInt(Pos(Zero), Pos(Zero)) 26.72/10.96 new_ltEs6(x0, x1, ty_Bool) 26.72/10.96 new_compare29(x0, x1, True, x2, x3, x4) 26.72/10.96 new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.72/10.96 new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) 26.72/10.96 new_ltEs4(Left(x0), Left(x1), ty_Int, x2) 26.72/10.96 new_compare8(x0, x1, app(ty_Ratio, x2)) 26.72/10.96 new_ltEs6(x0, x1, app(ty_[], x2)) 26.72/10.96 new_compare7(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 26.72/10.96 new_compare16(x0, x1) 26.72/10.96 new_ltEs8(Just(x0), Just(x1), ty_Float) 26.72/10.96 new_esEs22(x0, x1, ty_Double) 26.72/10.96 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.96 new_esEs23(x0, x1, app(ty_[], x2)) 26.72/10.96 new_esEs7(Right(x0), Right(x1), x2, ty_Int) 26.72/10.96 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.96 new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.72/10.96 new_esEs11(x0, x1, app(ty_[], x2)) 26.72/10.96 new_esEs30(x0, x1, ty_Float) 26.72/10.96 new_esEs27(x0, x1, ty_Bool) 26.72/10.96 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.96 new_ltEs4(Left(x0), Left(x1), ty_Char, x2) 26.72/10.96 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.96 new_esEs8(LT, GT) 26.72/10.96 new_esEs8(GT, LT) 26.72/10.96 new_primPlusNat1(x0, x1) 26.72/10.96 new_lt6(x0, x1, ty_Ordering) 26.72/10.96 new_esEs29(x0, x1, ty_Bool) 26.72/10.96 new_esEs12(Char(x0), Char(x1)) 26.72/10.96 new_esEs27(x0, x1, app(ty_Ratio, x2)) 26.72/10.96 new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) 26.72/10.96 new_lt18(x0, x1, x2, x3) 26.72/10.96 new_ltEs8(Just(x0), Just(x1), ty_Int) 26.72/10.96 new_lt19(x0, x1, ty_Float) 26.72/10.96 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.96 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 26.72/10.96 new_esEs5(Nothing, Just(x0), x1) 26.72/10.96 new_esEs20(x0, x1, ty_@0) 26.72/10.96 new_ltEs4(Left(x0), Left(x1), ty_Float, x2) 26.72/10.96 new_esEs26(x0, x1, ty_Ordering) 26.72/10.96 new_esEs7(Left(x0), Left(x1), ty_Integer, x2) 26.72/10.96 new_ltEs6(x0, x1, ty_@0) 26.72/10.96 new_ltEs4(Left(x0), Left(x1), ty_Ordering, x2) 26.72/10.96 new_esEs10(x0, x1, app(ty_Ratio, x2)) 26.72/10.96 new_esEs5(Just(x0), Just(x1), ty_Ordering) 26.72/10.96 new_esEs10(x0, x1, ty_Double) 26.72/10.96 new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.72/10.96 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 26.72/10.96 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 26.72/10.96 new_esEs29(x0, x1, app(ty_Maybe, x2)) 26.72/10.96 new_lt6(x0, x1, ty_Float) 26.72/10.96 new_compare8(x0, x1, ty_Bool) 26.72/10.96 new_esEs7(Right(x0), Right(x1), x2, ty_Char) 26.72/10.96 new_esEs26(x0, x1, app(ty_[], x2)) 26.72/10.96 new_compare24(x0, x1, True, x2, x3) 26.72/10.96 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.96 new_ltEs8(Just(x0), Nothing, x1) 26.72/10.96 new_esEs7(Left(x0), Left(x1), ty_@0, x2) 26.72/10.96 new_esEs11(x0, x1, ty_Integer) 26.72/10.96 new_primMulInt(Neg(x0), Neg(x1)) 26.72/10.96 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.96 new_esEs30(x0, x1, app(ty_[], x2)) 26.72/10.96 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.96 new_esEs23(x0, x1, ty_@0) 26.72/10.96 new_esEs26(x0, x1, ty_Integer) 26.72/10.96 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.96 new_esEs5(Just(x0), Just(x1), ty_Float) 26.72/10.96 new_compare23(x0, x1, x2, x3) 26.72/10.96 new_ltEs14(False, True) 26.72/10.96 new_ltEs14(True, False) 26.72/10.96 new_primPlusNat0(Zero, Succ(x0)) 26.72/10.96 new_primEqNat0(Zero, Zero) 26.72/10.96 new_compare8(x0, x1, ty_Char) 26.72/10.96 new_esEs25(x0, x1, ty_Integer) 26.72/10.96 new_primCompAux00(x0, GT) 26.72/10.96 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.96 new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) 26.72/10.96 new_lt20(x0, x1, app(ty_[], x2)) 26.72/10.96 new_ltEs4(Right(x0), Right(x1), x2, ty_@0) 26.72/10.96 new_not(False) 26.72/10.96 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 26.72/10.96 new_ltEs8(Just(x0), Just(x1), ty_Char) 26.72/10.96 new_esEs5(Just(x0), Just(x1), ty_Char) 26.72/10.96 new_esEs11(x0, x1, ty_Bool) 26.72/10.96 new_lt20(x0, x1, ty_Float) 26.72/10.96 new_ltEs19(x0, x1, ty_Float) 26.72/10.96 new_lt20(x0, x1, ty_Bool) 26.72/10.96 new_ltEs12(LT, GT) 26.72/10.96 new_ltEs12(GT, LT) 26.72/10.96 new_esEs30(x0, x1, ty_Char) 26.72/10.96 new_lt6(x0, x1, ty_Int) 26.72/10.96 new_compare8(x0, x1, ty_Int) 26.72/10.96 new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.72/10.96 new_esEs21(x0, x1, app(ty_Maybe, x2)) 26.72/10.96 new_sr0(Integer(x0), Integer(x1)) 26.72/10.96 new_lt6(x0, x1, app(ty_Maybe, x2)) 26.72/10.96 new_esEs21(x0, x1, ty_Bool) 26.72/10.96 new_esEs28(x0, x1, ty_Double) 26.72/10.96 new_esEs7(Right(x0), Right(x1), x2, ty_Bool) 26.72/10.96 new_esEs5(Just(x0), Just(x1), ty_Int) 26.72/10.96 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 26.72/10.96 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 26.72/10.96 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 26.72/10.96 new_esEs21(x0, x1, ty_Float) 26.72/10.96 new_compare25(Just(x0), Just(x1), False, x2) 26.72/10.96 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.96 new_ltEs20(x0, x1, ty_@0) 26.72/10.96 new_ltEs4(Left(x0), Left(x1), ty_Bool, x2) 26.72/10.96 new_lt19(x0, x1, app(ty_Ratio, x2)) 26.72/10.96 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.96 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.96 new_compare25(Nothing, Just(x0), False, x1) 26.72/10.96 new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.72/10.96 new_lt4(x0, x1) 26.72/10.96 new_asAs(False, x0) 26.72/10.96 new_esEs30(x0, x1, ty_Int) 26.72/10.96 new_primMulInt(Pos(x0), Neg(x1)) 26.72/10.96 new_primMulInt(Neg(x0), Pos(x1)) 26.72/10.96 new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.72/10.96 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 26.72/10.96 new_ltEs8(Nothing, Just(x0), x1) 26.72/10.96 new_esEs14(Float(x0, x1), Float(x2, x3)) 26.72/10.96 new_lt20(x0, x1, ty_Int) 26.72/10.96 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.72/10.96 new_primCmpNat1(Succ(x0), Succ(x1)) 26.72/10.96 new_esEs21(x0, x1, ty_Char) 26.72/10.96 new_compare111(x0, x1, False) 26.72/10.96 new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.72/10.96 new_ltEs4(Right(x0), Right(x1), x2, ty_Double) 26.72/10.96 new_esEs21(x0, x1, ty_Int) 26.72/10.96 new_lt6(x0, x1, ty_Char) 26.72/10.96 new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 26.72/10.96 new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 26.72/10.96 new_esEs5(Just(x0), Just(x1), ty_Bool) 26.72/10.96 new_compare8(x0, x1, ty_Float) 26.72/10.96 new_lt20(x0, x1, ty_Char) 26.72/10.96 new_ltEs20(x0, x1, ty_Double) 26.72/10.96 new_primCompAux0(x0, x1, x2, x3) 26.72/10.96 new_esEs28(x0, x1, ty_@0) 26.72/10.96 26.72/10.96 We have to consider all minimal (P,Q,R)-chains. 26.72/10.96 ---------------------------------------- 26.72/10.96 26.72/10.96 (43) QDPSizeChangeProof (EQUIVALENT) 26.72/10.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. 26.72/10.96 26.72/10.96 From the DPs we obtained the following set of size-change graphs: 26.72/10.96 *new_addToFM_C21(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu16, xuu20, Just(xuu22), xuu23, bb, bc) 26.72/10.96 The graph contains the following edges 1 >= 1, 5 >= 2, 8 >= 4, 10 >= 5, 11 >= 6 26.72/10.96 26.72/10.96 26.72/10.96 *new_addToFM_C21(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, bb, bc) -> new_addToFM_C12(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs8(new_compare25(Just(xuu22), Just(xuu17), new_esEs30(xuu22, xuu17, bb), bb), GT), bb, bc) 26.72/10.96 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 10 >= 10, 11 >= 11 26.72/10.96 26.72/10.96 26.72/10.96 *new_addToFM_C12(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu16, xuu21, Just(xuu22), xuu23, bb, bc) 26.72/10.96 The graph contains the following edges 1 >= 1, 6 >= 2, 8 >= 4, 10 >= 5, 11 >= 6 26.72/10.96 26.72/10.96 26.72/10.96 *new_addToFM_C11(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, True, h, ba) -> new_addToFM_C(xuu3, xuu44, Just(xuu5000), xuu501, h, ba) 26.72/10.96 The graph contains the following edges 1 >= 1, 5 >= 2, 7 >= 4, 9 >= 5, 10 >= 6 26.72/10.96 26.72/10.96 26.72/10.96 *new_addToFM_C(xuu3, Branch(Just(xuu400), xuu41, xuu42, xuu43, xuu44), Just(xuu5000), xuu501, h, ba) -> new_addToFM_C21(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs8(new_compare25(Just(xuu5000), Just(xuu400), new_esEs29(xuu5000, xuu400, h), h), LT), h, ba) 26.72/10.96 The graph contains the following edges 1 >= 1, 2 > 2, 2 > 3, 2 > 4, 2 > 5, 2 > 6, 3 > 7, 4 >= 8, 5 >= 10, 6 >= 11 26.72/10.96 26.72/10.96 26.72/10.96 *new_addToFM_C(xuu3, Branch(Nothing, xuu41, xuu42, xuu43, xuu44), Just(xuu5000), xuu501, h, ba) -> new_addToFM_C20(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, False, h, ba) 26.72/10.96 The graph contains the following edges 1 >= 1, 2 > 2, 2 > 3, 2 > 4, 2 > 5, 3 > 6, 4 >= 7, 5 >= 9, 6 >= 10 26.72/10.96 26.72/10.96 26.72/10.96 *new_addToFM_C20(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, False, h, ba) -> new_addToFM_C11(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, True, h, ba) 26.72/10.96 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 9 >= 9, 10 >= 10 26.72/10.96 26.72/10.96 26.72/10.96 ---------------------------------------- 26.72/10.96 26.72/10.96 (44) 26.72/10.96 YES 26.72/10.96 26.72/10.96 ---------------------------------------- 26.72/10.96 26.72/10.96 (45) 26.72/10.96 Obligation: 26.72/10.96 Q DP problem: 26.72/10.96 The TRS P consists of the following rules: 26.72/10.96 26.72/10.96 new_addToFM_C1(xuu3, xuu41, xuu42, xuu43, xuu44, xuu501, True, h, ba) -> new_addToFM_C(xuu3, xuu44, Nothing, xuu501, h, ba) 26.72/10.96 new_addToFM_C(xuu3, Branch(Nothing, xuu41, xuu42, xuu43, xuu44), Nothing, xuu501, h, ba) -> new_addToFM_C1(xuu3, xuu41, xuu42, xuu43, xuu44, xuu501, new_esEs8(new_compare25(Nothing, Nothing, True, h), GT), h, ba) 26.72/10.96 new_addToFM_C(xuu3, Branch(Just(xuu400), xuu41, xuu42, xuu43, xuu44), Nothing, xuu501, h, ba) -> new_addToFM_C2(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu501, new_esEs8(new_compare25(Nothing, Just(xuu400), False, h), LT), h, ba) 26.72/10.96 new_addToFM_C2(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu501, True, h, ba) -> new_addToFM_C(xuu3, xuu43, Nothing, xuu501, h, ba) 26.72/10.96 new_addToFM_C2(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu501, False, h, ba) -> new_addToFM_C10(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu501, new_esEs8(new_compare25(Nothing, Just(xuu400), False, h), GT), h, ba) 26.72/10.96 new_addToFM_C10(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu501, True, h, ba) -> new_addToFM_C(xuu3, xuu44, Nothing, xuu501, h, ba) 26.72/10.96 26.72/10.96 The TRS R consists of the following rules: 26.72/10.96 26.72/10.96 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Int) -> new_ltEs13(xuu33000, xuu34000) 26.72/10.96 new_esEs11(xuu50000, xuu4000, ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.96 new_primCmpInt(Neg(Succ(xuu3300)), Pos(xuu340)) -> LT 26.72/10.96 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 26.72/10.96 new_ltEs4(Left(xuu33000), Left(xuu34000), app(ty_[], bgd), bfe) -> new_ltEs15(xuu33000, xuu34000, bgd) 26.72/10.96 new_primPlusNat0(Zero, Zero) -> Zero 26.72/10.96 new_lt6(xuu33000, xuu34000, app(app(ty_@2, bea), beb)) -> new_lt8(xuu33000, xuu34000, bea, beb) 26.72/10.96 new_compare8(xuu33000, xuu34000, ty_Ordering) -> new_compare16(xuu33000, xuu34000) 26.72/10.96 new_pePe(True, xuu161) -> True 26.72/10.96 new_primCmpNat0(xuu3300, Succ(xuu3400)) -> new_primCmpNat1(xuu3300, xuu3400) 26.72/10.96 new_esEs30(xuu22, xuu17, ty_Ordering) -> new_esEs8(xuu22, xuu17) 26.72/10.96 new_esEs24(xuu50001, xuu4001, ty_Int) -> new_esEs19(xuu50001, xuu4001) 26.72/10.96 new_esEs30(xuu22, xuu17, ty_Int) -> new_esEs19(xuu22, xuu17) 26.72/10.96 new_esEs21(xuu50001, xuu4001, app(ty_Ratio, gh)) -> new_esEs18(xuu50001, xuu4001, gh) 26.72/10.96 new_esEs29(xuu5000, xuu400, ty_Char) -> new_esEs12(xuu5000, xuu400) 26.72/10.96 new_ltEs12(LT, LT) -> True 26.72/10.96 new_esEs10(xuu50001, xuu4001, app(app(app(ty_@3, cf), cg), da)) -> new_esEs6(xuu50001, xuu4001, cf, cg, da) 26.72/10.96 new_esEs30(xuu22, xuu17, app(app(ty_@2, chd), che)) -> new_esEs4(xuu22, xuu17, chd, che) 26.72/10.96 new_lt19(xuu33001, xuu34001, app(ty_[], dce)) -> new_lt14(xuu33001, xuu34001, dce) 26.72/10.96 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 26.72/10.96 new_esEs27(xuu33001, xuu34001, app(ty_[], dce)) -> new_esEs16(xuu33001, xuu34001, dce) 26.72/10.96 new_primCmpInt(Pos(Zero), Neg(Succ(xuu3400))) -> GT 26.72/10.96 new_esEs26(xuu50000, xuu4000, ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.96 new_esEs22(xuu50000, xuu4000, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.96 new_ltEs19(xuu3300, xuu3400, app(app(ty_@2, bcd), bce)) -> new_ltEs5(xuu3300, xuu3400, bcd, bce) 26.72/10.96 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(ty_[], bhg)) -> new_ltEs15(xuu33000, xuu34000, bhg) 26.72/10.96 new_lt7(xuu33000, xuu34000, bdh) -> new_esEs8(new_compare9(xuu33000, xuu34000, bdh), LT) 26.72/10.96 new_primMulNat0(Succ(xuu5000100), Succ(xuu400000)) -> new_primPlusNat1(new_primMulNat0(xuu5000100, Succ(xuu400000)), xuu400000) 26.72/10.96 new_compare8(xuu33000, xuu34000, app(ty_Ratio, bag)) -> new_compare9(xuu33000, xuu34000, bag) 26.72/10.96 new_esEs29(xuu5000, xuu400, ty_Float) -> new_esEs14(xuu5000, xuu400) 26.72/10.96 new_compare28(xuu33000, xuu34000, False, bea, beb) -> new_compare114(xuu33000, xuu34000, new_ltEs5(xuu33000, xuu34000, bea, beb), bea, beb) 26.72/10.96 new_esEs23(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) 26.72/10.96 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Double, beh) -> new_esEs13(xuu50000, xuu4000) 26.72/10.96 new_compare8(xuu33000, xuu34000, ty_Double) -> new_compare19(xuu33000, xuu34000) 26.72/10.96 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Double, bfe) -> new_ltEs17(xuu33000, xuu34000) 26.72/10.96 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.96 new_lt19(xuu33001, xuu34001, ty_Int) -> new_lt4(xuu33001, xuu34001) 26.72/10.96 new_lt19(xuu33001, xuu34001, app(app(ty_Either, dcf), dcg)) -> new_lt18(xuu33001, xuu34001, dcf, dcg) 26.72/10.96 new_primCmpNat1(Succ(xuu33000), Succ(xuu34000)) -> new_primCmpNat1(xuu33000, xuu34000) 26.72/10.96 new_ltEs19(xuu3300, xuu3400, ty_Char) -> new_ltEs11(xuu3300, xuu3400) 26.72/10.96 new_esEs28(xuu33000, xuu34000, app(app(ty_Either, ddh), dea)) -> new_esEs7(xuu33000, xuu34000, ddh, dea) 26.72/10.96 new_ltEs15(xuu3300, xuu3400, baf) -> new_fsEs(new_compare0(xuu3300, xuu3400, baf)) 26.72/10.96 new_esEs13(Double(xuu50000, xuu50001), Double(xuu4000, xuu4001)) -> new_esEs19(new_sr(xuu50000, xuu4001), new_sr(xuu50001, xuu4000)) 26.72/10.96 new_ltEs6(xuu33001, xuu34001, ty_@0) -> new_ltEs16(xuu33001, xuu34001) 26.72/10.96 new_compare26(xuu33000, xuu34000, True) -> EQ 26.72/10.96 new_esEs10(xuu50001, xuu4001, ty_Char) -> new_esEs12(xuu50001, xuu4001) 26.72/10.96 new_esEs8(GT, GT) -> True 26.72/10.96 new_primEqInt(Pos(Succ(xuu500000)), Pos(Zero)) -> False 26.72/10.96 new_primEqInt(Pos(Zero), Pos(Succ(xuu40000))) -> False 26.72/10.96 new_lt12(xuu33000, xuu34000) -> new_esEs8(new_compare16(xuu33000, xuu34000), LT) 26.72/10.96 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(app(app(ty_@3, ccc), ccd), cce)) -> new_esEs6(xuu50000, xuu4000, ccc, ccd, cce) 26.72/10.96 new_fsEs(xuu146) -> new_not(new_esEs8(xuu146, GT)) 26.72/10.96 new_esEs29(xuu5000, xuu400, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs6(xuu5000, xuu400, ed, ee, ef) 26.72/10.96 new_compare25(Just(xuu3300), Just(xuu3400), False, cfd) -> new_compare10(xuu3300, xuu3400, new_ltEs19(xuu3300, xuu3400, cfd), cfd) 26.72/10.96 new_ltEs19(xuu3300, xuu3400, ty_Bool) -> new_ltEs14(xuu3300, xuu3400) 26.72/10.96 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.96 new_esEs20(xuu50002, xuu4002, ty_Int) -> new_esEs19(xuu50002, xuu4002) 26.72/10.96 new_esEs8(EQ, EQ) -> True 26.72/10.96 new_ltEs20(xuu33002, xuu34002, ty_Char) -> new_ltEs11(xuu33002, xuu34002) 26.72/10.96 new_primEqNat0(Succ(xuu500000), Succ(xuu40000)) -> new_primEqNat0(xuu500000, xuu40000) 26.72/10.96 new_esEs30(xuu22, xuu17, ty_Char) -> new_esEs12(xuu22, xuu17) 26.72/10.96 new_esEs27(xuu33001, xuu34001, ty_Integer) -> new_esEs15(xuu33001, xuu34001) 26.72/10.96 new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare6(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 26.72/10.96 new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare6(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 26.72/10.96 new_ltEs20(xuu33002, xuu34002, ty_Integer) -> new_ltEs10(xuu33002, xuu34002) 26.72/10.96 new_esEs21(xuu50001, xuu4001, ty_Double) -> new_esEs13(xuu50001, xuu4001) 26.72/10.96 new_esEs10(xuu50001, xuu4001, ty_Float) -> new_esEs14(xuu50001, xuu4001) 26.72/10.96 new_esEs22(xuu50000, xuu4000, ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.96 new_not(True) -> False 26.72/10.96 new_lt20(xuu33000, xuu34000, app(ty_Ratio, dch)) -> new_lt7(xuu33000, xuu34000, dch) 26.72/10.96 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(app(ty_@2, bha), bhb)) -> new_ltEs5(xuu33000, xuu34000, bha, bhb) 26.72/10.96 new_ltEs12(LT, GT) -> True 26.72/10.96 new_lt14(xuu33000, xuu34000, bef) -> new_esEs8(new_compare0(xuu33000, xuu34000, bef), LT) 26.72/10.96 new_lt19(xuu33001, xuu34001, app(ty_Ratio, dbf)) -> new_lt7(xuu33001, xuu34001, dbf) 26.72/10.96 new_primCompAux00(xuu178, LT) -> LT 26.72/10.96 new_esEs10(xuu50001, xuu4001, app(ty_Ratio, ce)) -> new_esEs18(xuu50001, xuu4001, ce) 26.72/10.96 new_esEs21(xuu50001, xuu4001, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs6(xuu50001, xuu4001, ha, hb, hc) 26.72/10.96 new_esEs27(xuu33001, xuu34001, ty_Bool) -> new_esEs17(xuu33001, xuu34001) 26.72/10.96 new_esEs30(xuu22, xuu17, ty_Float) -> new_esEs14(xuu22, xuu17) 26.72/10.96 new_esEs20(xuu50002, xuu4002, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs6(xuu50002, xuu4002, fg, fh, ga) 26.72/10.96 new_esEs26(xuu50000, xuu4000, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.96 new_esEs20(xuu50002, xuu4002, app(app(ty_Either, eg), eh)) -> new_esEs7(xuu50002, xuu4002, eg, eh) 26.72/10.96 new_compare8(xuu33000, xuu34000, ty_Float) -> new_compare7(xuu33000, xuu34000) 26.72/10.96 new_ltEs19(xuu3300, xuu3400, ty_Integer) -> new_ltEs10(xuu3300, xuu3400) 26.72/10.96 new_esEs10(xuu50001, xuu4001, ty_Ordering) -> new_esEs8(xuu50001, xuu4001) 26.72/10.96 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Integer, beh) -> new_esEs15(xuu50000, xuu4000) 26.72/10.96 new_ltEs19(xuu3300, xuu3400, ty_Double) -> new_ltEs17(xuu3300, xuu3400) 26.72/10.96 new_esEs11(xuu50000, xuu4000, app(ty_Ratio, dh)) -> new_esEs18(xuu50000, xuu4000, dh) 26.72/10.96 new_primEqNat0(Succ(xuu500000), Zero) -> False 26.72/10.96 new_primEqNat0(Zero, Succ(xuu40000)) -> False 26.72/10.96 new_compare112(xuu33000, xuu34000, False) -> GT 26.72/10.96 new_ltEs20(xuu33002, xuu34002, app(ty_Maybe, dag)) -> new_ltEs8(xuu33002, xuu34002, dag) 26.72/10.96 new_esEs29(xuu5000, xuu400, ty_Int) -> new_esEs19(xuu5000, xuu400) 26.72/10.96 new_lt20(xuu33000, xuu34000, app(ty_[], ddg)) -> new_lt14(xuu33000, xuu34000, ddg) 26.72/10.96 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_ltEs9(xuu33000, xuu34000, bhd, bhe, bhf) 26.72/10.96 new_ltEs20(xuu33002, xuu34002, ty_Bool) -> new_ltEs14(xuu33002, xuu34002) 26.72/10.96 new_primCompAux00(xuu178, GT) -> GT 26.72/10.96 new_compare7(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare6(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 26.72/10.96 new_compare7(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare6(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 26.72/10.96 new_ltEs6(xuu33001, xuu34001, app(ty_Maybe, bda)) -> new_ltEs8(xuu33001, xuu34001, bda) 26.72/10.96 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.96 new_esEs5(Just(xuu50000), Just(xuu4000), app(ty_Ratio, cdd)) -> new_esEs18(xuu50000, xuu4000, cdd) 26.72/10.96 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Bool) -> new_ltEs14(xuu33000, xuu34000) 26.72/10.96 new_primCmpNat2(Zero, xuu3300) -> LT 26.72/10.96 new_esEs20(xuu50002, xuu4002, ty_Ordering) -> new_esEs8(xuu50002, xuu4002) 26.72/10.96 new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(ty_@2, cec), ced)) -> new_ltEs5(xuu33000, xuu34000, cec, ced) 26.72/10.96 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Integer, bfe) -> new_ltEs10(xuu33000, xuu34000) 26.72/10.96 new_primCmpInt(Pos(Succ(xuu3300)), Neg(xuu340)) -> GT 26.72/10.96 new_ltEs20(xuu33002, xuu34002, app(app(ty_@2, dae), daf)) -> new_ltEs5(xuu33002, xuu34002, dae, daf) 26.72/10.96 new_esEs20(xuu50002, xuu4002, app(app(ty_@2, fa), fb)) -> new_esEs4(xuu50002, xuu4002, fa, fb) 26.72/10.96 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_@0, bfe) -> new_ltEs16(xuu33000, xuu34000) 26.72/10.96 new_ltEs6(xuu33001, xuu34001, app(ty_Ratio, bcf)) -> new_ltEs7(xuu33001, xuu34001, bcf) 26.72/10.96 new_compare110(xuu33000, xuu34000, True, bca, bcb) -> LT 26.72/10.96 new_ltEs6(xuu33001, xuu34001, ty_Double) -> new_ltEs17(xuu33001, xuu34001) 26.72/10.96 new_esEs19(xuu5000, xuu400) -> new_primEqInt(xuu5000, xuu400) 26.72/10.96 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Bool, beh) -> new_esEs17(xuu50000, xuu4000) 26.72/10.96 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Char, bfe) -> new_ltEs11(xuu33000, xuu34000) 26.72/10.96 new_esEs22(xuu50000, xuu4000, app(ty_Ratio, bab)) -> new_esEs18(xuu50000, xuu4000, bab) 26.72/10.96 new_esEs7(Left(xuu50000), Left(xuu4000), app(app(app(ty_@3, cba), cbb), cbc), beh) -> new_esEs6(xuu50000, xuu4000, cba, cbb, cbc) 26.72/10.96 new_esEs26(xuu50000, xuu4000, ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.96 new_ltEs20(xuu33002, xuu34002, ty_Double) -> new_ltEs17(xuu33002, xuu34002) 26.72/10.96 new_esEs28(xuu33000, xuu34000, ty_Char) -> new_esEs12(xuu33000, xuu34000) 26.72/10.96 new_esEs28(xuu33000, xuu34000, app(ty_[], ddg)) -> new_esEs16(xuu33000, xuu34000, ddg) 26.72/10.96 new_esEs7(Left(xuu50000), Left(xuu4000), ty_@0, beh) -> new_esEs9(xuu50000, xuu4000) 26.72/10.96 new_primCompAux0(xuu33000, xuu34000, xuu172, baf) -> new_primCompAux00(xuu172, new_compare8(xuu33000, xuu34000, baf)) 26.72/10.96 new_ltEs6(xuu33001, xuu34001, app(ty_[], bde)) -> new_ltEs15(xuu33001, xuu34001, bde) 26.72/10.96 new_pePe(False, xuu161) -> xuu161 26.72/10.96 new_lt8(xuu33000, xuu34000, bea, beb) -> new_esEs8(new_compare11(xuu33000, xuu34000, bea, beb), LT) 26.72/10.96 new_esEs27(xuu33001, xuu34001, ty_Double) -> new_esEs13(xuu33001, xuu34001) 26.72/10.96 new_compare7(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare6(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 26.72/10.96 new_lt20(xuu33000, xuu34000, ty_Float) -> new_lt17(xuu33000, xuu34000) 26.72/10.96 new_ltEs12(GT, GT) -> True 26.72/10.96 new_lt9(xuu33000, xuu34000, bcc) -> new_esEs8(new_compare12(xuu33000, xuu34000, bcc), LT) 26.72/10.96 new_esEs11(xuu50000, xuu4000, ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.96 new_esEs7(Left(xuu50000), Left(xuu4000), app(app(ty_@2, cad), cae), beh) -> new_esEs4(xuu50000, xuu4000, cad, cae) 26.72/10.96 new_lt17(xuu33000, xuu34000) -> new_esEs8(new_compare7(xuu33000, xuu34000), LT) 26.72/10.96 new_esEs6(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), ed, ee, ef) -> new_asAs(new_esEs22(xuu50000, xuu4000, ed), new_asAs(new_esEs21(xuu50001, xuu4001, ee), new_esEs20(xuu50002, xuu4002, ef))) 26.72/10.96 new_esEs10(xuu50001, xuu4001, app(app(ty_Either, bg), bh)) -> new_esEs7(xuu50001, xuu4001, bg, bh) 26.72/10.96 new_compare114(xuu33000, xuu34000, True, bea, beb) -> LT 26.72/10.96 new_ltEs12(GT, EQ) -> False 26.72/10.96 new_ltEs6(xuu33001, xuu34001, app(app(ty_@2, bcg), bch)) -> new_ltEs5(xuu33001, xuu34001, bcg, bch) 26.72/10.96 new_compare8(xuu33000, xuu34000, ty_Int) -> new_compare6(xuu33000, xuu34000) 26.72/10.96 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(ty_Ratio, bgh)) -> new_ltEs7(xuu33000, xuu34000, bgh) 26.72/10.96 new_esEs26(xuu50000, xuu4000, ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.96 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.96 new_compare26(xuu33000, xuu34000, False) -> new_compare111(xuu33000, xuu34000, new_ltEs12(xuu33000, xuu34000)) 26.72/10.96 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Char) -> new_ltEs11(xuu33000, xuu34000) 26.72/10.96 new_compare10(xuu129, xuu130, False, bd) -> GT 26.72/10.96 new_lt20(xuu33000, xuu34000, ty_Integer) -> new_lt11(xuu33000, xuu34000) 26.72/10.96 new_lt20(xuu33000, xuu34000, app(ty_Maybe, ddc)) -> new_lt9(xuu33000, xuu34000, ddc) 26.72/10.96 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(ty_Ratio, ccb)) -> new_esEs18(xuu50000, xuu4000, ccb) 26.72/10.96 new_esEs8(LT, EQ) -> False 26.72/10.96 new_esEs8(EQ, LT) -> False 26.72/10.96 new_esEs21(xuu50001, xuu4001, app(app(ty_@2, gd), ge)) -> new_esEs4(xuu50001, xuu4001, gd, ge) 26.72/10.96 new_compare29(xuu33000, xuu34000, False, bec, bed, bee) -> new_compare113(xuu33000, xuu34000, new_ltEs9(xuu33000, xuu34000, bec, bed, bee), bec, bed, bee) 26.72/10.96 new_lt19(xuu33001, xuu34001, app(ty_Maybe, dca)) -> new_lt9(xuu33001, xuu34001, dca) 26.72/10.96 new_primEqInt(Pos(Zero), Neg(Succ(xuu40000))) -> False 26.72/10.96 new_primEqInt(Neg(Zero), Pos(Succ(xuu40000))) -> False 26.72/10.96 new_lt19(xuu33001, xuu34001, ty_Ordering) -> new_lt12(xuu33001, xuu34001) 26.72/10.96 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Integer) -> new_ltEs10(xuu33000, xuu34000) 26.72/10.96 new_esEs11(xuu50000, xuu4000, app(ty_Maybe, df)) -> new_esEs5(xuu50000, xuu4000, df) 26.72/10.96 new_esEs21(xuu50001, xuu4001, ty_Ordering) -> new_esEs8(xuu50001, xuu4001) 26.72/10.96 new_esEs18(:%(xuu50000, xuu50001), :%(xuu4000, xuu4001), bfc) -> new_asAs(new_esEs25(xuu50000, xuu4000, bfc), new_esEs24(xuu50001, xuu4001, bfc)) 26.72/10.96 new_esEs5(Just(xuu50000), Just(xuu4000), app(app(app(ty_@3, cde), cdf), cdg)) -> new_esEs6(xuu50000, xuu4000, cde, cdf, cdg) 26.72/10.96 new_ltEs14(True, True) -> True 26.72/10.96 new_esEs25(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.96 new_esEs21(xuu50001, xuu4001, ty_Float) -> new_esEs14(xuu50001, xuu4001) 26.72/10.96 new_esEs21(xuu50001, xuu4001, app(ty_Maybe, gf)) -> new_esEs5(xuu50001, xuu4001, gf) 26.72/10.96 new_esEs23(xuu33000, xuu34000, app(app(ty_Either, bca), bcb)) -> new_esEs7(xuu33000, xuu34000, bca, bcb) 26.72/10.96 new_esEs26(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.96 new_esEs5(Nothing, Nothing, bfa) -> True 26.72/10.96 new_esEs26(xuu50000, xuu4000, app(ty_[], cge)) -> new_esEs16(xuu50000, xuu4000, cge) 26.72/10.96 new_primEqInt(Neg(Succ(xuu500000)), Neg(Succ(xuu40000))) -> new_primEqNat0(xuu500000, xuu40000) 26.72/10.96 new_esEs5(Nothing, Just(xuu4000), bfa) -> False 26.72/10.96 new_esEs5(Just(xuu50000), Nothing, bfa) -> False 26.72/10.96 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Float, bfe) -> new_ltEs18(xuu33000, xuu34000) 26.72/10.96 new_primCmpInt(Neg(Zero), Pos(Succ(xuu3400))) -> LT 26.72/10.96 new_lt19(xuu33001, xuu34001, ty_Bool) -> new_lt13(xuu33001, xuu34001) 26.72/10.96 new_compare114(xuu33000, xuu34000, False, bea, beb) -> GT 26.72/10.96 new_ltEs20(xuu33002, xuu34002, ty_@0) -> new_ltEs16(xuu33002, xuu34002) 26.72/10.96 new_primMulInt(Pos(xuu500010), Pos(xuu40000)) -> Pos(new_primMulNat0(xuu500010, xuu40000)) 26.72/10.96 new_lt6(xuu33000, xuu34000, app(app(app(ty_@3, bec), bed), bee)) -> new_lt10(xuu33000, xuu34000, bec, bed, bee) 26.72/10.96 new_compare8(xuu33000, xuu34000, ty_Integer) -> new_compare14(xuu33000, xuu34000) 26.72/10.96 new_lt20(xuu33000, xuu34000, app(app(ty_@2, dda), ddb)) -> new_lt8(xuu33000, xuu34000, dda, ddb) 26.72/10.96 new_esEs7(Left(xuu50000), Left(xuu4000), app(app(ty_Either, cab), cac), beh) -> new_esEs7(xuu50000, xuu4000, cab, cac) 26.72/10.96 new_compare25(Just(xuu3300), Nothing, False, cfd) -> GT 26.72/10.96 new_esEs28(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) 26.72/10.96 new_compare10(xuu129, xuu130, True, bd) -> LT 26.72/10.96 new_lt19(xuu33001, xuu34001, ty_Float) -> new_lt17(xuu33001, xuu34001) 26.72/10.96 new_compare24(xuu33000, xuu34000, False, bca, bcb) -> new_compare110(xuu33000, xuu34000, new_ltEs4(xuu33000, xuu34000, bca, bcb), bca, bcb) 26.72/10.96 new_ltEs19(xuu3300, xuu3400, app(ty_Maybe, cea)) -> new_ltEs8(xuu3300, xuu3400, cea) 26.72/10.96 new_esEs10(xuu50001, xuu4001, app(app(ty_@2, ca), cb)) -> new_esEs4(xuu50001, xuu4001, ca, cb) 26.72/10.96 new_primMulNat0(Succ(xuu5000100), Zero) -> Zero 26.72/10.96 new_primMulNat0(Zero, Succ(xuu400000)) -> Zero 26.72/10.96 new_esEs29(xuu5000, xuu400, ty_Double) -> new_esEs13(xuu5000, xuu400) 26.72/10.96 new_lt19(xuu33001, xuu34001, ty_Integer) -> new_lt11(xuu33001, xuu34001) 26.72/10.96 new_ltEs6(xuu33001, xuu34001, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_ltEs9(xuu33001, xuu34001, bdb, bdc, bdd) 26.72/10.96 new_lt20(xuu33000, xuu34000, ty_Bool) -> new_lt13(xuu33000, xuu34000) 26.72/10.96 new_esEs23(xuu33000, xuu34000, app(ty_Maybe, bcc)) -> new_esEs5(xuu33000, xuu34000, bcc) 26.72/10.96 new_compare9(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Int) -> new_compare6(new_sr(xuu33000, xuu34001), new_sr(xuu34000, xuu33001)) 26.72/10.96 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Bool) -> new_ltEs14(xuu33000, xuu34000) 26.72/10.96 new_ltEs17(xuu3300, xuu3400) -> new_fsEs(new_compare19(xuu3300, xuu3400)) 26.72/10.96 new_esEs28(xuu33000, xuu34000, ty_Int) -> new_esEs19(xuu33000, xuu34000) 26.72/10.96 new_primPlusNat0(Succ(xuu28200), Zero) -> Succ(xuu28200) 26.72/10.96 new_primPlusNat0(Zero, Succ(xuu9600)) -> Succ(xuu9600) 26.72/10.96 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Int, bfe) -> new_ltEs13(xuu33000, xuu34000) 26.72/10.96 new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare6(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 26.72/10.96 new_ltEs10(xuu3300, xuu3400) -> new_fsEs(new_compare14(xuu3300, xuu3400)) 26.72/10.96 new_esEs26(xuu50000, xuu4000, app(ty_Ratio, cgf)) -> new_esEs18(xuu50000, xuu4000, cgf) 26.72/10.96 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) 26.72/10.96 new_esEs11(xuu50000, xuu4000, app(app(ty_@2, dd), de)) -> new_esEs4(xuu50000, xuu4000, dd, de) 26.72/10.96 new_ltEs4(Left(xuu33000), Left(xuu34000), app(ty_Maybe, bfh), bfe) -> new_ltEs8(xuu33000, xuu34000, bfh) 26.72/10.96 new_compare8(xuu33000, xuu34000, app(app(ty_@2, bah), bba)) -> new_compare11(xuu33000, xuu34000, bah, bba) 26.72/10.96 new_esEs8(LT, LT) -> True 26.72/10.96 new_compare111(xuu33000, xuu34000, True) -> LT 26.72/10.96 new_lt6(xuu33000, xuu34000, ty_Integer) -> new_lt11(xuu33000, xuu34000) 26.72/10.96 new_lt20(xuu33000, xuu34000, ty_Int) -> new_lt4(xuu33000, xuu34000) 26.72/10.96 new_lt6(xuu33000, xuu34000, ty_Ordering) -> new_lt12(xuu33000, xuu34000) 26.72/10.96 new_lt19(xuu33001, xuu34001, app(app(ty_@2, dbg), dbh)) -> new_lt8(xuu33001, xuu34001, dbg, dbh) 26.72/10.96 new_lt15(xuu33000, xuu34000) -> new_esEs8(new_compare18(xuu33000, xuu34000), LT) 26.72/10.96 new_ltEs19(xuu3300, xuu3400, app(app(app(ty_@3, cfe), cff), cfg)) -> new_ltEs9(xuu3300, xuu3400, cfe, cff, cfg) 26.72/10.96 new_esEs22(xuu50000, xuu4000, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs6(xuu50000, xuu4000, bac, bad, bae) 26.72/10.96 new_lt13(xuu33000, xuu34000) -> new_esEs8(new_compare17(xuu33000, xuu34000), LT) 26.72/10.96 new_ltEs4(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, bga), bgb), bgc), bfe) -> new_ltEs9(xuu33000, xuu34000, bga, bgb, bgc) 26.72/10.96 new_esEs28(xuu33000, xuu34000, ty_Bool) -> new_esEs17(xuu33000, xuu34000) 26.72/10.96 new_lt6(xuu33000, xuu34000, app(ty_[], bef)) -> new_lt14(xuu33000, xuu34000, bef) 26.72/10.96 new_ltEs11(xuu3300, xuu3400) -> new_fsEs(new_compare15(xuu3300, xuu3400)) 26.72/10.96 new_lt5(xuu33000, xuu34000) -> new_esEs8(new_compare15(xuu33000, xuu34000), LT) 26.72/10.96 new_ltEs9(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), cfe, cff, cfg) -> new_pePe(new_lt20(xuu33000, xuu34000, cfe), new_asAs(new_esEs28(xuu33000, xuu34000, cfe), new_pePe(new_lt19(xuu33001, xuu34001, cff), new_asAs(new_esEs27(xuu33001, xuu34001, cff), new_ltEs20(xuu33002, xuu34002, cfg))))) 26.72/10.96 new_esEs11(xuu50000, xuu4000, ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.96 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Char, beh) -> new_esEs12(xuu50000, xuu4000) 26.72/10.96 new_esEs27(xuu33001, xuu34001, ty_@0) -> new_esEs9(xuu33001, xuu34001) 26.72/10.96 new_esEs23(xuu33000, xuu34000, app(app(app(ty_@3, bec), bed), bee)) -> new_esEs6(xuu33000, xuu34000, bec, bed, bee) 26.72/10.96 new_esEs16([], [], bfb) -> True 26.72/10.96 new_esEs29(xuu5000, xuu400, ty_Bool) -> new_esEs17(xuu5000, xuu400) 26.72/10.96 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Float) -> new_ltEs18(xuu33000, xuu34000) 26.72/10.96 new_primMulInt(Neg(xuu500010), Neg(xuu40000)) -> Pos(new_primMulNat0(xuu500010, xuu40000)) 26.72/10.96 new_compare25(xuu330, xuu340, True, cfd) -> EQ 26.72/10.96 new_esEs10(xuu50001, xuu4001, app(ty_Maybe, cc)) -> new_esEs5(xuu50001, xuu4001, cc) 26.72/10.96 new_lt20(xuu33000, xuu34000, ty_Ordering) -> new_lt12(xuu33000, xuu34000) 26.72/10.96 new_compare8(xuu33000, xuu34000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_compare13(xuu33000, xuu34000, bbc, bbd, bbe) 26.72/10.96 new_lt16(xuu33000, xuu34000) -> new_esEs8(new_compare19(xuu33000, xuu34000), LT) 26.72/10.96 new_esEs28(xuu33000, xuu34000, ty_Integer) -> new_esEs15(xuu33000, xuu34000) 26.72/10.96 new_esEs22(xuu50000, xuu4000, app(ty_Maybe, hh)) -> new_esEs5(xuu50000, xuu4000, hh) 26.72/10.96 new_ltEs18(xuu3300, xuu3400) -> new_fsEs(new_compare7(xuu3300, xuu3400)) 26.72/10.96 new_esEs27(xuu33001, xuu34001, ty_Int) -> new_esEs19(xuu33001, xuu34001) 26.72/10.96 new_lt19(xuu33001, xuu34001, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_lt10(xuu33001, xuu34001, dcb, dcc, dcd) 26.72/10.96 new_lt6(xuu33000, xuu34000, app(ty_Ratio, bdh)) -> new_lt7(xuu33000, xuu34000, bdh) 26.72/10.96 new_lt6(xuu33000, xuu34000, ty_Bool) -> new_lt13(xuu33000, xuu34000) 26.72/10.96 new_compare13(xuu33000, xuu34000, bec, bed, bee) -> new_compare29(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, bec, bed, bee), bec, bed, bee) 26.72/10.96 new_esEs20(xuu50002, xuu4002, ty_Float) -> new_esEs14(xuu50002, xuu4002) 26.72/10.96 new_esEs5(Just(xuu50000), Just(xuu4000), app(ty_Maybe, cdb)) -> new_esEs5(xuu50000, xuu4000, cdb) 26.72/10.96 new_esEs23(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) 26.72/10.96 new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(ty_Either, cfb), cfc)) -> new_ltEs4(xuu33000, xuu34000, cfb, cfc) 26.72/10.96 new_compare6(xuu33, xuu34) -> new_primCmpInt(xuu33, xuu34) 26.72/10.96 new_esEs11(xuu50000, xuu4000, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs6(xuu50000, xuu4000, ea, eb, ec) 26.72/10.96 new_esEs23(xuu33000, xuu34000, app(app(ty_@2, bea), beb)) -> new_esEs4(xuu33000, xuu34000, bea, beb) 26.72/10.96 new_compare112(xuu33000, xuu34000, True) -> LT 26.72/10.96 new_lt20(xuu33000, xuu34000, app(app(app(ty_@3, ddd), dde), ddf)) -> new_lt10(xuu33000, xuu34000, ddd, dde, ddf) 26.72/10.96 new_ltEs20(xuu33002, xuu34002, app(app(app(ty_@3, dah), dba), dbb)) -> new_ltEs9(xuu33002, xuu34002, dah, dba, dbb) 26.72/10.96 new_primMulInt(Pos(xuu500010), Neg(xuu40000)) -> Neg(new_primMulNat0(xuu500010, xuu40000)) 26.72/10.96 new_primMulInt(Neg(xuu500010), Pos(xuu40000)) -> Neg(new_primMulNat0(xuu500010, xuu40000)) 26.72/10.96 new_esEs12(Char(xuu50000), Char(xuu4000)) -> new_primEqNat0(xuu50000, xuu4000) 26.72/10.96 new_esEs26(xuu50000, xuu4000, app(app(ty_Either, cfh), cga)) -> new_esEs7(xuu50000, xuu4000, cfh, cga) 26.72/10.96 new_esEs20(xuu50002, xuu4002, ty_Integer) -> new_esEs15(xuu50002, xuu4002) 26.72/10.96 new_esEs22(xuu50000, xuu4000, ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.96 new_esEs28(xuu33000, xuu34000, ty_Double) -> new_esEs13(xuu33000, xuu34000) 26.72/10.96 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.96 new_compare15(Char(xuu33000), Char(xuu34000)) -> new_primCmpNat1(xuu33000, xuu34000) 26.72/10.96 new_compare17(xuu33000, xuu34000) -> new_compare27(xuu33000, xuu34000, new_esEs17(xuu33000, xuu34000)) 26.72/10.96 new_primCmpInt(Pos(Succ(xuu3300)), Pos(xuu340)) -> new_primCmpNat0(xuu3300, xuu340) 26.72/10.96 new_esEs22(xuu50000, xuu4000, app(app(ty_@2, hf), hg)) -> new_esEs4(xuu50000, xuu4000, hf, hg) 26.72/10.96 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(app(ty_Either, bhh), caa)) -> new_ltEs4(xuu33000, xuu34000, bhh, caa) 26.72/10.96 new_ltEs13(xuu3300, xuu3400) -> new_fsEs(new_compare6(xuu3300, xuu3400)) 26.72/10.96 new_primCmpNat1(Succ(xuu33000), Zero) -> GT 26.72/10.96 new_esEs30(xuu22, xuu17, ty_Bool) -> new_esEs17(xuu22, xuu17) 26.72/10.96 new_esEs27(xuu33001, xuu34001, ty_Char) -> new_esEs12(xuu33001, xuu34001) 26.72/10.96 new_compare8(xuu33000, xuu34000, app(ty_Maybe, bbb)) -> new_compare12(xuu33000, xuu34000, bbb) 26.72/10.96 new_ltEs6(xuu33001, xuu34001, ty_Int) -> new_ltEs13(xuu33001, xuu34001) 26.72/10.96 new_ltEs19(xuu3300, xuu3400, ty_Ordering) -> new_ltEs12(xuu3300, xuu3400) 26.72/10.96 new_lt6(xuu33000, xuu34000, ty_Int) -> new_lt4(xuu33000, xuu34000) 26.72/10.96 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(app(ty_@2, cbf), cbg)) -> new_esEs4(xuu50000, xuu4000, cbf, cbg) 26.72/10.96 new_sr0(Integer(xuu330000), Integer(xuu340010)) -> Integer(new_primMulInt(xuu330000, xuu340010)) 26.72/10.96 new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_Ratio, ceb)) -> new_ltEs7(xuu33000, xuu34000, ceb) 26.72/10.96 new_esEs29(xuu5000, xuu400, app(ty_Maybe, bfa)) -> new_esEs5(xuu5000, xuu400, bfa) 26.72/10.96 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(ty_Maybe, cbh)) -> new_esEs5(xuu50000, xuu4000, cbh) 26.72/10.96 new_esEs27(xuu33001, xuu34001, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_esEs6(xuu33001, xuu34001, dcb, dcc, dcd) 26.72/10.96 new_esEs20(xuu50002, xuu4002, ty_Bool) -> new_esEs17(xuu50002, xuu4002) 26.72/10.96 new_ltEs20(xuu33002, xuu34002, app(app(ty_Either, dbd), dbe)) -> new_ltEs4(xuu33002, xuu34002, dbd, dbe) 26.72/10.96 new_esEs7(Left(xuu50000), Left(xuu4000), app(ty_[], cag), beh) -> new_esEs16(xuu50000, xuu4000, cag) 26.72/10.96 new_esEs5(Just(xuu50000), Just(xuu4000), app(app(ty_Either, ccf), ccg)) -> new_esEs7(xuu50000, xuu4000, ccf, ccg) 26.72/10.96 new_primCmpNat0(xuu3300, Zero) -> GT 26.72/10.96 new_esEs29(xuu5000, xuu400, ty_Integer) -> new_esEs15(xuu5000, xuu400) 26.72/10.96 new_compare8(xuu33000, xuu34000, app(ty_[], bbf)) -> new_compare0(xuu33000, xuu34000, bbf) 26.72/10.96 new_lt20(xuu33000, xuu34000, ty_Double) -> new_lt16(xuu33000, xuu34000) 26.72/10.96 new_esEs30(xuu22, xuu17, ty_Integer) -> new_esEs15(xuu22, xuu17) 26.72/10.96 new_ltEs19(xuu3300, xuu3400, app(ty_[], baf)) -> new_ltEs15(xuu3300, xuu3400, baf) 26.72/10.96 new_esEs15(Integer(xuu50000), Integer(xuu4000)) -> new_primEqInt(xuu50000, xuu4000) 26.72/10.96 new_compare0([], :(xuu34000, xuu34001), baf) -> LT 26.72/10.96 new_asAs(True, xuu136) -> xuu136 26.72/10.96 new_compare113(xuu33000, xuu34000, True, bec, bed, bee) -> LT 26.72/10.96 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_@0) -> new_ltEs16(xuu33000, xuu34000) 26.72/10.96 new_compare9(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Integer) -> new_compare14(new_sr0(xuu33000, xuu34001), new_sr0(xuu34000, xuu33001)) 26.72/10.96 new_ltEs5(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), bcd, bce) -> new_pePe(new_lt6(xuu33000, xuu34000, bcd), new_asAs(new_esEs23(xuu33000, xuu34000, bcd), new_ltEs6(xuu33001, xuu34001, bce))) 26.72/10.96 new_esEs17(False, True) -> False 26.72/10.96 new_esEs17(True, False) -> False 26.72/10.96 new_esEs10(xuu50001, xuu4001, app(ty_[], cd)) -> new_esEs16(xuu50001, xuu4001, cd) 26.72/10.96 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Int, beh) -> new_esEs19(xuu50000, xuu4000) 26.72/10.96 new_esEs23(xuu33000, xuu34000, app(ty_Ratio, bdh)) -> new_esEs18(xuu33000, xuu34000, bdh) 26.72/10.96 new_ltEs16(xuu3300, xuu3400) -> new_fsEs(new_compare18(xuu3300, xuu3400)) 26.72/10.96 new_lt19(xuu33001, xuu34001, ty_Double) -> new_lt16(xuu33001, xuu34001) 26.72/10.96 new_esEs26(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.96 new_esEs20(xuu50002, xuu4002, app(ty_Maybe, fc)) -> new_esEs5(xuu50002, xuu4002, fc) 26.72/10.96 new_esEs5(Just(xuu50000), Just(xuu4000), app(app(ty_@2, cch), cda)) -> new_esEs4(xuu50000, xuu4000, cch, cda) 26.72/10.96 new_compare11(xuu33000, xuu34000, bea, beb) -> new_compare28(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, bea, beb), bea, beb) 26.72/10.96 new_esEs27(xuu33001, xuu34001, ty_Float) -> new_esEs14(xuu33001, xuu34001) 26.72/10.96 new_esEs10(xuu50001, xuu4001, ty_Integer) -> new_esEs15(xuu50001, xuu4001) 26.72/10.96 new_esEs24(xuu50001, xuu4001, ty_Integer) -> new_esEs15(xuu50001, xuu4001) 26.72/10.96 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.96 new_esEs29(xuu5000, xuu400, app(ty_[], bfb)) -> new_esEs16(xuu5000, xuu400, bfb) 26.72/10.96 new_lt10(xuu33000, xuu34000, bec, bed, bee) -> new_esEs8(new_compare13(xuu33000, xuu34000, bec, bed, bee), LT) 26.72/10.96 new_lt6(xuu33000, xuu34000, ty_@0) -> new_lt15(xuu33000, xuu34000) 26.72/10.96 new_compare24(xuu33000, xuu34000, True, bca, bcb) -> EQ 26.72/10.96 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.96 new_primPlusNat1(xuu106, xuu400000) -> new_primPlusNat0(xuu106, Succ(xuu400000)) 26.72/10.96 new_esEs9(@0, @0) -> True 26.72/10.96 new_ltEs20(xuu33002, xuu34002, app(ty_[], dbc)) -> new_ltEs15(xuu33002, xuu34002, dbc) 26.72/10.96 new_esEs7(Left(xuu50000), Left(xuu4000), app(ty_Maybe, caf), beh) -> new_esEs5(xuu50000, xuu4000, caf) 26.72/10.96 new_primCompAux00(xuu178, EQ) -> xuu178 26.72/10.96 new_esEs11(xuu50000, xuu4000, app(app(ty_Either, db), dc)) -> new_esEs7(xuu50000, xuu4000, db, dc) 26.72/10.96 new_compare0([], [], baf) -> EQ 26.72/10.96 new_sr(xuu50001, xuu4000) -> new_primMulInt(xuu50001, xuu4000) 26.72/10.96 new_esEs25(xuu50000, xuu4000, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.96 new_esEs10(xuu50001, xuu4001, ty_Bool) -> new_esEs17(xuu50001, xuu4001) 26.72/10.96 new_esEs21(xuu50001, xuu4001, app(app(ty_Either, gb), gc)) -> new_esEs7(xuu50001, xuu4001, gb, gc) 26.72/10.96 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Integer) -> new_ltEs10(xuu33000, xuu34000) 26.72/10.96 new_primMulNat0(Zero, Zero) -> Zero 26.72/10.96 new_lt18(xuu33000, xuu34000, bca, bcb) -> new_esEs8(new_compare23(xuu33000, xuu34000, bca, bcb), LT) 26.72/10.96 new_ltEs20(xuu33002, xuu34002, ty_Ordering) -> new_ltEs12(xuu33002, xuu34002) 26.72/10.96 new_esEs23(xuu33000, xuu34000, ty_Float) -> new_esEs14(xuu33000, xuu34000) 26.72/10.96 new_lt6(xuu33000, xuu34000, ty_Char) -> new_lt5(xuu33000, xuu34000) 26.72/10.96 new_lt6(xuu33000, xuu34000, app(ty_Maybe, bcc)) -> new_lt9(xuu33000, xuu34000, bcc) 26.72/10.96 new_primCmpInt(Neg(Succ(xuu3300)), Neg(xuu340)) -> new_primCmpNat2(xuu340, xuu3300) 26.72/10.96 new_esEs30(xuu22, xuu17, ty_Double) -> new_esEs13(xuu22, xuu17) 26.72/10.96 new_esEs27(xuu33001, xuu34001, ty_Ordering) -> new_esEs8(xuu33001, xuu34001) 26.72/10.96 new_esEs30(xuu22, xuu17, app(ty_[], chg)) -> new_esEs16(xuu22, xuu17, chg) 26.72/10.96 new_esEs23(xuu33000, xuu34000, ty_Char) -> new_esEs12(xuu33000, xuu34000) 26.72/10.96 new_ltEs19(xuu3300, xuu3400, app(ty_Ratio, cdh)) -> new_ltEs7(xuu3300, xuu3400, cdh) 26.72/10.96 new_primCmpInt(Neg(Zero), Neg(Succ(xuu3400))) -> new_primCmpNat0(xuu3400, Zero) 26.72/10.96 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.96 new_esEs30(xuu22, xuu17, app(ty_Maybe, chf)) -> new_esEs5(xuu22, xuu17, chf) 26.72/10.96 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_@0) -> new_ltEs16(xuu33000, xuu34000) 26.72/10.96 new_compare111(xuu33000, xuu34000, False) -> GT 26.72/10.96 new_primCmpNat1(Zero, Zero) -> EQ 26.72/10.96 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.96 new_compare12(xuu33000, xuu34000, bcc) -> new_compare25(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, bcc), bcc) 26.72/10.96 new_esEs22(xuu50000, xuu4000, app(app(ty_Either, hd), he)) -> new_esEs7(xuu50000, xuu4000, hd, he) 26.72/10.96 new_ltEs6(xuu33001, xuu34001, ty_Bool) -> new_ltEs14(xuu33001, xuu34001) 26.72/10.96 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.96 new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare6(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 26.72/10.96 new_esEs22(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.96 new_esEs22(xuu50000, xuu4000, ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.96 new_esEs27(xuu33001, xuu34001, app(ty_Ratio, dbf)) -> new_esEs18(xuu33001, xuu34001, dbf) 26.72/10.96 new_esEs4(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), be, bf) -> new_asAs(new_esEs11(xuu50000, xuu4000, be), new_esEs10(xuu50001, xuu4001, bf)) 26.72/10.96 new_compare8(xuu33000, xuu34000, ty_Char) -> new_compare15(xuu33000, xuu34000) 26.72/10.96 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Double) -> new_ltEs17(xuu33000, xuu34000) 26.72/10.96 new_esEs28(xuu33000, xuu34000, app(ty_Ratio, dch)) -> new_esEs18(xuu33000, xuu34000, dch) 26.72/10.96 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.96 new_esEs16(:(xuu50000, xuu50001), :(xuu4000, xuu4001), bfb) -> new_asAs(new_esEs26(xuu50000, xuu4000, bfb), new_esEs16(xuu50001, xuu4001, bfb)) 26.72/10.96 new_ltEs14(False, True) -> True 26.72/10.96 new_ltEs19(xuu3300, xuu3400, ty_@0) -> new_ltEs16(xuu3300, xuu3400) 26.72/10.96 new_ltEs12(GT, LT) -> False 26.72/10.96 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Char) -> new_ltEs11(xuu33000, xuu34000) 26.72/10.96 new_compare29(xuu33000, xuu34000, True, bec, bed, bee) -> EQ 26.72/10.96 new_compare8(xuu33000, xuu34000, ty_Bool) -> new_compare17(xuu33000, xuu34000) 26.72/10.96 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Ordering, beh) -> new_esEs8(xuu50000, xuu4000) 26.72/10.96 new_compare7(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare6(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 26.72/10.96 new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_Maybe, cee)) -> new_ltEs8(xuu33000, xuu34000, cee) 26.72/10.96 new_esEs30(xuu22, xuu17, ty_@0) -> new_esEs9(xuu22, xuu17) 26.72/10.96 new_primEqInt(Neg(Succ(xuu500000)), Neg(Zero)) -> False 26.72/10.96 new_primEqInt(Neg(Zero), Neg(Succ(xuu40000))) -> False 26.72/10.96 new_ltEs8(Nothing, Just(xuu34000), cea) -> True 26.72/10.96 new_primEqInt(Pos(Succ(xuu500000)), Pos(Succ(xuu40000))) -> new_primEqNat0(xuu500000, xuu40000) 26.72/10.96 new_esEs20(xuu50002, xuu4002, ty_Double) -> new_esEs13(xuu50002, xuu4002) 26.72/10.96 new_esEs20(xuu50002, xuu4002, app(ty_[], fd)) -> new_esEs16(xuu50002, xuu4002, fd) 26.72/10.96 new_esEs26(xuu50000, xuu4000, app(app(ty_@2, cgb), cgc)) -> new_esEs4(xuu50000, xuu4000, cgb, cgc) 26.72/10.96 new_ltEs4(Left(xuu33000), Left(xuu34000), app(app(ty_Either, bge), bgf), bfe) -> new_ltEs4(xuu33000, xuu34000, bge, bgf) 26.72/10.96 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(ty_[], cca)) -> new_esEs16(xuu50000, xuu4000, cca) 26.72/10.96 new_esEs14(Float(xuu50000, xuu50001), Float(xuu4000, xuu4001)) -> new_esEs19(new_sr(xuu50000, xuu4001), new_sr(xuu50001, xuu4000)) 26.72/10.96 new_esEs7(Right(xuu50000), Right(xuu4000), beg, app(app(ty_Either, cbd), cbe)) -> new_esEs7(xuu50000, xuu4000, cbd, cbe) 26.72/10.96 new_esEs26(xuu50000, xuu4000, ty_Ordering) -> new_esEs8(xuu50000, xuu4000) 26.72/10.96 new_primEqInt(Pos(Succ(xuu500000)), Neg(xuu4000)) -> False 26.72/10.96 new_primEqInt(Neg(Succ(xuu500000)), Pos(xuu4000)) -> False 26.72/10.96 new_ltEs20(xuu33002, xuu34002, app(ty_Ratio, dad)) -> new_ltEs7(xuu33002, xuu34002, dad) 26.72/10.96 new_esEs11(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.96 new_lt6(xuu33000, xuu34000, ty_Float) -> new_lt17(xuu33000, xuu34000) 26.72/10.96 new_esEs29(xuu5000, xuu400, ty_@0) -> new_esEs9(xuu5000, xuu400) 26.72/10.96 new_lt4(xuu330, xuu340) -> new_esEs8(new_compare6(xuu330, xuu340), LT) 26.72/10.96 new_ltEs12(EQ, GT) -> True 26.72/10.96 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 26.72/10.96 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Ordering, bfe) -> new_ltEs12(xuu33000, xuu34000) 26.72/10.96 new_esEs28(xuu33000, xuu34000, ty_Float) -> new_esEs14(xuu33000, xuu34000) 26.72/10.96 new_esEs28(xuu33000, xuu34000, app(ty_Maybe, ddc)) -> new_esEs5(xuu33000, xuu34000, ddc) 26.72/10.96 new_esEs17(True, True) -> True 26.72/10.96 new_ltEs12(EQ, EQ) -> True 26.72/10.96 new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, cef), ceg), ceh)) -> new_ltEs9(xuu33000, xuu34000, cef, ceg, ceh) 26.72/10.96 new_primCmpInt(Pos(Zero), Pos(Succ(xuu3400))) -> new_primCmpNat2(Zero, xuu3400) 26.72/10.96 new_esEs21(xuu50001, xuu4001, ty_Integer) -> new_esEs15(xuu50001, xuu4001) 26.72/10.96 new_ltEs20(xuu33002, xuu34002, ty_Int) -> new_ltEs13(xuu33002, xuu34002) 26.72/10.96 new_esEs26(xuu50000, xuu4000, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs6(xuu50000, xuu4000, cgg, cgh, cha) 26.72/10.96 new_esEs10(xuu50001, xuu4001, ty_Double) -> new_esEs13(xuu50001, xuu4001) 26.72/10.96 new_lt11(xuu33000, xuu34000) -> new_esEs8(new_compare14(xuu33000, xuu34000), LT) 26.72/10.96 new_esEs21(xuu50001, xuu4001, ty_Bool) -> new_esEs17(xuu50001, xuu4001) 26.72/10.96 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) 26.72/10.96 new_esEs23(xuu33000, xuu34000, ty_Bool) -> new_esEs17(xuu33000, xuu34000) 26.72/10.96 new_not(False) -> True 26.72/10.96 new_compare27(xuu33000, xuu34000, False) -> new_compare112(xuu33000, xuu34000, new_ltEs14(xuu33000, xuu34000)) 26.72/10.96 new_esEs30(xuu22, xuu17, app(ty_Ratio, chh)) -> new_esEs18(xuu22, xuu17, chh) 26.72/10.96 new_esEs5(Just(xuu50000), Just(xuu4000), ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.96 new_esEs27(xuu33001, xuu34001, app(app(ty_Either, dcf), dcg)) -> new_esEs7(xuu33001, xuu34001, dcf, dcg) 26.72/10.96 new_compare0(:(xuu33000, xuu33001), [], baf) -> GT 26.72/10.96 new_esEs8(LT, GT) -> False 26.72/10.96 new_esEs8(GT, LT) -> False 26.72/10.96 new_ltEs4(Left(xuu33000), Left(xuu34000), ty_Bool, bfe) -> new_ltEs14(xuu33000, xuu34000) 26.72/10.96 new_primPlusNat0(Succ(xuu28200), Succ(xuu9600)) -> Succ(Succ(new_primPlusNat0(xuu28200, xuu9600))) 26.72/10.96 new_esEs20(xuu50002, xuu4002, app(ty_Ratio, ff)) -> new_esEs18(xuu50002, xuu4002, ff) 26.72/10.96 new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_[], cfa)) -> new_ltEs15(xuu33000, xuu34000, cfa) 26.72/10.96 new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Double) -> new_ltEs17(xuu33000, xuu34000) 26.72/10.96 new_esEs7(Left(xuu50000), Left(xuu4000), app(ty_Ratio, cah), beh) -> new_esEs18(xuu50000, xuu4000, cah) 26.72/10.96 new_esEs11(xuu50000, xuu4000, ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.96 new_esEs21(xuu50001, xuu4001, ty_Char) -> new_esEs12(xuu50001, xuu4001) 26.72/10.96 new_compare8(xuu33000, xuu34000, app(app(ty_Either, bbg), bbh)) -> new_compare23(xuu33000, xuu34000, bbg, bbh) 26.72/10.96 new_esEs29(xuu5000, xuu400, app(ty_Ratio, bfc)) -> new_esEs18(xuu5000, xuu400, bfc) 26.72/10.96 new_ltEs4(Left(xuu33000), Right(xuu34000), bgg, bfe) -> True 26.72/10.96 new_esEs30(xuu22, xuu17, app(app(app(ty_@3, daa), dab), dac)) -> new_esEs6(xuu22, xuu17, daa, dab, dac) 26.72/10.96 new_ltEs6(xuu33001, xuu34001, ty_Integer) -> new_ltEs10(xuu33001, xuu34001) 26.72/10.96 new_esEs26(xuu50000, xuu4000, app(ty_Maybe, cgd)) -> new_esEs5(xuu50000, xuu4000, cgd) 26.72/10.96 new_primCmpNat1(Zero, Succ(xuu34000)) -> LT 26.72/10.96 new_esEs22(xuu50000, xuu4000, ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.96 new_compare25(Nothing, Nothing, False, cfd) -> LT 26.72/10.96 new_lt20(xuu33000, xuu34000, app(app(ty_Either, ddh), dea)) -> new_lt18(xuu33000, xuu34000, ddh, dea) 26.72/10.96 new_ltEs7(xuu3300, xuu3400, cdh) -> new_fsEs(new_compare9(xuu3300, xuu3400, cdh)) 26.72/10.96 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 26.72/10.96 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 26.72/10.96 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Char) -> new_esEs12(xuu50000, xuu4000) 26.72/10.96 new_compare0(:(xuu33000, xuu33001), :(xuu34000, xuu34001), baf) -> new_primCompAux0(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, baf), baf) 26.72/10.96 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Float) -> new_ltEs18(xuu33000, xuu34000) 26.72/10.96 new_ltEs6(xuu33001, xuu34001, ty_Ordering) -> new_ltEs12(xuu33001, xuu34001) 26.72/10.96 new_ltEs4(Left(xuu33000), Left(xuu34000), app(ty_Ratio, bfd), bfe) -> new_ltEs7(xuu33000, xuu34000, bfd) 26.72/10.96 new_esEs23(xuu33000, xuu34000, ty_Int) -> new_esEs19(xuu33000, xuu34000) 26.72/10.96 new_esEs27(xuu33001, xuu34001, app(app(ty_@2, dbg), dbh)) -> new_esEs4(xuu33001, xuu34001, dbg, dbh) 26.72/10.96 new_esEs21(xuu50001, xuu4001, app(ty_[], gg)) -> new_esEs16(xuu50001, xuu4001, gg) 26.72/10.96 new_ltEs6(xuu33001, xuu34001, ty_Char) -> new_ltEs11(xuu33001, xuu34001) 26.72/10.96 new_ltEs4(Left(xuu33000), Left(xuu34000), app(app(ty_@2, bff), bfg), bfe) -> new_ltEs5(xuu33000, xuu34000, bff, bfg) 26.72/10.96 new_esEs20(xuu50002, xuu4002, ty_@0) -> new_esEs9(xuu50002, xuu4002) 26.72/10.96 new_ltEs19(xuu3300, xuu3400, app(app(ty_Either, bgg), bfe)) -> new_ltEs4(xuu3300, xuu3400, bgg, bfe) 26.72/10.96 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 26.72/10.96 new_esEs17(False, False) -> True 26.72/10.96 new_esEs28(xuu33000, xuu34000, app(app(ty_@2, dda), ddb)) -> new_esEs4(xuu33000, xuu34000, dda, ddb) 26.72/10.96 new_esEs22(xuu50000, xuu4000, ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.96 new_ltEs12(EQ, LT) -> False 26.72/10.96 new_ltEs14(False, False) -> True 26.72/10.96 new_ltEs6(xuu33001, xuu34001, ty_Float) -> new_ltEs18(xuu33001, xuu34001) 26.72/10.96 new_ltEs8(Nothing, Nothing, cea) -> True 26.72/10.96 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Double) -> new_esEs13(xuu50000, xuu4000) 26.72/10.96 new_ltEs8(Just(xuu33000), Nothing, cea) -> False 26.72/10.96 new_esEs11(xuu50000, xuu4000, ty_Bool) -> new_esEs17(xuu50000, xuu4000) 26.72/10.96 new_lt6(xuu33000, xuu34000, ty_Double) -> new_lt16(xuu33000, xuu34000) 26.72/10.96 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.96 new_ltEs19(xuu3300, xuu3400, ty_Int) -> new_ltEs13(xuu3300, xuu3400) 26.72/10.96 new_esEs28(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) 26.72/10.96 new_esEs11(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.96 new_ltEs19(xuu3300, xuu3400, ty_Float) -> new_ltEs18(xuu3300, xuu3400) 26.72/10.96 new_esEs16(:(xuu50000, xuu50001), [], bfb) -> False 26.72/10.96 new_esEs16([], :(xuu4000, xuu4001), bfb) -> False 26.72/10.96 new_esEs5(Just(xuu50000), Just(xuu4000), app(ty_[], cdc)) -> new_esEs16(xuu50000, xuu4000, cdc) 26.72/10.96 new_esEs23(xuu33000, xuu34000, app(ty_[], bef)) -> new_esEs16(xuu33000, xuu34000, bef) 26.72/10.96 new_ltEs6(xuu33001, xuu34001, app(app(ty_Either, bdf), bdg)) -> new_ltEs4(xuu33001, xuu34001, bdf, bdg) 26.72/10.96 new_primCmpNat2(Succ(xuu3400), xuu3300) -> new_primCmpNat1(xuu3400, xuu3300) 26.72/10.96 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 26.72/10.96 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 26.72/10.96 new_esEs23(xuu33000, xuu34000, ty_Double) -> new_esEs13(xuu33000, xuu34000) 26.72/10.96 new_ltEs12(LT, EQ) -> True 26.72/10.96 new_compare25(Nothing, Just(xuu3400), False, cfd) -> LT 26.72/10.96 new_esEs29(xuu5000, xuu400, app(app(ty_@2, be), bf)) -> new_esEs4(xuu5000, xuu400, be, bf) 26.72/10.96 new_compare110(xuu33000, xuu34000, False, bca, bcb) -> GT 26.72/10.96 new_esEs21(xuu50001, xuu4001, ty_Int) -> new_esEs19(xuu50001, xuu4001) 26.72/10.96 new_lt19(xuu33001, xuu34001, ty_@0) -> new_lt15(xuu33001, xuu34001) 26.72/10.96 new_esEs11(xuu50000, xuu4000, ty_Integer) -> new_esEs15(xuu50000, xuu4000) 26.72/10.96 new_esEs23(xuu33000, xuu34000, ty_Integer) -> new_esEs15(xuu33000, xuu34000) 26.72/10.96 new_lt20(xuu33000, xuu34000, ty_Char) -> new_lt5(xuu33000, xuu34000) 26.72/10.96 new_primEqNat0(Zero, Zero) -> True 26.72/10.96 new_compare8(xuu33000, xuu34000, ty_@0) -> new_compare18(xuu33000, xuu34000) 26.72/10.96 new_esEs7(Right(xuu50000), Right(xuu4000), beg, ty_@0) -> new_esEs9(xuu50000, xuu4000) 26.72/10.96 new_ltEs20(xuu33002, xuu34002, ty_Float) -> new_ltEs18(xuu33002, xuu34002) 26.72/10.96 new_esEs28(xuu33000, xuu34000, app(app(app(ty_@3, ddd), dde), ddf)) -> new_esEs6(xuu33000, xuu34000, ddd, dde, ddf) 26.72/10.96 new_esEs30(xuu22, xuu17, app(app(ty_Either, chb), chc)) -> new_esEs7(xuu22, xuu17, chb, chc) 26.72/10.96 new_esEs10(xuu50001, xuu4001, ty_@0) -> new_esEs9(xuu50001, xuu4001) 26.72/10.96 new_esEs29(xuu5000, xuu400, ty_Ordering) -> new_esEs8(xuu5000, xuu400) 26.72/10.96 new_compare23(xuu33000, xuu34000, bca, bcb) -> new_compare24(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, bca, bcb), bca, bcb) 26.72/10.96 new_ltEs14(True, False) -> False 26.72/10.96 new_esEs26(xuu50000, xuu4000, ty_Float) -> new_esEs14(xuu50000, xuu4000) 26.72/10.96 new_compare113(xuu33000, xuu34000, False, bec, bed, bee) -> GT 26.72/10.96 new_esEs22(xuu50000, xuu4000, app(ty_[], baa)) -> new_esEs16(xuu50000, xuu4000, baa) 26.72/10.96 new_esEs22(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) 26.72/10.96 new_asAs(False, xuu136) -> False 26.72/10.96 new_esEs7(Left(xuu50000), Left(xuu4000), ty_Float, beh) -> new_esEs14(xuu50000, xuu4000) 26.72/10.96 new_esEs20(xuu50002, xuu4002, ty_Char) -> new_esEs12(xuu50002, xuu4002) 26.72/10.96 new_esEs29(xuu5000, xuu400, app(app(ty_Either, beg), beh)) -> new_esEs7(xuu5000, xuu400, beg, beh) 26.72/10.96 new_esEs27(xuu33001, xuu34001, app(ty_Maybe, dca)) -> new_esEs5(xuu33001, xuu34001, dca) 26.72/10.96 new_lt19(xuu33001, xuu34001, ty_Char) -> new_lt5(xuu33001, xuu34001) 26.72/10.96 new_compare28(xuu33000, xuu34000, True, bea, beb) -> EQ 26.72/10.96 new_lt20(xuu33000, xuu34000, ty_@0) -> new_lt15(xuu33000, xuu34000) 26.72/10.96 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, ty_Int) -> new_ltEs13(xuu33000, xuu34000) 26.72/10.96 new_esEs8(EQ, GT) -> False 26.72/10.96 new_esEs8(GT, EQ) -> False 26.72/10.96 new_ltEs4(Right(xuu33000), Left(xuu34000), bgg, bfe) -> False 26.72/10.96 new_esEs10(xuu50001, xuu4001, ty_Int) -> new_esEs19(xuu50001, xuu4001) 26.72/10.96 new_compare27(xuu33000, xuu34000, True) -> EQ 26.72/10.96 new_esEs7(Left(xuu50000), Right(xuu4000), beg, beh) -> False 26.72/10.96 new_esEs7(Right(xuu50000), Left(xuu4000), beg, beh) -> False 26.72/10.96 new_compare18(@0, @0) -> EQ 26.72/10.96 new_esEs11(xuu50000, xuu4000, app(ty_[], dg)) -> new_esEs16(xuu50000, xuu4000, dg) 26.72/10.96 new_compare14(Integer(xuu33000), Integer(xuu34000)) -> new_primCmpInt(xuu33000, xuu34000) 26.72/10.96 new_ltEs4(Right(xuu33000), Right(xuu34000), bgg, app(ty_Maybe, bhc)) -> new_ltEs8(xuu33000, xuu34000, bhc) 26.72/10.96 new_lt6(xuu33000, xuu34000, app(app(ty_Either, bca), bcb)) -> new_lt18(xuu33000, xuu34000, bca, bcb) 26.72/10.96 new_esEs21(xuu50001, xuu4001, ty_@0) -> new_esEs9(xuu50001, xuu4001) 26.72/10.96 new_compare16(xuu33000, xuu34000) -> new_compare26(xuu33000, xuu34000, new_esEs8(xuu33000, xuu34000)) 26.72/10.96 26.72/10.96 The set Q consists of the following terms: 26.72/10.96 26.72/10.96 new_esEs7(Right(x0), Right(x1), x2, ty_Integer) 26.72/10.96 new_ltEs8(Just(x0), Just(x1), ty_Bool) 26.72/10.96 new_esEs8(EQ, EQ) 26.72/10.96 new_esEs21(x0, x1, ty_Integer) 26.72/10.96 new_lt6(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.96 new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.72/10.96 new_esEs29(x0, x1, ty_Double) 26.72/10.96 new_esEs22(x0, x1, ty_@0) 26.72/10.96 new_compare0(:(x0, x1), [], x2) 26.72/10.96 new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) 26.72/10.96 new_esEs7(Left(x0), Left(x1), ty_Double, x2) 26.72/10.96 new_compare26(x0, x1, False) 26.72/10.96 new_esEs27(x0, x1, ty_Double) 26.72/10.96 new_esEs29(x0, x1, ty_Ordering) 26.72/10.96 new_compare8(x0, x1, ty_Double) 26.72/10.96 new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) 26.72/10.96 new_lt20(x0, x1, ty_Integer) 26.72/10.96 new_ltEs11(x0, x1) 26.72/10.96 new_esEs30(x0, x1, ty_Bool) 26.72/10.96 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 26.72/10.96 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 26.72/10.96 new_esEs22(x0, x1, ty_Bool) 26.72/10.96 new_esEs30(x0, x1, app(ty_Ratio, x2)) 26.72/10.96 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 26.72/10.96 new_lt6(x0, x1, app(ty_[], x2)) 26.72/10.96 new_esEs26(x0, x1, app(ty_Ratio, x2)) 26.72/10.96 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 26.72/10.96 new_compare12(x0, x1, x2) 26.72/10.96 new_ltEs8(Just(x0), Just(x1), ty_@0) 26.72/10.96 new_esEs26(x0, x1, ty_@0) 26.72/10.96 new_lt6(x0, x1, ty_Bool) 26.72/10.96 new_lt19(x0, x1, ty_@0) 26.72/10.96 new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.96 new_lt6(x0, x1, ty_@0) 26.72/10.96 new_primCmpNat1(Zero, Zero) 26.72/10.96 new_ltEs13(x0, x1) 26.72/10.96 new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.96 new_primCompAux00(x0, EQ) 26.72/10.96 new_compare8(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.96 new_compare28(x0, x1, True, x2, x3) 26.72/10.96 new_lt5(x0, x1) 26.72/10.96 new_esEs23(x0, x1, ty_Float) 26.72/10.96 new_esEs29(x0, x1, ty_Int) 26.72/10.96 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.96 new_esEs7(Left(x0), Left(x1), ty_Int, x2) 26.72/10.96 new_primEqInt(Pos(Zero), Pos(Zero)) 26.72/10.96 new_compare15(Char(x0), Char(x1)) 26.72/10.96 new_lt13(x0, x1) 26.72/10.96 new_compare6(x0, x1) 26.72/10.96 new_primCmpNat2(Zero, x0) 26.72/10.96 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.96 new_ltEs6(x0, x1, ty_Ordering) 26.72/10.96 new_esEs17(False, False) 26.72/10.96 new_lt9(x0, x1, x2) 26.72/10.96 new_esEs27(x0, x1, ty_Ordering) 26.72/10.96 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 26.72/10.96 new_esEs11(x0, x1, ty_Float) 26.72/10.96 new_primEqNat0(Zero, Succ(x0)) 26.72/10.96 new_primEqInt(Neg(Zero), Neg(Zero)) 26.72/10.96 new_esEs29(x0, x1, ty_Char) 26.72/10.96 new_esEs27(x0, x1, ty_Int) 26.72/10.96 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.96 new_lt19(x0, x1, ty_Int) 26.72/10.96 new_compare10(x0, x1, True, x2) 26.72/10.96 new_pePe(True, x0) 26.72/10.96 new_ltEs6(x0, x1, ty_Int) 26.72/10.96 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.96 new_esEs26(x0, x1, app(ty_Maybe, x2)) 26.72/10.96 new_lt6(x0, x1, ty_Integer) 26.72/10.96 new_esEs27(x0, x1, ty_Char) 26.72/10.96 new_esEs29(x0, x1, app(ty_Ratio, x2)) 26.72/10.96 new_compare113(x0, x1, True, x2, x3, x4) 26.72/10.96 new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.72/10.96 new_esEs20(x0, x1, ty_Integer) 26.72/10.96 new_esEs7(Right(x0), Right(x1), x2, ty_@0) 26.72/10.96 new_esEs7(Left(x0), Left(x1), ty_Char, x2) 26.72/10.96 new_ltEs12(GT, EQ) 26.72/10.96 new_ltEs12(EQ, GT) 26.72/10.96 new_esEs7(Right(x0), Right(x1), x2, ty_Float) 26.72/10.96 new_ltEs4(Right(x0), Right(x1), x2, ty_Ordering) 26.72/10.96 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.96 new_lt17(x0, x1) 26.72/10.96 new_esEs20(x0, x1, ty_Bool) 26.72/10.96 new_ltEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 26.72/10.96 new_compare112(x0, x1, True) 26.72/10.96 new_esEs26(x0, x1, ty_Int) 26.72/10.96 new_lt19(x0, x1, ty_Bool) 26.72/10.96 new_esEs30(x0, x1, ty_Integer) 26.72/10.96 new_lt6(x0, x1, app(ty_Ratio, x2)) 26.72/10.96 new_primMulInt(Pos(x0), Pos(x1)) 26.72/10.96 new_primEqInt(Pos(Zero), Neg(Zero)) 26.72/10.96 new_primEqInt(Neg(Zero), Pos(Zero)) 26.72/10.96 new_primMulNat0(Succ(x0), Succ(x1)) 26.72/10.96 new_ltEs6(x0, x1, ty_Double) 26.72/10.96 new_esEs10(x0, x1, app(ty_Maybe, x2)) 26.72/10.96 new_esEs18(:%(x0, x1), :%(x2, x3), x4) 26.72/10.96 new_esEs26(x0, x1, ty_Bool) 26.72/10.96 new_compare11(x0, x1, x2, x3) 26.72/10.96 new_esEs16([], :(x0, x1), x2) 26.72/10.96 new_esEs26(x0, x1, ty_Char) 26.72/10.96 new_ltEs6(x0, x1, ty_Char) 26.72/10.96 new_esEs26(x0, x1, ty_Double) 26.72/10.96 new_esEs20(x0, x1, app(ty_Maybe, x2)) 26.72/10.96 new_compare8(x0, x1, ty_Ordering) 26.72/10.96 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 26.72/10.96 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.72/10.96 new_compare110(x0, x1, False, x2, x3) 26.72/10.96 new_esEs22(x0, x1, app(ty_Maybe, x2)) 26.72/10.96 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 26.72/10.96 new_esEs5(Just(x0), Nothing, x1) 26.72/10.96 new_ltEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.72/10.96 new_ltEs19(x0, x1, app(ty_[], x2)) 26.72/10.96 new_esEs28(x0, x1, app(ty_Ratio, x2)) 26.72/10.96 new_lt19(x0, x1, ty_Char) 26.72/10.96 new_lt11(x0, x1) 26.72/10.96 new_ltEs8(Just(x0), Just(x1), ty_Integer) 26.72/10.96 new_lt19(x0, x1, ty_Double) 26.72/10.96 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.72/10.96 new_lt20(x0, x1, app(ty_Maybe, x2)) 26.72/10.96 new_compare13(x0, x1, x2, x3, x4) 26.72/10.96 new_sr(x0, x1) 26.72/10.96 new_fsEs(x0) 26.72/10.96 new_esEs28(x0, x1, ty_Ordering) 26.72/10.96 new_compare17(x0, x1) 26.72/10.96 new_compare8(x0, x1, ty_@0) 26.72/10.96 new_esEs30(x0, x1, ty_Ordering) 26.72/10.96 new_esEs7(Left(x0), Left(x1), ty_Bool, x2) 26.72/10.96 new_esEs27(x0, x1, ty_@0) 26.72/10.96 new_compare7(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 26.72/10.96 new_compare7(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 26.72/10.96 new_compare7(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 26.72/10.96 new_esEs9(@0, @0) 26.72/10.96 new_compare28(x0, x1, False, x2, x3) 26.72/10.96 new_compare25(x0, x1, True, x2) 26.72/10.96 new_ltEs8(Just(x0), Just(x1), ty_Double) 26.72/10.96 new_esEs22(x0, x1, ty_Float) 26.72/10.96 new_compare27(x0, x1, True) 26.72/10.96 new_ltEs4(Right(x0), Right(x1), x2, ty_Integer) 26.72/10.96 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.72/10.96 new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.72/10.96 new_esEs24(x0, x1, ty_Int) 26.72/10.96 new_esEs5(Just(x0), Just(x1), ty_Double) 26.72/10.96 new_esEs16(:(x0, x1), [], x2) 26.72/10.96 new_primCompAux00(x0, LT) 26.72/10.96 new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) 26.72/10.96 new_esEs29(x0, x1, ty_@0) 26.72/10.96 new_ltEs8(Just(x0), Just(x1), ty_Ordering) 26.72/10.96 new_esEs28(x0, x1, ty_Char) 26.72/10.96 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.96 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.96 new_esEs30(x0, x1, ty_Double) 26.72/10.96 new_compare26(x0, x1, True) 26.72/10.96 new_esEs11(x0, x1, app(ty_Maybe, x2)) 26.72/10.96 new_esEs15(Integer(x0), Integer(x1)) 26.72/10.96 new_lt19(x0, x1, app(ty_[], x2)) 26.72/10.96 new_esEs21(x0, x1, app(ty_Ratio, x2)) 26.72/10.96 new_ltEs15(x0, x1, x2) 26.72/10.96 new_esEs26(x0, x1, ty_Float) 26.72/10.96 new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.72/10.96 new_asAs(True, x0) 26.72/10.96 new_esEs16(:(x0, x1), :(x2, x3), x4) 26.72/10.96 new_lt8(x0, x1, x2, x3) 26.72/10.96 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.96 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.96 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.96 new_ltEs20(x0, x1, ty_Integer) 26.72/10.96 new_compare29(x0, x1, False, x2, x3, x4) 26.72/10.96 new_esEs22(x0, x1, app(ty_[], x2)) 26.72/10.96 new_esEs16([], [], x0) 26.72/10.96 new_ltEs20(x0, x1, ty_Float) 26.72/10.96 new_compare111(x0, x1, True) 26.72/10.96 new_esEs22(x0, x1, ty_Ordering) 26.72/10.96 new_compare110(x0, x1, True, x2, x3) 26.72/10.96 new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 26.72/10.96 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 26.72/10.96 new_compare0([], [], x0) 26.72/10.96 new_esEs7(Right(x0), Right(x1), x2, ty_Double) 26.72/10.96 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.96 new_ltEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.72/10.96 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.96 new_ltEs19(x0, x1, ty_Double) 26.72/10.96 new_esEs8(GT, GT) 26.72/10.96 new_esEs22(x0, x1, ty_Int) 26.72/10.96 new_esEs20(x0, x1, ty_Char) 26.72/10.96 new_ltEs12(EQ, LT) 26.72/10.96 new_ltEs12(LT, EQ) 26.72/10.96 new_compare0([], :(x0, x1), x2) 26.72/10.96 new_esEs8(LT, EQ) 26.72/10.96 new_esEs8(EQ, LT) 26.72/10.96 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.96 new_ltEs12(GT, GT) 26.72/10.96 new_esEs27(x0, x1, app(ty_Maybe, x2)) 26.72/10.96 new_primMulNat0(Succ(x0), Zero) 26.72/10.96 new_primCmpInt(Neg(Zero), Neg(Zero)) 26.72/10.96 new_esEs22(x0, x1, ty_Char) 26.72/10.96 new_esEs21(x0, x1, app(ty_[], x2)) 26.72/10.96 new_lt20(x0, x1, ty_@0) 26.72/10.96 new_esEs28(x0, x1, ty_Bool) 26.72/10.96 new_compare25(Nothing, Nothing, False, x0) 26.72/10.96 new_esEs19(x0, x1) 26.72/10.96 new_esEs11(x0, x1, ty_Double) 26.72/10.96 new_lt14(x0, x1, x2) 26.72/10.96 new_ltEs14(False, False) 26.72/10.96 new_esEs11(x0, x1, ty_@0) 26.72/10.96 new_esEs23(x0, x1, ty_Int) 26.72/10.96 new_compare10(x0, x1, False, x2) 26.72/10.96 new_ltEs6(x0, x1, app(ty_Ratio, x2)) 26.72/10.96 new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.72/10.96 new_lt19(x0, x1, ty_Integer) 26.72/10.96 new_esEs8(LT, LT) 26.72/10.96 new_esEs23(x0, x1, ty_Integer) 26.72/10.96 new_compare8(x0, x1, app(ty_Maybe, x2)) 26.72/10.96 new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 26.72/10.96 new_primCmpInt(Pos(Zero), Neg(Zero)) 26.72/10.96 new_primCmpInt(Neg(Zero), Pos(Zero)) 26.72/10.96 new_esEs30(x0, x1, app(ty_Maybe, x2)) 26.72/10.96 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.96 new_esEs28(x0, x1, ty_Float) 26.72/10.96 new_esEs20(x0, x1, ty_Int) 26.72/10.96 new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.72/10.96 new_esEs21(x0, x1, ty_@0) 26.72/10.96 new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.72/10.96 new_lt19(x0, x1, app(ty_Maybe, x2)) 26.72/10.96 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 26.72/10.96 new_esEs10(x0, x1, ty_Char) 26.72/10.96 new_ltEs4(Right(x0), Right(x1), x2, ty_Bool) 26.72/10.96 new_primEqNat0(Succ(x0), Zero) 26.72/10.96 new_lt15(x0, x1) 26.72/10.96 new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.96 new_ltEs20(x0, x1, ty_Int) 26.72/10.96 new_ltEs4(Right(x0), Right(x1), x2, ty_Float) 26.72/10.96 new_ltEs20(x0, x1, ty_Bool) 26.72/10.96 new_esEs22(x0, x1, ty_Integer) 26.72/10.96 new_esEs23(x0, x1, ty_Char) 26.72/10.96 new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.72/10.96 new_esEs29(x0, x1, app(ty_[], x2)) 26.72/10.96 new_esEs10(x0, x1, ty_Int) 26.72/10.96 new_esEs22(x0, x1, app(ty_Ratio, x2)) 26.72/10.96 new_ltEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.72/10.96 new_ltEs19(x0, x1, ty_@0) 26.72/10.96 new_esEs28(x0, x1, app(ty_[], x2)) 26.72/10.96 new_esEs28(x0, x1, ty_Int) 26.72/10.96 new_ltEs20(x0, x1, ty_Char) 26.72/10.96 new_compare114(x0, x1, False, x2, x3) 26.72/10.96 new_ltEs12(LT, LT) 26.72/10.96 new_esEs5(Nothing, Nothing, x0) 26.72/10.96 new_esEs20(x0, x1, ty_Float) 26.72/10.96 new_ltEs4(Left(x0), Left(x1), ty_Double, x2) 26.72/10.96 new_lt19(x0, x1, ty_Ordering) 26.72/10.96 new_esEs23(x0, x1, app(ty_Maybe, x2)) 26.72/10.96 new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) 26.72/10.96 new_ltEs4(Right(x0), Right(x1), x2, ty_Int) 26.72/10.96 new_esEs21(x0, x1, ty_Double) 26.72/10.96 new_esEs23(x0, x1, ty_Bool) 26.72/10.96 new_ltEs7(x0, x1, x2) 26.72/10.96 new_ltEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.72/10.96 new_ltEs17(x0, x1) 26.72/10.96 new_primCmpNat0(x0, Zero) 26.72/10.96 new_esEs10(x0, x1, ty_Float) 26.72/10.96 new_lt20(x0, x1, ty_Double) 26.72/10.96 new_esEs30(x0, x1, ty_@0) 26.72/10.96 new_ltEs4(Right(x0), Right(x1), x2, ty_Char) 26.72/10.96 new_compare113(x0, x1, False, x2, x3, x4) 26.72/10.96 new_compare25(Just(x0), Nothing, False, x1) 26.72/10.96 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.96 new_lt6(x0, x1, ty_Double) 26.72/10.96 new_esEs11(x0, x1, ty_Char) 26.72/10.96 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 26.72/10.96 new_compare27(x0, x1, False) 26.72/10.96 new_lt20(x0, x1, app(ty_Ratio, x2)) 26.72/10.96 new_ltEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.72/10.96 new_ltEs10(x0, x1) 26.72/10.96 new_esEs7(Left(x0), Left(x1), ty_Float, x2) 26.72/10.96 new_esEs29(x0, x1, ty_Float) 26.72/10.96 new_primCmpNat0(x0, Succ(x1)) 26.72/10.96 new_ltEs4(Left(x0), Left(x1), ty_Integer, x2) 26.72/10.96 new_esEs5(Just(x0), Just(x1), ty_@0) 26.72/10.96 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.72/10.96 new_esEs20(x0, x1, app(ty_Ratio, x2)) 26.72/10.96 new_primCmpNat1(Zero, Succ(x0)) 26.72/10.96 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.96 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.96 new_ltEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.72/10.96 new_esEs10(x0, x1, ty_@0) 26.72/10.96 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 26.72/10.96 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.96 new_compare24(x0, x1, False, x2, x3) 26.72/10.96 new_ltEs8(Nothing, Nothing, x0) 26.72/10.96 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.96 new_esEs24(x0, x1, ty_Integer) 26.72/10.96 new_primMulNat0(Zero, Zero) 26.72/10.96 new_ltEs4(Left(x0), Right(x1), x2, x3) 26.72/10.96 new_ltEs4(Right(x0), Left(x1), x2, x3) 26.72/10.96 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.96 new_primCmpNat2(Succ(x0), x1) 26.72/10.96 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.96 new_ltEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.72/10.96 new_compare8(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.96 new_esEs11(x0, x1, ty_Int) 26.72/10.96 new_esEs27(x0, x1, ty_Float) 26.72/10.96 new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.96 new_esEs10(x0, x1, app(ty_[], x2)) 26.72/10.96 new_lt12(x0, x1) 26.72/10.96 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.96 new_compare0(:(x0, x1), :(x2, x3), x4) 26.72/10.96 new_compare114(x0, x1, True, x2, x3) 26.72/10.96 new_esEs20(x0, x1, ty_Double) 26.72/10.96 new_esEs17(True, True) 26.72/10.96 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.96 new_ltEs6(x0, x1, ty_Float) 26.72/10.96 new_esEs23(x0, x1, ty_Double) 26.72/10.96 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 26.72/10.96 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 26.72/10.96 new_ltEs5(@2(x0, x1), @2(x2, x3), x4, x5) 26.72/10.96 new_ltEs19(x0, x1, ty_Int) 26.72/10.96 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 26.72/10.96 new_compare14(Integer(x0), Integer(x1)) 26.72/10.96 new_esEs7(Left(x0), Right(x1), x2, x3) 26.72/10.96 new_esEs7(Right(x0), Left(x1), x2, x3) 26.72/10.96 new_ltEs16(x0, x1) 26.72/10.96 new_compare8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.96 new_ltEs19(x0, x1, ty_Char) 26.72/10.96 new_primPlusNat0(Succ(x0), Succ(x1)) 26.72/10.96 new_lt16(x0, x1) 26.72/10.96 new_ltEs4(Left(x0), Left(x1), ty_@0, x2) 26.72/10.96 new_primEqNat0(Succ(x0), Succ(x1)) 26.72/10.96 new_esEs23(x0, x1, ty_Ordering) 26.72/10.96 new_esEs11(x0, x1, app(ty_Ratio, x2)) 26.72/10.96 new_esEs10(x0, x1, ty_Bool) 26.72/10.96 new_ltEs6(x0, x1, ty_Integer) 26.72/10.96 new_ltEs6(x0, x1, app(ty_Maybe, x2)) 26.72/10.96 new_esEs5(Just(x0), Just(x1), ty_Integer) 26.72/10.96 new_compare8(x0, x1, app(ty_[], x2)) 26.72/10.96 new_primPlusNat0(Zero, Zero) 26.72/10.96 new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.72/10.96 new_primCmpNat1(Succ(x0), Zero) 26.72/10.96 new_esEs10(x0, x1, ty_Integer) 26.72/10.96 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.96 new_pePe(False, x0) 26.72/10.96 new_ltEs14(True, True) 26.72/10.96 new_ltEs19(x0, x1, ty_Bool) 26.72/10.96 new_not(True) 26.72/10.96 new_esEs25(x0, x1, ty_Int) 26.72/10.96 new_ltEs20(x0, x1, app(ty_[], x2)) 26.72/10.96 new_esEs8(EQ, GT) 26.72/10.96 new_esEs8(GT, EQ) 26.72/10.96 new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.72/10.96 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.96 new_primMulNat0(Zero, Succ(x0)) 26.72/10.96 new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.72/10.96 new_esEs20(x0, x1, app(ty_[], x2)) 26.72/10.96 new_compare112(x0, x1, False) 26.72/10.96 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.96 new_lt20(x0, x1, ty_Ordering) 26.72/10.96 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.96 new_esEs11(x0, x1, ty_Ordering) 26.72/10.96 new_esEs20(x0, x1, ty_Ordering) 26.72/10.96 new_esEs29(x0, x1, ty_Integer) 26.72/10.96 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.72/10.96 new_esEs27(x0, x1, ty_Integer) 26.72/10.96 new_lt6(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.96 new_ltEs18(x0, x1) 26.72/10.96 new_ltEs20(x0, x1, ty_Ordering) 26.72/10.96 new_ltEs19(x0, x1, ty_Ordering) 26.72/10.96 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 26.72/10.96 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.96 new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.72/10.96 new_esEs17(False, True) 26.72/10.96 new_esEs17(True, False) 26.72/10.96 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.96 new_primPlusNat0(Succ(x0), Zero) 26.72/10.96 new_esEs28(x0, x1, ty_Integer) 26.72/10.96 new_esEs28(x0, x1, app(ty_Maybe, x2)) 26.72/10.96 new_ltEs19(x0, x1, ty_Integer) 26.72/10.96 new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.72/10.96 new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.72/10.96 new_ltEs12(EQ, EQ) 26.72/10.96 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.96 new_compare18(@0, @0) 26.72/10.96 new_esEs21(x0, x1, ty_Ordering) 26.72/10.96 new_esEs10(x0, x1, ty_Ordering) 26.72/10.96 new_esEs27(x0, x1, app(ty_[], x2)) 26.72/10.96 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.96 new_esEs13(Double(x0, x1), Double(x2, x3)) 26.72/10.96 new_esEs23(x0, x1, app(ty_Ratio, x2)) 26.72/10.96 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.96 new_lt7(x0, x1, x2) 26.72/10.96 new_compare8(x0, x1, ty_Integer) 26.72/10.96 new_lt10(x0, x1, x2, x3, x4) 26.72/10.96 new_primCmpInt(Pos(Zero), Pos(Zero)) 26.72/10.96 new_ltEs6(x0, x1, ty_Bool) 26.72/10.96 new_compare29(x0, x1, True, x2, x3, x4) 26.72/10.96 new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.72/10.96 new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) 26.72/10.96 new_ltEs4(Left(x0), Left(x1), ty_Int, x2) 26.72/10.96 new_compare8(x0, x1, app(ty_Ratio, x2)) 26.72/10.96 new_ltEs6(x0, x1, app(ty_[], x2)) 26.72/10.96 new_compare7(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 26.72/10.96 new_compare16(x0, x1) 26.72/10.96 new_ltEs8(Just(x0), Just(x1), ty_Float) 26.72/10.96 new_esEs22(x0, x1, ty_Double) 26.72/10.96 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.96 new_esEs23(x0, x1, app(ty_[], x2)) 26.72/10.96 new_esEs7(Right(x0), Right(x1), x2, ty_Int) 26.72/10.96 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.96 new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.72/10.96 new_esEs11(x0, x1, app(ty_[], x2)) 26.72/10.96 new_esEs30(x0, x1, ty_Float) 26.72/10.96 new_esEs27(x0, x1, ty_Bool) 26.72/10.96 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.96 new_ltEs4(Left(x0), Left(x1), ty_Char, x2) 26.72/10.96 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.96 new_esEs8(LT, GT) 26.72/10.96 new_esEs8(GT, LT) 26.72/10.96 new_primPlusNat1(x0, x1) 26.72/10.96 new_lt6(x0, x1, ty_Ordering) 26.72/10.96 new_esEs29(x0, x1, ty_Bool) 26.72/10.96 new_esEs12(Char(x0), Char(x1)) 26.72/10.96 new_esEs27(x0, x1, app(ty_Ratio, x2)) 26.72/10.96 new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) 26.72/10.96 new_lt18(x0, x1, x2, x3) 26.72/10.96 new_ltEs8(Just(x0), Just(x1), ty_Int) 26.72/10.96 new_lt19(x0, x1, ty_Float) 26.72/10.96 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.96 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 26.72/10.96 new_esEs5(Nothing, Just(x0), x1) 26.72/10.96 new_esEs20(x0, x1, ty_@0) 26.72/10.96 new_ltEs4(Left(x0), Left(x1), ty_Float, x2) 26.72/10.96 new_esEs26(x0, x1, ty_Ordering) 26.72/10.96 new_esEs7(Left(x0), Left(x1), ty_Integer, x2) 26.72/10.96 new_ltEs6(x0, x1, ty_@0) 26.72/10.96 new_ltEs4(Left(x0), Left(x1), ty_Ordering, x2) 26.72/10.96 new_esEs10(x0, x1, app(ty_Ratio, x2)) 26.72/10.96 new_esEs5(Just(x0), Just(x1), ty_Ordering) 26.72/10.96 new_esEs10(x0, x1, ty_Double) 26.72/10.96 new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.72/10.96 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 26.72/10.96 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 26.72/10.96 new_esEs29(x0, x1, app(ty_Maybe, x2)) 26.72/10.96 new_lt6(x0, x1, ty_Float) 26.72/10.96 new_compare8(x0, x1, ty_Bool) 26.72/10.96 new_esEs7(Right(x0), Right(x1), x2, ty_Char) 26.72/10.96 new_esEs26(x0, x1, app(ty_[], x2)) 26.72/10.96 new_compare24(x0, x1, True, x2, x3) 26.72/10.96 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.96 new_ltEs8(Just(x0), Nothing, x1) 26.72/10.96 new_esEs7(Left(x0), Left(x1), ty_@0, x2) 26.72/10.96 new_esEs11(x0, x1, ty_Integer) 26.72/10.96 new_primMulInt(Neg(x0), Neg(x1)) 26.72/10.96 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.96 new_esEs30(x0, x1, app(ty_[], x2)) 26.72/10.96 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.96 new_esEs23(x0, x1, ty_@0) 26.72/10.96 new_esEs26(x0, x1, ty_Integer) 26.72/10.96 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 26.72/10.96 new_esEs5(Just(x0), Just(x1), ty_Float) 26.72/10.96 new_compare23(x0, x1, x2, x3) 26.72/10.96 new_ltEs14(False, True) 26.72/10.96 new_ltEs14(True, False) 26.72/10.96 new_primPlusNat0(Zero, Succ(x0)) 26.72/10.96 new_primEqNat0(Zero, Zero) 26.72/10.96 new_compare8(x0, x1, ty_Char) 26.72/10.96 new_esEs25(x0, x1, ty_Integer) 26.72/10.96 new_primCompAux00(x0, GT) 26.72/10.96 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.96 new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) 26.72/10.96 new_lt20(x0, x1, app(ty_[], x2)) 26.72/10.96 new_ltEs4(Right(x0), Right(x1), x2, ty_@0) 26.72/10.96 new_not(False) 26.72/10.96 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 26.72/10.96 new_ltEs8(Just(x0), Just(x1), ty_Char) 26.72/10.96 new_esEs5(Just(x0), Just(x1), ty_Char) 26.72/10.96 new_esEs11(x0, x1, ty_Bool) 26.72/10.96 new_lt20(x0, x1, ty_Float) 26.72/10.96 new_ltEs19(x0, x1, ty_Float) 26.72/10.96 new_lt20(x0, x1, ty_Bool) 26.72/10.96 new_ltEs12(LT, GT) 26.72/10.96 new_ltEs12(GT, LT) 26.72/10.96 new_esEs30(x0, x1, ty_Char) 26.72/10.96 new_lt6(x0, x1, ty_Int) 26.72/10.96 new_compare8(x0, x1, ty_Int) 26.72/10.96 new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.72/10.96 new_esEs21(x0, x1, app(ty_Maybe, x2)) 26.72/10.96 new_sr0(Integer(x0), Integer(x1)) 26.72/10.96 new_lt6(x0, x1, app(ty_Maybe, x2)) 26.72/10.96 new_esEs21(x0, x1, ty_Bool) 26.72/10.96 new_esEs28(x0, x1, ty_Double) 26.72/10.96 new_esEs7(Right(x0), Right(x1), x2, ty_Bool) 26.72/10.97 new_esEs5(Just(x0), Just(x1), ty_Int) 26.72/10.97 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 26.72/10.97 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 26.72/10.97 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 26.72/10.97 new_esEs21(x0, x1, ty_Float) 26.72/10.97 new_compare25(Just(x0), Just(x1), False, x2) 26.72/10.97 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.72/10.97 new_ltEs20(x0, x1, ty_@0) 26.72/10.97 new_ltEs4(Left(x0), Left(x1), ty_Bool, x2) 26.72/10.97 new_lt19(x0, x1, app(ty_Ratio, x2)) 26.72/10.97 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.97 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 26.72/10.97 new_compare25(Nothing, Just(x0), False, x1) 26.72/10.97 new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.72/10.97 new_lt4(x0, x1) 26.72/10.97 new_asAs(False, x0) 26.72/10.97 new_esEs30(x0, x1, ty_Int) 26.72/10.97 new_primMulInt(Pos(x0), Neg(x1)) 26.72/10.97 new_primMulInt(Neg(x0), Pos(x1)) 26.72/10.97 new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.72/10.97 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 26.72/10.97 new_ltEs8(Nothing, Just(x0), x1) 26.72/10.97 new_esEs14(Float(x0, x1), Float(x2, x3)) 26.72/10.97 new_lt20(x0, x1, ty_Int) 26.72/10.97 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.72/10.97 new_primCmpNat1(Succ(x0), Succ(x1)) 26.72/10.97 new_esEs21(x0, x1, ty_Char) 26.72/10.97 new_compare111(x0, x1, False) 26.72/10.97 new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.72/10.97 new_ltEs4(Right(x0), Right(x1), x2, ty_Double) 26.72/10.97 new_esEs21(x0, x1, ty_Int) 26.72/10.97 new_lt6(x0, x1, ty_Char) 26.72/10.97 new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 26.72/10.97 new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 26.72/10.97 new_esEs5(Just(x0), Just(x1), ty_Bool) 26.72/10.97 new_compare8(x0, x1, ty_Float) 26.72/10.97 new_lt20(x0, x1, ty_Char) 26.72/10.97 new_ltEs20(x0, x1, ty_Double) 26.72/10.97 new_primCompAux0(x0, x1, x2, x3) 26.72/10.97 new_esEs28(x0, x1, ty_@0) 26.72/10.97 26.72/10.97 We have to consider all minimal (P,Q,R)-chains. 26.72/10.97 ---------------------------------------- 26.72/10.97 26.72/10.97 (46) QDPSizeChangeProof (EQUIVALENT) 26.72/10.97 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. 26.72/10.97 26.72/10.97 From the DPs we obtained the following set of size-change graphs: 26.72/10.97 *new_addToFM_C(xuu3, Branch(Nothing, xuu41, xuu42, xuu43, xuu44), Nothing, xuu501, h, ba) -> new_addToFM_C1(xuu3, xuu41, xuu42, xuu43, xuu44, xuu501, new_esEs8(new_compare25(Nothing, Nothing, True, h), GT), h, ba) 26.72/10.97 The graph contains the following edges 1 >= 1, 2 > 2, 2 > 3, 2 > 4, 2 > 5, 4 >= 6, 5 >= 8, 6 >= 9 26.72/10.97 26.72/10.97 26.72/10.97 *new_addToFM_C(xuu3, Branch(Just(xuu400), xuu41, xuu42, xuu43, xuu44), Nothing, xuu501, h, ba) -> new_addToFM_C2(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu501, new_esEs8(new_compare25(Nothing, Just(xuu400), False, h), LT), h, ba) 26.72/10.97 The graph contains the following edges 1 >= 1, 2 > 2, 2 > 3, 2 > 4, 2 > 5, 2 > 6, 4 >= 7, 5 >= 9, 6 >= 10 26.72/10.97 26.72/10.97 26.72/10.97 *new_addToFM_C1(xuu3, xuu41, xuu42, xuu43, xuu44, xuu501, True, h, ba) -> new_addToFM_C(xuu3, xuu44, Nothing, xuu501, h, ba) 26.72/10.97 The graph contains the following edges 1 >= 1, 5 >= 2, 6 >= 4, 8 >= 5, 9 >= 6 26.72/10.97 26.72/10.97 26.72/10.97 *new_addToFM_C2(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu501, False, h, ba) -> new_addToFM_C10(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu501, new_esEs8(new_compare25(Nothing, Just(xuu400), False, h), GT), h, ba) 26.72/10.97 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 9 >= 9, 10 >= 10 26.72/10.97 26.72/10.97 26.72/10.97 *new_addToFM_C2(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu501, True, h, ba) -> new_addToFM_C(xuu3, xuu43, Nothing, xuu501, h, ba) 26.72/10.97 The graph contains the following edges 1 >= 1, 5 >= 2, 7 >= 4, 9 >= 5, 10 >= 6 26.72/10.97 26.72/10.97 26.72/10.97 *new_addToFM_C10(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu501, True, h, ba) -> new_addToFM_C(xuu3, xuu44, Nothing, xuu501, h, ba) 26.72/10.97 The graph contains the following edges 1 >= 1, 6 >= 2, 7 >= 4, 9 >= 5, 10 >= 6 26.72/10.97 26.72/10.97 26.72/10.97 ---------------------------------------- 26.72/10.97 26.72/10.97 (47) 26.72/10.97 YES 26.72/10.97 26.72/10.97 ---------------------------------------- 26.72/10.97 26.72/10.97 (48) 26.72/10.97 Obligation: 26.72/10.97 Q DP problem: 26.72/10.97 The TRS P consists of the following rules: 26.72/10.97 26.72/10.97 new_foldl(xuu3, :(xuu50, xuu51), h, ba) -> new_foldl(xuu3, xuu51, h, ba) 26.72/10.97 26.72/10.97 R is empty. 26.72/10.97 Q is empty. 26.72/10.97 We have to consider all minimal (P,Q,R)-chains. 26.72/10.97 ---------------------------------------- 26.72/10.97 26.72/10.97 (49) QDPSizeChangeProof (EQUIVALENT) 26.72/10.97 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. 26.72/10.97 26.72/10.97 From the DPs we obtained the following set of size-change graphs: 26.72/10.97 *new_foldl(xuu3, :(xuu50, xuu51), h, ba) -> new_foldl(xuu3, xuu51, h, ba) 26.72/10.97 The graph contains the following edges 1 >= 1, 2 > 2, 3 >= 3, 4 >= 4 26.72/10.97 26.72/10.97 26.72/10.97 ---------------------------------------- 26.72/10.97 26.72/10.97 (50) 26.72/10.97 YES 26.72/10.97 26.72/10.97 ---------------------------------------- 26.72/10.97 26.72/10.97 (51) 26.72/10.97 Obligation: 26.72/10.97 Q DP problem: 26.72/10.97 The TRS P consists of the following rules: 26.72/10.97 26.72/10.97 new_primEqNat(Succ(xuu500000), Succ(xuu40000)) -> new_primEqNat(xuu500000, xuu40000) 26.72/10.97 26.72/10.97 R is empty. 26.72/10.97 Q is empty. 26.72/10.97 We have to consider all minimal (P,Q,R)-chains. 26.72/10.97 ---------------------------------------- 26.72/10.97 26.72/10.97 (52) QDPSizeChangeProof (EQUIVALENT) 26.72/10.97 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. 26.72/10.97 26.72/10.97 From the DPs we obtained the following set of size-change graphs: 26.72/10.97 *new_primEqNat(Succ(xuu500000), Succ(xuu40000)) -> new_primEqNat(xuu500000, xuu40000) 26.72/10.97 The graph contains the following edges 1 > 1, 2 > 2 26.72/10.97 26.72/10.97 26.72/10.97 ---------------------------------------- 26.72/10.97 26.72/10.97 (53) 26.72/10.97 YES 26.72/10.97 26.72/10.97 ---------------------------------------- 26.72/10.97 26.72/10.97 (54) 26.72/10.97 Obligation: 26.72/10.97 Q DP problem: 26.72/10.97 The TRS P consists of the following rules: 26.72/10.97 26.72/10.97 new_primMinusNat(Succ(xuu28200), Succ(xuu9600)) -> new_primMinusNat(xuu28200, xuu9600) 26.72/10.97 26.72/10.97 R is empty. 26.72/10.97 Q is empty. 26.72/10.97 We have to consider all minimal (P,Q,R)-chains. 26.72/10.97 ---------------------------------------- 26.72/10.97 26.72/10.97 (55) QDPSizeChangeProof (EQUIVALENT) 26.72/10.97 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. 26.72/10.97 26.72/10.97 From the DPs we obtained the following set of size-change graphs: 26.72/10.97 *new_primMinusNat(Succ(xuu28200), Succ(xuu9600)) -> new_primMinusNat(xuu28200, xuu9600) 26.72/10.97 The graph contains the following edges 1 > 1, 2 > 2 26.72/10.97 26.72/10.97 26.72/10.97 ---------------------------------------- 26.72/10.97 26.72/10.97 (56) 26.72/10.97 YES 26.72/10.97 26.72/10.97 ---------------------------------------- 26.72/10.97 26.72/10.97 (57) 26.72/10.97 Obligation: 26.72/10.97 Q DP problem: 26.72/10.97 The TRS P consists of the following rules: 26.72/10.97 26.72/10.97 new_primPlusNat(Succ(xuu28200), Succ(xuu9600)) -> new_primPlusNat(xuu28200, xuu9600) 26.72/10.97 26.72/10.97 R is empty. 26.72/10.97 Q is empty. 26.72/10.97 We have to consider all minimal (P,Q,R)-chains. 26.72/10.97 ---------------------------------------- 26.72/10.97 26.72/10.97 (58) QDPSizeChangeProof (EQUIVALENT) 26.72/10.97 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. 26.72/10.97 26.72/10.97 From the DPs we obtained the following set of size-change graphs: 26.72/10.97 *new_primPlusNat(Succ(xuu28200), Succ(xuu9600)) -> new_primPlusNat(xuu28200, xuu9600) 26.72/10.97 The graph contains the following edges 1 > 1, 2 > 2 26.72/10.97 26.72/10.97 26.72/10.97 ---------------------------------------- 26.72/10.97 26.72/10.97 (59) 26.72/10.97 YES 26.85/11.01 EOF