28.69/12.24 YES 31.00/12.89 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 31.00/12.89 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 31.00/12.89 31.00/12.89 31.00/12.89 H-Termination with start terms of the given HASKELL could be proven: 31.00/12.89 31.00/12.89 (0) HASKELL 31.00/12.89 (1) LR [EQUIVALENT, 0 ms] 31.00/12.89 (2) HASKELL 31.00/12.89 (3) CR [EQUIVALENT, 0 ms] 31.00/12.89 (4) HASKELL 31.00/12.89 (5) IFR [EQUIVALENT, 0 ms] 31.00/12.89 (6) HASKELL 31.00/12.89 (7) BR [EQUIVALENT, 0 ms] 31.00/12.89 (8) HASKELL 31.00/12.89 (9) COR [EQUIVALENT, 0 ms] 31.00/12.89 (10) HASKELL 31.00/12.89 (11) LetRed [EQUIVALENT, 0 ms] 31.00/12.89 (12) HASKELL 31.00/12.89 (13) NumRed [SOUND, 0 ms] 31.00/12.89 (14) HASKELL 31.00/12.89 (15) Narrow [SOUND, 0 ms] 31.00/12.89 (16) AND 31.00/12.89 (17) QDP 31.00/12.89 (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] 31.00/12.89 (19) YES 31.00/12.89 (20) QDP 31.00/12.89 (21) DependencyGraphProof [EQUIVALENT, 0 ms] 31.00/12.89 (22) AND 31.00/12.89 (23) QDP 31.00/12.89 (24) TransformationProof [EQUIVALENT, 1935 ms] 31.00/12.89 (25) QDP 31.00/12.89 (26) DependencyGraphProof [EQUIVALENT, 0 ms] 31.00/12.89 (27) QDP 31.00/12.89 (28) TransformationProof [EQUIVALENT, 0 ms] 31.00/12.89 (29) QDP 31.00/12.89 (30) TransformationProof [EQUIVALENT, 0 ms] 31.00/12.90 (31) QDP 31.00/12.90 (32) TransformationProof [EQUIVALENT, 0 ms] 31.00/12.90 (33) QDP 31.00/12.90 (34) QDPSizeChangeProof [EQUIVALENT, 0 ms] 31.00/12.90 (35) YES 31.00/12.90 (36) QDP 31.00/12.90 (37) QDPSizeChangeProof [EQUIVALENT, 0 ms] 31.00/12.90 (38) YES 31.00/12.90 (39) QDP 31.00/12.90 (40) QDPSizeChangeProof [EQUIVALENT, 0 ms] 31.00/12.90 (41) YES 31.00/12.90 (42) QDP 31.00/12.90 (43) QDPSizeChangeProof [EQUIVALENT, 0 ms] 31.00/12.90 (44) YES 31.00/12.90 (45) QDP 31.00/12.90 (46) QDPSizeChangeProof [EQUIVALENT, 69 ms] 31.00/12.90 (47) YES 31.00/12.90 (48) QDP 31.00/12.90 (49) QDPSizeChangeProof [EQUIVALENT, 0 ms] 31.00/12.90 (50) YES 31.00/12.90 (51) QDP 31.00/12.90 (52) QDPSizeChangeProof [EQUIVALENT, 0 ms] 31.00/12.90 (53) YES 31.00/12.90 (54) QDP 31.00/12.90 (55) QDPSizeChangeProof [EQUIVALENT, 0 ms] 31.00/12.90 (56) YES 31.00/12.90 (57) QDP 31.00/12.90 (58) QDPSizeChangeProof [EQUIVALENT, 0 ms] 31.00/12.90 (59) YES 31.00/12.90 31.00/12.90 31.00/12.90 ---------------------------------------- 31.00/12.90 31.00/12.90 (0) 31.00/12.90 Obligation: 31.00/12.90 mainModule Main 31.00/12.90 module FiniteMap where { 31.00/12.90 import qualified Main; 31.00/12.90 import qualified Maybe; 31.00/12.90 import qualified Prelude; 31.00/12.90 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 31.00/12.90 31.00/12.90 instance (Eq a, Eq b) => Eq FiniteMap a b where { 31.00/12.90 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 31.00/12.90 } 31.00/12.90 addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; 31.00/12.90 addListToFM fm key_elt_pairs = addListToFM_C (\old new ->new) fm key_elt_pairs; 31.00/12.90 31.00/12.90 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 31.00/12.90 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 31.00/12.90 add fmap (key,elt) = addToFM_C combiner fmap key elt; 31.00/12.90 }; 31.00/12.90 31.00/12.90 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 31.00/12.90 addToFM_C combiner EmptyFM key elt = unitFM key elt; 31.00/12.90 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 31.00/12.90 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 31.00/12.90 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 31.00/12.90 31.00/12.90 emptyFM :: FiniteMap a b; 31.00/12.90 emptyFM = EmptyFM; 31.00/12.90 31.00/12.90 findMax :: FiniteMap b a -> (b,a); 31.00/12.90 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 31.00/12.90 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 31.00/12.90 31.00/12.90 findMin :: FiniteMap b a -> (b,a); 31.00/12.90 findMin (Branch key elt _ EmptyFM _) = (key,elt); 31.00/12.90 findMin (Branch key elt _ fm_l _) = findMin fm_l; 31.00/12.90 31.00/12.90 fmToList :: FiniteMap a b -> [(a,b)]; 31.00/12.90 fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; 31.00/12.90 31.00/12.90 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 31.00/12.90 foldFM k z EmptyFM = z; 31.00/12.90 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 31.00/12.90 31.00/12.90 listToFM :: Ord a => [(a,b)] -> FiniteMap a b; 31.00/12.90 listToFM = addListToFM emptyFM; 31.00/12.90 31.00/12.90 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 31.00/12.90 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 31.00/12.90 | size_r > sIZE_RATIO * size_l = case fm_R of { 31.00/12.90 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 31.00/12.90 | otherwise -> double_L fm_L fm_R; 31.00/12.90 } 31.00/12.90 | size_l > sIZE_RATIO * size_r = case fm_L of { 31.00/12.90 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 31.00/12.90 | otherwise -> double_R fm_L fm_R; 31.00/12.90 } 31.00/12.90 | otherwise = mkBranch 2 key elt fm_L fm_R where { 31.00/12.90 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); 31.00/12.90 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); 31.00/12.90 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; 31.00/12.90 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); 31.00/12.90 size_l = sizeFM fm_L; 31.00/12.90 size_r = sizeFM fm_R; 31.00/12.90 }; 31.00/12.90 31.00/12.90 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 31.00/12.90 mkBranch which key elt fm_l fm_r = let { 31.00/12.90 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 31.00/12.90 } in result where { 31.00/12.90 balance_ok = True; 31.00/12.90 left_ok = case fm_l of { 31.00/12.90 EmptyFM-> True; 31.00/12.90 Branch left_key _ _ _ _-> let { 31.00/12.90 biggest_left_key = fst (findMax fm_l); 31.00/12.90 } in biggest_left_key < key; 31.00/12.90 } ; 31.00/12.90 left_size = sizeFM fm_l; 31.00/12.90 right_ok = case fm_r of { 31.00/12.90 EmptyFM-> True; 31.00/12.90 Branch right_key _ _ _ _-> let { 31.00/12.90 smallest_right_key = fst (findMin fm_r); 31.00/12.90 } in key < smallest_right_key; 31.00/12.90 } ; 31.00/12.90 right_size = sizeFM fm_r; 31.00/12.90 unbox :: Int -> Int; 31.00/12.90 unbox x = x; 31.00/12.90 }; 31.00/12.90 31.00/12.90 sIZE_RATIO :: Int; 31.00/12.90 sIZE_RATIO = 5; 31.00/12.90 31.00/12.90 sizeFM :: FiniteMap b a -> Int; 31.00/12.90 sizeFM EmptyFM = 0; 31.00/12.90 sizeFM (Branch _ _ size _ _) = size; 31.00/12.90 31.00/12.90 unitFM :: b -> a -> FiniteMap b a; 31.00/12.90 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 31.00/12.90 31.00/12.90 } 31.00/12.90 module Maybe where { 31.00/12.90 import qualified FiniteMap; 31.00/12.90 import qualified Main; 31.00/12.90 import qualified Prelude; 31.00/12.90 } 31.00/12.90 module Main where { 31.00/12.90 import qualified FiniteMap; 31.00/12.90 import qualified Maybe; 31.00/12.90 import qualified Prelude; 31.00/12.90 } 31.00/12.90 31.00/12.90 ---------------------------------------- 31.00/12.90 31.00/12.90 (1) LR (EQUIVALENT) 31.00/12.90 Lambda Reductions: 31.00/12.90 The following Lambda expression 31.00/12.90 "\oldnew->new" 31.00/12.90 is transformed to 31.00/12.90 "addListToFM0 old new = new; 31.00/12.90 " 31.00/12.90 The following Lambda expression 31.00/12.90 "\keyeltrest->(key,elt) : rest" 31.00/12.90 is transformed to 31.00/12.90 "fmToList0 key elt rest = (key,elt) : rest; 31.00/12.90 " 31.00/12.90 31.00/12.90 ---------------------------------------- 31.00/12.90 31.00/12.90 (2) 31.00/12.90 Obligation: 31.00/12.90 mainModule Main 31.00/12.90 module FiniteMap where { 31.00/12.90 import qualified Main; 31.00/12.90 import qualified Maybe; 31.00/12.90 import qualified Prelude; 31.00/12.90 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 31.00/12.90 31.00/12.90 instance (Eq a, Eq b) => Eq FiniteMap b a where { 31.00/12.90 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 31.00/12.90 } 31.00/12.90 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 31.00/12.90 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 31.00/12.90 31.00/12.90 addListToFM0 old new = new; 31.00/12.90 31.00/12.90 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 31.00/12.90 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 31.00/12.90 add fmap (key,elt) = addToFM_C combiner fmap key elt; 31.00/12.90 }; 31.00/12.90 31.00/12.90 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 31.00/12.90 addToFM_C combiner EmptyFM key elt = unitFM key elt; 31.00/12.90 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 31.00/12.90 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 31.00/12.90 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 31.00/12.90 31.00/12.90 emptyFM :: FiniteMap a b; 31.00/12.90 emptyFM = EmptyFM; 31.00/12.90 31.00/12.90 findMax :: FiniteMap b a -> (b,a); 31.00/12.90 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 31.00/12.90 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 31.00/12.90 31.00/12.90 findMin :: FiniteMap a b -> (a,b); 31.00/12.90 findMin (Branch key elt _ EmptyFM _) = (key,elt); 31.00/12.90 findMin (Branch key elt _ fm_l _) = findMin fm_l; 31.00/12.90 31.00/12.90 fmToList :: FiniteMap a b -> [(a,b)]; 31.00/12.90 fmToList fm = foldFM fmToList0 [] fm; 31.00/12.90 31.00/12.90 fmToList0 key elt rest = (key,elt) : rest; 31.00/12.90 31.00/12.90 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 32.13/13.17 foldFM k z EmptyFM = z; 32.13/13.17 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 32.13/13.17 32.13/13.17 listToFM :: Ord a => [(a,b)] -> FiniteMap a b; 32.13/13.17 listToFM = addListToFM emptyFM; 32.13/13.17 32.13/13.17 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 32.13/13.17 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 32.13/13.17 | size_r > sIZE_RATIO * size_l = case fm_R of { 32.13/13.17 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 32.13/13.17 | otherwise -> double_L fm_L fm_R; 32.13/13.17 } 32.13/13.17 | size_l > sIZE_RATIO * size_r = case fm_L of { 32.13/13.17 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 32.13/13.17 | otherwise -> double_R fm_L fm_R; 32.13/13.17 } 32.13/13.17 | otherwise = mkBranch 2 key elt fm_L fm_R where { 32.13/13.17 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); 32.13/13.17 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); 32.13/13.17 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; 32.13/13.17 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); 32.13/13.17 size_l = sizeFM fm_L; 32.13/13.17 size_r = sizeFM fm_R; 32.13/13.17 }; 32.13/13.17 32.13/13.17 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 32.13/13.17 mkBranch which key elt fm_l fm_r = let { 32.13/13.17 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 32.13/13.17 } in result where { 32.13/13.17 balance_ok = True; 32.13/13.17 left_ok = case fm_l of { 32.13/13.17 EmptyFM-> True; 32.13/13.17 Branch left_key _ _ _ _-> let { 32.13/13.17 biggest_left_key = fst (findMax fm_l); 32.13/13.17 } in biggest_left_key < key; 32.13/13.17 } ; 32.13/13.17 left_size = sizeFM fm_l; 32.13/13.17 right_ok = case fm_r of { 32.13/13.17 EmptyFM-> True; 32.13/13.17 Branch right_key _ _ _ _-> let { 32.13/13.17 smallest_right_key = fst (findMin fm_r); 32.13/13.17 } in key < smallest_right_key; 32.13/13.17 } ; 32.13/13.17 right_size = sizeFM fm_r; 32.13/13.17 unbox :: Int -> Int; 32.13/13.17 unbox x = x; 32.13/13.17 }; 32.13/13.17 32.13/13.17 sIZE_RATIO :: Int; 32.13/13.17 sIZE_RATIO = 5; 32.13/13.17 32.13/13.17 sizeFM :: FiniteMap b a -> Int; 32.13/13.17 sizeFM EmptyFM = 0; 32.13/13.17 sizeFM (Branch _ _ size _ _) = size; 32.13/13.17 32.13/13.17 unitFM :: b -> a -> FiniteMap b a; 32.13/13.17 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 32.13/13.17 32.13/13.17 } 32.13/13.17 module Maybe where { 32.13/13.17 import qualified FiniteMap; 32.13/13.17 import qualified Main; 32.13/13.17 import qualified Prelude; 32.13/13.17 } 32.13/13.17 module Main where { 32.13/13.17 import qualified FiniteMap; 32.13/13.17 import qualified Maybe; 32.13/13.17 import qualified Prelude; 32.13/13.17 } 32.13/13.17 32.13/13.17 ---------------------------------------- 32.13/13.17 32.13/13.17 (3) CR (EQUIVALENT) 32.13/13.17 Case Reductions: 32.13/13.17 The following Case expression 32.13/13.17 "case compare x y of { 32.13/13.17 EQ -> o; 32.13/13.17 LT -> LT; 32.13/13.17 GT -> GT} 32.13/13.17 " 32.13/13.17 is transformed to 32.13/13.17 "primCompAux0 o EQ = o; 32.13/13.17 primCompAux0 o LT = LT; 32.13/13.17 primCompAux0 o GT = GT; 32.13/13.17 " 32.13/13.17 The following Case expression 32.13/13.17 "case fm_r of { 32.13/13.17 EmptyFM -> True; 32.13/13.17 Branch right_key _ _ _ _ -> let { 32.13/13.17 smallest_right_key = fst (findMin fm_r); 32.13/13.17 } in key < smallest_right_key} 32.13/13.17 " 32.13/13.17 is transformed to 32.13/13.17 "right_ok0 fm_r key EmptyFM = True; 32.13/13.17 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 32.13/13.17 smallest_right_key = fst (findMin fm_r); 32.13/13.17 } in key < smallest_right_key; 32.13/13.17 " 32.13/13.17 The following Case expression 32.13/13.17 "case fm_l of { 32.13/13.17 EmptyFM -> True; 32.13/13.17 Branch left_key _ _ _ _ -> let { 32.13/13.17 biggest_left_key = fst (findMax fm_l); 32.13/13.17 } in biggest_left_key < key} 32.13/13.17 " 32.13/13.17 is transformed to 32.13/13.17 "left_ok0 fm_l key EmptyFM = True; 32.13/13.17 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 32.13/13.17 biggest_left_key = fst (findMax fm_l); 32.13/13.17 } in biggest_left_key < key; 32.13/13.17 " 32.13/13.17 The following Case expression 32.13/13.17 "case fm_R of { 32.13/13.17 Branch _ _ _ fm_rl fm_rr |sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R} 32.13/13.17 " 32.13/13.17 is transformed to 32.13/13.17 "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; 32.13/13.17 " 32.13/13.17 The following Case expression 32.13/13.17 "case fm_L of { 32.13/13.17 Branch _ _ _ fm_ll fm_lr |sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R} 32.13/13.17 " 32.13/13.17 is transformed to 32.13/13.17 "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; 32.13/13.17 " 32.13/13.17 32.13/13.17 ---------------------------------------- 32.13/13.17 32.13/13.17 (4) 32.13/13.17 Obligation: 32.13/13.17 mainModule Main 32.13/13.17 module FiniteMap where { 32.13/13.17 import qualified Main; 32.13/13.17 import qualified Maybe; 32.13/13.17 import qualified Prelude; 32.13/13.17 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 32.13/13.17 32.13/13.17 instance (Eq a, Eq b) => Eq FiniteMap b a where { 32.13/13.17 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 32.13/13.17 } 32.13/13.17 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 32.13/13.17 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 32.13/13.17 32.13/13.17 addListToFM0 old new = new; 32.13/13.17 32.13/13.17 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 32.13/13.17 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 32.13/13.17 add fmap (key,elt) = addToFM_C combiner fmap key elt; 32.13/13.17 }; 32.13/13.17 32.13/13.17 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 32.13/13.17 addToFM_C combiner EmptyFM key elt = unitFM key elt; 32.13/13.17 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 32.13/13.17 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 32.13/13.17 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 32.13/13.17 32.13/13.17 emptyFM :: FiniteMap b a; 32.13/13.17 emptyFM = EmptyFM; 32.13/13.17 32.13/13.17 findMax :: FiniteMap b a -> (b,a); 32.13/13.17 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 32.13/13.17 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 32.13/13.17 32.13/13.17 findMin :: FiniteMap b a -> (b,a); 32.13/13.17 findMin (Branch key elt _ EmptyFM _) = (key,elt); 32.13/13.17 findMin (Branch key elt _ fm_l _) = findMin fm_l; 32.13/13.17 32.13/13.17 fmToList :: FiniteMap a b -> [(a,b)]; 32.13/13.17 fmToList fm = foldFM fmToList0 [] fm; 32.13/13.17 32.13/13.17 fmToList0 key elt rest = (key,elt) : rest; 32.13/13.17 32.13/13.17 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 32.13/13.17 foldFM k z EmptyFM = z; 32.13/13.17 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 32.13/13.17 32.13/13.17 listToFM :: Ord a => [(a,b)] -> FiniteMap a b; 32.13/13.17 listToFM = addListToFM emptyFM; 32.13/13.17 32.13/13.17 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 32.13/13.17 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 32.13/13.17 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 32.13/13.17 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 32.13/13.17 | otherwise = mkBranch 2 key elt fm_L fm_R where { 32.13/13.17 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); 32.13/13.17 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); 32.13/13.17 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 32.13/13.17 | otherwise = double_L fm_L fm_R; 32.13/13.17 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 32.13/13.17 | otherwise = double_R fm_L fm_R; 32.13/13.17 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; 32.13/13.17 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); 32.13/13.17 size_l = sizeFM fm_L; 32.13/13.17 size_r = sizeFM fm_R; 32.13/13.17 }; 32.13/13.17 32.13/13.17 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 32.13/13.17 mkBranch which key elt fm_l fm_r = let { 32.13/13.17 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 32.13/13.17 } in result where { 32.13/13.17 balance_ok = True; 32.13/13.17 left_ok = left_ok0 fm_l key fm_l; 32.13/13.17 left_ok0 fm_l key EmptyFM = True; 32.13/13.17 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 32.13/13.17 biggest_left_key = fst (findMax fm_l); 32.13/13.17 } in biggest_left_key < key; 32.13/13.17 left_size = sizeFM fm_l; 32.13/13.17 right_ok = right_ok0 fm_r key fm_r; 32.13/13.17 right_ok0 fm_r key EmptyFM = True; 32.13/13.17 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 32.13/13.17 smallest_right_key = fst (findMin fm_r); 32.13/13.17 } in key < smallest_right_key; 32.13/13.17 right_size = sizeFM fm_r; 32.13/13.17 unbox :: Int -> Int; 32.13/13.17 unbox x = x; 32.13/13.17 }; 32.13/13.17 32.13/13.17 sIZE_RATIO :: Int; 32.13/13.17 sIZE_RATIO = 5; 32.13/13.17 32.13/13.17 sizeFM :: FiniteMap b a -> Int; 32.13/13.17 sizeFM EmptyFM = 0; 32.13/13.17 sizeFM (Branch _ _ size _ _) = size; 32.13/13.17 32.13/13.17 unitFM :: b -> a -> FiniteMap b a; 32.13/13.17 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 32.13/13.17 32.13/13.17 } 32.13/13.17 module Maybe where { 32.13/13.17 import qualified FiniteMap; 32.13/13.17 import qualified Main; 32.13/13.17 import qualified Prelude; 32.13/13.17 } 32.13/13.17 module Main where { 32.13/13.17 import qualified FiniteMap; 32.13/13.17 import qualified Maybe; 32.13/13.17 import qualified Prelude; 32.13/13.17 } 32.13/13.17 32.13/13.17 ---------------------------------------- 32.13/13.17 32.13/13.17 (5) IFR (EQUIVALENT) 32.13/13.17 If Reductions: 32.13/13.17 The following If expression 32.13/13.17 "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" 32.13/13.17 is transformed to 32.13/13.17 "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); 32.13/13.17 primDivNatS0 x y False = Zero; 32.13/13.17 " 32.13/13.17 The following If expression 32.13/13.17 "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" 32.13/13.17 is transformed to 32.13/13.17 "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); 32.13/13.17 primModNatS0 x y False = Succ x; 32.13/13.17 " 32.13/13.17 32.13/13.17 ---------------------------------------- 32.13/13.17 32.13/13.17 (6) 32.13/13.17 Obligation: 32.13/13.17 mainModule Main 32.13/13.17 module FiniteMap where { 32.13/13.17 import qualified Main; 32.13/13.17 import qualified Maybe; 32.13/13.17 import qualified Prelude; 32.13/13.17 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 32.13/13.17 32.13/13.17 instance (Eq a, Eq b) => Eq FiniteMap b a where { 32.13/13.17 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 32.13/13.17 } 32.13/13.17 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 32.13/13.17 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 32.13/13.17 32.13/13.17 addListToFM0 old new = new; 32.13/13.17 32.13/13.17 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 32.13/13.17 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 32.13/13.17 add fmap (key,elt) = addToFM_C combiner fmap key elt; 32.13/13.17 }; 32.13/13.17 32.13/13.17 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 32.13/13.17 addToFM_C combiner EmptyFM key elt = unitFM key elt; 32.13/13.17 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 32.13/13.17 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 32.13/13.17 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 32.13/13.17 32.13/13.17 emptyFM :: FiniteMap b a; 32.13/13.17 emptyFM = EmptyFM; 32.13/13.17 32.13/13.17 findMax :: FiniteMap a b -> (a,b); 32.13/13.17 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 32.13/13.17 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 32.13/13.17 32.13/13.17 findMin :: FiniteMap a b -> (a,b); 32.13/13.17 findMin (Branch key elt _ EmptyFM _) = (key,elt); 32.13/13.17 findMin (Branch key elt _ fm_l _) = findMin fm_l; 32.13/13.17 32.13/13.17 fmToList :: FiniteMap a b -> [(a,b)]; 32.13/13.17 fmToList fm = foldFM fmToList0 [] fm; 32.13/13.17 32.13/13.17 fmToList0 key elt rest = (key,elt) : rest; 32.13/13.17 32.13/13.17 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 32.13/13.17 foldFM k z EmptyFM = z; 32.13/13.17 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 32.13/13.17 32.13/13.17 listToFM :: Ord a => [(a,b)] -> FiniteMap a b; 32.13/13.17 listToFM = addListToFM emptyFM; 32.13/13.17 32.13/13.17 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 32.13/13.17 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 32.13/13.17 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 32.13/13.17 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 32.13/13.17 | otherwise = mkBranch 2 key elt fm_L fm_R where { 32.13/13.17 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); 32.13/13.17 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); 32.13/13.17 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 32.13/13.17 | otherwise = double_L fm_L fm_R; 32.13/13.17 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 32.13/13.17 | otherwise = double_R fm_L fm_R; 32.13/13.17 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; 32.13/13.17 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); 32.13/13.17 size_l = sizeFM fm_L; 32.13/13.17 size_r = sizeFM fm_R; 32.13/13.17 }; 32.13/13.17 32.13/13.17 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 32.13/13.17 mkBranch which key elt fm_l fm_r = let { 32.13/13.17 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 32.13/13.17 } in result where { 32.13/13.17 balance_ok = True; 32.13/13.17 left_ok = left_ok0 fm_l key fm_l; 32.13/13.17 left_ok0 fm_l key EmptyFM = True; 32.13/13.17 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 32.13/13.17 biggest_left_key = fst (findMax fm_l); 32.13/13.17 } in biggest_left_key < key; 32.13/13.17 left_size = sizeFM fm_l; 32.13/13.17 right_ok = right_ok0 fm_r key fm_r; 32.13/13.17 right_ok0 fm_r key EmptyFM = True; 32.13/13.17 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 32.13/13.17 smallest_right_key = fst (findMin fm_r); 32.13/13.17 } in key < smallest_right_key; 32.13/13.17 right_size = sizeFM fm_r; 32.13/13.17 unbox :: Int -> Int; 32.13/13.17 unbox x = x; 32.13/13.17 }; 32.13/13.17 32.13/13.17 sIZE_RATIO :: Int; 32.13/13.17 sIZE_RATIO = 5; 32.13/13.17 32.13/13.17 sizeFM :: FiniteMap b a -> Int; 32.13/13.17 sizeFM EmptyFM = 0; 32.13/13.17 sizeFM (Branch _ _ size _ _) = size; 32.13/13.17 32.13/13.17 unitFM :: b -> a -> FiniteMap b a; 32.13/13.17 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 32.13/13.17 32.13/13.17 } 32.13/13.17 module Maybe where { 32.13/13.17 import qualified FiniteMap; 32.13/13.17 import qualified Main; 32.13/13.17 import qualified Prelude; 32.13/13.17 } 32.13/13.17 module Main where { 32.13/13.17 import qualified FiniteMap; 32.13/13.17 import qualified Maybe; 32.13/13.17 import qualified Prelude; 32.13/13.17 } 32.13/13.17 32.13/13.17 ---------------------------------------- 32.13/13.17 32.13/13.17 (7) BR (EQUIVALENT) 32.13/13.17 Replaced joker patterns by fresh variables and removed binding patterns. 32.13/13.17 ---------------------------------------- 32.13/13.17 32.13/13.17 (8) 32.13/13.17 Obligation: 32.13/13.17 mainModule Main 32.13/13.17 module FiniteMap where { 32.13/13.17 import qualified Main; 32.13/13.17 import qualified Maybe; 32.13/13.17 import qualified Prelude; 32.13/13.17 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 32.13/13.17 32.13/13.17 instance (Eq a, Eq b) => Eq FiniteMap a b where { 32.13/13.17 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 32.13/13.17 } 32.13/13.17 addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; 32.13/13.17 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 32.13/13.17 32.13/13.17 addListToFM0 old new = new; 32.13/13.17 32.13/13.17 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 32.13/13.17 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 32.13/13.17 add fmap (key,elt) = addToFM_C combiner fmap key elt; 32.13/13.17 }; 32.13/13.17 32.13/13.17 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 32.13/13.17 addToFM_C combiner EmptyFM key elt = unitFM key elt; 32.13/13.17 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 32.13/13.17 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 32.13/13.17 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 32.13/13.17 32.13/13.17 emptyFM :: FiniteMap b a; 32.13/13.17 emptyFM = EmptyFM; 32.13/13.17 32.13/13.17 findMax :: FiniteMap a b -> (a,b); 32.13/13.17 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 32.13/13.17 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 32.13/13.17 32.13/13.17 findMin :: FiniteMap a b -> (a,b); 32.13/13.17 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 32.13/13.17 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 32.13/13.17 32.13/13.17 fmToList :: FiniteMap b a -> [(b,a)]; 32.13/13.17 fmToList fm = foldFM fmToList0 [] fm; 32.13/13.17 32.13/13.17 fmToList0 key elt rest = (key,elt) : rest; 32.13/13.17 32.13/13.17 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 32.13/13.17 foldFM k z EmptyFM = z; 32.13/13.17 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 32.13/13.17 32.13/13.17 listToFM :: Ord b => [(b,a)] -> FiniteMap b a; 32.13/13.17 listToFM = addListToFM emptyFM; 32.13/13.17 32.13/13.17 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 32.13/13.17 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 32.13/13.17 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 32.13/13.17 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 32.13/13.17 | otherwise = mkBranch 2 key elt fm_L fm_R where { 32.13/13.17 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); 32.13/13.17 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); 32.13/13.17 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 32.13/13.17 | otherwise = double_L fm_L fm_R; 32.13/13.17 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 32.13/13.17 | otherwise = double_R fm_L fm_R; 32.13/13.17 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; 32.13/13.17 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); 32.13/13.17 size_l = sizeFM fm_L; 32.13/13.17 size_r = sizeFM fm_R; 32.13/13.17 }; 32.13/13.17 32.13/13.17 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 32.13/13.17 mkBranch which key elt fm_l fm_r = let { 32.13/13.17 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 32.13/13.17 } in result where { 32.13/13.17 balance_ok = True; 32.13/13.17 left_ok = left_ok0 fm_l key fm_l; 32.13/13.17 left_ok0 fm_l key EmptyFM = True; 32.13/13.17 left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { 32.13/13.17 biggest_left_key = fst (findMax fm_l); 32.13/13.17 } in biggest_left_key < key; 32.13/13.17 left_size = sizeFM fm_l; 32.13/13.17 right_ok = right_ok0 fm_r key fm_r; 32.13/13.17 right_ok0 fm_r key EmptyFM = True; 32.13/13.17 right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { 32.13/13.17 smallest_right_key = fst (findMin fm_r); 32.13/13.17 } in key < smallest_right_key; 32.13/13.17 right_size = sizeFM fm_r; 32.13/13.17 unbox :: Int -> Int; 32.13/13.17 unbox x = x; 32.13/13.17 }; 32.13/13.17 32.13/13.17 sIZE_RATIO :: Int; 32.13/13.17 sIZE_RATIO = 5; 32.13/13.17 32.13/13.17 sizeFM :: FiniteMap a b -> Int; 32.13/13.17 sizeFM EmptyFM = 0; 32.13/13.17 sizeFM (Branch vyu vyv size vyw vyx) = size; 32.13/13.17 32.13/13.17 unitFM :: b -> a -> FiniteMap b a; 32.13/13.17 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 32.13/13.17 32.13/13.17 } 32.13/13.17 module Maybe where { 32.13/13.17 import qualified FiniteMap; 32.13/13.17 import qualified Main; 32.13/13.17 import qualified Prelude; 32.13/13.17 } 32.13/13.17 module Main where { 32.13/13.17 import qualified FiniteMap; 32.13/13.17 import qualified Maybe; 32.13/13.17 import qualified Prelude; 32.13/13.17 } 32.13/13.17 32.13/13.17 ---------------------------------------- 32.13/13.17 32.13/13.17 (9) COR (EQUIVALENT) 32.13/13.17 Cond Reductions: 32.13/13.17 The following Function with conditions 32.13/13.17 "compare x y|x == yEQ|x <= yLT|otherwiseGT; 32.13/13.17 " 32.13/13.17 is transformed to 32.13/13.17 "compare x y = compare3 x y; 32.13/13.17 " 32.13/13.17 "compare0 x y True = GT; 32.13/13.17 " 32.13/13.17 "compare1 x y True = LT; 32.13/13.17 compare1 x y False = compare0 x y otherwise; 32.13/13.17 " 32.13/13.17 "compare2 x y True = EQ; 32.13/13.17 compare2 x y False = compare1 x y (x <= y); 32.13/13.17 " 32.13/13.17 "compare3 x y = compare2 x y (x == y); 32.13/13.17 " 32.13/13.17 The following Function with conditions 32.13/13.17 "absReal x|x >= 0x|otherwise`negate` x; 32.13/13.17 " 32.13/13.17 is transformed to 32.13/13.17 "absReal x = absReal2 x; 32.13/13.17 " 32.13/13.17 "absReal0 x True = `negate` x; 32.13/13.17 " 32.13/13.17 "absReal1 x True = x; 32.13/13.17 absReal1 x False = absReal0 x otherwise; 32.13/13.17 " 32.13/13.17 "absReal2 x = absReal1 x (x >= 0); 32.13/13.17 " 32.13/13.17 The following Function with conditions 32.13/13.17 "gcd' x 0 = x; 32.13/13.17 gcd' x y = gcd' y (x `rem` y); 32.13/13.17 " 32.13/13.17 is transformed to 32.13/13.17 "gcd' x vzw = gcd'2 x vzw; 32.13/13.17 gcd' x y = gcd'0 x y; 32.13/13.17 " 32.13/13.17 "gcd'0 x y = gcd' y (x `rem` y); 32.13/13.17 " 32.13/13.17 "gcd'1 True x vzw = x; 32.13/13.17 gcd'1 vzx vzy vzz = gcd'0 vzy vzz; 32.13/13.17 " 32.13/13.17 "gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; 32.13/13.17 gcd'2 wuu wuv = gcd'0 wuu wuv; 32.13/13.17 " 32.13/13.17 The following Function with conditions 32.13/13.17 "gcd 0 0 = error []; 32.13/13.17 gcd x y = gcd' (abs x) (abs y) where { 32.13/13.17 gcd' x 0 = x; 32.13/13.17 gcd' x y = gcd' y (x `rem` y); 32.13/13.17 } 32.13/13.17 ; 32.13/13.17 " 32.13/13.17 is transformed to 32.13/13.17 "gcd wuw wux = gcd3 wuw wux; 32.13/13.17 gcd x y = gcd0 x y; 32.13/13.17 " 32.13/13.17 "gcd0 x y = gcd' (abs x) (abs y) where { 32.13/13.17 gcd' x vzw = gcd'2 x vzw; 32.13/13.17 gcd' x y = gcd'0 x y; 32.13/13.17 ; 32.13/13.17 gcd'0 x y = gcd' y (x `rem` y); 32.13/13.17 ; 32.13/13.17 gcd'1 True x vzw = x; 32.13/13.17 gcd'1 vzx vzy vzz = gcd'0 vzy vzz; 32.13/13.17 ; 32.13/13.17 gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; 32.13/13.17 gcd'2 wuu wuv = gcd'0 wuu wuv; 32.13/13.17 } 32.13/13.17 ; 32.13/13.17 " 32.13/13.17 "gcd1 True wuw wux = error []; 32.13/13.17 gcd1 wuy wuz wvu = gcd0 wuz wvu; 32.13/13.17 " 32.13/13.17 "gcd2 True wuw wux = gcd1 (wux == 0) wuw wux; 32.13/13.17 gcd2 wvv wvw wvx = gcd0 wvw wvx; 32.13/13.17 " 32.13/13.17 "gcd3 wuw wux = gcd2 (wuw == 0) wuw wux; 32.13/13.17 gcd3 wvy wvz = gcd0 wvy wvz; 32.13/13.17 " 32.13/13.17 The following Function with conditions 32.13/13.17 "undefined |Falseundefined; 32.13/13.17 " 32.13/13.17 is transformed to 32.13/13.17 "undefined = undefined1; 32.13/13.17 " 32.13/13.17 "undefined0 True = undefined; 32.13/13.17 " 32.13/13.17 "undefined1 = undefined0 False; 32.13/13.17 " 32.13/13.17 The following Function with conditions 32.13/13.17 "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { 32.13/13.17 d = gcd x y; 32.13/13.17 } 32.13/13.17 ; 32.13/13.17 " 32.13/13.17 is transformed to 32.13/13.17 "reduce x y = reduce2 x y; 32.13/13.17 " 32.13/13.17 "reduce2 x y = reduce1 x y (y == 0) where { 32.13/13.17 d = gcd x y; 32.13/13.17 ; 32.13/13.17 reduce0 x y True = x `quot` d :% (y `quot` d); 32.13/13.17 ; 32.13/13.17 reduce1 x y True = error []; 32.13/13.17 reduce1 x y False = reduce0 x y otherwise; 32.13/13.17 } 32.13/13.17 ; 32.13/13.17 " 32.13/13.17 The following Function with conditions 32.13/13.17 "addToFM_C combiner EmptyFM key elt = unitFM key elt; 32.13/13.17 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; 32.13/13.17 " 32.13/13.17 is transformed to 32.13/13.17 "addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 32.13/13.17 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; 32.13/13.17 " 32.13/13.17 "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); 32.13/13.17 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; 32.13/13.17 " 32.13/13.17 "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; 32.13/13.17 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); 32.13/13.17 " 32.13/13.17 "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; 32.13/13.17 " 32.13/13.17 "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); 32.13/13.17 " 32.13/13.17 "addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 32.13/13.17 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 32.13/13.17 " 32.13/13.17 The following Function with conditions 32.13/13.17 "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; 32.13/13.17 " 32.13/13.17 is transformed to 32.13/13.17 "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); 32.13/13.17 " 32.13/13.17 "mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 32.13/13.17 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; 32.13/13.17 " 32.13/13.17 "mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 32.13/13.17 " 32.13/13.17 "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); 32.13/13.17 " 32.13/13.17 The following Function with conditions 32.13/13.17 "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; 32.13/13.17 " 32.13/13.17 is transformed to 32.13/13.17 "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); 32.13/13.17 " 32.13/13.17 "mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 32.13/13.17 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; 32.13/13.17 " 32.13/13.17 "mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 32.13/13.17 " 32.13/13.17 "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); 32.13/13.17 " 32.13/13.17 The following Function with conditions 32.13/13.17 "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 { 32.13/13.17 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); 32.13/13.17 ; 32.13/13.17 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); 32.13/13.17 ; 32.13/13.17 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; 32.13/13.17 ; 32.13/13.17 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; 32.13/13.17 ; 32.13/13.17 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; 32.13/13.17 ; 32.13/13.17 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); 32.13/13.17 ; 32.13/13.17 size_l = sizeFM fm_L; 32.13/13.17 ; 32.13/13.17 size_r = sizeFM fm_R; 32.13/13.17 } 32.13/13.17 ; 32.13/13.17 " 32.13/13.17 is transformed to 32.13/13.17 "mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 32.13/13.17 " 32.13/13.17 "mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 32.13/13.17 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); 32.13/13.17 ; 32.13/13.17 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); 32.13/13.17 ; 32.13/13.17 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); 32.13/13.17 ; 32.13/13.17 mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 32.13/13.17 ; 32.13/13.17 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 32.13/13.17 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; 32.13/13.17 ; 32.13/13.17 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); 32.13/13.17 ; 32.13/13.17 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); 32.13/13.17 ; 32.13/13.17 mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 32.13/13.17 ; 32.13/13.17 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 32.13/13.17 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; 32.13/13.17 ; 32.13/13.17 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); 32.13/13.17 ; 32.13/13.17 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 32.13/13.17 ; 32.13/13.17 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 32.13/13.17 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 32.13/13.17 ; 32.13/13.17 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 32.13/13.17 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 32.13/13.17 ; 32.13/13.17 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 32.13/13.17 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 32.13/13.17 ; 32.13/13.17 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; 32.13/13.17 ; 32.13/13.17 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); 32.13/13.17 ; 32.13/13.17 size_l = sizeFM fm_L; 32.13/13.17 ; 32.13/13.17 size_r = sizeFM fm_R; 32.13/13.17 } 32.13/13.17 ; 32.13/13.17 " 32.13/13.17 32.13/13.17 ---------------------------------------- 32.13/13.17 32.13/13.17 (10) 32.13/13.17 Obligation: 32.13/13.17 mainModule Main 32.13/13.17 module FiniteMap where { 32.13/13.17 import qualified Main; 32.13/13.17 import qualified Maybe; 32.13/13.17 import qualified Prelude; 32.13/13.17 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 32.13/13.17 32.13/13.17 instance (Eq a, Eq b) => Eq FiniteMap a b where { 32.13/13.17 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 32.13/13.17 } 32.13/13.17 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 32.13/13.17 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 32.13/13.17 32.13/13.17 addListToFM0 old new = new; 32.13/13.17 32.13/13.17 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 32.13/13.17 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 32.13/13.17 add fmap (key,elt) = addToFM_C combiner fmap key elt; 32.13/13.17 }; 32.13/13.17 32.13/13.17 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 32.13/13.17 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 32.13/13.17 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; 32.13/13.17 32.13/13.17 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; 32.13/13.17 32.13/13.17 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); 32.13/13.17 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; 32.13/13.17 32.13/13.17 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; 32.13/13.17 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); 32.13/13.17 32.13/13.17 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); 32.13/13.17 32.13/13.17 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 32.13/13.17 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 32.13/13.17 32.13/13.17 emptyFM :: FiniteMap a b; 32.13/13.17 emptyFM = EmptyFM; 32.13/13.17 32.13/13.17 findMax :: FiniteMap a b -> (a,b); 32.13/13.17 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 32.13/13.17 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 32.13/13.17 32.13/13.17 findMin :: FiniteMap b a -> (b,a); 32.13/13.17 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 32.13/13.17 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 32.13/13.17 32.13/13.17 fmToList :: FiniteMap a b -> [(a,b)]; 32.13/13.17 fmToList fm = foldFM fmToList0 [] fm; 32.13/13.17 32.13/13.17 fmToList0 key elt rest = (key,elt) : rest; 32.13/13.17 32.13/13.17 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 32.13/13.17 foldFM k z EmptyFM = z; 32.13/13.17 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 32.13/13.17 32.13/13.17 listToFM :: Ord b => [(b,a)] -> FiniteMap b a; 32.13/13.17 listToFM = addListToFM emptyFM; 32.13/13.17 32.13/13.17 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 32.13/13.17 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 32.13/13.17 32.13/13.17 mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 32.13/13.17 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); 32.13/13.17 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); 32.13/13.17 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); 32.13/13.17 mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 32.13/13.17 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 32.13/13.17 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; 32.13/13.17 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); 32.13/13.17 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); 32.13/13.17 mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 32.13/13.17 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 32.13/13.17 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; 32.13/13.17 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); 32.13/13.17 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 32.13/13.17 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 32.13/13.17 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 32.13/13.17 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 32.13/13.17 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 32.13/13.17 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 32.13/13.17 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 32.13/13.17 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; 32.13/13.17 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); 32.13/13.17 size_l = sizeFM fm_L; 32.13/13.17 size_r = sizeFM fm_R; 32.13/13.17 }; 32.13/13.17 32.13/13.17 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 32.13/13.17 mkBranch which key elt fm_l fm_r = let { 32.13/13.17 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 32.13/13.17 } in result where { 32.13/13.17 balance_ok = True; 32.13/13.17 left_ok = left_ok0 fm_l key fm_l; 32.13/13.17 left_ok0 fm_l key EmptyFM = True; 32.13/13.17 left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { 32.13/13.17 biggest_left_key = fst (findMax fm_l); 32.13/13.17 } in biggest_left_key < key; 32.13/13.17 left_size = sizeFM fm_l; 32.13/13.17 right_ok = right_ok0 fm_r key fm_r; 32.13/13.17 right_ok0 fm_r key EmptyFM = True; 32.13/13.17 right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { 32.13/13.17 smallest_right_key = fst (findMin fm_r); 32.13/13.17 } in key < smallest_right_key; 32.13/13.17 right_size = sizeFM fm_r; 32.13/13.17 unbox :: Int -> Int; 32.13/13.17 unbox x = x; 32.13/13.17 }; 32.13/13.17 32.13/13.17 sIZE_RATIO :: Int; 32.13/13.17 sIZE_RATIO = 5; 32.13/13.17 32.13/13.17 sizeFM :: FiniteMap a b -> Int; 32.13/13.17 sizeFM EmptyFM = 0; 32.13/13.17 sizeFM (Branch vyu vyv size vyw vyx) = size; 32.13/13.17 32.13/13.17 unitFM :: a -> b -> FiniteMap a b; 32.13/13.17 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 32.13/13.17 32.13/13.17 } 32.13/13.17 module Maybe where { 32.13/13.17 import qualified FiniteMap; 32.13/13.17 import qualified Main; 32.13/13.17 import qualified Prelude; 32.13/13.17 } 32.13/13.17 module Main where { 32.13/13.17 import qualified FiniteMap; 32.13/13.17 import qualified Maybe; 32.13/13.17 import qualified Prelude; 32.13/13.17 } 32.13/13.17 32.13/13.17 ---------------------------------------- 32.13/13.17 32.13/13.17 (11) LetRed (EQUIVALENT) 32.13/13.17 Let/Where Reductions: 32.13/13.17 The bindings of the following Let/Where expression 32.13/13.17 "gcd' (abs x) (abs y) where { 32.13/13.17 gcd' x vzw = gcd'2 x vzw; 32.13/13.17 gcd' x y = gcd'0 x y; 32.13/13.17 ; 32.13/13.17 gcd'0 x y = gcd' y (x `rem` y); 32.13/13.17 ; 32.13/13.17 gcd'1 True x vzw = x; 32.13/13.17 gcd'1 vzx vzy vzz = gcd'0 vzy vzz; 32.13/13.17 ; 32.13/13.17 gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; 32.13/13.17 gcd'2 wuu wuv = gcd'0 wuu wuv; 32.13/13.17 } 32.13/13.17 " 32.13/13.17 are unpacked to the following functions on top level 32.13/13.17 "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); 32.13/13.17 " 32.13/13.17 "gcd0Gcd'2 x vzw = gcd0Gcd'1 (vzw == 0) x vzw; 32.13/13.17 gcd0Gcd'2 wuu wuv = gcd0Gcd'0 wuu wuv; 32.13/13.17 " 32.13/13.17 "gcd0Gcd'1 True x vzw = x; 32.13/13.17 gcd0Gcd'1 vzx vzy vzz = gcd0Gcd'0 vzy vzz; 32.13/13.17 " 32.13/13.17 "gcd0Gcd' x vzw = gcd0Gcd'2 x vzw; 32.13/13.17 gcd0Gcd' x y = gcd0Gcd'0 x y; 32.13/13.17 " 32.13/13.17 The bindings of the following Let/Where expression 32.13/13.17 "reduce1 x y (y == 0) where { 32.13/13.17 d = gcd x y; 32.13/13.17 ; 32.13/13.17 reduce0 x y True = x `quot` d :% (y `quot` d); 32.13/13.17 ; 32.13/13.17 reduce1 x y True = error []; 32.13/13.17 reduce1 x y False = reduce0 x y otherwise; 32.13/13.17 } 32.13/13.17 " 32.13/13.17 are unpacked to the following functions on top level 32.13/13.17 "reduce2D wxw wxx = gcd wxw wxx; 32.13/13.17 " 32.13/13.17 "reduce2Reduce1 wxw wxx x y True = error []; 32.13/13.17 reduce2Reduce1 wxw wxx x y False = reduce2Reduce0 wxw wxx x y otherwise; 32.13/13.17 " 32.13/13.17 "reduce2Reduce0 wxw wxx x y True = x `quot` reduce2D wxw wxx :% (y `quot` reduce2D wxw wxx); 32.13/13.17 " 32.13/13.17 The bindings of the following Let/Where expression 32.13/13.17 "mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 32.13/13.17 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); 32.13/13.17 ; 32.13/13.17 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); 32.13/13.17 ; 32.13/13.17 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); 32.13/13.17 ; 32.13/13.17 mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 32.13/13.17 ; 32.13/13.17 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 32.13/13.17 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; 32.13/13.17 ; 32.13/13.17 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); 32.13/13.17 ; 32.13/13.17 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); 32.13/13.17 ; 32.13/13.17 mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 32.13/13.17 ; 32.13/13.17 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 32.13/13.17 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; 32.13/13.17 ; 32.13/13.17 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); 32.13/13.17 ; 32.13/13.17 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 32.13/13.17 ; 32.13/13.17 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 32.13/13.17 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 32.13/13.17 ; 32.13/13.17 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 32.13/13.17 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 32.13/13.17 ; 32.13/13.17 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 32.13/13.17 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 32.13/13.17 ; 32.13/13.17 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; 32.13/13.17 ; 32.13/13.17 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); 32.13/13.17 ; 32.13/13.17 size_l = sizeFM fm_L; 32.13/13.17 ; 32.13/13.17 size_r = sizeFM fm_R; 32.13/13.17 } 32.13/13.17 " 32.13/13.17 are unpacked to the following functions on top level 32.13/13.17 "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; 32.13/13.17 " 32.13/13.17 "mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; 32.13/13.17 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; 32.13/13.17 " 32.13/13.17 "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); 32.13/13.17 " 32.13/13.17 "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); 32.13/13.17 " 32.13/13.17 "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; 32.13/13.17 " 32.13/13.17 "mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 32.13/13.17 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); 32.13/13.17 " 32.13/13.17 "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; 32.13/13.17 " 32.13/13.17 "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); 32.13/13.17 " 32.13/13.17 "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; 32.13/13.17 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; 32.13/13.17 " 32.13/13.17 "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); 32.13/13.17 " 32.13/13.17 "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); 32.13/13.17 " 32.13/13.17 "mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 32.13/13.17 " 32.13/13.17 "mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyu; 32.13/13.17 " 32.13/13.17 "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); 32.13/13.17 " 32.13/13.17 "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); 32.13/13.17 " 32.13/13.17 "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; 32.13/13.17 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; 32.13/13.17 " 32.13/13.17 "mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 32.13/13.17 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); 32.13/13.17 " 32.13/13.17 "mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; 32.13/13.17 " 32.13/13.17 The bindings of the following Let/Where expression 32.13/13.17 "foldl add fm key_elt_pairs where { 32.13/13.17 add fmap (key,elt) = addToFM_C combiner fmap key elt; 32.13/13.17 } 32.13/13.17 " 32.13/13.17 are unpacked to the following functions on top level 32.13/13.17 "addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; 32.13/13.17 " 32.13/13.17 The bindings of the following Let/Where expression 32.13/13.17 "let { 32.13/13.17 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 32.13/13.17 } in result where { 32.13/13.17 balance_ok = True; 32.13/13.17 ; 32.13/13.17 left_ok = left_ok0 fm_l key fm_l; 32.13/13.17 ; 32.13/13.17 left_ok0 fm_l key EmptyFM = True; 32.13/13.17 left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { 32.13/13.17 biggest_left_key = fst (findMax fm_l); 32.13/13.17 } in biggest_left_key < key; 32.13/13.17 ; 32.13/13.17 left_size = sizeFM fm_l; 32.13/13.17 ; 32.13/13.17 right_ok = right_ok0 fm_r key fm_r; 32.13/13.17 ; 32.13/13.17 right_ok0 fm_r key EmptyFM = True; 32.13/13.17 right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { 32.13/13.17 smallest_right_key = fst (findMin fm_r); 32.13/13.17 } in key < smallest_right_key; 32.13/13.17 ; 32.13/13.17 right_size = sizeFM fm_r; 32.13/13.17 ; 32.13/13.17 unbox x = x; 32.13/13.17 } 32.13/13.17 " 32.13/13.17 are unpacked to the following functions on top level 32.13/13.17 "mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; 32.13/13.17 " 32.13/13.17 "mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; 32.13/13.17 mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 32.13/13.17 " 32.13/13.17 "mkBranchLeft_size wyx wyy wyz = sizeFM wyz; 32.13/13.17 " 32.13/13.17 "mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; 32.13/13.17 " 32.13/13.17 "mkBranchRight_size wyx wyy wyz = sizeFM wyx; 32.13/13.17 " 32.13/13.17 "mkBranchBalance_ok wyx wyy wyz = True; 32.13/13.17 " 32.13/13.17 "mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; 32.13/13.17 mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; 32.13/13.17 " 32.13/13.17 "mkBranchUnbox wyx wyy wyz x = x; 32.13/13.17 " 32.13/13.17 The bindings of the following Let/Where expression 32.13/13.17 "let { 32.13/13.17 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 32.13/13.17 } in result" 32.13/13.17 are unpacked to the following functions on top level 32.13/13.17 "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; 32.13/13.17 " 32.13/13.17 The bindings of the following Let/Where expression 32.13/13.17 "let { 32.13/13.17 biggest_left_key = fst (findMax fm_l); 32.13/13.17 } in biggest_left_key < key" 32.13/13.17 are unpacked to the following functions on top level 32.13/13.17 "mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); 32.13/13.17 " 32.13/13.17 The bindings of the following Let/Where expression 32.13/13.17 "let { 32.13/13.17 smallest_right_key = fst (findMin fm_r); 32.13/13.17 } in key < smallest_right_key" 32.13/13.17 are unpacked to the following functions on top level 32.13/13.17 "mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); 32.13/13.17 " 32.13/13.17 32.13/13.17 ---------------------------------------- 32.13/13.17 32.13/13.17 (12) 32.13/13.17 Obligation: 32.13/13.17 mainModule Main 32.13/13.17 module FiniteMap where { 32.13/13.17 import qualified Main; 32.13/13.17 import qualified Maybe; 32.13/13.17 import qualified Prelude; 32.13/13.17 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 32.13/13.17 32.13/13.17 instance (Eq a, Eq b) => Eq FiniteMap b a where { 32.13/13.17 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 32.13/13.17 } 32.13/13.17 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 32.13/13.17 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 32.13/13.17 32.13/13.17 addListToFM0 old new = new; 32.13/13.17 32.13/13.17 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 32.13/13.17 addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; 32.13/13.17 32.13/13.17 addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; 32.13/13.17 32.13/13.17 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 32.13/13.17 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 32.13/13.17 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; 32.13/13.17 32.13/13.17 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; 32.13/13.17 32.13/13.17 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); 32.13/13.17 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; 32.13/13.17 32.13/13.17 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; 32.13/13.17 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); 32.13/13.17 32.13/13.17 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); 32.13/13.17 32.13/13.17 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 32.13/13.17 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 32.13/13.17 32.13/13.17 emptyFM :: FiniteMap a b; 32.13/13.17 emptyFM = EmptyFM; 32.13/13.17 32.13/13.17 findMax :: FiniteMap b a -> (b,a); 32.13/13.17 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 32.13/13.17 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 32.13/13.17 32.13/13.17 findMin :: FiniteMap b a -> (b,a); 32.13/13.17 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 32.13/13.17 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 32.13/13.17 32.13/13.17 fmToList :: FiniteMap a b -> [(a,b)]; 32.13/13.17 fmToList fm = foldFM fmToList0 [] fm; 32.13/13.17 32.13/13.17 fmToList0 key elt rest = (key,elt) : rest; 32.13/13.17 32.13/13.17 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 32.13/13.17 foldFM k z EmptyFM = z; 32.13/13.17 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 32.13/13.17 32.13/13.17 listToFM :: Ord b => [(b,a)] -> FiniteMap b a; 32.13/13.17 listToFM = addListToFM emptyFM; 32.13/13.17 32.13/13.17 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 32.13/13.17 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 32.13/13.17 32.13/13.17 mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_L fm_R key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_L fm_R + mkBalBranch6Size_r key elt fm_L fm_R < 2); 32.13/13.17 32.13/13.17 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); 32.13/13.17 32.13/13.17 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); 32.13/13.17 32.13/13.17 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); 32.13/13.17 32.13/13.17 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; 32.13/13.17 32.13/13.17 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; 32.13/13.17 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; 32.13/13.17 32.13/13.17 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); 32.13/13.17 32.13/13.17 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); 32.13/13.17 32.13/13.17 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; 32.13/13.17 32.13/13.17 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; 32.13/13.17 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; 32.13/13.17 32.13/13.17 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); 32.13/13.17 32.13/13.17 mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 32.13/13.17 32.13/13.17 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; 32.13/13.17 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; 32.13/13.17 32.13/13.17 mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 32.13/13.17 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); 32.13/13.17 32.13/13.17 mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 32.13/13.17 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); 32.13/13.17 32.13/13.17 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; 32.13/13.17 32.13/13.17 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); 32.13/13.17 32.13/13.17 mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyu; 32.13/13.17 32.13/13.17 mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; 32.13/13.17 32.13/13.17 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 32.13/13.17 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; 32.13/13.17 32.13/13.17 mkBranchBalance_ok wyx wyy wyz = True; 32.13/13.17 32.13/13.17 mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; 32.13/13.17 32.13/13.17 mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; 32.13/13.17 mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 32.13/13.17 32.13/13.17 mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); 32.13/13.17 32.13/13.17 mkBranchLeft_size wyx wyy wyz = sizeFM wyz; 32.13/13.17 32.13/13.17 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; 32.13/13.17 32.13/13.17 mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; 32.13/13.17 32.13/13.17 mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; 32.13/13.17 mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; 32.13/13.17 32.13/13.17 mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); 32.13/13.17 32.13/13.17 mkBranchRight_size wyx wyy wyz = sizeFM wyx; 32.13/13.17 32.13/13.17 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 32.13/13.17 mkBranchUnbox wyx wyy wyz x = x; 32.13/13.17 32.13/13.17 sIZE_RATIO :: Int; 32.13/13.17 sIZE_RATIO = 5; 32.13/13.17 32.13/13.17 sizeFM :: FiniteMap a b -> Int; 32.13/13.17 sizeFM EmptyFM = 0; 32.13/13.17 sizeFM (Branch vyu vyv size vyw vyx) = size; 32.13/13.17 32.13/13.17 unitFM :: b -> a -> FiniteMap b a; 32.13/13.17 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 32.13/13.17 32.13/13.17 } 32.13/13.17 module Maybe where { 32.13/13.17 import qualified FiniteMap; 32.13/13.17 import qualified Main; 32.13/13.17 import qualified Prelude; 32.13/13.17 } 32.13/13.17 module Main where { 32.13/13.17 import qualified FiniteMap; 32.13/13.17 import qualified Maybe; 32.13/13.17 import qualified Prelude; 32.13/13.17 } 32.13/13.17 32.13/13.17 ---------------------------------------- 32.13/13.17 32.13/13.17 (13) NumRed (SOUND) 32.13/13.17 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 32.13/13.17 ---------------------------------------- 32.13/13.17 32.13/13.17 (14) 32.13/13.17 Obligation: 32.13/13.17 mainModule Main 32.13/13.17 module FiniteMap where { 32.13/13.17 import qualified Main; 32.13/13.17 import qualified Maybe; 32.13/13.17 import qualified Prelude; 32.13/13.17 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 32.13/13.17 32.13/13.17 instance (Eq a, Eq b) => Eq FiniteMap a b where { 32.13/13.17 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 32.13/13.17 } 32.13/13.17 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 32.13/13.17 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 32.13/13.17 32.13/13.17 addListToFM0 old new = new; 32.13/13.17 32.13/13.17 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 32.13/13.17 addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; 32.13/13.17 32.13/13.17 addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; 32.13/13.17 32.13/13.17 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 32.13/13.17 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 32.13/13.17 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; 32.13/13.17 32.13/13.17 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; 32.13/13.17 32.13/13.17 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); 32.13/13.17 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; 32.13/13.17 32.13/13.17 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; 32.13/13.17 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); 32.13/13.17 32.13/13.17 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); 32.13/13.17 32.13/13.17 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 32.13/13.17 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 32.13/13.17 32.13/13.17 emptyFM :: FiniteMap b a; 32.13/13.17 emptyFM = EmptyFM; 32.13/13.17 32.13/13.17 findMax :: FiniteMap b a -> (b,a); 32.13/13.17 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 32.13/13.17 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 32.13/13.17 32.13/13.17 findMin :: FiniteMap a b -> (a,b); 32.13/13.17 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 32.13/13.17 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 32.13/13.17 32.13/13.17 fmToList :: FiniteMap a b -> [(a,b)]; 32.13/13.17 fmToList fm = foldFM fmToList0 [] fm; 32.13/13.17 32.13/13.17 fmToList0 key elt rest = (key,elt) : rest; 32.13/13.17 32.13/13.17 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 32.13/13.17 foldFM k z EmptyFM = z; 32.13/13.17 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 32.13/13.17 32.13/13.17 listToFM :: Ord b => [(b,a)] -> FiniteMap b a; 32.13/13.17 listToFM = addListToFM emptyFM; 32.13/13.17 32.13/13.17 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 32.13/13.17 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 32.13/13.17 32.13/13.17 mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_L fm_R key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_L fm_R + mkBalBranch6Size_r key elt fm_L fm_R < Pos (Succ (Succ Zero))); 32.13/13.17 32.13/13.17 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); 32.13/13.17 32.13/13.17 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); 32.13/13.17 32.13/13.17 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); 32.13/13.17 32.13/13.17 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; 32.13/13.17 32.13/13.17 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; 32.13/13.17 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; 32.13/13.17 32.13/13.17 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); 32.13/13.17 32.13/13.17 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); 32.13/13.17 32.13/13.17 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; 32.13/13.17 32.13/13.17 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; 32.13/13.17 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; 32.13/13.17 32.13/13.17 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); 32.13/13.17 32.13/13.17 mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ (Succ Zero))) key elt fm_L fm_R; 32.13/13.17 32.13/13.17 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; 32.13/13.17 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; 32.13/13.17 32.13/13.17 mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 32.13/13.17 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); 32.13/13.17 32.13/13.17 mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ Zero)) key elt fm_L fm_R; 32.13/13.17 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); 32.13/13.17 32.13/13.17 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; 32.13/13.17 32.13/13.17 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); 32.13/13.17 32.13/13.17 mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyu; 32.13/13.17 32.13/13.17 mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; 32.13/13.17 32.13/13.17 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 32.13/13.17 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; 32.13/13.17 32.13/13.17 mkBranchBalance_ok wyx wyy wyz = True; 32.13/13.17 32.13/13.17 mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; 32.13/13.17 32.13/13.17 mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; 32.13/13.17 mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 32.13/13.17 32.13/13.17 mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); 32.13/13.17 32.13/13.17 mkBranchLeft_size wyx wyy wyz = sizeFM wyz; 32.13/13.17 32.13/13.17 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; 32.13/13.17 32.13/13.17 mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; 32.13/13.17 32.13/13.17 mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; 32.13/13.17 mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; 32.13/13.17 32.13/13.17 mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); 32.13/13.17 32.13/13.17 mkBranchRight_size wyx wyy wyz = sizeFM wyx; 32.13/13.17 32.13/13.17 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 32.13/13.17 mkBranchUnbox wyx wyy wyz x = x; 32.13/13.17 32.13/13.17 sIZE_RATIO :: Int; 32.13/13.17 sIZE_RATIO = Pos (Succ (Succ (Succ (Succ (Succ Zero))))); 32.13/13.17 32.13/13.17 sizeFM :: FiniteMap b a -> Int; 32.13/13.17 sizeFM EmptyFM = Pos Zero; 32.13/13.17 sizeFM (Branch vyu vyv size vyw vyx) = size; 32.13/13.17 32.13/13.17 unitFM :: a -> b -> FiniteMap a b; 32.13/13.17 unitFM key elt = Branch key elt (Pos (Succ Zero)) emptyFM emptyFM; 32.13/13.17 32.13/13.17 } 32.13/13.17 module Maybe where { 32.13/13.17 import qualified FiniteMap; 32.13/13.17 import qualified Main; 32.13/13.17 import qualified Prelude; 32.13/13.17 } 32.13/13.17 module Main where { 32.13/13.17 import qualified FiniteMap; 32.13/13.17 import qualified Maybe; 32.13/13.17 import qualified Prelude; 32.13/13.17 } 32.13/13.17 32.13/13.17 ---------------------------------------- 32.13/13.17 32.13/13.17 (15) Narrow (SOUND) 32.13/13.17 Haskell To QDPs 32.13/13.17 32.13/13.17 digraph dp_graph { 32.13/13.17 node [outthreshold=100, inthreshold=100];1[label="FiniteMap.listToFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 32.13/13.17 3[label="FiniteMap.listToFM xuu3",fontsize=16,color="black",shape="triangle"];3 -> 4[label="",style="solid", color="black", weight=3]; 32.13/13.17 4[label="FiniteMap.addListToFM FiniteMap.emptyFM xuu3",fontsize=16,color="black",shape="box"];4 -> 5[label="",style="solid", color="black", weight=3]; 32.13/13.17 5[label="FiniteMap.addListToFM_C FiniteMap.addListToFM0 FiniteMap.emptyFM xuu3",fontsize=16,color="black",shape="box"];5 -> 6[label="",style="solid", color="black", weight=3]; 32.13/13.17 6 -> 20[label="",style="dashed", color="red", weight=0]; 32.13/13.17 6[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) FiniteMap.emptyFM xuu3",fontsize=16,color="magenta"];6 -> 21[label="",style="dashed", color="magenta", weight=3]; 32.13/13.17 6 -> 22[label="",style="dashed", color="magenta", weight=3]; 32.13/13.17 21[label="xuu3",fontsize=16,color="green",shape="box"];22[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="triangle"];22 -> 27[label="",style="solid", color="black", weight=3]; 32.13/13.17 20[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu6 xuu311",fontsize=16,color="burlywood",shape="triangle"];4060[label="xuu311/xuu3110 : xuu3111",fontsize=10,color="white",style="solid",shape="box"];20 -> 4060[label="",style="solid", color="burlywood", weight=9]; 32.13/13.17 4060 -> 28[label="",style="solid", color="burlywood", weight=3]; 32.13/13.17 4061[label="xuu311/[]",fontsize=10,color="white",style="solid",shape="box"];20 -> 4061[label="",style="solid", color="burlywood", weight=9]; 32.13/13.17 4061 -> 29[label="",style="solid", color="burlywood", weight=3]; 32.13/13.17 27[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];28[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu6 (xuu3110 : xuu3111)",fontsize=16,color="black",shape="box"];28 -> 30[label="",style="solid", color="black", weight=3]; 32.13/13.17 29[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu6 []",fontsize=16,color="black",shape="box"];29 -> 31[label="",style="solid", color="black", weight=3]; 32.13/13.17 30 -> 20[label="",style="dashed", color="red", weight=0]; 32.13/13.17 30[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu6 xuu3110) xuu3111",fontsize=16,color="magenta"];30 -> 32[label="",style="dashed", color="magenta", weight=3]; 32.13/13.17 30 -> 33[label="",style="dashed", color="magenta", weight=3]; 32.13/13.17 31[label="xuu6",fontsize=16,color="green",shape="box"];32[label="xuu3111",fontsize=16,color="green",shape="box"];33[label="FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu6 xuu3110",fontsize=16,color="burlywood",shape="box"];4062[label="xuu3110/(xuu31100,xuu31101)",fontsize=10,color="white",style="solid",shape="box"];33 -> 4062[label="",style="solid", color="burlywood", weight=9]; 32.13/13.17 4062 -> 34[label="",style="solid", color="burlywood", weight=3]; 32.13/13.17 34[label="FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu6 (xuu31100,xuu31101)",fontsize=16,color="black",shape="box"];34 -> 35[label="",style="solid", color="black", weight=3]; 32.13/13.17 35[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu6 xuu31100 xuu31101",fontsize=16,color="burlywood",shape="triangle"];4063[label="xuu6/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];35 -> 4063[label="",style="solid", color="burlywood", weight=9]; 32.13/13.17 4063 -> 36[label="",style="solid", color="burlywood", weight=3]; 32.13/13.17 4064[label="xuu6/FiniteMap.Branch xuu60 xuu61 xuu62 xuu63 xuu64",fontsize=10,color="white",style="solid",shape="box"];35 -> 4064[label="",style="solid", color="burlywood", weight=9]; 32.13/13.17 4064 -> 37[label="",style="solid", color="burlywood", weight=3]; 32.13/13.17 36[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 FiniteMap.EmptyFM xuu31100 xuu31101",fontsize=16,color="black",shape="box"];36 -> 38[label="",style="solid", color="black", weight=3]; 32.13/13.17 37[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 (FiniteMap.Branch xuu60 xuu61 xuu62 xuu63 xuu64) xuu31100 xuu31101",fontsize=16,color="black",shape="box"];37 -> 39[label="",style="solid", color="black", weight=3]; 32.13/13.17 38[label="FiniteMap.addToFM_C4 FiniteMap.addListToFM0 FiniteMap.EmptyFM xuu31100 xuu31101",fontsize=16,color="black",shape="box"];38 -> 40[label="",style="solid", color="black", weight=3]; 32.13/13.17 39[label="FiniteMap.addToFM_C3 FiniteMap.addListToFM0 (FiniteMap.Branch xuu60 xuu61 xuu62 xuu63 xuu64) xuu31100 xuu31101",fontsize=16,color="black",shape="box"];39 -> 41[label="",style="solid", color="black", weight=3]; 32.13/13.17 40[label="FiniteMap.unitFM xuu31100 xuu31101",fontsize=16,color="black",shape="box"];40 -> 42[label="",style="solid", color="black", weight=3]; 32.13/13.17 41[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 xuu31100 xuu31101 (xuu31100 < xuu60)",fontsize=16,color="black",shape="box"];41 -> 43[label="",style="solid", color="black", weight=3]; 32.13/13.17 42[label="FiniteMap.Branch xuu31100 xuu31101 (Pos (Succ Zero)) FiniteMap.emptyFM FiniteMap.emptyFM",fontsize=16,color="green",shape="box"];42 -> 44[label="",style="dashed", color="green", weight=3]; 32.13/13.17 42 -> 45[label="",style="dashed", color="green", weight=3]; 32.13/13.17 43[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 xuu31100 xuu31101 (compare xuu31100 xuu60 == LT)",fontsize=16,color="black",shape="box"];43 -> 46[label="",style="solid", color="black", weight=3]; 32.13/13.17 44 -> 22[label="",style="dashed", color="red", weight=0]; 32.13/13.17 44[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];45 -> 22[label="",style="dashed", color="red", weight=0]; 32.13/13.17 45[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];46[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 xuu31100 xuu31101 (compare3 xuu31100 xuu60 == LT)",fontsize=16,color="black",shape="box"];46 -> 47[label="",style="solid", color="black", weight=3]; 32.13/13.17 47[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 xuu31100 xuu31101 (compare2 xuu31100 xuu60 (xuu31100 == xuu60) == LT)",fontsize=16,color="burlywood",shape="box"];4065[label="xuu31100/Nothing",fontsize=10,color="white",style="solid",shape="box"];47 -> 4065[label="",style="solid", color="burlywood", weight=9]; 32.13/13.17 4065 -> 48[label="",style="solid", color="burlywood", weight=3]; 32.13/13.17 4066[label="xuu31100/Just xuu311000",fontsize=10,color="white",style="solid",shape="box"];47 -> 4066[label="",style="solid", color="burlywood", weight=9]; 32.13/13.17 4066 -> 49[label="",style="solid", color="burlywood", weight=3]; 32.13/13.17 48[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 (compare2 Nothing xuu60 (Nothing == xuu60) == LT)",fontsize=16,color="burlywood",shape="box"];4067[label="xuu60/Nothing",fontsize=10,color="white",style="solid",shape="box"];48 -> 4067[label="",style="solid", color="burlywood", weight=9]; 32.13/13.17 4067 -> 50[label="",style="solid", color="burlywood", weight=3]; 32.13/13.17 4068[label="xuu60/Just xuu600",fontsize=10,color="white",style="solid",shape="box"];48 -> 4068[label="",style="solid", color="burlywood", weight=9]; 32.13/13.17 4068 -> 51[label="",style="solid", color="burlywood", weight=3]; 32.13/13.17 49[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 (compare2 (Just xuu311000) xuu60 (Just xuu311000 == xuu60) == LT)",fontsize=16,color="burlywood",shape="box"];4069[label="xuu60/Nothing",fontsize=10,color="white",style="solid",shape="box"];49 -> 4069[label="",style="solid", color="burlywood", weight=9]; 32.13/13.17 4069 -> 52[label="",style="solid", color="burlywood", weight=3]; 32.13/13.17 4070[label="xuu60/Just xuu600",fontsize=10,color="white",style="solid",shape="box"];49 -> 4070[label="",style="solid", color="burlywood", weight=9]; 32.13/13.17 4070 -> 53[label="",style="solid", color="burlywood", weight=3]; 32.13/13.17 50[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 (compare2 Nothing Nothing (Nothing == Nothing) == LT)",fontsize=16,color="black",shape="box"];50 -> 54[label="",style="solid", color="black", weight=3]; 32.13/13.17 51[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu600) xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 (compare2 Nothing (Just xuu600) (Nothing == Just xuu600) == LT)",fontsize=16,color="black",shape="box"];51 -> 55[label="",style="solid", color="black", weight=3]; 32.13/13.17 52[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 (compare2 (Just xuu311000) Nothing (Just xuu311000 == Nothing) == LT)",fontsize=16,color="black",shape="box"];52 -> 56[label="",style="solid", color="black", weight=3]; 32.13/13.17 53[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu600) xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 (compare2 (Just xuu311000) (Just xuu600) (Just xuu311000 == Just xuu600) == LT)",fontsize=16,color="black",shape="box"];53 -> 57[label="",style="solid", color="black", weight=3]; 32.13/13.17 54[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 (compare2 Nothing Nothing True == LT)",fontsize=16,color="black",shape="box"];54 -> 58[label="",style="solid", color="black", weight=3]; 32.13/13.17 55 -> 115[label="",style="dashed", color="red", weight=0]; 32.13/13.17 55[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu600) xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 (compare2 Nothing (Just xuu600) False == LT)",fontsize=16,color="magenta"];55 -> 116[label="",style="dashed", color="magenta", weight=3]; 32.13/13.17 56 -> 124[label="",style="dashed", color="red", weight=0]; 32.13/13.17 56[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 (compare2 (Just xuu311000) Nothing False == LT)",fontsize=16,color="magenta"];56 -> 125[label="",style="dashed", color="magenta", weight=3]; 32.13/13.17 57 -> 171[label="",style="dashed", color="red", weight=0]; 32.13/13.17 57[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu600) xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 (compare2 (Just xuu311000) (Just xuu600) (xuu311000 == xuu600) == LT)",fontsize=16,color="magenta"];57 -> 172[label="",style="dashed", color="magenta", weight=3]; 32.13/13.17 57 -> 173[label="",style="dashed", color="magenta", weight=3]; 32.13/13.17 57 -> 174[label="",style="dashed", color="magenta", weight=3]; 32.13/13.17 57 -> 175[label="",style="dashed", color="magenta", weight=3]; 32.13/13.17 57 -> 176[label="",style="dashed", color="magenta", weight=3]; 32.13/13.17 57 -> 177[label="",style="dashed", color="magenta", weight=3]; 32.13/13.17 57 -> 178[label="",style="dashed", color="magenta", weight=3]; 32.13/13.17 57 -> 179[label="",style="dashed", color="magenta", weight=3]; 32.13/13.17 58[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 (EQ == LT)",fontsize=16,color="black",shape="box"];58 -> 70[label="",style="solid", color="black", weight=3]; 32.13/13.17 116 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.17 116[label="compare2 Nothing (Just xuu600) False == LT",fontsize=16,color="magenta"];116 -> 120[label="",style="dashed", color="magenta", weight=3]; 32.13/13.17 116 -> 121[label="",style="dashed", color="magenta", weight=3]; 32.13/13.17 115[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu600) xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 xuu25",fontsize=16,color="burlywood",shape="triangle"];4071[label="xuu25/False",fontsize=10,color="white",style="solid",shape="box"];115 -> 4071[label="",style="solid", color="burlywood", weight=9]; 32.13/13.17 4071 -> 122[label="",style="solid", color="burlywood", weight=3]; 32.13/13.17 4072[label="xuu25/True",fontsize=10,color="white",style="solid",shape="box"];115 -> 4072[label="",style="solid", color="burlywood", weight=9]; 32.13/13.17 4072 -> 123[label="",style="solid", color="burlywood", weight=3]; 32.13/13.17 125 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.17 125[label="compare2 (Just xuu311000) Nothing False == LT",fontsize=16,color="magenta"];125 -> 129[label="",style="dashed", color="magenta", weight=3]; 32.13/13.17 125 -> 130[label="",style="dashed", color="magenta", weight=3]; 32.13/13.17 124[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 xuu26",fontsize=16,color="burlywood",shape="triangle"];4073[label="xuu26/False",fontsize=10,color="white",style="solid",shape="box"];124 -> 4073[label="",style="solid", color="burlywood", weight=9]; 32.13/13.17 4073 -> 131[label="",style="solid", color="burlywood", weight=3]; 32.13/13.17 4074[label="xuu26/True",fontsize=10,color="white",style="solid",shape="box"];124 -> 4074[label="",style="solid", color="burlywood", weight=9]; 32.13/13.17 4074 -> 132[label="",style="solid", color="burlywood", weight=3]; 32.13/13.17 172[label="xuu64",fontsize=16,color="green",shape="box"];173[label="xuu63",fontsize=16,color="green",shape="box"];174[label="xuu311000",fontsize=16,color="green",shape="box"];175[label="xuu600",fontsize=16,color="green",shape="box"];176 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.17 176[label="compare2 (Just xuu311000) (Just xuu600) (xuu311000 == xuu600) == LT",fontsize=16,color="magenta"];176 -> 183[label="",style="dashed", color="magenta", weight=3]; 32.13/13.17 176 -> 184[label="",style="dashed", color="magenta", weight=3]; 32.13/13.17 177[label="xuu61",fontsize=16,color="green",shape="box"];178[label="xuu31101",fontsize=16,color="green",shape="box"];179[label="xuu62",fontsize=16,color="green",shape="box"];171[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu17) xuu18 xuu19 xuu20 xuu21 (Just xuu22) xuu23 xuu27",fontsize=16,color="burlywood",shape="triangle"];4075[label="xuu27/False",fontsize=10,color="white",style="solid",shape="box"];171 -> 4075[label="",style="solid", color="burlywood", weight=9]; 32.13/13.17 4075 -> 185[label="",style="solid", color="burlywood", weight=3]; 32.13/13.17 4076[label="xuu27/True",fontsize=10,color="white",style="solid",shape="box"];171 -> 4076[label="",style="solid", color="burlywood", weight=9]; 32.13/13.17 4076 -> 186[label="",style="solid", color="burlywood", weight=3]; 32.13/13.17 70[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 False",fontsize=16,color="black",shape="box"];70 -> 89[label="",style="solid", color="black", weight=3]; 32.13/13.17 120 -> 2023[label="",style="dashed", color="red", weight=0]; 32.13/13.17 120[label="compare2 Nothing (Just xuu600) False",fontsize=16,color="magenta"];120 -> 2024[label="",style="dashed", color="magenta", weight=3]; 32.13/13.17 120 -> 2025[label="",style="dashed", color="magenta", weight=3]; 32.13/13.17 120 -> 2026[label="",style="dashed", color="magenta", weight=3]; 32.13/13.17 121[label="LT",fontsize=16,color="green",shape="box"];86[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4077[label="xuu311000/LT",fontsize=10,color="white",style="solid",shape="box"];86 -> 4077[label="",style="solid", color="burlywood", weight=9]; 32.13/13.17 4077 -> 109[label="",style="solid", color="burlywood", weight=3]; 32.13/13.17 4078[label="xuu311000/EQ",fontsize=10,color="white",style="solid",shape="box"];86 -> 4078[label="",style="solid", color="burlywood", weight=9]; 32.13/13.17 4078 -> 110[label="",style="solid", color="burlywood", weight=3]; 32.13/13.17 4079[label="xuu311000/GT",fontsize=10,color="white",style="solid",shape="box"];86 -> 4079[label="",style="solid", color="burlywood", weight=9]; 32.13/13.17 4079 -> 111[label="",style="solid", color="burlywood", weight=3]; 32.13/13.17 122[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu600) xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 False",fontsize=16,color="black",shape="box"];122 -> 134[label="",style="solid", color="black", weight=3]; 32.13/13.17 123[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu600) xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 True",fontsize=16,color="black",shape="box"];123 -> 135[label="",style="solid", color="black", weight=3]; 32.13/13.17 129 -> 2023[label="",style="dashed", color="red", weight=0]; 32.13/13.17 129[label="compare2 (Just xuu311000) Nothing False",fontsize=16,color="magenta"];129 -> 2027[label="",style="dashed", color="magenta", weight=3]; 32.13/13.17 129 -> 2028[label="",style="dashed", color="magenta", weight=3]; 32.13/13.17 129 -> 2029[label="",style="dashed", color="magenta", weight=3]; 32.13/13.17 130[label="LT",fontsize=16,color="green",shape="box"];131[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 False",fontsize=16,color="black",shape="box"];131 -> 188[label="",style="solid", color="black", weight=3]; 32.13/13.17 132[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 True",fontsize=16,color="black",shape="box"];132 -> 189[label="",style="solid", color="black", weight=3]; 32.13/13.17 183 -> 2023[label="",style="dashed", color="red", weight=0]; 32.13/13.17 183[label="compare2 (Just xuu311000) (Just xuu600) (xuu311000 == xuu600)",fontsize=16,color="magenta"];183 -> 2030[label="",style="dashed", color="magenta", weight=3]; 32.13/13.17 183 -> 2031[label="",style="dashed", color="magenta", weight=3]; 32.13/13.17 183 -> 2032[label="",style="dashed", color="magenta", weight=3]; 32.13/13.17 184[label="LT",fontsize=16,color="green",shape="box"];185[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu17) xuu18 xuu19 xuu20 xuu21 (Just xuu22) xuu23 False",fontsize=16,color="black",shape="box"];185 -> 198[label="",style="solid", color="black", weight=3]; 32.13/13.17 186[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu17) xuu18 xuu19 xuu20 xuu21 (Just xuu22) xuu23 True",fontsize=16,color="black",shape="box"];186 -> 199[label="",style="solid", color="black", weight=3]; 32.13/13.17 89 -> 225[label="",style="dashed", color="red", weight=0]; 32.13/13.17 89[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 (Nothing > Nothing)",fontsize=16,color="magenta"];89 -> 226[label="",style="dashed", color="magenta", weight=3]; 32.13/13.17 2024[label="Nothing",fontsize=16,color="green",shape="box"];2025[label="False",fontsize=16,color="green",shape="box"];2026[label="Just xuu600",fontsize=16,color="green",shape="box"];2023[label="compare2 xuu330 xuu340 xuu111",fontsize=16,color="burlywood",shape="triangle"];4080[label="xuu111/False",fontsize=10,color="white",style="solid",shape="box"];2023 -> 4080[label="",style="solid", color="burlywood", weight=9]; 32.13/13.17 4080 -> 2058[label="",style="solid", color="burlywood", weight=3]; 32.13/13.17 4081[label="xuu111/True",fontsize=10,color="white",style="solid",shape="box"];2023 -> 4081[label="",style="solid", color="burlywood", weight=9]; 32.13/13.17 4081 -> 2059[label="",style="solid", color="burlywood", weight=3]; 32.13/13.17 109[label="LT == xuu600",fontsize=16,color="burlywood",shape="box"];4082[label="xuu600/LT",fontsize=10,color="white",style="solid",shape="box"];109 -> 4082[label="",style="solid", color="burlywood", weight=9]; 32.13/13.17 4082 -> 136[label="",style="solid", color="burlywood", weight=3]; 32.13/13.17 4083[label="xuu600/EQ",fontsize=10,color="white",style="solid",shape="box"];109 -> 4083[label="",style="solid", color="burlywood", weight=9]; 32.13/13.17 4083 -> 137[label="",style="solid", color="burlywood", weight=3]; 32.13/13.17 4084[label="xuu600/GT",fontsize=10,color="white",style="solid",shape="box"];109 -> 4084[label="",style="solid", color="burlywood", weight=9]; 32.13/13.17 4084 -> 138[label="",style="solid", color="burlywood", weight=3]; 32.13/13.17 110[label="EQ == xuu600",fontsize=16,color="burlywood",shape="box"];4085[label="xuu600/LT",fontsize=10,color="white",style="solid",shape="box"];110 -> 4085[label="",style="solid", color="burlywood", weight=9]; 32.13/13.17 4085 -> 139[label="",style="solid", color="burlywood", weight=3]; 32.13/13.17 4086[label="xuu600/EQ",fontsize=10,color="white",style="solid",shape="box"];110 -> 4086[label="",style="solid", color="burlywood", weight=9]; 32.13/13.17 4086 -> 140[label="",style="solid", color="burlywood", weight=3]; 32.13/13.17 4087[label="xuu600/GT",fontsize=10,color="white",style="solid",shape="box"];110 -> 4087[label="",style="solid", color="burlywood", weight=9]; 32.13/13.17 4087 -> 141[label="",style="solid", color="burlywood", weight=3]; 32.13/13.17 111[label="GT == xuu600",fontsize=16,color="burlywood",shape="box"];4088[label="xuu600/LT",fontsize=10,color="white",style="solid",shape="box"];111 -> 4088[label="",style="solid", color="burlywood", weight=9]; 32.13/13.17 4088 -> 142[label="",style="solid", color="burlywood", weight=3]; 32.13/13.17 4089[label="xuu600/EQ",fontsize=10,color="white",style="solid",shape="box"];111 -> 4089[label="",style="solid", color="burlywood", weight=9]; 32.13/13.17 4089 -> 143[label="",style="solid", color="burlywood", weight=3]; 32.13/13.17 4090[label="xuu600/GT",fontsize=10,color="white",style="solid",shape="box"];111 -> 4090[label="",style="solid", color="burlywood", weight=9]; 32.13/13.17 4090 -> 144[label="",style="solid", color="burlywood", weight=3]; 32.13/13.17 134 -> 241[label="",style="dashed", color="red", weight=0]; 32.13/13.17 134[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu600) xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 (Nothing > Just xuu600)",fontsize=16,color="magenta"];134 -> 242[label="",style="dashed", color="magenta", weight=3]; 32.13/13.17 135 -> 192[label="",style="dashed", color="red", weight=0]; 32.13/13.17 135[label="FiniteMap.mkBalBranch (Just xuu600) xuu61 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu63 Nothing xuu31101) xuu64",fontsize=16,color="magenta"];135 -> 193[label="",style="dashed", color="magenta", weight=3]; 32.13/13.17 2027[label="Just xuu311000",fontsize=16,color="green",shape="box"];2028[label="False",fontsize=16,color="green",shape="box"];2029[label="Nothing",fontsize=16,color="green",shape="box"];188 -> 251[label="",style="dashed", color="red", weight=0]; 32.13/13.17 188[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 (Just xuu311000 > Nothing)",fontsize=16,color="magenta"];188 -> 252[label="",style="dashed", color="magenta", weight=3]; 32.13/13.17 189 -> 202[label="",style="dashed", color="red", weight=0]; 32.13/13.17 189[label="FiniteMap.mkBalBranch Nothing xuu61 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu63 (Just xuu311000) xuu31101) xuu64",fontsize=16,color="magenta"];189 -> 203[label="",style="dashed", color="magenta", weight=3]; 32.13/13.17 2030[label="Just xuu311000",fontsize=16,color="green",shape="box"];2031[label="xuu311000 == xuu600",fontsize=16,color="blue",shape="box"];4091[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 4091[label="",style="solid", color="blue", weight=9]; 32.13/13.17 4091 -> 2060[label="",style="solid", color="blue", weight=3]; 32.13/13.17 4092[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 4092[label="",style="solid", color="blue", weight=9]; 32.13/13.17 4092 -> 2061[label="",style="solid", color="blue", weight=3]; 32.13/13.17 4093[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 4093[label="",style="solid", color="blue", weight=9]; 32.13/13.17 4093 -> 2062[label="",style="solid", color="blue", weight=3]; 32.13/13.17 4094[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 4094[label="",style="solid", color="blue", weight=9]; 32.13/13.17 4094 -> 2063[label="",style="solid", color="blue", weight=3]; 32.13/13.17 4095[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 4095[label="",style="solid", color="blue", weight=9]; 32.13/13.17 4095 -> 2064[label="",style="solid", color="blue", weight=3]; 32.13/13.17 4096[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 4096[label="",style="solid", color="blue", weight=9]; 32.13/13.17 4096 -> 2065[label="",style="solid", color="blue", weight=3]; 32.13/13.17 4097[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 4097[label="",style="solid", color="blue", weight=9]; 32.13/13.17 4097 -> 2066[label="",style="solid", color="blue", weight=3]; 32.13/13.17 4098[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 4098[label="",style="solid", color="blue", weight=9]; 32.13/13.17 4098 -> 2067[label="",style="solid", color="blue", weight=3]; 32.13/13.17 4099[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 4099[label="",style="solid", color="blue", weight=9]; 32.13/13.17 4099 -> 2068[label="",style="solid", color="blue", weight=3]; 32.13/13.17 4100[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 4100[label="",style="solid", color="blue", weight=9]; 32.13/13.17 4100 -> 2069[label="",style="solid", color="blue", weight=3]; 32.13/13.17 4101[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 4101[label="",style="solid", color="blue", weight=9]; 32.13/13.17 4101 -> 2070[label="",style="solid", color="blue", weight=3]; 32.13/13.17 4102[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 4102[label="",style="solid", color="blue", weight=9]; 32.13/13.17 4102 -> 2071[label="",style="solid", color="blue", weight=3]; 32.13/13.17 4103[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 4103[label="",style="solid", color="blue", weight=9]; 32.13/13.17 4103 -> 2072[label="",style="solid", color="blue", weight=3]; 32.13/13.17 4104[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 4104[label="",style="solid", color="blue", weight=9]; 32.13/13.17 4104 -> 2073[label="",style="solid", color="blue", weight=3]; 32.13/13.17 2032[label="Just xuu600",fontsize=16,color="green",shape="box"];198 -> 279[label="",style="dashed", color="red", weight=0]; 32.13/13.17 198[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu17) xuu18 xuu19 xuu20 xuu21 (Just xuu22) xuu23 (Just xuu22 > Just xuu17)",fontsize=16,color="magenta"];198 -> 280[label="",style="dashed", color="magenta", weight=3]; 32.13/13.17 199 -> 192[label="",style="dashed", color="red", weight=0]; 32.13/13.17 199[label="FiniteMap.mkBalBranch (Just xuu17) xuu18 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu20 (Just xuu22) xuu23) xuu21",fontsize=16,color="magenta"];199 -> 221[label="",style="dashed", color="magenta", weight=3]; 32.13/13.17 199 -> 222[label="",style="dashed", color="magenta", weight=3]; 32.13/13.17 199 -> 223[label="",style="dashed", color="magenta", weight=3]; 32.13/13.17 199 -> 224[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 226[label="Nothing > Nothing",fontsize=16,color="black",shape="box"];226 -> 228[label="",style="solid", color="black", weight=3]; 32.13/13.18 225[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 xuu37",fontsize=16,color="burlywood",shape="triangle"];4105[label="xuu37/False",fontsize=10,color="white",style="solid",shape="box"];225 -> 4105[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4105 -> 229[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4106[label="xuu37/True",fontsize=10,color="white",style="solid",shape="box"];225 -> 4106[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4106 -> 230[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2058[label="compare2 xuu330 xuu340 False",fontsize=16,color="black",shape="box"];2058 -> 2080[label="",style="solid", color="black", weight=3]; 32.13/13.18 2059[label="compare2 xuu330 xuu340 True",fontsize=16,color="black",shape="box"];2059 -> 2081[label="",style="solid", color="black", weight=3]; 32.13/13.18 136[label="LT == LT",fontsize=16,color="black",shape="box"];136 -> 232[label="",style="solid", color="black", weight=3]; 32.13/13.18 137[label="LT == EQ",fontsize=16,color="black",shape="box"];137 -> 233[label="",style="solid", color="black", weight=3]; 32.13/13.18 138[label="LT == GT",fontsize=16,color="black",shape="box"];138 -> 234[label="",style="solid", color="black", weight=3]; 32.13/13.18 139[label="EQ == LT",fontsize=16,color="black",shape="box"];139 -> 235[label="",style="solid", color="black", weight=3]; 32.13/13.18 140[label="EQ == EQ",fontsize=16,color="black",shape="box"];140 -> 236[label="",style="solid", color="black", weight=3]; 32.13/13.18 141[label="EQ == GT",fontsize=16,color="black",shape="box"];141 -> 237[label="",style="solid", color="black", weight=3]; 32.13/13.18 142[label="GT == LT",fontsize=16,color="black",shape="box"];142 -> 238[label="",style="solid", color="black", weight=3]; 32.13/13.18 143[label="GT == EQ",fontsize=16,color="black",shape="box"];143 -> 239[label="",style="solid", color="black", weight=3]; 32.13/13.18 144[label="GT == GT",fontsize=16,color="black",shape="box"];144 -> 240[label="",style="solid", color="black", weight=3]; 32.13/13.18 242[label="Nothing > Just xuu600",fontsize=16,color="black",shape="box"];242 -> 244[label="",style="solid", color="black", weight=3]; 32.13/13.18 241[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu600) xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 xuu38",fontsize=16,color="burlywood",shape="triangle"];4107[label="xuu38/False",fontsize=10,color="white",style="solid",shape="box"];241 -> 4107[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4107 -> 245[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4108[label="xuu38/True",fontsize=10,color="white",style="solid",shape="box"];241 -> 4108[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4108 -> 246[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 193 -> 35[label="",style="dashed", color="red", weight=0]; 32.13/13.18 193[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu63 Nothing xuu31101",fontsize=16,color="magenta"];193 -> 247[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 193 -> 248[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 192[label="FiniteMap.mkBalBranch (Just xuu600) xuu61 xuu28 xuu64",fontsize=16,color="black",shape="triangle"];192 -> 249[label="",style="solid", color="black", weight=3]; 32.13/13.18 252[label="Just xuu311000 > Nothing",fontsize=16,color="black",shape="box"];252 -> 254[label="",style="solid", color="black", weight=3]; 32.13/13.18 251[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 xuu39",fontsize=16,color="burlywood",shape="triangle"];4109[label="xuu39/False",fontsize=10,color="white",style="solid",shape="box"];251 -> 4109[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4109 -> 255[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4110[label="xuu39/True",fontsize=10,color="white",style="solid",shape="box"];251 -> 4110[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4110 -> 256[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 203 -> 35[label="",style="dashed", color="red", weight=0]; 32.13/13.18 203[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu63 (Just xuu311000) xuu31101",fontsize=16,color="magenta"];203 -> 257[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 203 -> 258[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 202[label="FiniteMap.mkBalBranch Nothing xuu61 xuu36 xuu64",fontsize=16,color="black",shape="triangle"];202 -> 259[label="",style="solid", color="black", weight=3]; 32.13/13.18 2060[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4111[label="xuu311000/()",fontsize=10,color="white",style="solid",shape="box"];2060 -> 4111[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4111 -> 2082[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2061[label="xuu311000 == xuu600",fontsize=16,color="black",shape="triangle"];2061 -> 2083[label="",style="solid", color="black", weight=3]; 32.13/13.18 2062[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4112[label="xuu311000/(xuu3110000,xuu3110001)",fontsize=10,color="white",style="solid",shape="box"];2062 -> 4112[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4112 -> 2084[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2063[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4113[label="xuu311000/(xuu3110000,xuu3110001,xuu3110002)",fontsize=10,color="white",style="solid",shape="box"];2063 -> 4113[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4113 -> 2085[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2064[label="xuu311000 == xuu600",fontsize=16,color="black",shape="triangle"];2064 -> 2086[label="",style="solid", color="black", weight=3]; 32.13/13.18 2065[label="xuu311000 == xuu600",fontsize=16,color="black",shape="triangle"];2065 -> 2087[label="",style="solid", color="black", weight=3]; 32.13/13.18 2066[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4114[label="xuu311000/False",fontsize=10,color="white",style="solid",shape="box"];2066 -> 4114[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4114 -> 2088[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4115[label="xuu311000/True",fontsize=10,color="white",style="solid",shape="box"];2066 -> 4115[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4115 -> 2089[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2067[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4116[label="xuu311000/Left xuu3110000",fontsize=10,color="white",style="solid",shape="box"];2067 -> 4116[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4116 -> 2090[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4117[label="xuu311000/Right xuu3110000",fontsize=10,color="white",style="solid",shape="box"];2067 -> 4117[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4117 -> 2091[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2068[label="xuu311000 == xuu600",fontsize=16,color="black",shape="triangle"];2068 -> 2092[label="",style="solid", color="black", weight=3]; 32.13/13.18 2069[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4118[label="xuu311000/xuu3110000 :% xuu3110001",fontsize=10,color="white",style="solid",shape="box"];2069 -> 4118[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4118 -> 2093[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2070[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4119[label="xuu311000/xuu3110000 : xuu3110001",fontsize=10,color="white",style="solid",shape="box"];2070 -> 4119[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4119 -> 2094[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4120[label="xuu311000/[]",fontsize=10,color="white",style="solid",shape="box"];2070 -> 4120[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4120 -> 2095[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2071[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4121[label="xuu311000/Integer xuu3110000",fontsize=10,color="white",style="solid",shape="box"];2071 -> 4121[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4121 -> 2096[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2072[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4122[label="xuu311000/Nothing",fontsize=10,color="white",style="solid",shape="box"];2072 -> 4122[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4122 -> 2097[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4123[label="xuu311000/Just xuu3110000",fontsize=10,color="white",style="solid",shape="box"];2072 -> 4123[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4123 -> 2098[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2073 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2073[label="xuu311000 == xuu600",fontsize=16,color="magenta"];280[label="Just xuu22 > Just xuu17",fontsize=16,color="black",shape="box"];280 -> 282[label="",style="solid", color="black", weight=3]; 32.13/13.18 279[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu17) xuu18 xuu19 xuu20 xuu21 (Just xuu22) xuu23 xuu40",fontsize=16,color="burlywood",shape="triangle"];4124[label="xuu40/False",fontsize=10,color="white",style="solid",shape="box"];279 -> 4124[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4124 -> 283[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4125[label="xuu40/True",fontsize=10,color="white",style="solid",shape="box"];279 -> 4125[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4125 -> 284[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 221[label="xuu18",fontsize=16,color="green",shape="box"];222[label="xuu21",fontsize=16,color="green",shape="box"];223[label="xuu17",fontsize=16,color="green",shape="box"];224 -> 35[label="",style="dashed", color="red", weight=0]; 32.13/13.18 224[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu20 (Just xuu22) xuu23",fontsize=16,color="magenta"];224 -> 285[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 224 -> 286[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 224 -> 287[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 228 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.18 228[label="compare Nothing Nothing == GT",fontsize=16,color="magenta"];228 -> 288[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 228 -> 289[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 229[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 False",fontsize=16,color="black",shape="box"];229 -> 290[label="",style="solid", color="black", weight=3]; 32.13/13.18 230[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 True",fontsize=16,color="black",shape="box"];230 -> 291[label="",style="solid", color="black", weight=3]; 32.13/13.18 2080[label="compare1 xuu330 xuu340 (xuu330 <= xuu340)",fontsize=16,color="burlywood",shape="box"];4126[label="xuu330/Nothing",fontsize=10,color="white",style="solid",shape="box"];2080 -> 4126[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4126 -> 2125[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4127[label="xuu330/Just xuu3300",fontsize=10,color="white",style="solid",shape="box"];2080 -> 4127[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4127 -> 2126[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2081[label="EQ",fontsize=16,color="green",shape="box"];232[label="True",fontsize=16,color="green",shape="box"];233[label="False",fontsize=16,color="green",shape="box"];234[label="False",fontsize=16,color="green",shape="box"];235[label="False",fontsize=16,color="green",shape="box"];236[label="True",fontsize=16,color="green",shape="box"];237[label="False",fontsize=16,color="green",shape="box"];238[label="False",fontsize=16,color="green",shape="box"];239[label="False",fontsize=16,color="green",shape="box"];240[label="True",fontsize=16,color="green",shape="box"];244 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.18 244[label="compare Nothing (Just xuu600) == GT",fontsize=16,color="magenta"];244 -> 292[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 244 -> 293[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 245[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu600) xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 False",fontsize=16,color="black",shape="box"];245 -> 294[label="",style="solid", color="black", weight=3]; 32.13/13.18 246[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu600) xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 True",fontsize=16,color="black",shape="box"];246 -> 295[label="",style="solid", color="black", weight=3]; 32.13/13.18 247[label="Nothing",fontsize=16,color="green",shape="box"];248[label="xuu63",fontsize=16,color="green",shape="box"];249[label="FiniteMap.mkBalBranch6 (Just xuu600) xuu61 xuu28 xuu64",fontsize=16,color="black",shape="box"];249 -> 296[label="",style="solid", color="black", weight=3]; 32.13/13.18 254 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.18 254[label="compare (Just xuu311000) Nothing == GT",fontsize=16,color="magenta"];254 -> 298[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 254 -> 299[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 255[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 False",fontsize=16,color="black",shape="box"];255 -> 300[label="",style="solid", color="black", weight=3]; 32.13/13.18 256[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 True",fontsize=16,color="black",shape="box"];256 -> 301[label="",style="solid", color="black", weight=3]; 32.13/13.18 257[label="Just xuu311000",fontsize=16,color="green",shape="box"];258[label="xuu63",fontsize=16,color="green",shape="box"];259[label="FiniteMap.mkBalBranch6 Nothing xuu61 xuu36 xuu64",fontsize=16,color="black",shape="box"];259 -> 302[label="",style="solid", color="black", weight=3]; 32.13/13.18 2082[label="() == xuu600",fontsize=16,color="burlywood",shape="box"];4128[label="xuu600/()",fontsize=10,color="white",style="solid",shape="box"];2082 -> 4128[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4128 -> 2127[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2083[label="primEqChar xuu311000 xuu600",fontsize=16,color="burlywood",shape="box"];4129[label="xuu311000/Char xuu3110000",fontsize=10,color="white",style="solid",shape="box"];2083 -> 4129[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4129 -> 2128[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2084[label="(xuu3110000,xuu3110001) == xuu600",fontsize=16,color="burlywood",shape="box"];4130[label="xuu600/(xuu6000,xuu6001)",fontsize=10,color="white",style="solid",shape="box"];2084 -> 4130[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4130 -> 2129[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2085[label="(xuu3110000,xuu3110001,xuu3110002) == xuu600",fontsize=16,color="burlywood",shape="box"];4131[label="xuu600/(xuu6000,xuu6001,xuu6002)",fontsize=10,color="white",style="solid",shape="box"];2085 -> 4131[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4131 -> 2130[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2086[label="primEqFloat xuu311000 xuu600",fontsize=16,color="burlywood",shape="box"];4132[label="xuu311000/Float xuu3110000 xuu3110001",fontsize=10,color="white",style="solid",shape="box"];2086 -> 4132[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4132 -> 2131[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2087[label="primEqInt xuu311000 xuu600",fontsize=16,color="burlywood",shape="triangle"];4133[label="xuu311000/Pos xuu3110000",fontsize=10,color="white",style="solid",shape="box"];2087 -> 4133[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4133 -> 2132[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4134[label="xuu311000/Neg xuu3110000",fontsize=10,color="white",style="solid",shape="box"];2087 -> 4134[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4134 -> 2133[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2088[label="False == xuu600",fontsize=16,color="burlywood",shape="box"];4135[label="xuu600/False",fontsize=10,color="white",style="solid",shape="box"];2088 -> 4135[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4135 -> 2134[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4136[label="xuu600/True",fontsize=10,color="white",style="solid",shape="box"];2088 -> 4136[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4136 -> 2135[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2089[label="True == xuu600",fontsize=16,color="burlywood",shape="box"];4137[label="xuu600/False",fontsize=10,color="white",style="solid",shape="box"];2089 -> 4137[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4137 -> 2136[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4138[label="xuu600/True",fontsize=10,color="white",style="solid",shape="box"];2089 -> 4138[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4138 -> 2137[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2090[label="Left xuu3110000 == xuu600",fontsize=16,color="burlywood",shape="box"];4139[label="xuu600/Left xuu6000",fontsize=10,color="white",style="solid",shape="box"];2090 -> 4139[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4139 -> 2138[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4140[label="xuu600/Right xuu6000",fontsize=10,color="white",style="solid",shape="box"];2090 -> 4140[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4140 -> 2139[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2091[label="Right xuu3110000 == xuu600",fontsize=16,color="burlywood",shape="box"];4141[label="xuu600/Left xuu6000",fontsize=10,color="white",style="solid",shape="box"];2091 -> 4141[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4141 -> 2140[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4142[label="xuu600/Right xuu6000",fontsize=10,color="white",style="solid",shape="box"];2091 -> 4142[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4142 -> 2141[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2092[label="primEqDouble xuu311000 xuu600",fontsize=16,color="burlywood",shape="box"];4143[label="xuu311000/Double xuu3110000 xuu3110001",fontsize=10,color="white",style="solid",shape="box"];2092 -> 4143[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4143 -> 2142[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2093[label="xuu3110000 :% xuu3110001 == xuu600",fontsize=16,color="burlywood",shape="box"];4144[label="xuu600/xuu6000 :% xuu6001",fontsize=10,color="white",style="solid",shape="box"];2093 -> 4144[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4144 -> 2143[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2094[label="xuu3110000 : xuu3110001 == xuu600",fontsize=16,color="burlywood",shape="box"];4145[label="xuu600/xuu6000 : xuu6001",fontsize=10,color="white",style="solid",shape="box"];2094 -> 4145[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4145 -> 2144[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4146[label="xuu600/[]",fontsize=10,color="white",style="solid",shape="box"];2094 -> 4146[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4146 -> 2145[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2095[label="[] == xuu600",fontsize=16,color="burlywood",shape="box"];4147[label="xuu600/xuu6000 : xuu6001",fontsize=10,color="white",style="solid",shape="box"];2095 -> 4147[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4147 -> 2146[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4148[label="xuu600/[]",fontsize=10,color="white",style="solid",shape="box"];2095 -> 4148[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4148 -> 2147[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2096[label="Integer xuu3110000 == xuu600",fontsize=16,color="burlywood",shape="box"];4149[label="xuu600/Integer xuu6000",fontsize=10,color="white",style="solid",shape="box"];2096 -> 4149[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4149 -> 2148[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2097[label="Nothing == xuu600",fontsize=16,color="burlywood",shape="box"];4150[label="xuu600/Nothing",fontsize=10,color="white",style="solid",shape="box"];2097 -> 4150[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4150 -> 2149[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4151[label="xuu600/Just xuu6000",fontsize=10,color="white",style="solid",shape="box"];2097 -> 4151[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4151 -> 2150[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2098[label="Just xuu3110000 == xuu600",fontsize=16,color="burlywood",shape="box"];4152[label="xuu600/Nothing",fontsize=10,color="white",style="solid",shape="box"];2098 -> 4152[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4152 -> 2151[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4153[label="xuu600/Just xuu6000",fontsize=10,color="white",style="solid",shape="box"];2098 -> 4153[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4153 -> 2152[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 282 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.18 282[label="compare (Just xuu22) (Just xuu17) == GT",fontsize=16,color="magenta"];282 -> 330[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 282 -> 331[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 283[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu17) xuu18 xuu19 xuu20 xuu21 (Just xuu22) xuu23 False",fontsize=16,color="black",shape="box"];283 -> 332[label="",style="solid", color="black", weight=3]; 32.13/13.18 284[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu17) xuu18 xuu19 xuu20 xuu21 (Just xuu22) xuu23 True",fontsize=16,color="black",shape="box"];284 -> 333[label="",style="solid", color="black", weight=3]; 32.13/13.18 285[label="Just xuu22",fontsize=16,color="green",shape="box"];286[label="xuu23",fontsize=16,color="green",shape="box"];287[label="xuu20",fontsize=16,color="green",shape="box"];288[label="compare Nothing Nothing",fontsize=16,color="black",shape="box"];288 -> 334[label="",style="solid", color="black", weight=3]; 32.13/13.18 289[label="GT",fontsize=16,color="green",shape="box"];290[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 otherwise",fontsize=16,color="black",shape="box"];290 -> 335[label="",style="solid", color="black", weight=3]; 32.13/13.18 291 -> 202[label="",style="dashed", color="red", weight=0]; 32.13/13.18 291[label="FiniteMap.mkBalBranch Nothing xuu61 xuu63 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu64 Nothing xuu31101)",fontsize=16,color="magenta"];291 -> 336[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 291 -> 337[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2125[label="compare1 Nothing xuu340 (Nothing <= xuu340)",fontsize=16,color="burlywood",shape="box"];4154[label="xuu340/Nothing",fontsize=10,color="white",style="solid",shape="box"];2125 -> 4154[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4154 -> 2215[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4155[label="xuu340/Just xuu3400",fontsize=10,color="white",style="solid",shape="box"];2125 -> 4155[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4155 -> 2216[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2126[label="compare1 (Just xuu3300) xuu340 (Just xuu3300 <= xuu340)",fontsize=16,color="burlywood",shape="box"];4156[label="xuu340/Nothing",fontsize=10,color="white",style="solid",shape="box"];2126 -> 4156[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4156 -> 2217[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4157[label="xuu340/Just xuu3400",fontsize=10,color="white",style="solid",shape="box"];2126 -> 4157[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4157 -> 2218[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 292[label="compare Nothing (Just xuu600)",fontsize=16,color="black",shape="box"];292 -> 338[label="",style="solid", color="black", weight=3]; 32.13/13.18 293[label="GT",fontsize=16,color="green",shape="box"];294[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Just xuu600) xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 otherwise",fontsize=16,color="black",shape="box"];294 -> 339[label="",style="solid", color="black", weight=3]; 32.13/13.18 295 -> 192[label="",style="dashed", color="red", weight=0]; 32.13/13.18 295[label="FiniteMap.mkBalBranch (Just xuu600) xuu61 xuu63 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu64 Nothing xuu31101)",fontsize=16,color="magenta"];295 -> 340[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 295 -> 341[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 296 -> 401[label="",style="dashed", color="red", weight=0]; 32.13/13.18 296[label="FiniteMap.mkBalBranch6MkBalBranch5 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 (FiniteMap.mkBalBranch6Size_l (Just xuu600) xuu61 xuu28 xuu64 + FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];296 -> 402[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 298[label="compare (Just xuu311000) Nothing",fontsize=16,color="black",shape="box"];298 -> 344[label="",style="solid", color="black", weight=3]; 32.13/13.18 299[label="GT",fontsize=16,color="green",shape="box"];300[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 otherwise",fontsize=16,color="black",shape="box"];300 -> 345[label="",style="solid", color="black", weight=3]; 32.13/13.18 301 -> 202[label="",style="dashed", color="red", weight=0]; 32.13/13.18 301[label="FiniteMap.mkBalBranch Nothing xuu61 xuu63 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu64 (Just xuu311000) xuu31101)",fontsize=16,color="magenta"];301 -> 346[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 301 -> 347[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 302 -> 411[label="",style="dashed", color="red", weight=0]; 32.13/13.18 302[label="FiniteMap.mkBalBranch6MkBalBranch5 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 (FiniteMap.mkBalBranch6Size_l Nothing xuu61 xuu36 xuu64 + FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];302 -> 412[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2127[label="() == ()",fontsize=16,color="black",shape="box"];2127 -> 2219[label="",style="solid", color="black", weight=3]; 32.13/13.18 2128[label="primEqChar (Char xuu3110000) xuu600",fontsize=16,color="burlywood",shape="box"];4158[label="xuu600/Char xuu6000",fontsize=10,color="white",style="solid",shape="box"];2128 -> 4158[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4158 -> 2220[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2129[label="(xuu3110000,xuu3110001) == (xuu6000,xuu6001)",fontsize=16,color="black",shape="box"];2129 -> 2221[label="",style="solid", color="black", weight=3]; 32.13/13.18 2130[label="(xuu3110000,xuu3110001,xuu3110002) == (xuu6000,xuu6001,xuu6002)",fontsize=16,color="black",shape="box"];2130 -> 2222[label="",style="solid", color="black", weight=3]; 32.13/13.18 2131[label="primEqFloat (Float xuu3110000 xuu3110001) xuu600",fontsize=16,color="burlywood",shape="box"];4159[label="xuu600/Float xuu6000 xuu6001",fontsize=10,color="white",style="solid",shape="box"];2131 -> 4159[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4159 -> 2223[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2132[label="primEqInt (Pos xuu3110000) xuu600",fontsize=16,color="burlywood",shape="box"];4160[label="xuu3110000/Succ xuu31100000",fontsize=10,color="white",style="solid",shape="box"];2132 -> 4160[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4160 -> 2224[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4161[label="xuu3110000/Zero",fontsize=10,color="white",style="solid",shape="box"];2132 -> 4161[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4161 -> 2225[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2133[label="primEqInt (Neg xuu3110000) xuu600",fontsize=16,color="burlywood",shape="box"];4162[label="xuu3110000/Succ xuu31100000",fontsize=10,color="white",style="solid",shape="box"];2133 -> 4162[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4162 -> 2226[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4163[label="xuu3110000/Zero",fontsize=10,color="white",style="solid",shape="box"];2133 -> 4163[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4163 -> 2227[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2134[label="False == False",fontsize=16,color="black",shape="box"];2134 -> 2228[label="",style="solid", color="black", weight=3]; 32.13/13.18 2135[label="False == True",fontsize=16,color="black",shape="box"];2135 -> 2229[label="",style="solid", color="black", weight=3]; 32.13/13.18 2136[label="True == False",fontsize=16,color="black",shape="box"];2136 -> 2230[label="",style="solid", color="black", weight=3]; 32.13/13.18 2137[label="True == True",fontsize=16,color="black",shape="box"];2137 -> 2231[label="",style="solid", color="black", weight=3]; 32.13/13.18 2138[label="Left xuu3110000 == Left xuu6000",fontsize=16,color="black",shape="box"];2138 -> 2232[label="",style="solid", color="black", weight=3]; 32.13/13.18 2139[label="Left xuu3110000 == Right xuu6000",fontsize=16,color="black",shape="box"];2139 -> 2233[label="",style="solid", color="black", weight=3]; 32.13/13.18 2140[label="Right xuu3110000 == Left xuu6000",fontsize=16,color="black",shape="box"];2140 -> 2234[label="",style="solid", color="black", weight=3]; 32.13/13.18 2141[label="Right xuu3110000 == Right xuu6000",fontsize=16,color="black",shape="box"];2141 -> 2235[label="",style="solid", color="black", weight=3]; 32.13/13.18 2142[label="primEqDouble (Double xuu3110000 xuu3110001) xuu600",fontsize=16,color="burlywood",shape="box"];4164[label="xuu600/Double xuu6000 xuu6001",fontsize=10,color="white",style="solid",shape="box"];2142 -> 4164[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4164 -> 2236[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2143[label="xuu3110000 :% xuu3110001 == xuu6000 :% xuu6001",fontsize=16,color="black",shape="box"];2143 -> 2237[label="",style="solid", color="black", weight=3]; 32.13/13.18 2144[label="xuu3110000 : xuu3110001 == xuu6000 : xuu6001",fontsize=16,color="black",shape="box"];2144 -> 2238[label="",style="solid", color="black", weight=3]; 32.13/13.18 2145[label="xuu3110000 : xuu3110001 == []",fontsize=16,color="black",shape="box"];2145 -> 2239[label="",style="solid", color="black", weight=3]; 32.13/13.18 2146[label="[] == xuu6000 : xuu6001",fontsize=16,color="black",shape="box"];2146 -> 2240[label="",style="solid", color="black", weight=3]; 32.13/13.18 2147[label="[] == []",fontsize=16,color="black",shape="box"];2147 -> 2241[label="",style="solid", color="black", weight=3]; 32.13/13.18 2148[label="Integer xuu3110000 == Integer xuu6000",fontsize=16,color="black",shape="box"];2148 -> 2242[label="",style="solid", color="black", weight=3]; 32.13/13.18 2149[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];2149 -> 2243[label="",style="solid", color="black", weight=3]; 32.13/13.18 2150[label="Nothing == Just xuu6000",fontsize=16,color="black",shape="box"];2150 -> 2244[label="",style="solid", color="black", weight=3]; 32.13/13.18 2151[label="Just xuu3110000 == Nothing",fontsize=16,color="black",shape="box"];2151 -> 2245[label="",style="solid", color="black", weight=3]; 32.13/13.18 2152[label="Just xuu3110000 == Just xuu6000",fontsize=16,color="black",shape="box"];2152 -> 2246[label="",style="solid", color="black", weight=3]; 32.13/13.18 330[label="compare (Just xuu22) (Just xuu17)",fontsize=16,color="black",shape="box"];330 -> 387[label="",style="solid", color="black", weight=3]; 32.13/13.18 331[label="GT",fontsize=16,color="green",shape="box"];332[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Just xuu17) xuu18 xuu19 xuu20 xuu21 (Just xuu22) xuu23 otherwise",fontsize=16,color="black",shape="box"];332 -> 388[label="",style="solid", color="black", weight=3]; 32.13/13.18 333 -> 192[label="",style="dashed", color="red", weight=0]; 32.13/13.18 333[label="FiniteMap.mkBalBranch (Just xuu17) xuu18 xuu20 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu21 (Just xuu22) xuu23)",fontsize=16,color="magenta"];333 -> 389[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 333 -> 390[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 333 -> 391[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 333 -> 392[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 334[label="compare3 Nothing Nothing",fontsize=16,color="black",shape="box"];334 -> 393[label="",style="solid", color="black", weight=3]; 32.13/13.18 335[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 True",fontsize=16,color="black",shape="box"];335 -> 394[label="",style="solid", color="black", weight=3]; 32.13/13.18 336 -> 35[label="",style="dashed", color="red", weight=0]; 32.13/13.18 336[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu64 Nothing xuu31101",fontsize=16,color="magenta"];336 -> 395[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 336 -> 396[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 337[label="xuu63",fontsize=16,color="green",shape="box"];2215[label="compare1 Nothing Nothing (Nothing <= Nothing)",fontsize=16,color="black",shape="box"];2215 -> 2274[label="",style="solid", color="black", weight=3]; 32.13/13.18 2216[label="compare1 Nothing (Just xuu3400) (Nothing <= Just xuu3400)",fontsize=16,color="black",shape="box"];2216 -> 2275[label="",style="solid", color="black", weight=3]; 32.13/13.18 2217[label="compare1 (Just xuu3300) Nothing (Just xuu3300 <= Nothing)",fontsize=16,color="black",shape="box"];2217 -> 2276[label="",style="solid", color="black", weight=3]; 32.13/13.18 2218[label="compare1 (Just xuu3300) (Just xuu3400) (Just xuu3300 <= Just xuu3400)",fontsize=16,color="black",shape="box"];2218 -> 2277[label="",style="solid", color="black", weight=3]; 32.13/13.18 338[label="compare3 Nothing (Just xuu600)",fontsize=16,color="black",shape="box"];338 -> 397[label="",style="solid", color="black", weight=3]; 32.13/13.18 339[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Just xuu600) xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 True",fontsize=16,color="black",shape="box"];339 -> 398[label="",style="solid", color="black", weight=3]; 32.13/13.18 340 -> 35[label="",style="dashed", color="red", weight=0]; 32.13/13.18 340[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu64 Nothing xuu31101",fontsize=16,color="magenta"];340 -> 399[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 340 -> 400[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 341[label="xuu63",fontsize=16,color="green",shape="box"];402[label="FiniteMap.mkBalBranch6Size_l (Just xuu600) xuu61 xuu28 xuu64 + FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64 < Pos (Succ (Succ Zero))",fontsize=16,color="black",shape="box"];402 -> 404[label="",style="solid", color="black", weight=3]; 32.13/13.18 401[label="FiniteMap.mkBalBranch6MkBalBranch5 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 xuu48",fontsize=16,color="burlywood",shape="triangle"];4165[label="xuu48/False",fontsize=10,color="white",style="solid",shape="box"];401 -> 4165[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4165 -> 405[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4166[label="xuu48/True",fontsize=10,color="white",style="solid",shape="box"];401 -> 4166[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4166 -> 406[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 344[label="compare3 (Just xuu311000) Nothing",fontsize=16,color="black",shape="box"];344 -> 407[label="",style="solid", color="black", weight=3]; 32.13/13.18 345[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 True",fontsize=16,color="black",shape="box"];345 -> 408[label="",style="solid", color="black", weight=3]; 32.13/13.18 346 -> 35[label="",style="dashed", color="red", weight=0]; 32.13/13.18 346[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu64 (Just xuu311000) xuu31101",fontsize=16,color="magenta"];346 -> 409[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 346 -> 410[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 347[label="xuu63",fontsize=16,color="green",shape="box"];412[label="FiniteMap.mkBalBranch6Size_l Nothing xuu61 xuu36 xuu64 + FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64 < Pos (Succ (Succ Zero))",fontsize=16,color="black",shape="box"];412 -> 414[label="",style="solid", color="black", weight=3]; 32.13/13.18 411[label="FiniteMap.mkBalBranch6MkBalBranch5 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 xuu49",fontsize=16,color="burlywood",shape="triangle"];4167[label="xuu49/False",fontsize=10,color="white",style="solid",shape="box"];411 -> 4167[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4167 -> 415[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4168[label="xuu49/True",fontsize=10,color="white",style="solid",shape="box"];411 -> 4168[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4168 -> 416[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2219[label="True",fontsize=16,color="green",shape="box"];2220[label="primEqChar (Char xuu3110000) (Char xuu6000)",fontsize=16,color="black",shape="box"];2220 -> 2278[label="",style="solid", color="black", weight=3]; 32.13/13.18 2221 -> 2377[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2221[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001",fontsize=16,color="magenta"];2221 -> 2378[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2221 -> 2379[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2222 -> 2377[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2222[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001 && xuu3110002 == xuu6002",fontsize=16,color="magenta"];2222 -> 2380[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2222 -> 2381[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2223[label="primEqFloat (Float xuu3110000 xuu3110001) (Float xuu6000 xuu6001)",fontsize=16,color="black",shape="box"];2223 -> 2300[label="",style="solid", color="black", weight=3]; 32.13/13.18 2224[label="primEqInt (Pos (Succ xuu31100000)) xuu600",fontsize=16,color="burlywood",shape="box"];4169[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];2224 -> 4169[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4169 -> 2301[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4170[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];2224 -> 4170[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4170 -> 2302[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2225[label="primEqInt (Pos Zero) xuu600",fontsize=16,color="burlywood",shape="box"];4171[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];2225 -> 4171[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4171 -> 2303[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4172[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];2225 -> 4172[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4172 -> 2304[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2226[label="primEqInt (Neg (Succ xuu31100000)) xuu600",fontsize=16,color="burlywood",shape="box"];4173[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];2226 -> 4173[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4173 -> 2305[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4174[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];2226 -> 4174[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4174 -> 2306[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2227[label="primEqInt (Neg Zero) xuu600",fontsize=16,color="burlywood",shape="box"];4175[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];2227 -> 4175[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4175 -> 2307[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4176[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];2227 -> 4176[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4176 -> 2308[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2228[label="True",fontsize=16,color="green",shape="box"];2229[label="False",fontsize=16,color="green",shape="box"];2230[label="False",fontsize=16,color="green",shape="box"];2231[label="True",fontsize=16,color="green",shape="box"];2232[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];4177[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 4177[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4177 -> 2309[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4178[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 4178[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4178 -> 2310[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4179[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 4179[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4179 -> 2311[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4180[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 4180[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4180 -> 2312[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4181[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 4181[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4181 -> 2313[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4182[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 4182[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4182 -> 2314[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4183[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 4183[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4183 -> 2315[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4184[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 4184[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4184 -> 2316[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4185[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 4185[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4185 -> 2317[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4186[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 4186[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4186 -> 2318[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4187[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 4187[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4187 -> 2319[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4188[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 4188[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4188 -> 2320[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4189[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 4189[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4189 -> 2321[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4190[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 4190[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4190 -> 2322[label="",style="solid", color="blue", weight=3]; 32.13/13.18 2233[label="False",fontsize=16,color="green",shape="box"];2234[label="False",fontsize=16,color="green",shape="box"];2235[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];4191[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4191[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4191 -> 2323[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4192[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4192[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4192 -> 2324[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4193[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4193[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4193 -> 2325[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4194[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4194[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4194 -> 2326[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4195[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4195[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4195 -> 2327[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4196[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4196[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4196 -> 2328[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4197[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4197[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4197 -> 2329[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4198[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4198[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4198 -> 2330[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4199[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4199[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4199 -> 2331[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4200[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4200[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4200 -> 2332[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4201[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4201[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4201 -> 2333[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4202[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4202[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4202 -> 2334[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4203[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4203[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4203 -> 2335[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4204[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4204[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4204 -> 2336[label="",style="solid", color="blue", weight=3]; 32.13/13.18 2236[label="primEqDouble (Double xuu3110000 xuu3110001) (Double xuu6000 xuu6001)",fontsize=16,color="black",shape="box"];2236 -> 2337[label="",style="solid", color="black", weight=3]; 32.13/13.18 2237 -> 2377[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2237[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001",fontsize=16,color="magenta"];2237 -> 2382[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2237 -> 2383[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2238 -> 2377[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2238[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001",fontsize=16,color="magenta"];2238 -> 2384[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2238 -> 2385[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2239[label="False",fontsize=16,color="green",shape="box"];2240[label="False",fontsize=16,color="green",shape="box"];2241[label="True",fontsize=16,color="green",shape="box"];2242 -> 2087[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2242[label="primEqInt xuu3110000 xuu6000",fontsize=16,color="magenta"];2242 -> 2338[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2242 -> 2339[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2243[label="True",fontsize=16,color="green",shape="box"];2244[label="False",fontsize=16,color="green",shape="box"];2245[label="False",fontsize=16,color="green",shape="box"];2246[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];4205[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4205[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4205 -> 2340[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4206[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4206[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4206 -> 2341[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4207[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4207[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4207 -> 2342[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4208[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4208[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4208 -> 2343[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4209[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4209[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4209 -> 2344[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4210[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4210[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4210 -> 2345[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4211[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4211[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4211 -> 2346[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4212[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4212[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4212 -> 2347[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4213[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4213[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4213 -> 2348[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4214[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4214[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4214 -> 2349[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4215[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4215[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4215 -> 2350[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4216[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4216[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4216 -> 2351[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4217[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4217[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4217 -> 2352[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4218[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4218[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4218 -> 2353[label="",style="solid", color="blue", weight=3]; 32.13/13.18 387[label="compare3 (Just xuu22) (Just xuu17)",fontsize=16,color="black",shape="box"];387 -> 509[label="",style="solid", color="black", weight=3]; 32.13/13.18 388[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Just xuu17) xuu18 xuu19 xuu20 xuu21 (Just xuu22) xuu23 True",fontsize=16,color="black",shape="box"];388 -> 510[label="",style="solid", color="black", weight=3]; 32.13/13.18 389[label="xuu18",fontsize=16,color="green",shape="box"];390 -> 35[label="",style="dashed", color="red", weight=0]; 32.13/13.18 390[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu21 (Just xuu22) xuu23",fontsize=16,color="magenta"];390 -> 511[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 390 -> 512[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 390 -> 513[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 391[label="xuu17",fontsize=16,color="green",shape="box"];392[label="xuu20",fontsize=16,color="green",shape="box"];393 -> 2023[label="",style="dashed", color="red", weight=0]; 32.13/13.18 393[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="magenta"];393 -> 2042[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 393 -> 2043[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 393 -> 2044[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 394[label="FiniteMap.Branch Nothing (FiniteMap.addListToFM0 xuu61 xuu31101) xuu62 xuu63 xuu64",fontsize=16,color="green",shape="box"];394 -> 516[label="",style="dashed", color="green", weight=3]; 32.13/13.18 395[label="Nothing",fontsize=16,color="green",shape="box"];396[label="xuu64",fontsize=16,color="green",shape="box"];2274[label="compare1 Nothing Nothing True",fontsize=16,color="black",shape="box"];2274 -> 2354[label="",style="solid", color="black", weight=3]; 32.13/13.18 2275[label="compare1 Nothing (Just xuu3400) True",fontsize=16,color="black",shape="box"];2275 -> 2355[label="",style="solid", color="black", weight=3]; 32.13/13.18 2276[label="compare1 (Just xuu3300) Nothing False",fontsize=16,color="black",shape="box"];2276 -> 2356[label="",style="solid", color="black", weight=3]; 32.13/13.18 2277 -> 2357[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2277[label="compare1 (Just xuu3300) (Just xuu3400) (xuu3300 <= xuu3400)",fontsize=16,color="magenta"];2277 -> 2358[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2277 -> 2359[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2277 -> 2360[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 397 -> 2023[label="",style="dashed", color="red", weight=0]; 32.13/13.18 397[label="compare2 Nothing (Just xuu600) (Nothing == Just xuu600)",fontsize=16,color="magenta"];397 -> 2045[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 397 -> 2046[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 397 -> 2047[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 398[label="FiniteMap.Branch Nothing (FiniteMap.addListToFM0 xuu61 xuu31101) xuu62 xuu63 xuu64",fontsize=16,color="green",shape="box"];398 -> 522[label="",style="dashed", color="green", weight=3]; 32.13/13.18 399[label="Nothing",fontsize=16,color="green",shape="box"];400[label="xuu64",fontsize=16,color="green",shape="box"];404 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.18 404[label="compare (FiniteMap.mkBalBranch6Size_l (Just xuu600) xuu61 xuu28 xuu64 + FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64) (Pos (Succ (Succ Zero))) == LT",fontsize=16,color="magenta"];404 -> 523[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 404 -> 524[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 405[label="FiniteMap.mkBalBranch6MkBalBranch5 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 False",fontsize=16,color="black",shape="box"];405 -> 525[label="",style="solid", color="black", weight=3]; 32.13/13.18 406[label="FiniteMap.mkBalBranch6MkBalBranch5 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 True",fontsize=16,color="black",shape="box"];406 -> 526[label="",style="solid", color="black", weight=3]; 32.13/13.18 407 -> 2023[label="",style="dashed", color="red", weight=0]; 32.13/13.18 407[label="compare2 (Just xuu311000) Nothing (Just xuu311000 == Nothing)",fontsize=16,color="magenta"];407 -> 2048[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 407 -> 2049[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 407 -> 2050[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 408[label="FiniteMap.Branch (Just xuu311000) (FiniteMap.addListToFM0 xuu61 xuu31101) xuu62 xuu63 xuu64",fontsize=16,color="green",shape="box"];408 -> 534[label="",style="dashed", color="green", weight=3]; 32.13/13.18 409[label="Just xuu311000",fontsize=16,color="green",shape="box"];410[label="xuu64",fontsize=16,color="green",shape="box"];414 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.18 414[label="compare (FiniteMap.mkBalBranch6Size_l Nothing xuu61 xuu36 xuu64 + FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64) (Pos (Succ (Succ Zero))) == LT",fontsize=16,color="magenta"];414 -> 535[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 414 -> 536[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 415[label="FiniteMap.mkBalBranch6MkBalBranch5 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 False",fontsize=16,color="black",shape="box"];415 -> 537[label="",style="solid", color="black", weight=3]; 32.13/13.18 416[label="FiniteMap.mkBalBranch6MkBalBranch5 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 True",fontsize=16,color="black",shape="box"];416 -> 538[label="",style="solid", color="black", weight=3]; 32.13/13.18 2278[label="primEqNat xuu3110000 xuu6000",fontsize=16,color="burlywood",shape="triangle"];4219[label="xuu3110000/Succ xuu31100000",fontsize=10,color="white",style="solid",shape="box"];2278 -> 4219[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4219 -> 2361[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4220[label="xuu3110000/Zero",fontsize=10,color="white",style="solid",shape="box"];2278 -> 4220[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4220 -> 2362[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2378[label="xuu3110001 == xuu6001",fontsize=16,color="blue",shape="box"];4221[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2378 -> 4221[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4221 -> 2390[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4222[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2378 -> 4222[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4222 -> 2391[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4223[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2378 -> 4223[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4223 -> 2392[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4224[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2378 -> 4224[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4224 -> 2393[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4225[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2378 -> 4225[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4225 -> 2394[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4226[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2378 -> 4226[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4226 -> 2395[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4227[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2378 -> 4227[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4227 -> 2396[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4228[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2378 -> 4228[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4228 -> 2397[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4229[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2378 -> 4229[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4229 -> 2398[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4230[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2378 -> 4230[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4230 -> 2399[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4231[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2378 -> 4231[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4231 -> 2400[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4232[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2378 -> 4232[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4232 -> 2401[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4233[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2378 -> 4233[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4233 -> 2402[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4234[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2378 -> 4234[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4234 -> 2403[label="",style="solid", color="blue", weight=3]; 32.13/13.18 2379[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];4235[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 4235[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4235 -> 2404[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4236[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 4236[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4236 -> 2405[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4237[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 4237[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4237 -> 2406[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4238[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 4238[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4238 -> 2407[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4239[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 4239[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4239 -> 2408[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4240[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 4240[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4240 -> 2409[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4241[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 4241[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4241 -> 2410[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4242[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 4242[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4242 -> 2411[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4243[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 4243[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4243 -> 2412[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4244[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 4244[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4244 -> 2413[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4245[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 4245[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4245 -> 2414[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4246[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 4246[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4246 -> 2415[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4247[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 4247[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4247 -> 2416[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4248[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 4248[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4248 -> 2417[label="",style="solid", color="blue", weight=3]; 32.13/13.18 2377[label="xuu138 && xuu139",fontsize=16,color="burlywood",shape="triangle"];4249[label="xuu138/False",fontsize=10,color="white",style="solid",shape="box"];2377 -> 4249[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4249 -> 2418[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4250[label="xuu138/True",fontsize=10,color="white",style="solid",shape="box"];2377 -> 4250[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4250 -> 2419[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2380 -> 2377[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2380[label="xuu3110001 == xuu6001 && xuu3110002 == xuu6002",fontsize=16,color="magenta"];2380 -> 2420[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2380 -> 2421[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2381[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];4251[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 4251[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4251 -> 2422[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4252[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 4252[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4252 -> 2423[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4253[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 4253[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4253 -> 2424[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4254[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 4254[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4254 -> 2425[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4255[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 4255[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4255 -> 2426[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4256[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 4256[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4256 -> 2427[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4257[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 4257[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4257 -> 2428[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4258[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 4258[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4258 -> 2429[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4259[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 4259[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4259 -> 2430[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4260[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 4260[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4260 -> 2431[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4261[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 4261[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4261 -> 2432[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4262[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 4262[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4262 -> 2433[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4263[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 4263[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4263 -> 2434[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4264[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 4264[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4264 -> 2435[label="",style="solid", color="blue", weight=3]; 32.13/13.18 2300 -> 2065[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2300[label="xuu3110000 * xuu6001 == xuu3110001 * xuu6000",fontsize=16,color="magenta"];2300 -> 2436[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2300 -> 2437[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2301[label="primEqInt (Pos (Succ xuu31100000)) (Pos xuu6000)",fontsize=16,color="burlywood",shape="box"];4265[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2301 -> 4265[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4265 -> 2438[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4266[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2301 -> 4266[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4266 -> 2439[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2302[label="primEqInt (Pos (Succ xuu31100000)) (Neg xuu6000)",fontsize=16,color="black",shape="box"];2302 -> 2440[label="",style="solid", color="black", weight=3]; 32.13/13.18 2303[label="primEqInt (Pos Zero) (Pos xuu6000)",fontsize=16,color="burlywood",shape="box"];4267[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2303 -> 4267[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4267 -> 2441[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4268[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2303 -> 4268[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4268 -> 2442[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2304[label="primEqInt (Pos Zero) (Neg xuu6000)",fontsize=16,color="burlywood",shape="box"];4269[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2304 -> 4269[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4269 -> 2443[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4270[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2304 -> 4270[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4270 -> 2444[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2305[label="primEqInt (Neg (Succ xuu31100000)) (Pos xuu6000)",fontsize=16,color="black",shape="box"];2305 -> 2445[label="",style="solid", color="black", weight=3]; 32.13/13.18 2306[label="primEqInt (Neg (Succ xuu31100000)) (Neg xuu6000)",fontsize=16,color="burlywood",shape="box"];4271[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2306 -> 4271[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4271 -> 2446[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4272[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2306 -> 4272[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4272 -> 2447[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2307[label="primEqInt (Neg Zero) (Pos xuu6000)",fontsize=16,color="burlywood",shape="box"];4273[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2307 -> 4273[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4273 -> 2448[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4274[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2307 -> 4274[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4274 -> 2449[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2308[label="primEqInt (Neg Zero) (Neg xuu6000)",fontsize=16,color="burlywood",shape="box"];4275[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2308 -> 4275[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4275 -> 2450[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4276[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2308 -> 4276[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4276 -> 2451[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2309 -> 2060[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2309[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2309 -> 2452[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2309 -> 2453[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2310 -> 2061[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2310[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2310 -> 2454[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2310 -> 2455[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2311 -> 2062[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2311[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2311 -> 2456[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2311 -> 2457[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2312 -> 2063[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2312[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2312 -> 2458[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2312 -> 2459[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2313 -> 2064[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2313[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2313 -> 2460[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2313 -> 2461[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2314 -> 2065[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2314[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2314 -> 2462[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2314 -> 2463[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2315 -> 2066[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2315[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2315 -> 2464[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2315 -> 2465[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2316 -> 2067[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2316[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2316 -> 2466[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2316 -> 2467[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2317 -> 2068[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2317[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2317 -> 2468[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2317 -> 2469[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2318 -> 2069[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2318[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2318 -> 2470[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2318 -> 2471[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2319 -> 2070[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2319[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2319 -> 2472[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2319 -> 2473[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2320 -> 2071[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2320[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2320 -> 2474[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2320 -> 2475[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2321 -> 2072[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2321[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2321 -> 2476[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2321 -> 2477[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2322 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2322[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2322 -> 2478[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2322 -> 2479[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2323 -> 2060[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2323[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2323 -> 2480[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2323 -> 2481[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2324 -> 2061[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2324[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2324 -> 2482[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2324 -> 2483[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2325 -> 2062[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2325[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2325 -> 2484[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2325 -> 2485[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2326 -> 2063[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2326[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2326 -> 2486[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2326 -> 2487[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2327 -> 2064[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2327[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2327 -> 2488[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2327 -> 2489[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2328 -> 2065[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2328[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2328 -> 2490[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2328 -> 2491[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2329 -> 2066[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2329[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2329 -> 2492[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2329 -> 2493[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2330 -> 2067[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2330[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2330 -> 2494[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2330 -> 2495[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2331 -> 2068[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2331[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2331 -> 2496[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2331 -> 2497[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2332 -> 2069[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2332[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2332 -> 2498[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2332 -> 2499[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2333 -> 2070[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2333[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2333 -> 2500[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2333 -> 2501[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2334 -> 2071[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2334[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2334 -> 2502[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2334 -> 2503[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2335 -> 2072[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2335[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2335 -> 2504[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2335 -> 2505[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2336 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2336[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2336 -> 2506[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2336 -> 2507[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2337 -> 2065[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2337[label="xuu3110000 * xuu6001 == xuu3110001 * xuu6000",fontsize=16,color="magenta"];2337 -> 2508[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2337 -> 2509[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2382[label="xuu3110001 == xuu6001",fontsize=16,color="blue",shape="box"];4277[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2382 -> 4277[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4277 -> 2510[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4278[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2382 -> 4278[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4278 -> 2511[label="",style="solid", color="blue", weight=3]; 32.13/13.18 2383[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];4279[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2383 -> 4279[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4279 -> 2512[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4280[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2383 -> 4280[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4280 -> 2513[label="",style="solid", color="blue", weight=3]; 32.13/13.18 2384 -> 2070[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2384[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2384 -> 2514[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2384 -> 2515[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2385[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];4281[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4281[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4281 -> 2516[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4282[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4282[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4282 -> 2517[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4283[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4283[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4283 -> 2518[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4284[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4284[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4284 -> 2519[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4285[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4285[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4285 -> 2520[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4286[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4286[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4286 -> 2521[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4287[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4287[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4287 -> 2522[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4288[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4288[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4288 -> 2523[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4289[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4289[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4289 -> 2524[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4290[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4290[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4290 -> 2525[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4291[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4291[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4291 -> 2526[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4292[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4292[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4292 -> 2527[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4293[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4293[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4293 -> 2528[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4294[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4294[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4294 -> 2529[label="",style="solid", color="blue", weight=3]; 32.13/13.18 2338[label="xuu3110000",fontsize=16,color="green",shape="box"];2339[label="xuu6000",fontsize=16,color="green",shape="box"];2340 -> 2060[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2340[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2340 -> 2530[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2340 -> 2531[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2341 -> 2061[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2341[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2341 -> 2532[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2341 -> 2533[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2342 -> 2062[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2342[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2342 -> 2534[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2342 -> 2535[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2343 -> 2063[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2343[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2343 -> 2536[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2343 -> 2537[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2344 -> 2064[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2344[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2344 -> 2538[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2344 -> 2539[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2345 -> 2065[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2345[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2345 -> 2540[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2345 -> 2541[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2346 -> 2066[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2346[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2346 -> 2542[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2346 -> 2543[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2347 -> 2067[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2347[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2347 -> 2544[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2347 -> 2545[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2348 -> 2068[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2348[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2348 -> 2546[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2348 -> 2547[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2349 -> 2069[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2349[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2349 -> 2548[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2349 -> 2549[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2350 -> 2070[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2350[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2350 -> 2550[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2350 -> 2551[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2351 -> 2071[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2351[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2351 -> 2552[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2351 -> 2553[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2352 -> 2072[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2352[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2352 -> 2554[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2352 -> 2555[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2353 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2353[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2353 -> 2556[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2353 -> 2557[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 509 -> 2023[label="",style="dashed", color="red", weight=0]; 32.13/13.18 509[label="compare2 (Just xuu22) (Just xuu17) (Just xuu22 == Just xuu17)",fontsize=16,color="magenta"];509 -> 2051[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 509 -> 2052[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 509 -> 2053[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 510[label="FiniteMap.Branch (Just xuu22) (FiniteMap.addListToFM0 xuu18 xuu23) xuu19 xuu20 xuu21",fontsize=16,color="green",shape="box"];510 -> 762[label="",style="dashed", color="green", weight=3]; 32.13/13.18 511[label="Just xuu22",fontsize=16,color="green",shape="box"];512[label="xuu23",fontsize=16,color="green",shape="box"];513[label="xuu21",fontsize=16,color="green",shape="box"];2042[label="Nothing",fontsize=16,color="green",shape="box"];2043[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];2043 -> 2074[label="",style="solid", color="black", weight=3]; 32.13/13.18 2044[label="Nothing",fontsize=16,color="green",shape="box"];516[label="FiniteMap.addListToFM0 xuu61 xuu31101",fontsize=16,color="black",shape="triangle"];516 -> 767[label="",style="solid", color="black", weight=3]; 32.13/13.18 2354[label="LT",fontsize=16,color="green",shape="box"];2355[label="LT",fontsize=16,color="green",shape="box"];2356[label="compare0 (Just xuu3300) Nothing otherwise",fontsize=16,color="black",shape="box"];2356 -> 2558[label="",style="solid", color="black", weight=3]; 32.13/13.18 2358[label="xuu3400",fontsize=16,color="green",shape="box"];2359[label="xuu3300",fontsize=16,color="green",shape="box"];2360[label="xuu3300 <= xuu3400",fontsize=16,color="blue",shape="box"];4295[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 4295[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4295 -> 2559[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4296[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 4296[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4296 -> 2560[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4297[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 4297[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4297 -> 2561[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4298[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 4298[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4298 -> 2562[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4299[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 4299[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4299 -> 2563[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4300[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 4300[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4300 -> 2564[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4301[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 4301[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4301 -> 2565[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4302[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 4302[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4302 -> 2566[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4303[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 4303[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4303 -> 2567[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4304[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 4304[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4304 -> 2568[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4305[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 4305[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4305 -> 2569[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4306[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 4306[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4306 -> 2570[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4307[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 4307[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4307 -> 2571[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4308[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 4308[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4308 -> 2572[label="",style="solid", color="blue", weight=3]; 32.13/13.18 2357[label="compare1 (Just xuu132) (Just xuu133) xuu134",fontsize=16,color="burlywood",shape="triangle"];4309[label="xuu134/False",fontsize=10,color="white",style="solid",shape="box"];2357 -> 4309[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4309 -> 2573[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4310[label="xuu134/True",fontsize=10,color="white",style="solid",shape="box"];2357 -> 4310[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4310 -> 2574[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2045[label="Nothing",fontsize=16,color="green",shape="box"];2046[label="Nothing == Just xuu600",fontsize=16,color="black",shape="box"];2046 -> 2075[label="",style="solid", color="black", weight=3]; 32.13/13.18 2047[label="Just xuu600",fontsize=16,color="green",shape="box"];522 -> 516[label="",style="dashed", color="red", weight=0]; 32.13/13.18 522[label="FiniteMap.addListToFM0 xuu61 xuu31101",fontsize=16,color="magenta"];523[label="compare (FiniteMap.mkBalBranch6Size_l (Just xuu600) xuu61 xuu28 xuu64 + FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];523 -> 770[label="",style="solid", color="black", weight=3]; 32.13/13.18 524[label="LT",fontsize=16,color="green",shape="box"];525 -> 997[label="",style="dashed", color="red", weight=0]; 32.13/13.18 525[label="FiniteMap.mkBalBranch6MkBalBranch4 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 (FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Just xuu600) xuu61 xuu28 xuu64)",fontsize=16,color="magenta"];525 -> 998[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 526 -> 3832[label="",style="dashed", color="red", weight=0]; 32.13/13.18 526[label="FiniteMap.mkBranch (Pos (Succ Zero)) (Just xuu600) xuu61 xuu28 xuu64",fontsize=16,color="magenta"];526 -> 3833[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 526 -> 3834[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 526 -> 3835[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 526 -> 3836[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 526 -> 3837[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2048[label="Just xuu311000",fontsize=16,color="green",shape="box"];2049[label="Just xuu311000 == Nothing",fontsize=16,color="black",shape="box"];2049 -> 2076[label="",style="solid", color="black", weight=3]; 32.13/13.18 2050[label="Nothing",fontsize=16,color="green",shape="box"];534 -> 516[label="",style="dashed", color="red", weight=0]; 32.13/13.18 534[label="FiniteMap.addListToFM0 xuu61 xuu31101",fontsize=16,color="magenta"];535[label="compare (FiniteMap.mkBalBranch6Size_l Nothing xuu61 xuu36 xuu64 + FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];535 -> 775[label="",style="solid", color="black", weight=3]; 32.13/13.18 536[label="LT",fontsize=16,color="green",shape="box"];537 -> 1027[label="",style="dashed", color="red", weight=0]; 32.13/13.18 537[label="FiniteMap.mkBalBranch6MkBalBranch4 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 (FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l Nothing xuu61 xuu36 xuu64)",fontsize=16,color="magenta"];537 -> 1028[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 538 -> 3832[label="",style="dashed", color="red", weight=0]; 32.13/13.18 538[label="FiniteMap.mkBranch (Pos (Succ Zero)) Nothing xuu61 xuu36 xuu64",fontsize=16,color="magenta"];538 -> 3838[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 538 -> 3839[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 538 -> 3840[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 538 -> 3841[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 538 -> 3842[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2361[label="primEqNat (Succ xuu31100000) xuu6000",fontsize=16,color="burlywood",shape="box"];4311[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2361 -> 4311[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4311 -> 2575[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4312[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2361 -> 4312[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4312 -> 2576[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2362[label="primEqNat Zero xuu6000",fontsize=16,color="burlywood",shape="box"];4313[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2362 -> 4313[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4313 -> 2577[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4314[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2362 -> 4314[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4314 -> 2578[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2390 -> 2060[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2390[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2390 -> 2600[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2390 -> 2601[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2391 -> 2061[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2391[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2391 -> 2602[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2391 -> 2603[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2392 -> 2062[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2392[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2392 -> 2604[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2392 -> 2605[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2393 -> 2063[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2393[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2393 -> 2606[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2393 -> 2607[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2394 -> 2064[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2394[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2394 -> 2608[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2394 -> 2609[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2395 -> 2065[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2395[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2395 -> 2610[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2395 -> 2611[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2396 -> 2066[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2396[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2396 -> 2612[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2396 -> 2613[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2397 -> 2067[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2397[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2397 -> 2614[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2397 -> 2615[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2398 -> 2068[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2398[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2398 -> 2616[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2398 -> 2617[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2399 -> 2069[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2399[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2399 -> 2618[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2399 -> 2619[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2400 -> 2070[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2400[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2400 -> 2620[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2400 -> 2621[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2401 -> 2071[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2401[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2401 -> 2622[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2401 -> 2623[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2402 -> 2072[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2402[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2402 -> 2624[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2402 -> 2625[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2403 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2403[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2403 -> 2626[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2403 -> 2627[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2404 -> 2060[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2404[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2404 -> 2628[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2404 -> 2629[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2405 -> 2061[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2405[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2405 -> 2630[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2405 -> 2631[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2406 -> 2062[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2406[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2406 -> 2632[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2406 -> 2633[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2407 -> 2063[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2407[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2407 -> 2634[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2407 -> 2635[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2408 -> 2064[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2408[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2408 -> 2636[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2408 -> 2637[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2409 -> 2065[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2409[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2409 -> 2638[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2409 -> 2639[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2410 -> 2066[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2410[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2410 -> 2640[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2410 -> 2641[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2411 -> 2067[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2411[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2411 -> 2642[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2411 -> 2643[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2412 -> 2068[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2412[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2412 -> 2644[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2412 -> 2645[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2413 -> 2069[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2413[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2413 -> 2646[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2413 -> 2647[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2414 -> 2070[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2414[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2414 -> 2648[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2414 -> 2649[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2415 -> 2071[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2415[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2415 -> 2650[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2415 -> 2651[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2416 -> 2072[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2416[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2416 -> 2652[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2416 -> 2653[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2417 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2417[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2417 -> 2654[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2417 -> 2655[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2418[label="False && xuu139",fontsize=16,color="black",shape="box"];2418 -> 2656[label="",style="solid", color="black", weight=3]; 32.13/13.18 2419[label="True && xuu139",fontsize=16,color="black",shape="box"];2419 -> 2657[label="",style="solid", color="black", weight=3]; 32.13/13.18 2420[label="xuu3110002 == xuu6002",fontsize=16,color="blue",shape="box"];4315[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4315[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4315 -> 2658[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4316[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4316[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4316 -> 2659[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4317[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4317[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4317 -> 2660[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4318[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4318[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4318 -> 2661[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4319[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4319[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4319 -> 2662[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4320[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4320[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4320 -> 2663[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4321[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4321[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4321 -> 2664[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4322[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4322[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4322 -> 2665[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4323[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4323[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4323 -> 2666[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4324[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4324[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4324 -> 2667[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4325[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4325[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4325 -> 2668[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4326[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4326[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4326 -> 2669[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4327[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4327[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4327 -> 2670[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4328[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4328[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4328 -> 2671[label="",style="solid", color="blue", weight=3]; 32.13/13.18 2421[label="xuu3110001 == xuu6001",fontsize=16,color="blue",shape="box"];4329[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 4329[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4329 -> 2672[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4330[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 4330[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4330 -> 2673[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4331[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 4331[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4331 -> 2674[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4332[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 4332[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4332 -> 2675[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4333[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 4333[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4333 -> 2676[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4334[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 4334[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4334 -> 2677[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4335[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 4335[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4335 -> 2678[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4336[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 4336[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4336 -> 2679[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4337[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 4337[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4337 -> 2680[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4338[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 4338[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4338 -> 2681[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4339[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 4339[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4339 -> 2682[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4340[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 4340[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4340 -> 2683[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4341[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 4341[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4341 -> 2684[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4342[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 4342[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4342 -> 2685[label="",style="solid", color="blue", weight=3]; 32.13/13.18 2422 -> 2060[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2422[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2422 -> 2686[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2422 -> 2687[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2423 -> 2061[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2423[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2423 -> 2688[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2423 -> 2689[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2424 -> 2062[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2424[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2424 -> 2690[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2424 -> 2691[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2425 -> 2063[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2425[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2425 -> 2692[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2425 -> 2693[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2426 -> 2064[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2426[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2426 -> 2694[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2426 -> 2695[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2427 -> 2065[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2427[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2427 -> 2696[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2427 -> 2697[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2428 -> 2066[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2428[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2428 -> 2698[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2428 -> 2699[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2429 -> 2067[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2429[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2429 -> 2700[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2429 -> 2701[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2430 -> 2068[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2430[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2430 -> 2702[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2430 -> 2703[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2431 -> 2069[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2431[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2431 -> 2704[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2431 -> 2705[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2432 -> 2070[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2432[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2432 -> 2706[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2432 -> 2707[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2433 -> 2071[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2433[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2433 -> 2708[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2433 -> 2709[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2434 -> 2072[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2434[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2434 -> 2710[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2434 -> 2711[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2435 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2435[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2435 -> 2712[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2435 -> 2713[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2436 -> 617[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2436[label="xuu3110000 * xuu6001",fontsize=16,color="magenta"];2437 -> 617[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2437[label="xuu3110001 * xuu6000",fontsize=16,color="magenta"];2437 -> 2714[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2437 -> 2715[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2438[label="primEqInt (Pos (Succ xuu31100000)) (Pos (Succ xuu60000))",fontsize=16,color="black",shape="box"];2438 -> 2716[label="",style="solid", color="black", weight=3]; 32.13/13.18 2439[label="primEqInt (Pos (Succ xuu31100000)) (Pos Zero)",fontsize=16,color="black",shape="box"];2439 -> 2717[label="",style="solid", color="black", weight=3]; 32.13/13.18 2440[label="False",fontsize=16,color="green",shape="box"];2441[label="primEqInt (Pos Zero) (Pos (Succ xuu60000))",fontsize=16,color="black",shape="box"];2441 -> 2718[label="",style="solid", color="black", weight=3]; 32.13/13.18 2442[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2442 -> 2719[label="",style="solid", color="black", weight=3]; 32.13/13.18 2443[label="primEqInt (Pos Zero) (Neg (Succ xuu60000))",fontsize=16,color="black",shape="box"];2443 -> 2720[label="",style="solid", color="black", weight=3]; 32.13/13.18 2444[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2444 -> 2721[label="",style="solid", color="black", weight=3]; 32.13/13.18 2445[label="False",fontsize=16,color="green",shape="box"];2446[label="primEqInt (Neg (Succ xuu31100000)) (Neg (Succ xuu60000))",fontsize=16,color="black",shape="box"];2446 -> 2722[label="",style="solid", color="black", weight=3]; 32.13/13.18 2447[label="primEqInt (Neg (Succ xuu31100000)) (Neg Zero)",fontsize=16,color="black",shape="box"];2447 -> 2723[label="",style="solid", color="black", weight=3]; 32.13/13.18 2448[label="primEqInt (Neg Zero) (Pos (Succ xuu60000))",fontsize=16,color="black",shape="box"];2448 -> 2724[label="",style="solid", color="black", weight=3]; 32.13/13.18 2449[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2449 -> 2725[label="",style="solid", color="black", weight=3]; 32.13/13.18 2450[label="primEqInt (Neg Zero) (Neg (Succ xuu60000))",fontsize=16,color="black",shape="box"];2450 -> 2726[label="",style="solid", color="black", weight=3]; 32.13/13.18 2451[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2451 -> 2727[label="",style="solid", color="black", weight=3]; 32.13/13.18 2452[label="xuu3110000",fontsize=16,color="green",shape="box"];2453[label="xuu6000",fontsize=16,color="green",shape="box"];2454[label="xuu3110000",fontsize=16,color="green",shape="box"];2455[label="xuu6000",fontsize=16,color="green",shape="box"];2456[label="xuu3110000",fontsize=16,color="green",shape="box"];2457[label="xuu6000",fontsize=16,color="green",shape="box"];2458[label="xuu3110000",fontsize=16,color="green",shape="box"];2459[label="xuu6000",fontsize=16,color="green",shape="box"];2460[label="xuu3110000",fontsize=16,color="green",shape="box"];2461[label="xuu6000",fontsize=16,color="green",shape="box"];2462[label="xuu3110000",fontsize=16,color="green",shape="box"];2463[label="xuu6000",fontsize=16,color="green",shape="box"];2464[label="xuu3110000",fontsize=16,color="green",shape="box"];2465[label="xuu6000",fontsize=16,color="green",shape="box"];2466[label="xuu3110000",fontsize=16,color="green",shape="box"];2467[label="xuu6000",fontsize=16,color="green",shape="box"];2468[label="xuu3110000",fontsize=16,color="green",shape="box"];2469[label="xuu6000",fontsize=16,color="green",shape="box"];2470[label="xuu3110000",fontsize=16,color="green",shape="box"];2471[label="xuu6000",fontsize=16,color="green",shape="box"];2472[label="xuu3110000",fontsize=16,color="green",shape="box"];2473[label="xuu6000",fontsize=16,color="green",shape="box"];2474[label="xuu3110000",fontsize=16,color="green",shape="box"];2475[label="xuu6000",fontsize=16,color="green",shape="box"];2476[label="xuu3110000",fontsize=16,color="green",shape="box"];2477[label="xuu6000",fontsize=16,color="green",shape="box"];2478[label="xuu3110000",fontsize=16,color="green",shape="box"];2479[label="xuu6000",fontsize=16,color="green",shape="box"];2480[label="xuu3110000",fontsize=16,color="green",shape="box"];2481[label="xuu6000",fontsize=16,color="green",shape="box"];2482[label="xuu3110000",fontsize=16,color="green",shape="box"];2483[label="xuu6000",fontsize=16,color="green",shape="box"];2484[label="xuu3110000",fontsize=16,color="green",shape="box"];2485[label="xuu6000",fontsize=16,color="green",shape="box"];2486[label="xuu3110000",fontsize=16,color="green",shape="box"];2487[label="xuu6000",fontsize=16,color="green",shape="box"];2488[label="xuu3110000",fontsize=16,color="green",shape="box"];2489[label="xuu6000",fontsize=16,color="green",shape="box"];2490[label="xuu3110000",fontsize=16,color="green",shape="box"];2491[label="xuu6000",fontsize=16,color="green",shape="box"];2492[label="xuu3110000",fontsize=16,color="green",shape="box"];2493[label="xuu6000",fontsize=16,color="green",shape="box"];2494[label="xuu3110000",fontsize=16,color="green",shape="box"];2495[label="xuu6000",fontsize=16,color="green",shape="box"];2496[label="xuu3110000",fontsize=16,color="green",shape="box"];2497[label="xuu6000",fontsize=16,color="green",shape="box"];2498[label="xuu3110000",fontsize=16,color="green",shape="box"];2499[label="xuu6000",fontsize=16,color="green",shape="box"];2500[label="xuu3110000",fontsize=16,color="green",shape="box"];2501[label="xuu6000",fontsize=16,color="green",shape="box"];2502[label="xuu3110000",fontsize=16,color="green",shape="box"];2503[label="xuu6000",fontsize=16,color="green",shape="box"];2504[label="xuu3110000",fontsize=16,color="green",shape="box"];2505[label="xuu6000",fontsize=16,color="green",shape="box"];2506[label="xuu3110000",fontsize=16,color="green",shape="box"];2507[label="xuu6000",fontsize=16,color="green",shape="box"];2508 -> 617[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2508[label="xuu3110000 * xuu6001",fontsize=16,color="magenta"];2508 -> 2728[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2508 -> 2729[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2509 -> 617[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2509[label="xuu3110001 * xuu6000",fontsize=16,color="magenta"];2509 -> 2730[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2509 -> 2731[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2510 -> 2065[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2510[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2510 -> 2732[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2510 -> 2733[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2511 -> 2071[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2511[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2511 -> 2734[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2511 -> 2735[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2512 -> 2065[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2512[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2512 -> 2736[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2512 -> 2737[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2513 -> 2071[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2513[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2513 -> 2738[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2513 -> 2739[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2514[label="xuu3110001",fontsize=16,color="green",shape="box"];2515[label="xuu6001",fontsize=16,color="green",shape="box"];2516 -> 2060[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2516[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2516 -> 2740[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2516 -> 2741[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2517 -> 2061[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2517[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2517 -> 2742[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2517 -> 2743[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2518 -> 2062[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2518[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2518 -> 2744[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2518 -> 2745[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2519 -> 2063[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2519[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2519 -> 2746[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2519 -> 2747[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2520 -> 2064[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2520[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2520 -> 2748[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2520 -> 2749[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2521 -> 2065[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2521[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2521 -> 2750[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2521 -> 2751[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2522 -> 2066[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2522[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2522 -> 2752[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2522 -> 2753[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2523 -> 2067[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2523[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2523 -> 2754[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2523 -> 2755[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2524 -> 2068[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2524[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2524 -> 2756[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2524 -> 2757[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2525 -> 2069[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2525[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2525 -> 2758[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2525 -> 2759[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2526 -> 2070[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2526[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2526 -> 2760[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2526 -> 2761[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2527 -> 2071[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2527[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2527 -> 2762[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2527 -> 2763[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2528 -> 2072[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2528[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2528 -> 2764[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2528 -> 2765[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2529 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2529[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2529 -> 2766[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2529 -> 2767[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2530[label="xuu3110000",fontsize=16,color="green",shape="box"];2531[label="xuu6000",fontsize=16,color="green",shape="box"];2532[label="xuu3110000",fontsize=16,color="green",shape="box"];2533[label="xuu6000",fontsize=16,color="green",shape="box"];2534[label="xuu3110000",fontsize=16,color="green",shape="box"];2535[label="xuu6000",fontsize=16,color="green",shape="box"];2536[label="xuu3110000",fontsize=16,color="green",shape="box"];2537[label="xuu6000",fontsize=16,color="green",shape="box"];2538[label="xuu3110000",fontsize=16,color="green",shape="box"];2539[label="xuu6000",fontsize=16,color="green",shape="box"];2540[label="xuu3110000",fontsize=16,color="green",shape="box"];2541[label="xuu6000",fontsize=16,color="green",shape="box"];2542[label="xuu3110000",fontsize=16,color="green",shape="box"];2543[label="xuu6000",fontsize=16,color="green",shape="box"];2544[label="xuu3110000",fontsize=16,color="green",shape="box"];2545[label="xuu6000",fontsize=16,color="green",shape="box"];2546[label="xuu3110000",fontsize=16,color="green",shape="box"];2547[label="xuu6000",fontsize=16,color="green",shape="box"];2548[label="xuu3110000",fontsize=16,color="green",shape="box"];2549[label="xuu6000",fontsize=16,color="green",shape="box"];2550[label="xuu3110000",fontsize=16,color="green",shape="box"];2551[label="xuu6000",fontsize=16,color="green",shape="box"];2552[label="xuu3110000",fontsize=16,color="green",shape="box"];2553[label="xuu6000",fontsize=16,color="green",shape="box"];2554[label="xuu3110000",fontsize=16,color="green",shape="box"];2555[label="xuu6000",fontsize=16,color="green",shape="box"];2556[label="xuu3110000",fontsize=16,color="green",shape="box"];2557[label="xuu6000",fontsize=16,color="green",shape="box"];2051[label="Just xuu22",fontsize=16,color="green",shape="box"];2052[label="Just xuu22 == Just xuu17",fontsize=16,color="black",shape="box"];2052 -> 2077[label="",style="solid", color="black", weight=3]; 32.13/13.18 2053[label="Just xuu17",fontsize=16,color="green",shape="box"];762 -> 516[label="",style="dashed", color="red", weight=0]; 32.13/13.18 762[label="FiniteMap.addListToFM0 xuu18 xuu23",fontsize=16,color="magenta"];762 -> 992[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 762 -> 993[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2074[label="True",fontsize=16,color="green",shape="box"];767[label="xuu31101",fontsize=16,color="green",shape="box"];2558[label="compare0 (Just xuu3300) Nothing True",fontsize=16,color="black",shape="box"];2558 -> 2768[label="",style="solid", color="black", weight=3]; 32.13/13.18 2559[label="xuu3300 <= xuu3400",fontsize=16,color="burlywood",shape="triangle"];4343[label="xuu3300/Left xuu33000",fontsize=10,color="white",style="solid",shape="box"];2559 -> 4343[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4343 -> 2769[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4344[label="xuu3300/Right xuu33000",fontsize=10,color="white",style="solid",shape="box"];2559 -> 4344[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4344 -> 2770[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2560[label="xuu3300 <= xuu3400",fontsize=16,color="black",shape="triangle"];2560 -> 2771[label="",style="solid", color="black", weight=3]; 32.13/13.18 2561[label="xuu3300 <= xuu3400",fontsize=16,color="burlywood",shape="triangle"];4345[label="xuu3300/(xuu33000,xuu33001,xuu33002)",fontsize=10,color="white",style="solid",shape="box"];2561 -> 4345[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4345 -> 2772[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2562[label="xuu3300 <= xuu3400",fontsize=16,color="black",shape="triangle"];2562 -> 2773[label="",style="solid", color="black", weight=3]; 32.13/13.18 2563[label="xuu3300 <= xuu3400",fontsize=16,color="black",shape="triangle"];2563 -> 2774[label="",style="solid", color="black", weight=3]; 32.13/13.18 2564[label="xuu3300 <= xuu3400",fontsize=16,color="black",shape="triangle"];2564 -> 2775[label="",style="solid", color="black", weight=3]; 32.13/13.18 2565[label="xuu3300 <= xuu3400",fontsize=16,color="burlywood",shape="triangle"];4346[label="xuu3300/LT",fontsize=10,color="white",style="solid",shape="box"];2565 -> 4346[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4346 -> 2776[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4347[label="xuu3300/EQ",fontsize=10,color="white",style="solid",shape="box"];2565 -> 4347[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4347 -> 2777[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4348[label="xuu3300/GT",fontsize=10,color="white",style="solid",shape="box"];2565 -> 4348[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4348 -> 2778[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2566[label="xuu3300 <= xuu3400",fontsize=16,color="black",shape="triangle"];2566 -> 2779[label="",style="solid", color="black", weight=3]; 32.13/13.18 2567[label="xuu3300 <= xuu3400",fontsize=16,color="burlywood",shape="triangle"];4349[label="xuu3300/Nothing",fontsize=10,color="white",style="solid",shape="box"];2567 -> 4349[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4349 -> 2780[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4350[label="xuu3300/Just xuu33000",fontsize=10,color="white",style="solid",shape="box"];2567 -> 4350[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4350 -> 2781[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2568[label="xuu3300 <= xuu3400",fontsize=16,color="burlywood",shape="triangle"];4351[label="xuu3300/(xuu33000,xuu33001)",fontsize=10,color="white",style="solid",shape="box"];2568 -> 4351[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4351 -> 2782[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2569[label="xuu3300 <= xuu3400",fontsize=16,color="black",shape="triangle"];2569 -> 2783[label="",style="solid", color="black", weight=3]; 32.13/13.18 2570[label="xuu3300 <= xuu3400",fontsize=16,color="burlywood",shape="triangle"];4352[label="xuu3300/False",fontsize=10,color="white",style="solid",shape="box"];2570 -> 4352[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4352 -> 2784[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4353[label="xuu3300/True",fontsize=10,color="white",style="solid",shape="box"];2570 -> 4353[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4353 -> 2785[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2571[label="xuu3300 <= xuu3400",fontsize=16,color="black",shape="triangle"];2571 -> 2786[label="",style="solid", color="black", weight=3]; 32.13/13.18 2572[label="xuu3300 <= xuu3400",fontsize=16,color="black",shape="triangle"];2572 -> 2787[label="",style="solid", color="black", weight=3]; 32.13/13.18 2573[label="compare1 (Just xuu132) (Just xuu133) False",fontsize=16,color="black",shape="box"];2573 -> 2788[label="",style="solid", color="black", weight=3]; 32.13/13.18 2574[label="compare1 (Just xuu132) (Just xuu133) True",fontsize=16,color="black",shape="box"];2574 -> 2789[label="",style="solid", color="black", weight=3]; 32.13/13.18 2075[label="False",fontsize=16,color="green",shape="box"];770[label="primCmpInt (FiniteMap.mkBalBranch6Size_l (Just xuu600) xuu61 xuu28 xuu64 + FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];770 -> 996[label="",style="solid", color="black", weight=3]; 32.13/13.18 998 -> 1515[label="",style="dashed", color="red", weight=0]; 32.13/13.18 998[label="FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Just xuu600) xuu61 xuu28 xuu64",fontsize=16,color="magenta"];998 -> 1516[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 998 -> 1517[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 997[label="FiniteMap.mkBalBranch6MkBalBranch4 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 xuu67",fontsize=16,color="burlywood",shape="triangle"];4354[label="xuu67/False",fontsize=10,color="white",style="solid",shape="box"];997 -> 4354[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4354 -> 1009[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4355[label="xuu67/True",fontsize=10,color="white",style="solid",shape="box"];997 -> 4355[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4355 -> 1010[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 3833[label="xuu61",fontsize=16,color="green",shape="box"];3834[label="xuu64",fontsize=16,color="green",shape="box"];3835[label="Zero",fontsize=16,color="green",shape="box"];3836[label="Just xuu600",fontsize=16,color="green",shape="box"];3837[label="xuu28",fontsize=16,color="green",shape="box"];3832[label="FiniteMap.mkBranch (Pos (Succ xuu208)) xuu209 xuu210 xuu211 xuu212",fontsize=16,color="black",shape="triangle"];3832 -> 3963[label="",style="solid", color="black", weight=3]; 32.13/13.18 2076[label="False",fontsize=16,color="green",shape="box"];775[label="primCmpInt (FiniteMap.mkBalBranch6Size_l Nothing xuu61 xuu36 xuu64 + FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];775 -> 1026[label="",style="solid", color="black", weight=3]; 32.13/13.18 1028 -> 1515[label="",style="dashed", color="red", weight=0]; 32.13/13.18 1028[label="FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l Nothing xuu61 xuu36 xuu64",fontsize=16,color="magenta"];1028 -> 1518[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 1028 -> 1519[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 1027[label="FiniteMap.mkBalBranch6MkBalBranch4 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 xuu70",fontsize=16,color="burlywood",shape="triangle"];4356[label="xuu70/False",fontsize=10,color="white",style="solid",shape="box"];1027 -> 4356[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4356 -> 1033[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4357[label="xuu70/True",fontsize=10,color="white",style="solid",shape="box"];1027 -> 4357[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4357 -> 1034[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 3838[label="xuu61",fontsize=16,color="green",shape="box"];3839[label="xuu64",fontsize=16,color="green",shape="box"];3840[label="Zero",fontsize=16,color="green",shape="box"];3841[label="Nothing",fontsize=16,color="green",shape="box"];3842[label="xuu36",fontsize=16,color="green",shape="box"];2575[label="primEqNat (Succ xuu31100000) (Succ xuu60000)",fontsize=16,color="black",shape="box"];2575 -> 2790[label="",style="solid", color="black", weight=3]; 32.13/13.18 2576[label="primEqNat (Succ xuu31100000) Zero",fontsize=16,color="black",shape="box"];2576 -> 2791[label="",style="solid", color="black", weight=3]; 32.13/13.18 2577[label="primEqNat Zero (Succ xuu60000)",fontsize=16,color="black",shape="box"];2577 -> 2792[label="",style="solid", color="black", weight=3]; 32.13/13.18 2578[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2578 -> 2793[label="",style="solid", color="black", weight=3]; 32.13/13.18 2600[label="xuu3110001",fontsize=16,color="green",shape="box"];2601[label="xuu6001",fontsize=16,color="green",shape="box"];2602[label="xuu3110001",fontsize=16,color="green",shape="box"];2603[label="xuu6001",fontsize=16,color="green",shape="box"];2604[label="xuu3110001",fontsize=16,color="green",shape="box"];2605[label="xuu6001",fontsize=16,color="green",shape="box"];2606[label="xuu3110001",fontsize=16,color="green",shape="box"];2607[label="xuu6001",fontsize=16,color="green",shape="box"];2608[label="xuu3110001",fontsize=16,color="green",shape="box"];2609[label="xuu6001",fontsize=16,color="green",shape="box"];2610[label="xuu3110001",fontsize=16,color="green",shape="box"];2611[label="xuu6001",fontsize=16,color="green",shape="box"];2612[label="xuu3110001",fontsize=16,color="green",shape="box"];2613[label="xuu6001",fontsize=16,color="green",shape="box"];2614[label="xuu3110001",fontsize=16,color="green",shape="box"];2615[label="xuu6001",fontsize=16,color="green",shape="box"];2616[label="xuu3110001",fontsize=16,color="green",shape="box"];2617[label="xuu6001",fontsize=16,color="green",shape="box"];2618[label="xuu3110001",fontsize=16,color="green",shape="box"];2619[label="xuu6001",fontsize=16,color="green",shape="box"];2620[label="xuu3110001",fontsize=16,color="green",shape="box"];2621[label="xuu6001",fontsize=16,color="green",shape="box"];2622[label="xuu3110001",fontsize=16,color="green",shape="box"];2623[label="xuu6001",fontsize=16,color="green",shape="box"];2624[label="xuu3110001",fontsize=16,color="green",shape="box"];2625[label="xuu6001",fontsize=16,color="green",shape="box"];2626[label="xuu3110001",fontsize=16,color="green",shape="box"];2627[label="xuu6001",fontsize=16,color="green",shape="box"];2628[label="xuu3110000",fontsize=16,color="green",shape="box"];2629[label="xuu6000",fontsize=16,color="green",shape="box"];2630[label="xuu3110000",fontsize=16,color="green",shape="box"];2631[label="xuu6000",fontsize=16,color="green",shape="box"];2632[label="xuu3110000",fontsize=16,color="green",shape="box"];2633[label="xuu6000",fontsize=16,color="green",shape="box"];2634[label="xuu3110000",fontsize=16,color="green",shape="box"];2635[label="xuu6000",fontsize=16,color="green",shape="box"];2636[label="xuu3110000",fontsize=16,color="green",shape="box"];2637[label="xuu6000",fontsize=16,color="green",shape="box"];2638[label="xuu3110000",fontsize=16,color="green",shape="box"];2639[label="xuu6000",fontsize=16,color="green",shape="box"];2640[label="xuu3110000",fontsize=16,color="green",shape="box"];2641[label="xuu6000",fontsize=16,color="green",shape="box"];2642[label="xuu3110000",fontsize=16,color="green",shape="box"];2643[label="xuu6000",fontsize=16,color="green",shape="box"];2644[label="xuu3110000",fontsize=16,color="green",shape="box"];2645[label="xuu6000",fontsize=16,color="green",shape="box"];2646[label="xuu3110000",fontsize=16,color="green",shape="box"];2647[label="xuu6000",fontsize=16,color="green",shape="box"];2648[label="xuu3110000",fontsize=16,color="green",shape="box"];2649[label="xuu6000",fontsize=16,color="green",shape="box"];2650[label="xuu3110000",fontsize=16,color="green",shape="box"];2651[label="xuu6000",fontsize=16,color="green",shape="box"];2652[label="xuu3110000",fontsize=16,color="green",shape="box"];2653[label="xuu6000",fontsize=16,color="green",shape="box"];2654[label="xuu3110000",fontsize=16,color="green",shape="box"];2655[label="xuu6000",fontsize=16,color="green",shape="box"];2656[label="False",fontsize=16,color="green",shape="box"];2657[label="xuu139",fontsize=16,color="green",shape="box"];2658 -> 2060[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2658[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2658 -> 2808[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2658 -> 2809[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2659 -> 2061[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2659[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2659 -> 2810[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2659 -> 2811[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2660 -> 2062[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2660[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2660 -> 2812[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2660 -> 2813[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2661 -> 2063[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2661[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2661 -> 2814[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2661 -> 2815[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2662 -> 2064[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2662[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2662 -> 2816[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2662 -> 2817[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2663 -> 2065[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2663[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2663 -> 2818[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2663 -> 2819[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2664 -> 2066[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2664[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2664 -> 2820[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2664 -> 2821[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2665 -> 2067[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2665[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2665 -> 2822[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2665 -> 2823[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2666 -> 2068[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2666[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2666 -> 2824[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2666 -> 2825[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2667 -> 2069[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2667[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2667 -> 2826[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2667 -> 2827[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2668 -> 2070[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2668[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2668 -> 2828[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2668 -> 2829[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2669 -> 2071[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2669[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2669 -> 2830[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2669 -> 2831[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2670 -> 2072[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2670[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2670 -> 2832[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2670 -> 2833[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2671 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2671[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2671 -> 2834[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2671 -> 2835[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2672 -> 2060[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2672[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2672 -> 2836[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2672 -> 2837[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2673 -> 2061[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2673[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2673 -> 2838[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2673 -> 2839[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2674 -> 2062[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2674[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2674 -> 2840[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2674 -> 2841[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2675 -> 2063[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2675[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2675 -> 2842[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2675 -> 2843[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2676 -> 2064[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2676[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2676 -> 2844[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2676 -> 2845[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2677 -> 2065[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2677[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2677 -> 2846[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2677 -> 2847[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2678 -> 2066[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2678[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2678 -> 2848[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2678 -> 2849[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2679 -> 2067[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2679[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2679 -> 2850[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2679 -> 2851[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2680 -> 2068[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2680[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2680 -> 2852[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2680 -> 2853[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2681 -> 2069[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2681[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2681 -> 2854[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2681 -> 2855[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2682 -> 2070[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2682[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2682 -> 2856[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2682 -> 2857[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2683 -> 2071[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2683[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2683 -> 2858[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2683 -> 2859[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2684 -> 2072[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2684[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2684 -> 2860[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2684 -> 2861[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2685 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2685[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2685 -> 2862[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2685 -> 2863[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2686[label="xuu3110000",fontsize=16,color="green",shape="box"];2687[label="xuu6000",fontsize=16,color="green",shape="box"];2688[label="xuu3110000",fontsize=16,color="green",shape="box"];2689[label="xuu6000",fontsize=16,color="green",shape="box"];2690[label="xuu3110000",fontsize=16,color="green",shape="box"];2691[label="xuu6000",fontsize=16,color="green",shape="box"];2692[label="xuu3110000",fontsize=16,color="green",shape="box"];2693[label="xuu6000",fontsize=16,color="green",shape="box"];2694[label="xuu3110000",fontsize=16,color="green",shape="box"];2695[label="xuu6000",fontsize=16,color="green",shape="box"];2696[label="xuu3110000",fontsize=16,color="green",shape="box"];2697[label="xuu6000",fontsize=16,color="green",shape="box"];2698[label="xuu3110000",fontsize=16,color="green",shape="box"];2699[label="xuu6000",fontsize=16,color="green",shape="box"];2700[label="xuu3110000",fontsize=16,color="green",shape="box"];2701[label="xuu6000",fontsize=16,color="green",shape="box"];2702[label="xuu3110000",fontsize=16,color="green",shape="box"];2703[label="xuu6000",fontsize=16,color="green",shape="box"];2704[label="xuu3110000",fontsize=16,color="green",shape="box"];2705[label="xuu6000",fontsize=16,color="green",shape="box"];2706[label="xuu3110000",fontsize=16,color="green",shape="box"];2707[label="xuu6000",fontsize=16,color="green",shape="box"];2708[label="xuu3110000",fontsize=16,color="green",shape="box"];2709[label="xuu6000",fontsize=16,color="green",shape="box"];2710[label="xuu3110000",fontsize=16,color="green",shape="box"];2711[label="xuu6000",fontsize=16,color="green",shape="box"];2712[label="xuu3110000",fontsize=16,color="green",shape="box"];2713[label="xuu6000",fontsize=16,color="green",shape="box"];617[label="xuu3110000 * xuu6001",fontsize=16,color="black",shape="triangle"];617 -> 903[label="",style="solid", color="black", weight=3]; 32.13/13.18 2714[label="xuu3110001",fontsize=16,color="green",shape="box"];2715[label="xuu6000",fontsize=16,color="green",shape="box"];2716 -> 2278[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2716[label="primEqNat xuu31100000 xuu60000",fontsize=16,color="magenta"];2716 -> 2864[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2716 -> 2865[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2717[label="False",fontsize=16,color="green",shape="box"];2718[label="False",fontsize=16,color="green",shape="box"];2719[label="True",fontsize=16,color="green",shape="box"];2720[label="False",fontsize=16,color="green",shape="box"];2721[label="True",fontsize=16,color="green",shape="box"];2722 -> 2278[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2722[label="primEqNat xuu31100000 xuu60000",fontsize=16,color="magenta"];2722 -> 2866[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2722 -> 2867[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2723[label="False",fontsize=16,color="green",shape="box"];2724[label="False",fontsize=16,color="green",shape="box"];2725[label="True",fontsize=16,color="green",shape="box"];2726[label="False",fontsize=16,color="green",shape="box"];2727[label="True",fontsize=16,color="green",shape="box"];2728[label="xuu3110000",fontsize=16,color="green",shape="box"];2729[label="xuu6001",fontsize=16,color="green",shape="box"];2730[label="xuu3110001",fontsize=16,color="green",shape="box"];2731[label="xuu6000",fontsize=16,color="green",shape="box"];2732[label="xuu3110001",fontsize=16,color="green",shape="box"];2733[label="xuu6001",fontsize=16,color="green",shape="box"];2734[label="xuu3110001",fontsize=16,color="green",shape="box"];2735[label="xuu6001",fontsize=16,color="green",shape="box"];2736[label="xuu3110000",fontsize=16,color="green",shape="box"];2737[label="xuu6000",fontsize=16,color="green",shape="box"];2738[label="xuu3110000",fontsize=16,color="green",shape="box"];2739[label="xuu6000",fontsize=16,color="green",shape="box"];2740[label="xuu3110000",fontsize=16,color="green",shape="box"];2741[label="xuu6000",fontsize=16,color="green",shape="box"];2742[label="xuu3110000",fontsize=16,color="green",shape="box"];2743[label="xuu6000",fontsize=16,color="green",shape="box"];2744[label="xuu3110000",fontsize=16,color="green",shape="box"];2745[label="xuu6000",fontsize=16,color="green",shape="box"];2746[label="xuu3110000",fontsize=16,color="green",shape="box"];2747[label="xuu6000",fontsize=16,color="green",shape="box"];2748[label="xuu3110000",fontsize=16,color="green",shape="box"];2749[label="xuu6000",fontsize=16,color="green",shape="box"];2750[label="xuu3110000",fontsize=16,color="green",shape="box"];2751[label="xuu6000",fontsize=16,color="green",shape="box"];2752[label="xuu3110000",fontsize=16,color="green",shape="box"];2753[label="xuu6000",fontsize=16,color="green",shape="box"];2754[label="xuu3110000",fontsize=16,color="green",shape="box"];2755[label="xuu6000",fontsize=16,color="green",shape="box"];2756[label="xuu3110000",fontsize=16,color="green",shape="box"];2757[label="xuu6000",fontsize=16,color="green",shape="box"];2758[label="xuu3110000",fontsize=16,color="green",shape="box"];2759[label="xuu6000",fontsize=16,color="green",shape="box"];2760[label="xuu3110000",fontsize=16,color="green",shape="box"];2761[label="xuu6000",fontsize=16,color="green",shape="box"];2762[label="xuu3110000",fontsize=16,color="green",shape="box"];2763[label="xuu6000",fontsize=16,color="green",shape="box"];2764[label="xuu3110000",fontsize=16,color="green",shape="box"];2765[label="xuu6000",fontsize=16,color="green",shape="box"];2766[label="xuu3110000",fontsize=16,color="green",shape="box"];2767[label="xuu6000",fontsize=16,color="green",shape="box"];2077[label="xuu22 == xuu17",fontsize=16,color="blue",shape="box"];4358[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4358[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4358 -> 2099[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4359[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4359[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4359 -> 2100[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4360[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4360[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4360 -> 2101[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4361[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4361[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4361 -> 2102[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4362[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4362[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4362 -> 2103[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4363[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4363[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4363 -> 2104[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4364[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4364[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4364 -> 2105[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4365[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4365[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4365 -> 2106[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4366[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4366[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4366 -> 2107[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4367[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4367[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4367 -> 2108[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4368[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4368[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4368 -> 2109[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4369[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4369[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4369 -> 2110[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4370[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4370[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4370 -> 2111[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4371[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4371[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4371 -> 2112[label="",style="solid", color="blue", weight=3]; 32.13/13.18 992[label="xuu18",fontsize=16,color="green",shape="box"];993[label="xuu23",fontsize=16,color="green",shape="box"];2768[label="GT",fontsize=16,color="green",shape="box"];2769[label="Left xuu33000 <= xuu3400",fontsize=16,color="burlywood",shape="box"];4372[label="xuu3400/Left xuu34000",fontsize=10,color="white",style="solid",shape="box"];2769 -> 4372[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4372 -> 2868[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4373[label="xuu3400/Right xuu34000",fontsize=10,color="white",style="solid",shape="box"];2769 -> 4373[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4373 -> 2869[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2770[label="Right xuu33000 <= xuu3400",fontsize=16,color="burlywood",shape="box"];4374[label="xuu3400/Left xuu34000",fontsize=10,color="white",style="solid",shape="box"];2770 -> 4374[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4374 -> 2870[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4375[label="xuu3400/Right xuu34000",fontsize=10,color="white",style="solid",shape="box"];2770 -> 4375[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4375 -> 2871[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2771 -> 2872[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2771[label="compare xuu3300 xuu3400 /= GT",fontsize=16,color="magenta"];2771 -> 2873[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2772[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"];2772 -> 4376[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4376 -> 2881[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2773 -> 2872[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2773[label="compare xuu3300 xuu3400 /= GT",fontsize=16,color="magenta"];2773 -> 2874[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2774 -> 2872[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2774[label="compare xuu3300 xuu3400 /= GT",fontsize=16,color="magenta"];2774 -> 2875[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2775 -> 2872[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2775[label="compare xuu3300 xuu3400 /= GT",fontsize=16,color="magenta"];2775 -> 2876[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2776[label="LT <= xuu3400",fontsize=16,color="burlywood",shape="box"];4377[label="xuu3400/LT",fontsize=10,color="white",style="solid",shape="box"];2776 -> 4377[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4377 -> 2882[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4378[label="xuu3400/EQ",fontsize=10,color="white",style="solid",shape="box"];2776 -> 4378[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4378 -> 2883[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4379[label="xuu3400/GT",fontsize=10,color="white",style="solid",shape="box"];2776 -> 4379[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4379 -> 2884[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2777[label="EQ <= xuu3400",fontsize=16,color="burlywood",shape="box"];4380[label="xuu3400/LT",fontsize=10,color="white",style="solid",shape="box"];2777 -> 4380[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4380 -> 2885[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4381[label="xuu3400/EQ",fontsize=10,color="white",style="solid",shape="box"];2777 -> 4381[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4381 -> 2886[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4382[label="xuu3400/GT",fontsize=10,color="white",style="solid",shape="box"];2777 -> 4382[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4382 -> 2887[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2778[label="GT <= xuu3400",fontsize=16,color="burlywood",shape="box"];4383[label="xuu3400/LT",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4383[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4383 -> 2888[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4384[label="xuu3400/EQ",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4384[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4384 -> 2889[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4385[label="xuu3400/GT",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4385[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4385 -> 2890[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2779 -> 2872[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2779[label="compare xuu3300 xuu3400 /= GT",fontsize=16,color="magenta"];2779 -> 2877[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2780[label="Nothing <= xuu3400",fontsize=16,color="burlywood",shape="box"];4386[label="xuu3400/Nothing",fontsize=10,color="white",style="solid",shape="box"];2780 -> 4386[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4386 -> 2891[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4387[label="xuu3400/Just xuu34000",fontsize=10,color="white",style="solid",shape="box"];2780 -> 4387[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4387 -> 2892[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2781[label="Just xuu33000 <= xuu3400",fontsize=16,color="burlywood",shape="box"];4388[label="xuu3400/Nothing",fontsize=10,color="white",style="solid",shape="box"];2781 -> 4388[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4388 -> 2893[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4389[label="xuu3400/Just xuu34000",fontsize=10,color="white",style="solid",shape="box"];2781 -> 4389[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4389 -> 2894[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2782[label="(xuu33000,xuu33001) <= xuu3400",fontsize=16,color="burlywood",shape="box"];4390[label="xuu3400/(xuu34000,xuu34001)",fontsize=10,color="white",style="solid",shape="box"];2782 -> 4390[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4390 -> 2895[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2783 -> 2872[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2783[label="compare xuu3300 xuu3400 /= GT",fontsize=16,color="magenta"];2783 -> 2878[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2784[label="False <= xuu3400",fontsize=16,color="burlywood",shape="box"];4391[label="xuu3400/False",fontsize=10,color="white",style="solid",shape="box"];2784 -> 4391[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4391 -> 2896[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4392[label="xuu3400/True",fontsize=10,color="white",style="solid",shape="box"];2784 -> 4392[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4392 -> 2897[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2785[label="True <= xuu3400",fontsize=16,color="burlywood",shape="box"];4393[label="xuu3400/False",fontsize=10,color="white",style="solid",shape="box"];2785 -> 4393[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4393 -> 2898[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4394[label="xuu3400/True",fontsize=10,color="white",style="solid",shape="box"];2785 -> 4394[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4394 -> 2899[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2786 -> 2872[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2786[label="compare xuu3300 xuu3400 /= GT",fontsize=16,color="magenta"];2786 -> 2879[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2787 -> 2872[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2787[label="compare xuu3300 xuu3400 /= GT",fontsize=16,color="magenta"];2787 -> 2880[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2788[label="compare0 (Just xuu132) (Just xuu133) otherwise",fontsize=16,color="black",shape="box"];2788 -> 2900[label="",style="solid", color="black", weight=3]; 32.13/13.18 2789[label="LT",fontsize=16,color="green",shape="box"];996[label="primCmpInt (primPlusInt (FiniteMap.mkBalBranch6Size_l (Just xuu600) xuu61 xuu28 xuu64) (FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];996 -> 1132[label="",style="solid", color="black", weight=3]; 32.13/13.18 1516[label="FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64",fontsize=16,color="black",shape="triangle"];1516 -> 1526[label="",style="solid", color="black", weight=3]; 32.13/13.18 1517 -> 617[label="",style="dashed", color="red", weight=0]; 32.13/13.18 1517[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Just xuu600) xuu61 xuu28 xuu64",fontsize=16,color="magenta"];1517 -> 1527[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 1517 -> 1528[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 1515[label="xuu91 > xuu90",fontsize=16,color="black",shape="triangle"];1515 -> 1529[label="",style="solid", color="black", weight=3]; 32.13/13.18 1009[label="FiniteMap.mkBalBranch6MkBalBranch4 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 False",fontsize=16,color="black",shape="box"];1009 -> 1136[label="",style="solid", color="black", weight=3]; 32.13/13.18 1010[label="FiniteMap.mkBalBranch6MkBalBranch4 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 True",fontsize=16,color="black",shape="box"];1010 -> 1137[label="",style="solid", color="black", weight=3]; 32.13/13.18 3963[label="FiniteMap.mkBranchResult xuu209 xuu210 xuu212 xuu211",fontsize=16,color="black",shape="box"];3963 -> 4034[label="",style="solid", color="black", weight=3]; 32.13/13.18 1026[label="primCmpInt (primPlusInt (FiniteMap.mkBalBranch6Size_l Nothing xuu61 xuu36 xuu64) (FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1026 -> 1167[label="",style="solid", color="black", weight=3]; 32.13/13.18 1518[label="FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64",fontsize=16,color="black",shape="triangle"];1518 -> 1530[label="",style="solid", color="black", weight=3]; 32.13/13.18 1519 -> 617[label="",style="dashed", color="red", weight=0]; 32.13/13.18 1519[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l Nothing xuu61 xuu36 xuu64",fontsize=16,color="magenta"];1519 -> 1531[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 1519 -> 1532[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 1033[label="FiniteMap.mkBalBranch6MkBalBranch4 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 False",fontsize=16,color="black",shape="box"];1033 -> 1171[label="",style="solid", color="black", weight=3]; 32.13/13.18 1034[label="FiniteMap.mkBalBranch6MkBalBranch4 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 True",fontsize=16,color="black",shape="box"];1034 -> 1172[label="",style="solid", color="black", weight=3]; 32.13/13.18 2790 -> 2278[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2790[label="primEqNat xuu31100000 xuu60000",fontsize=16,color="magenta"];2790 -> 2901[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2790 -> 2902[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2791[label="False",fontsize=16,color="green",shape="box"];2792[label="False",fontsize=16,color="green",shape="box"];2793[label="True",fontsize=16,color="green",shape="box"];2808[label="xuu3110002",fontsize=16,color="green",shape="box"];2809[label="xuu6002",fontsize=16,color="green",shape="box"];2810[label="xuu3110002",fontsize=16,color="green",shape="box"];2811[label="xuu6002",fontsize=16,color="green",shape="box"];2812[label="xuu3110002",fontsize=16,color="green",shape="box"];2813[label="xuu6002",fontsize=16,color="green",shape="box"];2814[label="xuu3110002",fontsize=16,color="green",shape="box"];2815[label="xuu6002",fontsize=16,color="green",shape="box"];2816[label="xuu3110002",fontsize=16,color="green",shape="box"];2817[label="xuu6002",fontsize=16,color="green",shape="box"];2818[label="xuu3110002",fontsize=16,color="green",shape="box"];2819[label="xuu6002",fontsize=16,color="green",shape="box"];2820[label="xuu3110002",fontsize=16,color="green",shape="box"];2821[label="xuu6002",fontsize=16,color="green",shape="box"];2822[label="xuu3110002",fontsize=16,color="green",shape="box"];2823[label="xuu6002",fontsize=16,color="green",shape="box"];2824[label="xuu3110002",fontsize=16,color="green",shape="box"];2825[label="xuu6002",fontsize=16,color="green",shape="box"];2826[label="xuu3110002",fontsize=16,color="green",shape="box"];2827[label="xuu6002",fontsize=16,color="green",shape="box"];2828[label="xuu3110002",fontsize=16,color="green",shape="box"];2829[label="xuu6002",fontsize=16,color="green",shape="box"];2830[label="xuu3110002",fontsize=16,color="green",shape="box"];2831[label="xuu6002",fontsize=16,color="green",shape="box"];2832[label="xuu3110002",fontsize=16,color="green",shape="box"];2833[label="xuu6002",fontsize=16,color="green",shape="box"];2834[label="xuu3110002",fontsize=16,color="green",shape="box"];2835[label="xuu6002",fontsize=16,color="green",shape="box"];2836[label="xuu3110001",fontsize=16,color="green",shape="box"];2837[label="xuu6001",fontsize=16,color="green",shape="box"];2838[label="xuu3110001",fontsize=16,color="green",shape="box"];2839[label="xuu6001",fontsize=16,color="green",shape="box"];2840[label="xuu3110001",fontsize=16,color="green",shape="box"];2841[label="xuu6001",fontsize=16,color="green",shape="box"];2842[label="xuu3110001",fontsize=16,color="green",shape="box"];2843[label="xuu6001",fontsize=16,color="green",shape="box"];2844[label="xuu3110001",fontsize=16,color="green",shape="box"];2845[label="xuu6001",fontsize=16,color="green",shape="box"];2846[label="xuu3110001",fontsize=16,color="green",shape="box"];2847[label="xuu6001",fontsize=16,color="green",shape="box"];2848[label="xuu3110001",fontsize=16,color="green",shape="box"];2849[label="xuu6001",fontsize=16,color="green",shape="box"];2850[label="xuu3110001",fontsize=16,color="green",shape="box"];2851[label="xuu6001",fontsize=16,color="green",shape="box"];2852[label="xuu3110001",fontsize=16,color="green",shape="box"];2853[label="xuu6001",fontsize=16,color="green",shape="box"];2854[label="xuu3110001",fontsize=16,color="green",shape="box"];2855[label="xuu6001",fontsize=16,color="green",shape="box"];2856[label="xuu3110001",fontsize=16,color="green",shape="box"];2857[label="xuu6001",fontsize=16,color="green",shape="box"];2858[label="xuu3110001",fontsize=16,color="green",shape="box"];2859[label="xuu6001",fontsize=16,color="green",shape="box"];2860[label="xuu3110001",fontsize=16,color="green",shape="box"];2861[label="xuu6001",fontsize=16,color="green",shape="box"];2862[label="xuu3110001",fontsize=16,color="green",shape="box"];2863[label="xuu6001",fontsize=16,color="green",shape="box"];903[label="primMulInt xuu3110000 xuu6001",fontsize=16,color="burlywood",shape="triangle"];4395[label="xuu3110000/Pos xuu31100000",fontsize=10,color="white",style="solid",shape="box"];903 -> 4395[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4395 -> 1096[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4396[label="xuu3110000/Neg xuu31100000",fontsize=10,color="white",style="solid",shape="box"];903 -> 4396[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4396 -> 1097[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2864[label="xuu31100000",fontsize=16,color="green",shape="box"];2865[label="xuu60000",fontsize=16,color="green",shape="box"];2866[label="xuu31100000",fontsize=16,color="green",shape="box"];2867[label="xuu60000",fontsize=16,color="green",shape="box"];2099 -> 2060[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2099[label="xuu22 == xuu17",fontsize=16,color="magenta"];2099 -> 2153[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2099 -> 2154[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2100 -> 2061[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2100[label="xuu22 == xuu17",fontsize=16,color="magenta"];2100 -> 2155[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2100 -> 2156[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2101 -> 2062[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2101[label="xuu22 == xuu17",fontsize=16,color="magenta"];2101 -> 2157[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2101 -> 2158[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2102 -> 2063[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2102[label="xuu22 == xuu17",fontsize=16,color="magenta"];2102 -> 2159[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2102 -> 2160[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2103 -> 2064[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2103[label="xuu22 == xuu17",fontsize=16,color="magenta"];2103 -> 2161[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2103 -> 2162[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2104 -> 2065[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2104[label="xuu22 == xuu17",fontsize=16,color="magenta"];2104 -> 2163[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2104 -> 2164[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2105 -> 2066[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2105[label="xuu22 == xuu17",fontsize=16,color="magenta"];2105 -> 2165[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2105 -> 2166[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2106 -> 2067[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2106[label="xuu22 == xuu17",fontsize=16,color="magenta"];2106 -> 2167[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2106 -> 2168[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2107 -> 2068[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2107[label="xuu22 == xuu17",fontsize=16,color="magenta"];2107 -> 2169[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2107 -> 2170[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2108 -> 2069[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2108[label="xuu22 == xuu17",fontsize=16,color="magenta"];2108 -> 2171[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2108 -> 2172[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2109 -> 2070[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2109[label="xuu22 == xuu17",fontsize=16,color="magenta"];2109 -> 2173[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2109 -> 2174[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2110 -> 2071[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2110[label="xuu22 == xuu17",fontsize=16,color="magenta"];2110 -> 2175[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2110 -> 2176[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2111 -> 2072[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2111[label="xuu22 == xuu17",fontsize=16,color="magenta"];2111 -> 2177[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2111 -> 2178[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2112 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2112[label="xuu22 == xuu17",fontsize=16,color="magenta"];2112 -> 2179[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2112 -> 2180[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2868[label="Left xuu33000 <= Left xuu34000",fontsize=16,color="black",shape="box"];2868 -> 2903[label="",style="solid", color="black", weight=3]; 32.13/13.18 2869[label="Left xuu33000 <= Right xuu34000",fontsize=16,color="black",shape="box"];2869 -> 2904[label="",style="solid", color="black", weight=3]; 32.13/13.18 2870[label="Right xuu33000 <= Left xuu34000",fontsize=16,color="black",shape="box"];2870 -> 2905[label="",style="solid", color="black", weight=3]; 32.13/13.18 2871[label="Right xuu33000 <= Right xuu34000",fontsize=16,color="black",shape="box"];2871 -> 2906[label="",style="solid", color="black", weight=3]; 32.13/13.18 2873 -> 1208[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2873[label="compare xuu3300 xuu3400",fontsize=16,color="magenta"];2873 -> 2907[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2873 -> 2908[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2872[label="xuu149 /= GT",fontsize=16,color="black",shape="triangle"];2872 -> 2909[label="",style="solid", color="black", weight=3]; 32.13/13.18 2881[label="(xuu33000,xuu33001,xuu33002) <= (xuu34000,xuu34001,xuu34002)",fontsize=16,color="black",shape="box"];2881 -> 2931[label="",style="solid", color="black", weight=3]; 32.13/13.18 2874[label="compare xuu3300 xuu3400",fontsize=16,color="black",shape="triangle"];2874 -> 2910[label="",style="solid", color="black", weight=3]; 32.13/13.18 2875[label="compare xuu3300 xuu3400",fontsize=16,color="burlywood",shape="triangle"];4397[label="xuu3300/Integer xuu33000",fontsize=10,color="white",style="solid",shape="box"];2875 -> 4397[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4397 -> 2911[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2876[label="compare xuu3300 xuu3400",fontsize=16,color="black",shape="triangle"];2876 -> 2912[label="",style="solid", color="black", weight=3]; 32.13/13.18 2882[label="LT <= LT",fontsize=16,color="black",shape="box"];2882 -> 2932[label="",style="solid", color="black", weight=3]; 32.13/13.18 2883[label="LT <= EQ",fontsize=16,color="black",shape="box"];2883 -> 2933[label="",style="solid", color="black", weight=3]; 32.13/13.18 2884[label="LT <= GT",fontsize=16,color="black",shape="box"];2884 -> 2934[label="",style="solid", color="black", weight=3]; 32.13/13.18 2885[label="EQ <= LT",fontsize=16,color="black",shape="box"];2885 -> 2935[label="",style="solid", color="black", weight=3]; 32.13/13.18 2886[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2886 -> 2936[label="",style="solid", color="black", weight=3]; 32.13/13.18 2887[label="EQ <= GT",fontsize=16,color="black",shape="box"];2887 -> 2937[label="",style="solid", color="black", weight=3]; 32.13/13.18 2888[label="GT <= LT",fontsize=16,color="black",shape="box"];2888 -> 2938[label="",style="solid", color="black", weight=3]; 32.13/13.18 2889[label="GT <= EQ",fontsize=16,color="black",shape="box"];2889 -> 2939[label="",style="solid", color="black", weight=3]; 32.13/13.18 2890[label="GT <= GT",fontsize=16,color="black",shape="box"];2890 -> 2940[label="",style="solid", color="black", weight=3]; 32.13/13.18 2877[label="compare xuu3300 xuu3400",fontsize=16,color="burlywood",shape="triangle"];4398[label="xuu3300/xuu33000 : xuu33001",fontsize=10,color="white",style="solid",shape="box"];2877 -> 4398[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4398 -> 2913[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4399[label="xuu3300/[]",fontsize=10,color="white",style="solid",shape="box"];2877 -> 4399[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4399 -> 2914[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2891[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2891 -> 2941[label="",style="solid", color="black", weight=3]; 32.13/13.18 2892[label="Nothing <= Just xuu34000",fontsize=16,color="black",shape="box"];2892 -> 2942[label="",style="solid", color="black", weight=3]; 32.13/13.18 2893[label="Just xuu33000 <= Nothing",fontsize=16,color="black",shape="box"];2893 -> 2943[label="",style="solid", color="black", weight=3]; 32.13/13.18 2894[label="Just xuu33000 <= Just xuu34000",fontsize=16,color="black",shape="box"];2894 -> 2944[label="",style="solid", color="black", weight=3]; 32.13/13.18 2895[label="(xuu33000,xuu33001) <= (xuu34000,xuu34001)",fontsize=16,color="black",shape="box"];2895 -> 2945[label="",style="solid", color="black", weight=3]; 32.13/13.18 2878[label="compare xuu3300 xuu3400",fontsize=16,color="burlywood",shape="triangle"];4400[label="xuu3300/xuu33000 :% xuu33001",fontsize=10,color="white",style="solid",shape="box"];2878 -> 4400[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4400 -> 2915[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2896[label="False <= False",fontsize=16,color="black",shape="box"];2896 -> 2946[label="",style="solid", color="black", weight=3]; 32.13/13.18 2897[label="False <= True",fontsize=16,color="black",shape="box"];2897 -> 2947[label="",style="solid", color="black", weight=3]; 32.13/13.18 2898[label="True <= False",fontsize=16,color="black",shape="box"];2898 -> 2948[label="",style="solid", color="black", weight=3]; 32.13/13.18 2899[label="True <= True",fontsize=16,color="black",shape="box"];2899 -> 2949[label="",style="solid", color="black", weight=3]; 32.13/13.18 2879[label="compare xuu3300 xuu3400",fontsize=16,color="black",shape="triangle"];2879 -> 2916[label="",style="solid", color="black", weight=3]; 32.13/13.18 2880[label="compare xuu3300 xuu3400",fontsize=16,color="burlywood",shape="triangle"];4401[label="xuu3300/()",fontsize=10,color="white",style="solid",shape="box"];2880 -> 4401[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4401 -> 2917[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2900[label="compare0 (Just xuu132) (Just xuu133) True",fontsize=16,color="black",shape="box"];2900 -> 2950[label="",style="solid", color="black", weight=3]; 32.13/13.18 1132[label="primCmpInt (primPlusInt (FiniteMap.sizeFM xuu28) (FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64)) (Pos (Succ (Succ Zero)))",fontsize=16,color="burlywood",shape="box"];4402[label="xuu28/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1132 -> 4402[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4402 -> 1235[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4403[label="xuu28/FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284",fontsize=10,color="white",style="solid",shape="box"];1132 -> 4403[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4403 -> 1236[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 1526[label="FiniteMap.sizeFM xuu64",fontsize=16,color="burlywood",shape="triangle"];4404[label="xuu64/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1526 -> 4404[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4404 -> 1549[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4405[label="xuu64/FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644",fontsize=10,color="white",style="solid",shape="box"];1526 -> 4405[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4405 -> 1550[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 1527[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];1527 -> 1551[label="",style="solid", color="black", weight=3]; 32.13/13.18 1528 -> 1524[label="",style="dashed", color="red", weight=0]; 32.13/13.18 1528[label="FiniteMap.mkBalBranch6Size_l (Just xuu600) xuu61 xuu28 xuu64",fontsize=16,color="magenta"];1529 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.18 1529[label="compare xuu91 xuu90 == GT",fontsize=16,color="magenta"];1529 -> 1552[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 1529 -> 1553[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 1136 -> 1511[label="",style="dashed", color="red", weight=0]; 32.13/13.18 1136[label="FiniteMap.mkBalBranch6MkBalBranch3 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 (FiniteMap.mkBalBranch6Size_l (Just xuu600) xuu61 xuu28 xuu64 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64)",fontsize=16,color="magenta"];1136 -> 1512[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 1137[label="FiniteMap.mkBalBranch6MkBalBranch0 (Just xuu600) xuu61 xuu28 xuu64 xuu28 xuu64 xuu64",fontsize=16,color="burlywood",shape="box"];4406[label="xuu64/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1137 -> 4406[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4406 -> 1244[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4407[label="xuu64/FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644",fontsize=10,color="white",style="solid",shape="box"];1137 -> 4407[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4407 -> 1245[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4034[label="FiniteMap.Branch xuu209 xuu210 (FiniteMap.mkBranchUnbox xuu212 xuu209 xuu211 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu212 xuu209 xuu211 + FiniteMap.mkBranchRight_size xuu212 xuu209 xuu211)) xuu211 xuu212",fontsize=16,color="green",shape="box"];4034 -> 4040[label="",style="dashed", color="green", weight=3]; 32.13/13.18 1167[label="primCmpInt (primPlusInt (FiniteMap.sizeFM xuu36) (FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64)) (Pos (Succ (Succ Zero)))",fontsize=16,color="burlywood",shape="box"];4408[label="xuu36/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1167 -> 4408[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4408 -> 1247[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4409[label="xuu36/FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364",fontsize=10,color="white",style="solid",shape="box"];1167 -> 4409[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4409 -> 1248[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 1530 -> 1526[label="",style="dashed", color="red", weight=0]; 32.13/13.18 1530[label="FiniteMap.sizeFM xuu64",fontsize=16,color="magenta"];1531 -> 1527[label="",style="dashed", color="red", weight=0]; 32.13/13.18 1531[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1532[label="FiniteMap.mkBalBranch6Size_l Nothing xuu61 xuu36 xuu64",fontsize=16,color="black",shape="triangle"];1532 -> 1554[label="",style="solid", color="black", weight=3]; 32.13/13.18 1171 -> 1545[label="",style="dashed", color="red", weight=0]; 32.13/13.18 1171[label="FiniteMap.mkBalBranch6MkBalBranch3 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 (FiniteMap.mkBalBranch6Size_l Nothing xuu61 xuu36 xuu64 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64)",fontsize=16,color="magenta"];1171 -> 1546[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 1172[label="FiniteMap.mkBalBranch6MkBalBranch0 Nothing xuu61 xuu36 xuu64 xuu36 xuu64 xuu64",fontsize=16,color="burlywood",shape="box"];4410[label="xuu64/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4410[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4410 -> 1255[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4411[label="xuu64/FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4411[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4411 -> 1256[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2901[label="xuu31100000",fontsize=16,color="green",shape="box"];2902[label="xuu60000",fontsize=16,color="green",shape="box"];1096[label="primMulInt (Pos xuu31100000) xuu6001",fontsize=16,color="burlywood",shape="box"];4412[label="xuu6001/Pos xuu60010",fontsize=10,color="white",style="solid",shape="box"];1096 -> 4412[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4412 -> 1176[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4413[label="xuu6001/Neg xuu60010",fontsize=10,color="white",style="solid",shape="box"];1096 -> 4413[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4413 -> 1177[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 1097[label="primMulInt (Neg xuu31100000) xuu6001",fontsize=16,color="burlywood",shape="box"];4414[label="xuu6001/Pos xuu60010",fontsize=10,color="white",style="solid",shape="box"];1097 -> 4414[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4414 -> 1178[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4415[label="xuu6001/Neg xuu60010",fontsize=10,color="white",style="solid",shape="box"];1097 -> 4415[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4415 -> 1179[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2153[label="xuu22",fontsize=16,color="green",shape="box"];2154[label="xuu17",fontsize=16,color="green",shape="box"];2155[label="xuu22",fontsize=16,color="green",shape="box"];2156[label="xuu17",fontsize=16,color="green",shape="box"];2157[label="xuu22",fontsize=16,color="green",shape="box"];2158[label="xuu17",fontsize=16,color="green",shape="box"];2159[label="xuu22",fontsize=16,color="green",shape="box"];2160[label="xuu17",fontsize=16,color="green",shape="box"];2161[label="xuu22",fontsize=16,color="green",shape="box"];2162[label="xuu17",fontsize=16,color="green",shape="box"];2163[label="xuu22",fontsize=16,color="green",shape="box"];2164[label="xuu17",fontsize=16,color="green",shape="box"];2165[label="xuu22",fontsize=16,color="green",shape="box"];2166[label="xuu17",fontsize=16,color="green",shape="box"];2167[label="xuu22",fontsize=16,color="green",shape="box"];2168[label="xuu17",fontsize=16,color="green",shape="box"];2169[label="xuu22",fontsize=16,color="green",shape="box"];2170[label="xuu17",fontsize=16,color="green",shape="box"];2171[label="xuu22",fontsize=16,color="green",shape="box"];2172[label="xuu17",fontsize=16,color="green",shape="box"];2173[label="xuu22",fontsize=16,color="green",shape="box"];2174[label="xuu17",fontsize=16,color="green",shape="box"];2175[label="xuu22",fontsize=16,color="green",shape="box"];2176[label="xuu17",fontsize=16,color="green",shape="box"];2177[label="xuu22",fontsize=16,color="green",shape="box"];2178[label="xuu17",fontsize=16,color="green",shape="box"];2179[label="xuu22",fontsize=16,color="green",shape="box"];2180[label="xuu17",fontsize=16,color="green",shape="box"];2903[label="xuu33000 <= xuu34000",fontsize=16,color="blue",shape="box"];4416[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4416[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4416 -> 2951[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4417[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4417[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4417 -> 2952[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4418[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4418[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4418 -> 2953[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4419[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4419[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4419 -> 2954[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4420[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4420[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4420 -> 2955[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4421[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4421[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4421 -> 2956[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4422[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4422[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4422 -> 2957[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4423[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4423[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4423 -> 2958[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4424[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4424[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4424 -> 2959[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4425[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4425[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4425 -> 2960[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4426[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4426[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4426 -> 2961[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4427[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4427[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4427 -> 2962[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4428[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4428[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4428 -> 2963[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4429[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4429[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4429 -> 2964[label="",style="solid", color="blue", weight=3]; 32.13/13.18 2904[label="True",fontsize=16,color="green",shape="box"];2905[label="False",fontsize=16,color="green",shape="box"];2906[label="xuu33000 <= xuu34000",fontsize=16,color="blue",shape="box"];4430[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4430[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4430 -> 2965[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4431[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4431[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4431 -> 2966[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4432[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4432[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4432 -> 2967[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4433[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4433[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4433 -> 2968[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4434[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4434[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4434 -> 2969[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4435[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4435[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4435 -> 2970[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4436[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4436[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4436 -> 2971[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4437[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4437[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4437 -> 2972[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4438[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4438[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4438 -> 2973[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4439[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4439[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4439 -> 2974[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4440[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4440[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4440 -> 2975[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4441[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4441[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4441 -> 2976[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4442[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4442[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4442 -> 2977[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4443[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4443[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4443 -> 2978[label="",style="solid", color="blue", weight=3]; 32.13/13.18 2907[label="xuu3300",fontsize=16,color="green",shape="box"];2908[label="xuu3400",fontsize=16,color="green",shape="box"];1208[label="compare xuu33 xuu34",fontsize=16,color="black",shape="triangle"];1208 -> 1318[label="",style="solid", color="black", weight=3]; 32.13/13.18 2909 -> 2979[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2909[label="not (xuu149 == GT)",fontsize=16,color="magenta"];2909 -> 2980[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2931 -> 3072[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2931[label="xuu33000 < xuu34000 || xuu33000 == xuu34000 && (xuu33001 < xuu34001 || xuu33001 == xuu34001 && xuu33002 <= xuu34002)",fontsize=16,color="magenta"];2931 -> 3073[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2931 -> 3074[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2910[label="primCmpDouble xuu3300 xuu3400",fontsize=16,color="burlywood",shape="box"];4444[label="xuu3300/Double xuu33000 xuu33001",fontsize=10,color="white",style="solid",shape="box"];2910 -> 4444[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4444 -> 2986[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2911[label="compare (Integer xuu33000) xuu3400",fontsize=16,color="burlywood",shape="box"];4445[label="xuu3400/Integer xuu34000",fontsize=10,color="white",style="solid",shape="box"];2911 -> 4445[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4445 -> 2987[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2912[label="primCmpFloat xuu3300 xuu3400",fontsize=16,color="burlywood",shape="box"];4446[label="xuu3300/Float xuu33000 xuu33001",fontsize=10,color="white",style="solid",shape="box"];2912 -> 4446[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4446 -> 2988[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2932[label="True",fontsize=16,color="green",shape="box"];2933[label="True",fontsize=16,color="green",shape="box"];2934[label="True",fontsize=16,color="green",shape="box"];2935[label="False",fontsize=16,color="green",shape="box"];2936[label="True",fontsize=16,color="green",shape="box"];2937[label="True",fontsize=16,color="green",shape="box"];2938[label="False",fontsize=16,color="green",shape="box"];2939[label="False",fontsize=16,color="green",shape="box"];2940[label="True",fontsize=16,color="green",shape="box"];2913[label="compare (xuu33000 : xuu33001) xuu3400",fontsize=16,color="burlywood",shape="box"];4447[label="xuu3400/xuu34000 : xuu34001",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4447[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4447 -> 2989[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4448[label="xuu3400/[]",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4448[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4448 -> 2990[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2914[label="compare [] xuu3400",fontsize=16,color="burlywood",shape="box"];4449[label="xuu3400/xuu34000 : xuu34001",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4449[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4449 -> 2991[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4450[label="xuu3400/[]",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4450[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4450 -> 2992[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2941[label="True",fontsize=16,color="green",shape="box"];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"];4451[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4451[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4451 -> 2993[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4452[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4452[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4452 -> 2994[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4453[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4453[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4453 -> 2995[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4454[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4454[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4454 -> 2996[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4455[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4455[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4455 -> 2997[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4456[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4456[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4456 -> 2998[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4457[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4457[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4457 -> 2999[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4458[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4458[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4458 -> 3000[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4459[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4459[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4459 -> 3001[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4460[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4460[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4460 -> 3002[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4461[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4461[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4461 -> 3003[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4462[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4462[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4462 -> 3004[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4463[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4463[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4463 -> 3005[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4464[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4464[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4464 -> 3006[label="",style="solid", color="blue", weight=3]; 32.13/13.18 2945 -> 3072[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2945[label="xuu33000 < xuu34000 || xuu33000 == xuu34000 && xuu33001 <= xuu34001",fontsize=16,color="magenta"];2945 -> 3075[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2945 -> 3076[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2915[label="compare (xuu33000 :% xuu33001) xuu3400",fontsize=16,color="burlywood",shape="box"];4465[label="xuu3400/xuu34000 :% xuu34001",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4465[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4465 -> 3007[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2946[label="True",fontsize=16,color="green",shape="box"];2947[label="True",fontsize=16,color="green",shape="box"];2948[label="False",fontsize=16,color="green",shape="box"];2949[label="True",fontsize=16,color="green",shape="box"];2916[label="primCmpChar xuu3300 xuu3400",fontsize=16,color="burlywood",shape="box"];4466[label="xuu3300/Char xuu33000",fontsize=10,color="white",style="solid",shape="box"];2916 -> 4466[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4466 -> 3008[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2917[label="compare () xuu3400",fontsize=16,color="burlywood",shape="box"];4467[label="xuu3400/()",fontsize=10,color="white",style="solid",shape="box"];2917 -> 4467[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4467 -> 3009[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2950[label="GT",fontsize=16,color="green",shape="box"];1235[label="primCmpInt (primPlusInt (FiniteMap.sizeFM FiniteMap.EmptyFM) (FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 FiniteMap.EmptyFM xuu64)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1235 -> 1376[label="",style="solid", color="black", weight=3]; 32.13/13.18 1236[label="primCmpInt (primPlusInt (FiniteMap.sizeFM (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284)) (FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1236 -> 1377[label="",style="solid", color="black", weight=3]; 32.13/13.18 1549[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1549 -> 1717[label="",style="solid", color="black", weight=3]; 32.13/13.18 1550[label="FiniteMap.sizeFM (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];1550 -> 1718[label="",style="solid", color="black", weight=3]; 32.13/13.18 1551[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];1524[label="FiniteMap.mkBalBranch6Size_l (Just xuu600) xuu61 xuu28 xuu64",fontsize=16,color="black",shape="triangle"];1524 -> 1535[label="",style="solid", color="black", weight=3]; 32.13/13.18 1552 -> 1208[label="",style="dashed", color="red", weight=0]; 32.13/13.18 1552[label="compare xuu91 xuu90",fontsize=16,color="magenta"];1552 -> 1719[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 1552 -> 1720[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 1553[label="GT",fontsize=16,color="green",shape="box"];1512 -> 1515[label="",style="dashed", color="red", weight=0]; 32.13/13.18 1512[label="FiniteMap.mkBalBranch6Size_l (Just xuu600) xuu61 xuu28 xuu64 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64",fontsize=16,color="magenta"];1512 -> 1524[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 1512 -> 1525[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 1511[label="FiniteMap.mkBalBranch6MkBalBranch3 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 xuu88",fontsize=16,color="burlywood",shape="triangle"];4468[label="xuu88/False",fontsize=10,color="white",style="solid",shape="box"];1511 -> 4468[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4468 -> 1533[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4469[label="xuu88/True",fontsize=10,color="white",style="solid",shape="box"];1511 -> 4469[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4469 -> 1534[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 1244[label="FiniteMap.mkBalBranch6MkBalBranch0 (Just xuu600) xuu61 xuu28 FiniteMap.EmptyFM xuu28 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1244 -> 1385[label="",style="solid", color="black", weight=3]; 32.13/13.18 1245[label="FiniteMap.mkBalBranch6MkBalBranch0 (Just xuu600) xuu61 xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];1245 -> 1386[label="",style="solid", color="black", weight=3]; 32.13/13.18 4040[label="FiniteMap.mkBranchUnbox xuu212 xuu209 xuu211 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu212 xuu209 xuu211 + FiniteMap.mkBranchRight_size xuu212 xuu209 xuu211)",fontsize=16,color="black",shape="box"];4040 -> 4046[label="",style="solid", color="black", weight=3]; 32.13/13.18 1247[label="primCmpInt (primPlusInt (FiniteMap.sizeFM FiniteMap.EmptyFM) (FiniteMap.mkBalBranch6Size_r Nothing xuu61 FiniteMap.EmptyFM xuu64)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1247 -> 1388[label="",style="solid", color="black", weight=3]; 32.13/13.18 1248[label="primCmpInt (primPlusInt (FiniteMap.sizeFM (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364)) (FiniteMap.mkBalBranch6Size_r Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1248 -> 1389[label="",style="solid", color="black", weight=3]; 32.13/13.18 1554 -> 1526[label="",style="dashed", color="red", weight=0]; 32.13/13.18 1554[label="FiniteMap.sizeFM xuu36",fontsize=16,color="magenta"];1554 -> 1721[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 1546 -> 1515[label="",style="dashed", color="red", weight=0]; 32.13/13.18 1546[label="FiniteMap.mkBalBranch6Size_l Nothing xuu61 xuu36 xuu64 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64",fontsize=16,color="magenta"];1546 -> 1555[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 1546 -> 1556[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 1545[label="FiniteMap.mkBalBranch6MkBalBranch3 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 xuu94",fontsize=16,color="burlywood",shape="triangle"];4470[label="xuu94/False",fontsize=10,color="white",style="solid",shape="box"];1545 -> 4470[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4470 -> 1557[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4471[label="xuu94/True",fontsize=10,color="white",style="solid",shape="box"];1545 -> 4471[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4471 -> 1558[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 1255[label="FiniteMap.mkBalBranch6MkBalBranch0 Nothing xuu61 xuu36 FiniteMap.EmptyFM xuu36 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1255 -> 1396[label="",style="solid", color="black", weight=3]; 32.13/13.18 1256[label="FiniteMap.mkBalBranch6MkBalBranch0 Nothing xuu61 xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];1256 -> 1397[label="",style="solid", color="black", weight=3]; 32.13/13.18 1176[label="primMulInt (Pos xuu31100000) (Pos xuu60010)",fontsize=16,color="black",shape="box"];1176 -> 1258[label="",style="solid", color="black", weight=3]; 32.13/13.18 1177[label="primMulInt (Pos xuu31100000) (Neg xuu60010)",fontsize=16,color="black",shape="box"];1177 -> 1259[label="",style="solid", color="black", weight=3]; 32.13/13.18 1178[label="primMulInt (Neg xuu31100000) (Pos xuu60010)",fontsize=16,color="black",shape="box"];1178 -> 1260[label="",style="solid", color="black", weight=3]; 32.13/13.18 1179[label="primMulInt (Neg xuu31100000) (Neg xuu60010)",fontsize=16,color="black",shape="box"];1179 -> 1261[label="",style="solid", color="black", weight=3]; 32.13/13.18 2951 -> 2559[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2951[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2951 -> 3010[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2951 -> 3011[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2952 -> 2560[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2952[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2952 -> 3012[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2952 -> 3013[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2953 -> 2561[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2953[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2953 -> 3014[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2953 -> 3015[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2954 -> 2562[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2954[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2954 -> 3016[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2954 -> 3017[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2955 -> 2563[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2955[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2955 -> 3018[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2955 -> 3019[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2956 -> 2564[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2956[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2956 -> 3020[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2956 -> 3021[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2957 -> 2565[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2957[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2957 -> 3022[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2957 -> 3023[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2958 -> 2566[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2958[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2958 -> 3024[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2958 -> 3025[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2959 -> 2567[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2959[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2959 -> 3026[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2959 -> 3027[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2960 -> 2568[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2960[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2960 -> 3028[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2960 -> 3029[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2961 -> 2569[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2961[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2961 -> 3030[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2961 -> 3031[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2962 -> 2570[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2962[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2962 -> 3032[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2962 -> 3033[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2963 -> 2571[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2963[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2963 -> 3034[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2963 -> 3035[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2964 -> 2572[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2964[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2964 -> 3036[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2964 -> 3037[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2965 -> 2559[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2965[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2965 -> 3038[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2965 -> 3039[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2966 -> 2560[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2966[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2966 -> 3040[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2966 -> 3041[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2967 -> 2561[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2967[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2967 -> 3042[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2967 -> 3043[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2968 -> 2562[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2968[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2968 -> 3044[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2968 -> 3045[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2969 -> 2563[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2969[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2969 -> 3046[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2969 -> 3047[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2970 -> 2564[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2970[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2970 -> 3048[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2970 -> 3049[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2971 -> 2565[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2971[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2971 -> 3050[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2971 -> 3051[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2972 -> 2566[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2972[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2972 -> 3052[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2972 -> 3053[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2973 -> 2567[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2973[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2973 -> 3054[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2973 -> 3055[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2974 -> 2568[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2974[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2974 -> 3056[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2974 -> 3057[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2975 -> 2569[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2975[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2975 -> 3058[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2975 -> 3059[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2976 -> 2570[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2976[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2976 -> 3060[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2976 -> 3061[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2977 -> 2571[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2977[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2977 -> 3062[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2977 -> 3063[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2978 -> 2572[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2978[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2978 -> 3064[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2978 -> 3065[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 1318[label="primCmpInt xuu33 xuu34",fontsize=16,color="burlywood",shape="triangle"];4472[label="xuu33/Pos xuu330",fontsize=10,color="white",style="solid",shape="box"];1318 -> 4472[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4472 -> 1403[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4473[label="xuu33/Neg xuu330",fontsize=10,color="white",style="solid",shape="box"];1318 -> 4473[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4473 -> 1404[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2980 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2980[label="xuu149 == GT",fontsize=16,color="magenta"];2980 -> 3066[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2980 -> 3067[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2979[label="not xuu158",fontsize=16,color="burlywood",shape="triangle"];4474[label="xuu158/False",fontsize=10,color="white",style="solid",shape="box"];2979 -> 4474[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4474 -> 3068[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4475[label="xuu158/True",fontsize=10,color="white",style="solid",shape="box"];2979 -> 4475[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4475 -> 3069[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 3073 -> 2377[label="",style="dashed", color="red", weight=0]; 32.13/13.18 3073[label="xuu33000 == xuu34000 && (xuu33001 < xuu34001 || xuu33001 == xuu34001 && xuu33002 <= xuu34002)",fontsize=16,color="magenta"];3073 -> 3081[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 3073 -> 3082[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 3074[label="xuu33000 < xuu34000",fontsize=16,color="blue",shape="box"];4476[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3074 -> 4476[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4476 -> 3083[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4477[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3074 -> 4477[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4477 -> 3084[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4478[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3074 -> 4478[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4478 -> 3085[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4479[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3074 -> 4479[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4479 -> 3086[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4480[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3074 -> 4480[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4480 -> 3087[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4481[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3074 -> 4481[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4481 -> 3088[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4482[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3074 -> 4482[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4482 -> 3089[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4483[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3074 -> 4483[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4483 -> 3090[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4484[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3074 -> 4484[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4484 -> 3091[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4485[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3074 -> 4485[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4485 -> 3092[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4486[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3074 -> 4486[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4486 -> 3093[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4487[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3074 -> 4487[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4487 -> 3094[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4488[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3074 -> 4488[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4488 -> 3095[label="",style="solid", color="blue", weight=3]; 32.13/13.18 4489[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3074 -> 4489[label="",style="solid", color="blue", weight=9]; 32.13/13.18 4489 -> 3096[label="",style="solid", color="blue", weight=3]; 32.13/13.18 3072[label="xuu164 || xuu165",fontsize=16,color="burlywood",shape="triangle"];4490[label="xuu164/False",fontsize=10,color="white",style="solid",shape="box"];3072 -> 4490[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4490 -> 3097[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4491[label="xuu164/True",fontsize=10,color="white",style="solid",shape="box"];3072 -> 4491[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4491 -> 3098[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2986[label="primCmpDouble (Double xuu33000 xuu33001) xuu3400",fontsize=16,color="burlywood",shape="box"];4492[label="xuu33001/Pos xuu330010",fontsize=10,color="white",style="solid",shape="box"];2986 -> 4492[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4492 -> 3099[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4493[label="xuu33001/Neg xuu330010",fontsize=10,color="white",style="solid",shape="box"];2986 -> 4493[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4493 -> 3100[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2987[label="compare (Integer xuu33000) (Integer xuu34000)",fontsize=16,color="black",shape="box"];2987 -> 3101[label="",style="solid", color="black", weight=3]; 32.13/13.18 2988[label="primCmpFloat (Float xuu33000 xuu33001) xuu3400",fontsize=16,color="burlywood",shape="box"];4494[label="xuu33001/Pos xuu330010",fontsize=10,color="white",style="solid",shape="box"];2988 -> 4494[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4494 -> 3102[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 4495[label="xuu33001/Neg xuu330010",fontsize=10,color="white",style="solid",shape="box"];2988 -> 4495[label="",style="solid", color="burlywood", weight=9]; 32.13/13.18 4495 -> 3103[label="",style="solid", color="burlywood", weight=3]; 32.13/13.18 2989[label="compare (xuu33000 : xuu33001) (xuu34000 : xuu34001)",fontsize=16,color="black",shape="box"];2989 -> 3104[label="",style="solid", color="black", weight=3]; 32.13/13.18 2990[label="compare (xuu33000 : xuu33001) []",fontsize=16,color="black",shape="box"];2990 -> 3105[label="",style="solid", color="black", weight=3]; 32.13/13.18 2991[label="compare [] (xuu34000 : xuu34001)",fontsize=16,color="black",shape="box"];2991 -> 3106[label="",style="solid", color="black", weight=3]; 32.13/13.18 2992[label="compare [] []",fontsize=16,color="black",shape="box"];2992 -> 3107[label="",style="solid", color="black", weight=3]; 32.13/13.18 2993 -> 2559[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2993[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2993 -> 3108[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2993 -> 3109[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2994 -> 2560[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2994[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2994 -> 3110[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2994 -> 3111[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2995 -> 2561[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2995[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2995 -> 3112[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2995 -> 3113[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2996 -> 2562[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2996[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2996 -> 3114[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2996 -> 3115[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2997 -> 2563[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2997[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2997 -> 3116[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2997 -> 3117[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2998 -> 2564[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2998[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2998 -> 3118[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2998 -> 3119[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2999 -> 2565[label="",style="dashed", color="red", weight=0]; 32.13/13.18 2999[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2999 -> 3120[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 2999 -> 3121[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 3000 -> 2566[label="",style="dashed", color="red", weight=0]; 32.13/13.18 3000[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];3000 -> 3122[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 3000 -> 3123[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 3001 -> 2567[label="",style="dashed", color="red", weight=0]; 32.13/13.18 3001[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];3001 -> 3124[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 3001 -> 3125[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 3002 -> 2568[label="",style="dashed", color="red", weight=0]; 32.13/13.18 3002[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];3002 -> 3126[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 3002 -> 3127[label="",style="dashed", color="magenta", weight=3]; 32.13/13.18 3003 -> 2569[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3003[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];3003 -> 3128[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3003 -> 3129[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3004 -> 2570[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3004[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];3004 -> 3130[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3004 -> 3131[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3005 -> 2571[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3005[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];3005 -> 3132[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3005 -> 3133[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3006 -> 2572[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3006[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];3006 -> 3134[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3006 -> 3135[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3075 -> 2377[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3075[label="xuu33000 == xuu34000 && xuu33001 <= xuu34001",fontsize=16,color="magenta"];3075 -> 3136[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3075 -> 3137[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3076[label="xuu33000 < xuu34000",fontsize=16,color="blue",shape="box"];4496[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3076 -> 4496[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4496 -> 3138[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4497[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3076 -> 4497[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4497 -> 3139[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4498[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3076 -> 4498[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4498 -> 3140[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4499[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3076 -> 4499[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4499 -> 3141[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4500[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3076 -> 4500[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4500 -> 3142[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4501[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3076 -> 4501[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4501 -> 3143[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4502[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3076 -> 4502[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4502 -> 3144[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4503[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3076 -> 4503[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4503 -> 3145[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4504[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3076 -> 4504[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4504 -> 3146[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4505[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3076 -> 4505[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4505 -> 3147[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4506[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3076 -> 4506[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4506 -> 3148[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4507[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3076 -> 4507[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4507 -> 3149[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4508[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3076 -> 4508[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4508 -> 3150[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4509[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3076 -> 4509[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4509 -> 3151[label="",style="solid", color="blue", weight=3]; 32.13/13.19 3007[label="compare (xuu33000 :% xuu33001) (xuu34000 :% xuu34001)",fontsize=16,color="black",shape="box"];3007 -> 3152[label="",style="solid", color="black", weight=3]; 32.13/13.19 3008[label="primCmpChar (Char xuu33000) xuu3400",fontsize=16,color="burlywood",shape="box"];4510[label="xuu3400/Char xuu34000",fontsize=10,color="white",style="solid",shape="box"];3008 -> 4510[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4510 -> 3153[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 3009[label="compare () ()",fontsize=16,color="black",shape="box"];3009 -> 3154[label="",style="solid", color="black", weight=3]; 32.13/13.19 1376 -> 1318[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1376[label="primCmpInt (primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 FiniteMap.EmptyFM xuu64)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1376 -> 1504[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1376 -> 1505[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1377 -> 1318[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1377[label="primCmpInt (primPlusInt xuu282 (FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1377 -> 1506[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1377 -> 1507[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1717[label="Pos Zero",fontsize=16,color="green",shape="box"];1718[label="xuu642",fontsize=16,color="green",shape="box"];1535 -> 1526[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1535[label="FiniteMap.sizeFM xuu28",fontsize=16,color="magenta"];1535 -> 1722[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1719[label="xuu91",fontsize=16,color="green",shape="box"];1720[label="xuu90",fontsize=16,color="green",shape="box"];1525 -> 617[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1525[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64",fontsize=16,color="magenta"];1525 -> 1536[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1525 -> 1537[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1533[label="FiniteMap.mkBalBranch6MkBalBranch3 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 False",fontsize=16,color="black",shape="box"];1533 -> 1559[label="",style="solid", color="black", weight=3]; 32.13/13.19 1534[label="FiniteMap.mkBalBranch6MkBalBranch3 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 True",fontsize=16,color="black",shape="box"];1534 -> 1560[label="",style="solid", color="black", weight=3]; 32.13/13.19 1385[label="error []",fontsize=16,color="red",shape="box"];1386[label="FiniteMap.mkBalBranch6MkBalBranch02 (Just xuu600) xuu61 xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];1386 -> 1538[label="",style="solid", color="black", weight=3]; 32.13/13.19 4046[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu212 xuu209 xuu211 + FiniteMap.mkBranchRight_size xuu212 xuu209 xuu211",fontsize=16,color="black",shape="box"];4046 -> 4047[label="",style="solid", color="black", weight=3]; 32.13/13.19 1388 -> 1318[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1388[label="primCmpInt (primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r Nothing xuu61 FiniteMap.EmptyFM xuu64)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1388 -> 1540[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1388 -> 1541[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1389 -> 1318[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1389[label="primCmpInt (primPlusInt xuu362 (FiniteMap.mkBalBranch6Size_r Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1389 -> 1542[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1389 -> 1543[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1721[label="xuu36",fontsize=16,color="green",shape="box"];1555 -> 1532[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1555[label="FiniteMap.mkBalBranch6Size_l Nothing xuu61 xuu36 xuu64",fontsize=16,color="magenta"];1556 -> 617[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1556[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64",fontsize=16,color="magenta"];1556 -> 1723[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1556 -> 1724[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1557[label="FiniteMap.mkBalBranch6MkBalBranch3 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 False",fontsize=16,color="black",shape="box"];1557 -> 1725[label="",style="solid", color="black", weight=3]; 32.13/13.19 1558[label="FiniteMap.mkBalBranch6MkBalBranch3 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 True",fontsize=16,color="black",shape="box"];1558 -> 1726[label="",style="solid", color="black", weight=3]; 32.13/13.19 1396[label="error []",fontsize=16,color="red",shape="box"];1397[label="FiniteMap.mkBalBranch6MkBalBranch02 Nothing xuu61 xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];1397 -> 1561[label="",style="solid", color="black", weight=3]; 32.13/13.19 1258[label="Pos (primMulNat xuu31100000 xuu60010)",fontsize=16,color="green",shape="box"];1258 -> 1399[label="",style="dashed", color="green", weight=3]; 32.13/13.19 1259[label="Neg (primMulNat xuu31100000 xuu60010)",fontsize=16,color="green",shape="box"];1259 -> 1400[label="",style="dashed", color="green", weight=3]; 32.13/13.19 1260[label="Neg (primMulNat xuu31100000 xuu60010)",fontsize=16,color="green",shape="box"];1260 -> 1401[label="",style="dashed", color="green", weight=3]; 32.13/13.19 1261[label="Pos (primMulNat xuu31100000 xuu60010)",fontsize=16,color="green",shape="box"];1261 -> 1402[label="",style="dashed", color="green", weight=3]; 32.13/13.19 3010[label="xuu33000",fontsize=16,color="green",shape="box"];3011[label="xuu34000",fontsize=16,color="green",shape="box"];3012[label="xuu33000",fontsize=16,color="green",shape="box"];3013[label="xuu34000",fontsize=16,color="green",shape="box"];3014[label="xuu33000",fontsize=16,color="green",shape="box"];3015[label="xuu34000",fontsize=16,color="green",shape="box"];3016[label="xuu33000",fontsize=16,color="green",shape="box"];3017[label="xuu34000",fontsize=16,color="green",shape="box"];3018[label="xuu33000",fontsize=16,color="green",shape="box"];3019[label="xuu34000",fontsize=16,color="green",shape="box"];3020[label="xuu33000",fontsize=16,color="green",shape="box"];3021[label="xuu34000",fontsize=16,color="green",shape="box"];3022[label="xuu33000",fontsize=16,color="green",shape="box"];3023[label="xuu34000",fontsize=16,color="green",shape="box"];3024[label="xuu33000",fontsize=16,color="green",shape="box"];3025[label="xuu34000",fontsize=16,color="green",shape="box"];3026[label="xuu33000",fontsize=16,color="green",shape="box"];3027[label="xuu34000",fontsize=16,color="green",shape="box"];3028[label="xuu33000",fontsize=16,color="green",shape="box"];3029[label="xuu34000",fontsize=16,color="green",shape="box"];3030[label="xuu33000",fontsize=16,color="green",shape="box"];3031[label="xuu34000",fontsize=16,color="green",shape="box"];3032[label="xuu33000",fontsize=16,color="green",shape="box"];3033[label="xuu34000",fontsize=16,color="green",shape="box"];3034[label="xuu33000",fontsize=16,color="green",shape="box"];3035[label="xuu34000",fontsize=16,color="green",shape="box"];3036[label="xuu33000",fontsize=16,color="green",shape="box"];3037[label="xuu34000",fontsize=16,color="green",shape="box"];3038[label="xuu33000",fontsize=16,color="green",shape="box"];3039[label="xuu34000",fontsize=16,color="green",shape="box"];3040[label="xuu33000",fontsize=16,color="green",shape="box"];3041[label="xuu34000",fontsize=16,color="green",shape="box"];3042[label="xuu33000",fontsize=16,color="green",shape="box"];3043[label="xuu34000",fontsize=16,color="green",shape="box"];3044[label="xuu33000",fontsize=16,color="green",shape="box"];3045[label="xuu34000",fontsize=16,color="green",shape="box"];3046[label="xuu33000",fontsize=16,color="green",shape="box"];3047[label="xuu34000",fontsize=16,color="green",shape="box"];3048[label="xuu33000",fontsize=16,color="green",shape="box"];3049[label="xuu34000",fontsize=16,color="green",shape="box"];3050[label="xuu33000",fontsize=16,color="green",shape="box"];3051[label="xuu34000",fontsize=16,color="green",shape="box"];3052[label="xuu33000",fontsize=16,color="green",shape="box"];3053[label="xuu34000",fontsize=16,color="green",shape="box"];3054[label="xuu33000",fontsize=16,color="green",shape="box"];3055[label="xuu34000",fontsize=16,color="green",shape="box"];3056[label="xuu33000",fontsize=16,color="green",shape="box"];3057[label="xuu34000",fontsize=16,color="green",shape="box"];3058[label="xuu33000",fontsize=16,color="green",shape="box"];3059[label="xuu34000",fontsize=16,color="green",shape="box"];3060[label="xuu33000",fontsize=16,color="green",shape="box"];3061[label="xuu34000",fontsize=16,color="green",shape="box"];3062[label="xuu33000",fontsize=16,color="green",shape="box"];3063[label="xuu34000",fontsize=16,color="green",shape="box"];3064[label="xuu33000",fontsize=16,color="green",shape="box"];3065[label="xuu34000",fontsize=16,color="green",shape="box"];1403[label="primCmpInt (Pos xuu330) xuu34",fontsize=16,color="burlywood",shape="box"];4511[label="xuu330/Succ xuu3300",fontsize=10,color="white",style="solid",shape="box"];1403 -> 4511[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4511 -> 1569[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4512[label="xuu330/Zero",fontsize=10,color="white",style="solid",shape="box"];1403 -> 4512[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4512 -> 1570[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 1404[label="primCmpInt (Neg xuu330) xuu34",fontsize=16,color="burlywood",shape="box"];4513[label="xuu330/Succ xuu3300",fontsize=10,color="white",style="solid",shape="box"];1404 -> 4513[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4513 -> 1571[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4514[label="xuu330/Zero",fontsize=10,color="white",style="solid",shape="box"];1404 -> 4514[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4514 -> 1572[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 3066[label="xuu149",fontsize=16,color="green",shape="box"];3067[label="GT",fontsize=16,color="green",shape="box"];3068[label="not False",fontsize=16,color="black",shape="box"];3068 -> 3155[label="",style="solid", color="black", weight=3]; 32.13/13.19 3069[label="not True",fontsize=16,color="black",shape="box"];3069 -> 3156[label="",style="solid", color="black", weight=3]; 32.13/13.19 3081 -> 3072[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3081[label="xuu33001 < xuu34001 || xuu33001 == xuu34001 && xuu33002 <= xuu34002",fontsize=16,color="magenta"];3081 -> 3181[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3081 -> 3182[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3082[label="xuu33000 == xuu34000",fontsize=16,color="blue",shape="box"];4515[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4515[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4515 -> 3183[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4516[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4516[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4516 -> 3184[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4517[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4517[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4517 -> 3185[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4518[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4518[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4518 -> 3186[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4519[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4519[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4519 -> 3187[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4520[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4520[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4520 -> 3188[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4521[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4521[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4521 -> 3189[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4522[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4522[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4522 -> 3190[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4523[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4523[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4523 -> 3191[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4524[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4524[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4524 -> 3192[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4525[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4525[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4525 -> 3193[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4526[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4526[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4526 -> 3194[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4527[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4527[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4527 -> 3195[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4528[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4528[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4528 -> 3196[label="",style="solid", color="blue", weight=3]; 32.13/13.19 3083[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];3083 -> 3197[label="",style="solid", color="black", weight=3]; 32.13/13.19 3084 -> 1333[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3084[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3084 -> 3198[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3084 -> 3199[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3085[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];3085 -> 3200[label="",style="solid", color="black", weight=3]; 32.13/13.19 3086[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];3086 -> 3201[label="",style="solid", color="black", weight=3]; 32.13/13.19 3087[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];3087 -> 3202[label="",style="solid", color="black", weight=3]; 32.13/13.19 3088[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];3088 -> 3203[label="",style="solid", color="black", weight=3]; 32.13/13.19 3089[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];3089 -> 3204[label="",style="solid", color="black", weight=3]; 32.13/13.19 3090[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];3090 -> 3205[label="",style="solid", color="black", weight=3]; 32.13/13.19 3091[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];3091 -> 3206[label="",style="solid", color="black", weight=3]; 32.13/13.19 3092[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];3092 -> 3207[label="",style="solid", color="black", weight=3]; 32.13/13.19 3093[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];3093 -> 3208[label="",style="solid", color="black", weight=3]; 32.13/13.19 3094[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];3094 -> 3209[label="",style="solid", color="black", weight=3]; 32.13/13.19 3095[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];3095 -> 3210[label="",style="solid", color="black", weight=3]; 32.13/13.19 3096[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];3096 -> 3211[label="",style="solid", color="black", weight=3]; 32.13/13.19 3097[label="False || xuu165",fontsize=16,color="black",shape="box"];3097 -> 3212[label="",style="solid", color="black", weight=3]; 32.13/13.19 3098[label="True || xuu165",fontsize=16,color="black",shape="box"];3098 -> 3213[label="",style="solid", color="black", weight=3]; 32.13/13.19 3099[label="primCmpDouble (Double xuu33000 (Pos xuu330010)) xuu3400",fontsize=16,color="burlywood",shape="box"];4529[label="xuu3400/Double xuu34000 xuu34001",fontsize=10,color="white",style="solid",shape="box"];3099 -> 4529[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4529 -> 3214[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 3100[label="primCmpDouble (Double xuu33000 (Neg xuu330010)) xuu3400",fontsize=16,color="burlywood",shape="box"];4530[label="xuu3400/Double xuu34000 xuu34001",fontsize=10,color="white",style="solid",shape="box"];3100 -> 4530[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4530 -> 3215[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 3101 -> 1318[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3101[label="primCmpInt xuu33000 xuu34000",fontsize=16,color="magenta"];3101 -> 3216[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3101 -> 3217[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3102[label="primCmpFloat (Float xuu33000 (Pos xuu330010)) xuu3400",fontsize=16,color="burlywood",shape="box"];4531[label="xuu3400/Float xuu34000 xuu34001",fontsize=10,color="white",style="solid",shape="box"];3102 -> 4531[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4531 -> 3218[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 3103[label="primCmpFloat (Float xuu33000 (Neg xuu330010)) xuu3400",fontsize=16,color="burlywood",shape="box"];4532[label="xuu3400/Float xuu34000 xuu34001",fontsize=10,color="white",style="solid",shape="box"];3103 -> 4532[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4532 -> 3219[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 3104 -> 3220[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3104[label="primCompAux xuu33000 xuu34000 (compare xuu33001 xuu34001)",fontsize=16,color="magenta"];3104 -> 3221[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3105[label="GT",fontsize=16,color="green",shape="box"];3106[label="LT",fontsize=16,color="green",shape="box"];3107[label="EQ",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="xuu33001 <= xuu34001",fontsize=16,color="blue",shape="box"];4533[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3136 -> 4533[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4533 -> 3222[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4534[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3136 -> 4534[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4534 -> 3223[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4535[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3136 -> 4535[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4535 -> 3224[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4536[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3136 -> 4536[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4536 -> 3225[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4537[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3136 -> 4537[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4537 -> 3226[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4538[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3136 -> 4538[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4538 -> 3227[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4539[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3136 -> 4539[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4539 -> 3228[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4540[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3136 -> 4540[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4540 -> 3229[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4541[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3136 -> 4541[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4541 -> 3230[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4542[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3136 -> 4542[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4542 -> 3231[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4543[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3136 -> 4543[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4543 -> 3232[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4544[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3136 -> 4544[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4544 -> 3233[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4545[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3136 -> 4545[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4545 -> 3234[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4546[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3136 -> 4546[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4546 -> 3235[label="",style="solid", color="blue", weight=3]; 32.13/13.19 3137[label="xuu33000 == xuu34000",fontsize=16,color="blue",shape="box"];4547[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3137 -> 4547[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4547 -> 3236[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4548[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3137 -> 4548[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4548 -> 3237[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4549[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3137 -> 4549[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4549 -> 3238[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4550[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3137 -> 4550[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4550 -> 3239[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4551[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3137 -> 4551[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4551 -> 3240[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4552[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3137 -> 4552[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4552 -> 3241[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4553[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3137 -> 4553[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4553 -> 3242[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4554[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3137 -> 4554[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4554 -> 3243[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4555[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3137 -> 4555[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4555 -> 3244[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4556[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3137 -> 4556[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4556 -> 3245[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4557[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3137 -> 4557[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4557 -> 3246[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4558[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3137 -> 4558[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4558 -> 3247[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4559[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3137 -> 4559[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4559 -> 3248[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4560[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3137 -> 4560[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4560 -> 3249[label="",style="solid", color="blue", weight=3]; 32.13/13.19 3138 -> 3083[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3138[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3138 -> 3250[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3138 -> 3251[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3139 -> 1333[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3139[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3139 -> 3252[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3139 -> 3253[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3140 -> 3085[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3140[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3140 -> 3254[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3140 -> 3255[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3141 -> 3086[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3141[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3141 -> 3256[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3141 -> 3257[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3142 -> 3087[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3142[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3142 -> 3258[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3142 -> 3259[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3143 -> 3088[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3143[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3143 -> 3260[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3143 -> 3261[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3144 -> 3089[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3144[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3144 -> 3262[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3144 -> 3263[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3145 -> 3090[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3145[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3145 -> 3264[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3145 -> 3265[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3146 -> 3091[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3146[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3146 -> 3266[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3146 -> 3267[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3147 -> 3092[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3147[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3147 -> 3268[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3147 -> 3269[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3148 -> 3093[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3148[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3148 -> 3270[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3148 -> 3271[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3149 -> 3094[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3149[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3149 -> 3272[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3149 -> 3273[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3150 -> 3095[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3150[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3150 -> 3274[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3150 -> 3275[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3151 -> 3096[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3151[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3151 -> 3276[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3151 -> 3277[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3152[label="compare (xuu33000 * xuu34001) (xuu34000 * xuu33001)",fontsize=16,color="blue",shape="box"];4561[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3152 -> 4561[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4561 -> 3278[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4562[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3152 -> 4562[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4562 -> 3279[label="",style="solid", color="blue", weight=3]; 32.13/13.19 3153[label="primCmpChar (Char xuu33000) (Char xuu34000)",fontsize=16,color="black",shape="box"];3153 -> 3280[label="",style="solid", color="black", weight=3]; 32.13/13.19 3154[label="EQ",fontsize=16,color="green",shape="box"];1504 -> 1727[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1504[label="primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 FiniteMap.EmptyFM xuu64)",fontsize=16,color="magenta"];1504 -> 1732[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1504 -> 1733[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1505[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1506 -> 1727[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1506[label="primPlusInt xuu282 (FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64)",fontsize=16,color="magenta"];1506 -> 1734[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1507[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1722[label="xuu28",fontsize=16,color="green",shape="box"];1536 -> 1527[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1536[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1537 -> 1516[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1537[label="FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64",fontsize=16,color="magenta"];1559[label="FiniteMap.mkBalBranch6MkBalBranch2 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 otherwise",fontsize=16,color="black",shape="box"];1559 -> 1745[label="",style="solid", color="black", weight=3]; 32.13/13.19 1560[label="FiniteMap.mkBalBranch6MkBalBranch1 (Just xuu600) xuu61 xuu28 xuu64 xuu28 xuu64 xuu28",fontsize=16,color="burlywood",shape="box"];4563[label="xuu28/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1560 -> 4563[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4563 -> 1746[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4564[label="xuu28/FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284",fontsize=10,color="white",style="solid",shape="box"];1560 -> 4564[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4564 -> 1747[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 1538 -> 1748[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1538[label="FiniteMap.mkBalBranch6MkBalBranch01 (Just xuu600) xuu61 xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 (FiniteMap.sizeFM xuu643 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu644)",fontsize=16,color="magenta"];1538 -> 1749[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 4047 -> 1727[label="",style="dashed", color="red", weight=0]; 32.13/13.19 4047[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu212 xuu209 xuu211) (FiniteMap.mkBranchRight_size xuu212 xuu209 xuu211)",fontsize=16,color="magenta"];4047 -> 4048[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 4047 -> 4049[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1540 -> 1727[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1540[label="primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r Nothing xuu61 FiniteMap.EmptyFM xuu64)",fontsize=16,color="magenta"];1540 -> 1737[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1540 -> 1738[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1541[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1542 -> 1727[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1542[label="primPlusInt xuu362 (FiniteMap.mkBalBranch6Size_r Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64)",fontsize=16,color="magenta"];1542 -> 1739[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1542 -> 1740[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1543[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1723 -> 1527[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1723[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1724 -> 1518[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1724[label="FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64",fontsize=16,color="magenta"];1725[label="FiniteMap.mkBalBranch6MkBalBranch2 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 otherwise",fontsize=16,color="black",shape="box"];1725 -> 1754[label="",style="solid", color="black", weight=3]; 32.13/13.19 1726[label="FiniteMap.mkBalBranch6MkBalBranch1 Nothing xuu61 xuu36 xuu64 xuu36 xuu64 xuu36",fontsize=16,color="burlywood",shape="box"];4565[label="xuu36/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1726 -> 4565[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4565 -> 1755[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4566[label="xuu36/FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364",fontsize=10,color="white",style="solid",shape="box"];1726 -> 4566[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4566 -> 1756[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 1561 -> 1757[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1561[label="FiniteMap.mkBalBranch6MkBalBranch01 Nothing xuu61 xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 (FiniteMap.sizeFM xuu643 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu644)",fontsize=16,color="magenta"];1561 -> 1758[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1399[label="primMulNat xuu31100000 xuu60010",fontsize=16,color="burlywood",shape="triangle"];4567[label="xuu31100000/Succ xuu311000000",fontsize=10,color="white",style="solid",shape="box"];1399 -> 4567[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4567 -> 1563[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4568[label="xuu31100000/Zero",fontsize=10,color="white",style="solid",shape="box"];1399 -> 4568[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4568 -> 1564[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 1400 -> 1399[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1400[label="primMulNat xuu31100000 xuu60010",fontsize=16,color="magenta"];1400 -> 1565[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1401 -> 1399[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1401[label="primMulNat xuu31100000 xuu60010",fontsize=16,color="magenta"];1401 -> 1566[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1402 -> 1399[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1402[label="primMulNat xuu31100000 xuu60010",fontsize=16,color="magenta"];1402 -> 1567[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1402 -> 1568[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1569[label="primCmpInt (Pos (Succ xuu3300)) xuu34",fontsize=16,color="burlywood",shape="box"];4569[label="xuu34/Pos xuu340",fontsize=10,color="white",style="solid",shape="box"];1569 -> 4569[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4569 -> 1765[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4570[label="xuu34/Neg xuu340",fontsize=10,color="white",style="solid",shape="box"];1569 -> 4570[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4570 -> 1766[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 1570[label="primCmpInt (Pos Zero) xuu34",fontsize=16,color="burlywood",shape="box"];4571[label="xuu34/Pos xuu340",fontsize=10,color="white",style="solid",shape="box"];1570 -> 4571[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4571 -> 1767[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4572[label="xuu34/Neg xuu340",fontsize=10,color="white",style="solid",shape="box"];1570 -> 4572[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4572 -> 1768[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 1571[label="primCmpInt (Neg (Succ xuu3300)) xuu34",fontsize=16,color="burlywood",shape="box"];4573[label="xuu34/Pos xuu340",fontsize=10,color="white",style="solid",shape="box"];1571 -> 4573[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4573 -> 1769[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4574[label="xuu34/Neg xuu340",fontsize=10,color="white",style="solid",shape="box"];1571 -> 4574[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4574 -> 1770[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 1572[label="primCmpInt (Neg Zero) xuu34",fontsize=16,color="burlywood",shape="box"];4575[label="xuu34/Pos xuu340",fontsize=10,color="white",style="solid",shape="box"];1572 -> 4575[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4575 -> 1771[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4576[label="xuu34/Neg xuu340",fontsize=10,color="white",style="solid",shape="box"];1572 -> 4576[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4576 -> 1772[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 3155[label="True",fontsize=16,color="green",shape="box"];3156[label="False",fontsize=16,color="green",shape="box"];3181 -> 2377[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3181[label="xuu33001 == xuu34001 && xuu33002 <= xuu34002",fontsize=16,color="magenta"];3181 -> 3281[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3181 -> 3282[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3182[label="xuu33001 < xuu34001",fontsize=16,color="blue",shape="box"];4577[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 4577[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4577 -> 3283[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4578[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 4578[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4578 -> 3284[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4579[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 4579[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4579 -> 3285[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4580[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 4580[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4580 -> 3286[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4581[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 4581[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4581 -> 3287[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4582[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 4582[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4582 -> 3288[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4583[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 4583[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4583 -> 3289[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4584[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 4584[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4584 -> 3290[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4585[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 4585[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4585 -> 3291[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4586[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 4586[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4586 -> 3292[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4587[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 4587[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4587 -> 3293[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4588[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 4588[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4588 -> 3294[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4589[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 4589[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4589 -> 3295[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4590[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 4590[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4590 -> 3296[label="",style="solid", color="blue", weight=3]; 32.13/13.19 3183 -> 2067[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3183[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3183 -> 3297[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3183 -> 3298[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3184 -> 2065[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3184[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3184 -> 3299[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3184 -> 3300[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3185 -> 2063[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3185[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3185 -> 3301[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3185 -> 3302[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3186 -> 2068[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3186[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3186 -> 3303[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3186 -> 3304[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3187 -> 2071[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3187[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3187 -> 3305[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3187 -> 3306[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3188 -> 2064[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3188[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3188 -> 3307[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3188 -> 3308[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3189 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3189[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3189 -> 3309[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3189 -> 3310[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3190 -> 2070[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3190[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3190 -> 3311[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3190 -> 3312[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3191 -> 2072[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3191[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3191 -> 3313[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3191 -> 3314[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3192 -> 2062[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3192[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3192 -> 3315[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3192 -> 3316[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3193 -> 2069[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3193[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3193 -> 3317[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3193 -> 3318[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3194 -> 2066[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3194[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3194 -> 3319[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3194 -> 3320[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3195 -> 2061[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3195[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3195 -> 3321[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3195 -> 3322[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3196 -> 2060[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3196[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3196 -> 3323[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3196 -> 3324[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3197 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3197[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3197 -> 3325[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3197 -> 3326[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3198[label="xuu33000",fontsize=16,color="green",shape="box"];3199[label="xuu34000",fontsize=16,color="green",shape="box"];1333[label="xuu330 < xuu340",fontsize=16,color="black",shape="triangle"];1333 -> 1406[label="",style="solid", color="black", weight=3]; 32.13/13.19 3200 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3200[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3200 -> 3327[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3200 -> 3328[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3201 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3201[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3201 -> 3329[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3201 -> 3330[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3202 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3202[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3202 -> 3331[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3202 -> 3332[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3203 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3203[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3203 -> 3333[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3203 -> 3334[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3204 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3204[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3204 -> 3335[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3204 -> 3336[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3205 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3205[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3205 -> 3337[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3205 -> 3338[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3206 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3206[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3206 -> 3339[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3206 -> 3340[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3207 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3207[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3207 -> 3341[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3207 -> 3342[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3208 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3208[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3208 -> 3343[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3208 -> 3344[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3209 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3209[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3209 -> 3345[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3209 -> 3346[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3210 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3210[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3210 -> 3347[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3210 -> 3348[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3211 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3211[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3211 -> 3349[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3211 -> 3350[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3212[label="xuu165",fontsize=16,color="green",shape="box"];3213[label="True",fontsize=16,color="green",shape="box"];3214[label="primCmpDouble (Double xuu33000 (Pos xuu330010)) (Double xuu34000 xuu34001)",fontsize=16,color="burlywood",shape="box"];4591[label="xuu34001/Pos xuu340010",fontsize=10,color="white",style="solid",shape="box"];3214 -> 4591[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4591 -> 3351[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4592[label="xuu34001/Neg xuu340010",fontsize=10,color="white",style="solid",shape="box"];3214 -> 4592[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4592 -> 3352[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 3215[label="primCmpDouble (Double xuu33000 (Neg xuu330010)) (Double xuu34000 xuu34001)",fontsize=16,color="burlywood",shape="box"];4593[label="xuu34001/Pos xuu340010",fontsize=10,color="white",style="solid",shape="box"];3215 -> 4593[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4593 -> 3353[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4594[label="xuu34001/Neg xuu340010",fontsize=10,color="white",style="solid",shape="box"];3215 -> 4594[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4594 -> 3354[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 3216[label="xuu33000",fontsize=16,color="green",shape="box"];3217[label="xuu34000",fontsize=16,color="green",shape="box"];3218[label="primCmpFloat (Float xuu33000 (Pos xuu330010)) (Float xuu34000 xuu34001)",fontsize=16,color="burlywood",shape="box"];4595[label="xuu34001/Pos xuu340010",fontsize=10,color="white",style="solid",shape="box"];3218 -> 4595[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4595 -> 3355[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4596[label="xuu34001/Neg xuu340010",fontsize=10,color="white",style="solid",shape="box"];3218 -> 4596[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4596 -> 3356[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 3219[label="primCmpFloat (Float xuu33000 (Neg xuu330010)) (Float xuu34000 xuu34001)",fontsize=16,color="burlywood",shape="box"];4597[label="xuu34001/Pos xuu340010",fontsize=10,color="white",style="solid",shape="box"];3219 -> 4597[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4597 -> 3357[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4598[label="xuu34001/Neg xuu340010",fontsize=10,color="white",style="solid",shape="box"];3219 -> 4598[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4598 -> 3358[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 3221 -> 2877[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3221[label="compare xuu33001 xuu34001",fontsize=16,color="magenta"];3221 -> 3359[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3221 -> 3360[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3220[label="primCompAux xuu33000 xuu34000 xuu176",fontsize=16,color="black",shape="triangle"];3220 -> 3361[label="",style="solid", color="black", weight=3]; 32.13/13.19 3222 -> 2559[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3222[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3222 -> 3378[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3222 -> 3379[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3223 -> 2560[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3223[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3223 -> 3380[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3223 -> 3381[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3224 -> 2561[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3224[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3224 -> 3382[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3224 -> 3383[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3225 -> 2562[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3225[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3225 -> 3384[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3225 -> 3385[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3226 -> 2563[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3226[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3226 -> 3386[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3226 -> 3387[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3227 -> 2564[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3227[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3227 -> 3388[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3227 -> 3389[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3228 -> 2565[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3228[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3228 -> 3390[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3228 -> 3391[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3229 -> 2566[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3229[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3229 -> 3392[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3229 -> 3393[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3230 -> 2567[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3230[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3230 -> 3394[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3230 -> 3395[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3231 -> 2568[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3231[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3231 -> 3396[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3231 -> 3397[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3232 -> 2569[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3232[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3232 -> 3398[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3232 -> 3399[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3233 -> 2570[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3233[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3233 -> 3400[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3233 -> 3401[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3234 -> 2571[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3234[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3234 -> 3402[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3234 -> 3403[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3235 -> 2572[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3235[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3235 -> 3404[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3235 -> 3405[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3236 -> 2067[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3236[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3236 -> 3406[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3236 -> 3407[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3237 -> 2065[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3237[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3237 -> 3408[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3237 -> 3409[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3238 -> 2063[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3238[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3238 -> 3410[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3238 -> 3411[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3239 -> 2068[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3239[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3239 -> 3412[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3239 -> 3413[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3240 -> 2071[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3240[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3240 -> 3414[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3240 -> 3415[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3241 -> 2064[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3241[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3241 -> 3416[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3241 -> 3417[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3242 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3242[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3242 -> 3418[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3242 -> 3419[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3243 -> 2070[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3243[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3243 -> 3420[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3243 -> 3421[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3244 -> 2072[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3244[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3244 -> 3422[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3244 -> 3423[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3245 -> 2062[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3245[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3245 -> 3424[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3245 -> 3425[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3246 -> 2069[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3246[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3246 -> 3426[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3246 -> 3427[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3247 -> 2066[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3247[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3247 -> 3428[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3247 -> 3429[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3248 -> 2061[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3248[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3248 -> 3430[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3248 -> 3431[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3249 -> 2060[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3249[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3249 -> 3432[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3249 -> 3433[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 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="xuu34000",fontsize=16,color="green",shape="box"];3256[label="xuu33000",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[label="xuu34000",fontsize=16,color="green",shape="box"];3272[label="xuu33000",fontsize=16,color="green",shape="box"];3273[label="xuu34000",fontsize=16,color="green",shape="box"];3274[label="xuu33000",fontsize=16,color="green",shape="box"];3275[label="xuu34000",fontsize=16,color="green",shape="box"];3276[label="xuu33000",fontsize=16,color="green",shape="box"];3277[label="xuu34000",fontsize=16,color="green",shape="box"];3278 -> 1208[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3278[label="compare (xuu33000 * xuu34001) (xuu34000 * xuu33001)",fontsize=16,color="magenta"];3278 -> 3434[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3278 -> 3435[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3279 -> 2875[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3279[label="compare (xuu33000 * xuu34001) (xuu34000 * xuu33001)",fontsize=16,color="magenta"];3279 -> 3436[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3279 -> 3437[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3280 -> 1861[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3280[label="primCmpNat xuu33000 xuu34000",fontsize=16,color="magenta"];3280 -> 3438[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3280 -> 3439[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1732[label="Pos Zero",fontsize=16,color="green",shape="box"];1733 -> 1516[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1733[label="FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 FiniteMap.EmptyFM xuu64",fontsize=16,color="magenta"];1733 -> 1862[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1727[label="primPlusInt xuu282 xuu97",fontsize=16,color="burlywood",shape="triangle"];4599[label="xuu282/Pos xuu2820",fontsize=10,color="white",style="solid",shape="box"];1727 -> 4599[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4599 -> 1752[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4600[label="xuu282/Neg xuu2820",fontsize=10,color="white",style="solid",shape="box"];1727 -> 4600[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4600 -> 1753[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 1734 -> 1516[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1734[label="FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64",fontsize=16,color="magenta"];1734 -> 1863[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1745[label="FiniteMap.mkBalBranch6MkBalBranch2 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 True",fontsize=16,color="black",shape="box"];1745 -> 1864[label="",style="solid", color="black", weight=3]; 32.13/13.19 1746[label="FiniteMap.mkBalBranch6MkBalBranch1 (Just xuu600) xuu61 FiniteMap.EmptyFM xuu64 FiniteMap.EmptyFM xuu64 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1746 -> 1865[label="",style="solid", color="black", weight=3]; 32.13/13.19 1747[label="FiniteMap.mkBalBranch6MkBalBranch1 (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284)",fontsize=16,color="black",shape="box"];1747 -> 1866[label="",style="solid", color="black", weight=3]; 32.13/13.19 1749 -> 1333[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1749[label="FiniteMap.sizeFM xuu643 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu644",fontsize=16,color="magenta"];1749 -> 1867[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1749 -> 1868[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1748[label="FiniteMap.mkBalBranch6MkBalBranch01 (Just xuu600) xuu61 xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 xuu98",fontsize=16,color="burlywood",shape="triangle"];4601[label="xuu98/False",fontsize=10,color="white",style="solid",shape="box"];1748 -> 4601[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4601 -> 1869[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4602[label="xuu98/True",fontsize=10,color="white",style="solid",shape="box"];1748 -> 4602[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4602 -> 1870[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4048[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu212 xuu209 xuu211",fontsize=16,color="black",shape="box"];4048 -> 4050[label="",style="solid", color="black", weight=3]; 32.13/13.19 4049[label="FiniteMap.mkBranchRight_size xuu212 xuu209 xuu211",fontsize=16,color="black",shape="box"];4049 -> 4051[label="",style="solid", color="black", weight=3]; 32.13/13.19 1737[label="Pos Zero",fontsize=16,color="green",shape="box"];1738 -> 1518[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1738[label="FiniteMap.mkBalBranch6Size_r Nothing xuu61 FiniteMap.EmptyFM xuu64",fontsize=16,color="magenta"];1738 -> 1877[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1739[label="xuu362",fontsize=16,color="green",shape="box"];1740 -> 1518[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1740[label="FiniteMap.mkBalBranch6Size_r Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64",fontsize=16,color="magenta"];1740 -> 1878[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1754[label="FiniteMap.mkBalBranch6MkBalBranch2 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 True",fontsize=16,color="black",shape="box"];1754 -> 1879[label="",style="solid", color="black", weight=3]; 32.13/13.19 1755[label="FiniteMap.mkBalBranch6MkBalBranch1 Nothing xuu61 FiniteMap.EmptyFM xuu64 FiniteMap.EmptyFM xuu64 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1755 -> 1880[label="",style="solid", color="black", weight=3]; 32.13/13.19 1756[label="FiniteMap.mkBalBranch6MkBalBranch1 Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364)",fontsize=16,color="black",shape="box"];1756 -> 1881[label="",style="solid", color="black", weight=3]; 32.13/13.19 1758 -> 1333[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1758[label="FiniteMap.sizeFM xuu643 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu644",fontsize=16,color="magenta"];1758 -> 1882[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1758 -> 1883[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1757[label="FiniteMap.mkBalBranch6MkBalBranch01 Nothing xuu61 xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 xuu102",fontsize=16,color="burlywood",shape="triangle"];4603[label="xuu102/False",fontsize=10,color="white",style="solid",shape="box"];1757 -> 4603[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4603 -> 1884[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4604[label="xuu102/True",fontsize=10,color="white",style="solid",shape="box"];1757 -> 4604[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4604 -> 1885[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 1563[label="primMulNat (Succ xuu311000000) xuu60010",fontsize=16,color="burlywood",shape="box"];4605[label="xuu60010/Succ xuu600100",fontsize=10,color="white",style="solid",shape="box"];1563 -> 4605[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4605 -> 1761[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4606[label="xuu60010/Zero",fontsize=10,color="white",style="solid",shape="box"];1563 -> 4606[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4606 -> 1762[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 1564[label="primMulNat Zero xuu60010",fontsize=16,color="burlywood",shape="box"];4607[label="xuu60010/Succ xuu600100",fontsize=10,color="white",style="solid",shape="box"];1564 -> 4607[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4607 -> 1763[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4608[label="xuu60010/Zero",fontsize=10,color="white",style="solid",shape="box"];1564 -> 4608[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4608 -> 1764[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 1565[label="xuu60010",fontsize=16,color="green",shape="box"];1566[label="xuu31100000",fontsize=16,color="green",shape="box"];1567[label="xuu60010",fontsize=16,color="green",shape="box"];1568[label="xuu31100000",fontsize=16,color="green",shape="box"];1765[label="primCmpInt (Pos (Succ xuu3300)) (Pos xuu340)",fontsize=16,color="black",shape="box"];1765 -> 1892[label="",style="solid", color="black", weight=3]; 32.13/13.19 1766[label="primCmpInt (Pos (Succ xuu3300)) (Neg xuu340)",fontsize=16,color="black",shape="box"];1766 -> 1893[label="",style="solid", color="black", weight=3]; 32.13/13.19 1767[label="primCmpInt (Pos Zero) (Pos xuu340)",fontsize=16,color="burlywood",shape="box"];4609[label="xuu340/Succ xuu3400",fontsize=10,color="white",style="solid",shape="box"];1767 -> 4609[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4609 -> 1894[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4610[label="xuu340/Zero",fontsize=10,color="white",style="solid",shape="box"];1767 -> 4610[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4610 -> 1895[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 1768[label="primCmpInt (Pos Zero) (Neg xuu340)",fontsize=16,color="burlywood",shape="box"];4611[label="xuu340/Succ xuu3400",fontsize=10,color="white",style="solid",shape="box"];1768 -> 4611[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4611 -> 1896[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4612[label="xuu340/Zero",fontsize=10,color="white",style="solid",shape="box"];1768 -> 4612[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4612 -> 1897[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 1769[label="primCmpInt (Neg (Succ xuu3300)) (Pos xuu340)",fontsize=16,color="black",shape="box"];1769 -> 1898[label="",style="solid", color="black", weight=3]; 32.13/13.19 1770[label="primCmpInt (Neg (Succ xuu3300)) (Neg xuu340)",fontsize=16,color="black",shape="box"];1770 -> 1899[label="",style="solid", color="black", weight=3]; 32.13/13.19 1771[label="primCmpInt (Neg Zero) (Pos xuu340)",fontsize=16,color="burlywood",shape="box"];4613[label="xuu340/Succ xuu3400",fontsize=10,color="white",style="solid",shape="box"];1771 -> 4613[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4613 -> 1900[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4614[label="xuu340/Zero",fontsize=10,color="white",style="solid",shape="box"];1771 -> 4614[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4614 -> 1901[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 1772[label="primCmpInt (Neg Zero) (Neg xuu340)",fontsize=16,color="burlywood",shape="box"];4615[label="xuu340/Succ xuu3400",fontsize=10,color="white",style="solid",shape="box"];1772 -> 4615[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4615 -> 1902[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4616[label="xuu340/Zero",fontsize=10,color="white",style="solid",shape="box"];1772 -> 4616[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4616 -> 1903[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 3281[label="xuu33002 <= xuu34002",fontsize=16,color="blue",shape="box"];4617[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 4617[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4617 -> 3440[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4618[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 4618[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4618 -> 3441[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4619[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 4619[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4619 -> 3442[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4620[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 4620[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4620 -> 3443[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4621[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 4621[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4621 -> 3444[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4622[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 4622[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4622 -> 3445[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4623[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 4623[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4623 -> 3446[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4624[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 4624[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4624 -> 3447[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4625[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 4625[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4625 -> 3448[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4626[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 4626[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4626 -> 3449[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4627[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 4627[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4627 -> 3450[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4628[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 4628[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4628 -> 3451[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4629[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 4629[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4629 -> 3452[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4630[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 4630[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4630 -> 3453[label="",style="solid", color="blue", weight=3]; 32.13/13.19 3282[label="xuu33001 == xuu34001",fontsize=16,color="blue",shape="box"];4631[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3282 -> 4631[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4631 -> 3454[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4632[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3282 -> 4632[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4632 -> 3455[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4633[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3282 -> 4633[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4633 -> 3456[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4634[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3282 -> 4634[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4634 -> 3457[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4635[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3282 -> 4635[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4635 -> 3458[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4636[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3282 -> 4636[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4636 -> 3459[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4637[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3282 -> 4637[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4637 -> 3460[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4638[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3282 -> 4638[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4638 -> 3461[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4639[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3282 -> 4639[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4639 -> 3462[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4640[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3282 -> 4640[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4640 -> 3463[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4641[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3282 -> 4641[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4641 -> 3464[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4642[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3282 -> 4642[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4642 -> 3465[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4643[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3282 -> 4643[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4643 -> 3466[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4644[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3282 -> 4644[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4644 -> 3467[label="",style="solid", color="blue", weight=3]; 32.13/13.19 3283 -> 3083[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3283[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3283 -> 3468[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3283 -> 3469[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3284 -> 1333[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3284[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3284 -> 3470[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3284 -> 3471[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3285 -> 3085[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3285[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3285 -> 3472[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3285 -> 3473[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3286 -> 3086[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3286[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3286 -> 3474[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3286 -> 3475[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3287 -> 3087[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3287[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3287 -> 3476[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3287 -> 3477[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3288 -> 3088[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3288[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3288 -> 3478[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3288 -> 3479[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3289 -> 3089[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3289[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3289 -> 3480[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3289 -> 3481[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3290 -> 3090[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3290[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3290 -> 3482[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3290 -> 3483[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3291 -> 3091[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3291[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3291 -> 3484[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3291 -> 3485[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3292 -> 3092[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3292[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3292 -> 3486[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3292 -> 3487[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3293 -> 3093[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3293[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3293 -> 3488[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3293 -> 3489[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3294 -> 3094[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3294[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3294 -> 3490[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3294 -> 3491[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3295 -> 3095[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3295[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3295 -> 3492[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3295 -> 3493[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3296 -> 3096[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3296[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3296 -> 3494[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3296 -> 3495[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3297[label="xuu33000",fontsize=16,color="green",shape="box"];3298[label="xuu34000",fontsize=16,color="green",shape="box"];3299[label="xuu33000",fontsize=16,color="green",shape="box"];3300[label="xuu34000",fontsize=16,color="green",shape="box"];3301[label="xuu33000",fontsize=16,color="green",shape="box"];3302[label="xuu34000",fontsize=16,color="green",shape="box"];3303[label="xuu33000",fontsize=16,color="green",shape="box"];3304[label="xuu34000",fontsize=16,color="green",shape="box"];3305[label="xuu33000",fontsize=16,color="green",shape="box"];3306[label="xuu34000",fontsize=16,color="green",shape="box"];3307[label="xuu33000",fontsize=16,color="green",shape="box"];3308[label="xuu34000",fontsize=16,color="green",shape="box"];3309[label="xuu33000",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="compare xuu33000 xuu34000",fontsize=16,color="black",shape="triangle"];3325 -> 3496[label="",style="solid", color="black", weight=3]; 32.13/13.19 3326[label="LT",fontsize=16,color="green",shape="box"];1406 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1406[label="compare xuu330 xuu340 == LT",fontsize=16,color="magenta"];1406 -> 1575[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1406 -> 1576[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3327[label="compare xuu33000 xuu34000",fontsize=16,color="black",shape="triangle"];3327 -> 3497[label="",style="solid", color="black", weight=3]; 32.13/13.19 3328[label="LT",fontsize=16,color="green",shape="box"];3329 -> 2874[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3329[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3329 -> 3498[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3329 -> 3499[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3330[label="LT",fontsize=16,color="green",shape="box"];3331 -> 2875[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3331[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3331 -> 3500[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3331 -> 3501[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3332[label="LT",fontsize=16,color="green",shape="box"];3333 -> 2876[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3333[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3333 -> 3502[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3333 -> 3503[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3334[label="LT",fontsize=16,color="green",shape="box"];3335[label="compare xuu33000 xuu34000",fontsize=16,color="black",shape="triangle"];3335 -> 3504[label="",style="solid", color="black", weight=3]; 32.13/13.19 3336[label="LT",fontsize=16,color="green",shape="box"];3337 -> 2877[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3337[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3337 -> 3505[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3337 -> 3506[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3338[label="LT",fontsize=16,color="green",shape="box"];3339[label="compare xuu33000 xuu34000",fontsize=16,color="black",shape="triangle"];3339 -> 3507[label="",style="solid", color="black", weight=3]; 32.13/13.19 3340[label="LT",fontsize=16,color="green",shape="box"];3341[label="compare xuu33000 xuu34000",fontsize=16,color="black",shape="triangle"];3341 -> 3508[label="",style="solid", color="black", weight=3]; 32.13/13.19 3342[label="LT",fontsize=16,color="green",shape="box"];3343 -> 2878[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3343[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3343 -> 3509[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3343 -> 3510[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3344[label="LT",fontsize=16,color="green",shape="box"];3345[label="compare xuu33000 xuu34000",fontsize=16,color="black",shape="triangle"];3345 -> 3511[label="",style="solid", color="black", weight=3]; 32.13/13.19 3346[label="LT",fontsize=16,color="green",shape="box"];3347 -> 2879[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3347[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3347 -> 3512[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3347 -> 3513[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3348[label="LT",fontsize=16,color="green",shape="box"];3349 -> 2880[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3349[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3349 -> 3514[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3349 -> 3515[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3350[label="LT",fontsize=16,color="green",shape="box"];3351[label="primCmpDouble (Double xuu33000 (Pos xuu330010)) (Double xuu34000 (Pos xuu340010))",fontsize=16,color="black",shape="box"];3351 -> 3516[label="",style="solid", color="black", weight=3]; 32.13/13.19 3352[label="primCmpDouble (Double xuu33000 (Pos xuu330010)) (Double xuu34000 (Neg xuu340010))",fontsize=16,color="black",shape="box"];3352 -> 3517[label="",style="solid", color="black", weight=3]; 32.13/13.19 3353[label="primCmpDouble (Double xuu33000 (Neg xuu330010)) (Double xuu34000 (Pos xuu340010))",fontsize=16,color="black",shape="box"];3353 -> 3518[label="",style="solid", color="black", weight=3]; 32.13/13.19 3354[label="primCmpDouble (Double xuu33000 (Neg xuu330010)) (Double xuu34000 (Neg xuu340010))",fontsize=16,color="black",shape="box"];3354 -> 3519[label="",style="solid", color="black", weight=3]; 32.13/13.19 3355[label="primCmpFloat (Float xuu33000 (Pos xuu330010)) (Float xuu34000 (Pos xuu340010))",fontsize=16,color="black",shape="box"];3355 -> 3520[label="",style="solid", color="black", weight=3]; 32.13/13.19 3356[label="primCmpFloat (Float xuu33000 (Pos xuu330010)) (Float xuu34000 (Neg xuu340010))",fontsize=16,color="black",shape="box"];3356 -> 3521[label="",style="solid", color="black", weight=3]; 32.13/13.19 3357[label="primCmpFloat (Float xuu33000 (Neg xuu330010)) (Float xuu34000 (Pos xuu340010))",fontsize=16,color="black",shape="box"];3357 -> 3522[label="",style="solid", color="black", weight=3]; 32.13/13.19 3358[label="primCmpFloat (Float xuu33000 (Neg xuu330010)) (Float xuu34000 (Neg xuu340010))",fontsize=16,color="black",shape="box"];3358 -> 3523[label="",style="solid", color="black", weight=3]; 32.13/13.19 3359[label="xuu33001",fontsize=16,color="green",shape="box"];3360[label="xuu34001",fontsize=16,color="green",shape="box"];3361 -> 3524[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3361[label="primCompAux0 xuu176 (compare xuu33000 xuu34000)",fontsize=16,color="magenta"];3361 -> 3525[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3361 -> 3526[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3378[label="xuu33001",fontsize=16,color="green",shape="box"];3379[label="xuu34001",fontsize=16,color="green",shape="box"];3380[label="xuu33001",fontsize=16,color="green",shape="box"];3381[label="xuu34001",fontsize=16,color="green",shape="box"];3382[label="xuu33001",fontsize=16,color="green",shape="box"];3383[label="xuu34001",fontsize=16,color="green",shape="box"];3384[label="xuu33001",fontsize=16,color="green",shape="box"];3385[label="xuu34001",fontsize=16,color="green",shape="box"];3386[label="xuu33001",fontsize=16,color="green",shape="box"];3387[label="xuu34001",fontsize=16,color="green",shape="box"];3388[label="xuu33001",fontsize=16,color="green",shape="box"];3389[label="xuu34001",fontsize=16,color="green",shape="box"];3390[label="xuu33001",fontsize=16,color="green",shape="box"];3391[label="xuu34001",fontsize=16,color="green",shape="box"];3392[label="xuu33001",fontsize=16,color="green",shape="box"];3393[label="xuu34001",fontsize=16,color="green",shape="box"];3394[label="xuu33001",fontsize=16,color="green",shape="box"];3395[label="xuu34001",fontsize=16,color="green",shape="box"];3396[label="xuu33001",fontsize=16,color="green",shape="box"];3397[label="xuu34001",fontsize=16,color="green",shape="box"];3398[label="xuu33001",fontsize=16,color="green",shape="box"];3399[label="xuu34001",fontsize=16,color="green",shape="box"];3400[label="xuu33001",fontsize=16,color="green",shape="box"];3401[label="xuu34001",fontsize=16,color="green",shape="box"];3402[label="xuu33001",fontsize=16,color="green",shape="box"];3403[label="xuu34001",fontsize=16,color="green",shape="box"];3404[label="xuu33001",fontsize=16,color="green",shape="box"];3405[label="xuu34001",fontsize=16,color="green",shape="box"];3406[label="xuu33000",fontsize=16,color="green",shape="box"];3407[label="xuu34000",fontsize=16,color="green",shape="box"];3408[label="xuu33000",fontsize=16,color="green",shape="box"];3409[label="xuu34000",fontsize=16,color="green",shape="box"];3410[label="xuu33000",fontsize=16,color="green",shape="box"];3411[label="xuu34000",fontsize=16,color="green",shape="box"];3412[label="xuu33000",fontsize=16,color="green",shape="box"];3413[label="xuu34000",fontsize=16,color="green",shape="box"];3414[label="xuu33000",fontsize=16,color="green",shape="box"];3415[label="xuu34000",fontsize=16,color="green",shape="box"];3416[label="xuu33000",fontsize=16,color="green",shape="box"];3417[label="xuu34000",fontsize=16,color="green",shape="box"];3418[label="xuu33000",fontsize=16,color="green",shape="box"];3419[label="xuu34000",fontsize=16,color="green",shape="box"];3420[label="xuu33000",fontsize=16,color="green",shape="box"];3421[label="xuu34000",fontsize=16,color="green",shape="box"];3422[label="xuu33000",fontsize=16,color="green",shape="box"];3423[label="xuu34000",fontsize=16,color="green",shape="box"];3424[label="xuu33000",fontsize=16,color="green",shape="box"];3425[label="xuu34000",fontsize=16,color="green",shape="box"];3426[label="xuu33000",fontsize=16,color="green",shape="box"];3427[label="xuu34000",fontsize=16,color="green",shape="box"];3428[label="xuu33000",fontsize=16,color="green",shape="box"];3429[label="xuu34000",fontsize=16,color="green",shape="box"];3430[label="xuu33000",fontsize=16,color="green",shape="box"];3431[label="xuu34000",fontsize=16,color="green",shape="box"];3432[label="xuu33000",fontsize=16,color="green",shape="box"];3433[label="xuu34000",fontsize=16,color="green",shape="box"];3434 -> 617[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3434[label="xuu33000 * xuu34001",fontsize=16,color="magenta"];3434 -> 3529[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3434 -> 3530[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3435 -> 617[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3435[label="xuu34000 * xuu33001",fontsize=16,color="magenta"];3435 -> 3531[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3435 -> 3532[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3436[label="xuu33000 * xuu34001",fontsize=16,color="burlywood",shape="triangle"];4645[label="xuu33000/Integer xuu330000",fontsize=10,color="white",style="solid",shape="box"];3436 -> 4645[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4645 -> 3533[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 3437 -> 3436[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3437[label="xuu34000 * xuu33001",fontsize=16,color="magenta"];3437 -> 3534[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3437 -> 3535[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3438[label="xuu34000",fontsize=16,color="green",shape="box"];3439[label="xuu33000",fontsize=16,color="green",shape="box"];1861[label="primCmpNat xuu330 xuu340",fontsize=16,color="burlywood",shape="triangle"];4646[label="xuu330/Succ xuu3300",fontsize=10,color="white",style="solid",shape="box"];1861 -> 4646[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4646 -> 1981[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4647[label="xuu330/Zero",fontsize=10,color="white",style="solid",shape="box"];1861 -> 4647[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4647 -> 1982[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 1862[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];1752[label="primPlusInt (Pos xuu2820) xuu97",fontsize=16,color="burlywood",shape="box"];4648[label="xuu97/Pos xuu970",fontsize=10,color="white",style="solid",shape="box"];1752 -> 4648[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4648 -> 1873[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4649[label="xuu97/Neg xuu970",fontsize=10,color="white",style="solid",shape="box"];1752 -> 4649[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4649 -> 1874[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 1753[label="primPlusInt (Neg xuu2820) xuu97",fontsize=16,color="burlywood",shape="box"];4650[label="xuu97/Pos xuu970",fontsize=10,color="white",style="solid",shape="box"];1753 -> 4650[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4650 -> 1875[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4651[label="xuu97/Neg xuu970",fontsize=10,color="white",style="solid",shape="box"];1753 -> 4651[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4651 -> 1876[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 1863[label="FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284",fontsize=16,color="green",shape="box"];1864 -> 3832[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1864[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) (Just xuu600) xuu61 xuu28 xuu64",fontsize=16,color="magenta"];1864 -> 3843[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1864 -> 3844[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1864 -> 3845[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1864 -> 3846[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1864 -> 3847[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1865[label="error []",fontsize=16,color="red",shape="box"];1866[label="FiniteMap.mkBalBranch6MkBalBranch12 (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284)",fontsize=16,color="black",shape="box"];1866 -> 1984[label="",style="solid", color="black", weight=3]; 32.13/13.19 1867 -> 1526[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1867[label="FiniteMap.sizeFM xuu643",fontsize=16,color="magenta"];1867 -> 1985[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1868 -> 617[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1868[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu644",fontsize=16,color="magenta"];1868 -> 1986[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1868 -> 1987[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1869[label="FiniteMap.mkBalBranch6MkBalBranch01 (Just xuu600) xuu61 xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 False",fontsize=16,color="black",shape="box"];1869 -> 1988[label="",style="solid", color="black", weight=3]; 32.13/13.19 1870[label="FiniteMap.mkBalBranch6MkBalBranch01 (Just xuu600) xuu61 xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 True",fontsize=16,color="black",shape="box"];1870 -> 1989[label="",style="solid", color="black", weight=3]; 32.13/13.19 4050 -> 1727[label="",style="dashed", color="red", weight=0]; 32.13/13.19 4050[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size xuu212 xuu209 xuu211)",fontsize=16,color="magenta"];4050 -> 4052[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 4050 -> 4053[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 4051[label="FiniteMap.sizeFM xuu212",fontsize=16,color="burlywood",shape="triangle"];4652[label="xuu212/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4051 -> 4652[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4652 -> 4054[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4653[label="xuu212/FiniteMap.Branch xuu2120 xuu2121 xuu2122 xuu2123 xuu2124",fontsize=10,color="white",style="solid",shape="box"];4051 -> 4653[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4653 -> 4055[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 1877[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];1878[label="FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364",fontsize=16,color="green",shape="box"];1879 -> 3832[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1879[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) Nothing xuu61 xuu36 xuu64",fontsize=16,color="magenta"];1879 -> 3848[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1879 -> 3849[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1879 -> 3850[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1879 -> 3851[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1879 -> 3852[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1880[label="error []",fontsize=16,color="red",shape="box"];1881[label="FiniteMap.mkBalBranch6MkBalBranch12 Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364)",fontsize=16,color="black",shape="box"];1881 -> 1996[label="",style="solid", color="black", weight=3]; 32.13/13.19 1882 -> 1526[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1882[label="FiniteMap.sizeFM xuu643",fontsize=16,color="magenta"];1882 -> 1997[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1883 -> 617[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1883[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu644",fontsize=16,color="magenta"];1883 -> 1998[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1883 -> 1999[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1884[label="FiniteMap.mkBalBranch6MkBalBranch01 Nothing xuu61 xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 False",fontsize=16,color="black",shape="box"];1884 -> 2000[label="",style="solid", color="black", weight=3]; 32.13/13.19 1885[label="FiniteMap.mkBalBranch6MkBalBranch01 Nothing xuu61 xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 True",fontsize=16,color="black",shape="box"];1885 -> 2001[label="",style="solid", color="black", weight=3]; 32.13/13.19 1761[label="primMulNat (Succ xuu311000000) (Succ xuu600100)",fontsize=16,color="black",shape="box"];1761 -> 1888[label="",style="solid", color="black", weight=3]; 32.13/13.19 1762[label="primMulNat (Succ xuu311000000) Zero",fontsize=16,color="black",shape="box"];1762 -> 1889[label="",style="solid", color="black", weight=3]; 32.13/13.19 1763[label="primMulNat Zero (Succ xuu600100)",fontsize=16,color="black",shape="box"];1763 -> 1890[label="",style="solid", color="black", weight=3]; 32.13/13.19 1764[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1764 -> 1891[label="",style="solid", color="black", weight=3]; 32.13/13.19 1892 -> 1861[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1892[label="primCmpNat (Succ xuu3300) xuu340",fontsize=16,color="magenta"];1892 -> 2005[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1892 -> 2006[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1893[label="GT",fontsize=16,color="green",shape="box"];1894[label="primCmpInt (Pos Zero) (Pos (Succ xuu3400))",fontsize=16,color="black",shape="box"];1894 -> 2007[label="",style="solid", color="black", weight=3]; 32.13/13.19 1895[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1895 -> 2008[label="",style="solid", color="black", weight=3]; 32.13/13.19 1896[label="primCmpInt (Pos Zero) (Neg (Succ xuu3400))",fontsize=16,color="black",shape="box"];1896 -> 2009[label="",style="solid", color="black", weight=3]; 32.13/13.19 1897[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1897 -> 2010[label="",style="solid", color="black", weight=3]; 32.13/13.19 1898[label="LT",fontsize=16,color="green",shape="box"];1899 -> 1861[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1899[label="primCmpNat xuu340 (Succ xuu3300)",fontsize=16,color="magenta"];1899 -> 2011[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1899 -> 2012[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1900[label="primCmpInt (Neg Zero) (Pos (Succ xuu3400))",fontsize=16,color="black",shape="box"];1900 -> 2013[label="",style="solid", color="black", weight=3]; 32.13/13.19 1901[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1901 -> 2014[label="",style="solid", color="black", weight=3]; 32.13/13.19 1902[label="primCmpInt (Neg Zero) (Neg (Succ xuu3400))",fontsize=16,color="black",shape="box"];1902 -> 2015[label="",style="solid", color="black", weight=3]; 32.13/13.19 1903[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1903 -> 2016[label="",style="solid", color="black", weight=3]; 32.13/13.19 3440 -> 2559[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3440[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3440 -> 3536[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3440 -> 3537[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3441 -> 2560[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3441[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3441 -> 3538[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3441 -> 3539[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3442 -> 2561[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3442[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3442 -> 3540[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3442 -> 3541[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3443 -> 2562[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3443[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3443 -> 3542[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3443 -> 3543[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3444 -> 2563[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3444[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3444 -> 3544[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3444 -> 3545[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3445 -> 2564[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3445[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3445 -> 3546[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3445 -> 3547[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3446 -> 2565[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3446[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3446 -> 3548[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3446 -> 3549[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3447 -> 2566[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3447[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3447 -> 3550[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3447 -> 3551[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3448 -> 2567[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3448[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3448 -> 3552[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3448 -> 3553[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3449 -> 2568[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3449[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3449 -> 3554[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3449 -> 3555[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3450 -> 2569[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3450[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3450 -> 3556[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3450 -> 3557[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3451 -> 2570[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3451[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3451 -> 3558[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3451 -> 3559[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3452 -> 2571[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3452[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3452 -> 3560[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3452 -> 3561[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3453 -> 2572[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3453[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3453 -> 3562[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3453 -> 3563[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3454 -> 2067[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3454[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3454 -> 3564[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3454 -> 3565[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3455 -> 2065[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3455[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3455 -> 3566[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3455 -> 3567[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3456 -> 2063[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3456[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3456 -> 3568[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3456 -> 3569[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3457 -> 2068[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3457[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3457 -> 3570[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3457 -> 3571[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3458 -> 2071[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3458[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3458 -> 3572[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3458 -> 3573[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3459 -> 2064[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3459[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3459 -> 3574[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3459 -> 3575[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3460 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3460[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3460 -> 3576[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3460 -> 3577[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3461 -> 2070[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3461[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3461 -> 3578[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3461 -> 3579[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3462 -> 2072[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3462[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3462 -> 3580[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3462 -> 3581[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3463 -> 2062[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3463[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3463 -> 3582[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3463 -> 3583[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3464 -> 2069[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3464[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3464 -> 3584[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3464 -> 3585[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3465 -> 2066[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3465[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3465 -> 3586[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3465 -> 3587[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3466 -> 2061[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3466[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3466 -> 3588[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3466 -> 3589[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3467 -> 2060[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3467[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3467 -> 3590[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3467 -> 3591[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3468[label="xuu33001",fontsize=16,color="green",shape="box"];3469[label="xuu34001",fontsize=16,color="green",shape="box"];3470[label="xuu33001",fontsize=16,color="green",shape="box"];3471[label="xuu34001",fontsize=16,color="green",shape="box"];3472[label="xuu33001",fontsize=16,color="green",shape="box"];3473[label="xuu34001",fontsize=16,color="green",shape="box"];3474[label="xuu33001",fontsize=16,color="green",shape="box"];3475[label="xuu34001",fontsize=16,color="green",shape="box"];3476[label="xuu33001",fontsize=16,color="green",shape="box"];3477[label="xuu34001",fontsize=16,color="green",shape="box"];3478[label="xuu33001",fontsize=16,color="green",shape="box"];3479[label="xuu34001",fontsize=16,color="green",shape="box"];3480[label="xuu33001",fontsize=16,color="green",shape="box"];3481[label="xuu34001",fontsize=16,color="green",shape="box"];3482[label="xuu33001",fontsize=16,color="green",shape="box"];3483[label="xuu34001",fontsize=16,color="green",shape="box"];3484[label="xuu33001",fontsize=16,color="green",shape="box"];3485[label="xuu34001",fontsize=16,color="green",shape="box"];3486[label="xuu33001",fontsize=16,color="green",shape="box"];3487[label="xuu34001",fontsize=16,color="green",shape="box"];3488[label="xuu33001",fontsize=16,color="green",shape="box"];3489[label="xuu34001",fontsize=16,color="green",shape="box"];3490[label="xuu33001",fontsize=16,color="green",shape="box"];3491[label="xuu34001",fontsize=16,color="green",shape="box"];3492[label="xuu33001",fontsize=16,color="green",shape="box"];3493[label="xuu34001",fontsize=16,color="green",shape="box"];3494[label="xuu33001",fontsize=16,color="green",shape="box"];3495[label="xuu34001",fontsize=16,color="green",shape="box"];3496[label="compare3 xuu33000 xuu34000",fontsize=16,color="black",shape="box"];3496 -> 3592[label="",style="solid", color="black", weight=3]; 32.13/13.19 1575 -> 1208[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1575[label="compare xuu330 xuu340",fontsize=16,color="magenta"];1575 -> 1774[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1575 -> 1775[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1576[label="LT",fontsize=16,color="green",shape="box"];3497[label="compare3 xuu33000 xuu34000",fontsize=16,color="black",shape="box"];3497 -> 3593[label="",style="solid", color="black", weight=3]; 32.13/13.19 3498[label="xuu33000",fontsize=16,color="green",shape="box"];3499[label="xuu34000",fontsize=16,color="green",shape="box"];3500[label="xuu33000",fontsize=16,color="green",shape="box"];3501[label="xuu34000",fontsize=16,color="green",shape="box"];3502[label="xuu33000",fontsize=16,color="green",shape="box"];3503[label="xuu34000",fontsize=16,color="green",shape="box"];3504[label="compare3 xuu33000 xuu34000",fontsize=16,color="black",shape="box"];3504 -> 3594[label="",style="solid", color="black", weight=3]; 32.13/13.19 3505[label="xuu33000",fontsize=16,color="green",shape="box"];3506[label="xuu34000",fontsize=16,color="green",shape="box"];3507[label="compare3 xuu33000 xuu34000",fontsize=16,color="black",shape="box"];3507 -> 3595[label="",style="solid", color="black", weight=3]; 32.13/13.19 3508[label="compare3 xuu33000 xuu34000",fontsize=16,color="black",shape="box"];3508 -> 3596[label="",style="solid", color="black", weight=3]; 32.13/13.19 3509[label="xuu33000",fontsize=16,color="green",shape="box"];3510[label="xuu34000",fontsize=16,color="green",shape="box"];3511[label="compare3 xuu33000 xuu34000",fontsize=16,color="black",shape="box"];3511 -> 3597[label="",style="solid", color="black", weight=3]; 32.13/13.19 3512[label="xuu33000",fontsize=16,color="green",shape="box"];3513[label="xuu34000",fontsize=16,color="green",shape="box"];3514[label="xuu33000",fontsize=16,color="green",shape="box"];3515[label="xuu34000",fontsize=16,color="green",shape="box"];3516 -> 1208[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3516[label="compare (xuu33000 * Pos xuu340010) (Pos xuu330010 * xuu34000)",fontsize=16,color="magenta"];3516 -> 3598[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3516 -> 3599[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3517 -> 1208[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3517[label="compare (xuu33000 * Pos xuu340010) (Neg xuu330010 * xuu34000)",fontsize=16,color="magenta"];3517 -> 3600[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3517 -> 3601[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3518 -> 1208[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3518[label="compare (xuu33000 * Neg xuu340010) (Pos xuu330010 * xuu34000)",fontsize=16,color="magenta"];3518 -> 3602[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3518 -> 3603[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3519 -> 1208[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3519[label="compare (xuu33000 * Neg xuu340010) (Neg xuu330010 * xuu34000)",fontsize=16,color="magenta"];3519 -> 3604[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3519 -> 3605[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3520 -> 1208[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3520[label="compare (xuu33000 * Pos xuu340010) (Pos xuu330010 * xuu34000)",fontsize=16,color="magenta"];3520 -> 3606[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3520 -> 3607[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3521 -> 1208[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3521[label="compare (xuu33000 * Pos xuu340010) (Neg xuu330010 * xuu34000)",fontsize=16,color="magenta"];3521 -> 3608[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3521 -> 3609[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3522 -> 1208[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3522[label="compare (xuu33000 * Neg xuu340010) (Pos xuu330010 * xuu34000)",fontsize=16,color="magenta"];3522 -> 3610[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3522 -> 3611[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3523 -> 1208[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3523[label="compare (xuu33000 * Neg xuu340010) (Neg xuu330010 * xuu34000)",fontsize=16,color="magenta"];3523 -> 3612[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3523 -> 3613[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3525[label="compare xuu33000 xuu34000",fontsize=16,color="blue",shape="box"];4654[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4654[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4654 -> 3614[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4655[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4655[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4655 -> 3615[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4656[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4656[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4656 -> 3616[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4657[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4657[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4657 -> 3617[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4658[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4658[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4658 -> 3618[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4659[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4659[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4659 -> 3619[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4660[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4660[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4660 -> 3620[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4661[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4661[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4661 -> 3621[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4662[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4662[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4662 -> 3622[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4663[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4663[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4663 -> 3623[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4664[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4664[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4664 -> 3624[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4665[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4665[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4665 -> 3625[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4666[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4666[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4666 -> 3626[label="",style="solid", color="blue", weight=3]; 32.13/13.19 4667[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4667[label="",style="solid", color="blue", weight=9]; 32.13/13.19 4667 -> 3627[label="",style="solid", color="blue", weight=3]; 32.13/13.19 3526[label="xuu176",fontsize=16,color="green",shape="box"];3524[label="primCompAux0 xuu182 xuu183",fontsize=16,color="burlywood",shape="triangle"];4668[label="xuu183/LT",fontsize=10,color="white",style="solid",shape="box"];3524 -> 4668[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4668 -> 3628[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4669[label="xuu183/EQ",fontsize=10,color="white",style="solid",shape="box"];3524 -> 4669[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4669 -> 3629[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4670[label="xuu183/GT",fontsize=10,color="white",style="solid",shape="box"];3524 -> 4670[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4670 -> 3630[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 3529[label="xuu33000",fontsize=16,color="green",shape="box"];3530[label="xuu34001",fontsize=16,color="green",shape="box"];3531[label="xuu34000",fontsize=16,color="green",shape="box"];3532[label="xuu33001",fontsize=16,color="green",shape="box"];3533[label="Integer xuu330000 * xuu34001",fontsize=16,color="burlywood",shape="box"];4671[label="xuu34001/Integer xuu340010",fontsize=10,color="white",style="solid",shape="box"];3533 -> 4671[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4671 -> 3653[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 3534[label="xuu33001",fontsize=16,color="green",shape="box"];3535[label="xuu34000",fontsize=16,color="green",shape="box"];1981[label="primCmpNat (Succ xuu3300) xuu340",fontsize=16,color="burlywood",shape="box"];4672[label="xuu340/Succ xuu3400",fontsize=10,color="white",style="solid",shape="box"];1981 -> 4672[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4672 -> 2207[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4673[label="xuu340/Zero",fontsize=10,color="white",style="solid",shape="box"];1981 -> 4673[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4673 -> 2208[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 1982[label="primCmpNat Zero xuu340",fontsize=16,color="burlywood",shape="box"];4674[label="xuu340/Succ xuu3400",fontsize=10,color="white",style="solid",shape="box"];1982 -> 4674[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4674 -> 2209[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4675[label="xuu340/Zero",fontsize=10,color="white",style="solid",shape="box"];1982 -> 4675[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4675 -> 2210[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 1873[label="primPlusInt (Pos xuu2820) (Pos xuu970)",fontsize=16,color="black",shape="box"];1873 -> 1991[label="",style="solid", color="black", weight=3]; 32.13/13.19 1874[label="primPlusInt (Pos xuu2820) (Neg xuu970)",fontsize=16,color="black",shape="box"];1874 -> 1992[label="",style="solid", color="black", weight=3]; 32.13/13.19 1875[label="primPlusInt (Neg xuu2820) (Pos xuu970)",fontsize=16,color="black",shape="box"];1875 -> 1993[label="",style="solid", color="black", weight=3]; 32.13/13.19 1876[label="primPlusInt (Neg xuu2820) (Neg xuu970)",fontsize=16,color="black",shape="box"];1876 -> 1994[label="",style="solid", color="black", weight=3]; 32.13/13.19 3843[label="xuu61",fontsize=16,color="green",shape="box"];3844[label="xuu64",fontsize=16,color="green",shape="box"];3845[label="Succ Zero",fontsize=16,color="green",shape="box"];3846[label="Just xuu600",fontsize=16,color="green",shape="box"];3847[label="xuu28",fontsize=16,color="green",shape="box"];1984 -> 2078[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1984[label="FiniteMap.mkBalBranch6MkBalBranch11 (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 xuu280 xuu281 xuu282 xuu283 xuu284 (FiniteMap.sizeFM xuu284 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu283)",fontsize=16,color="magenta"];1984 -> 2079[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1985[label="xuu643",fontsize=16,color="green",shape="box"];1986[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1987 -> 1526[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1987[label="FiniteMap.sizeFM xuu644",fontsize=16,color="magenta"];1987 -> 2113[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1988[label="FiniteMap.mkBalBranch6MkBalBranch00 (Just xuu600) xuu61 xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 otherwise",fontsize=16,color="black",shape="box"];1988 -> 2114[label="",style="solid", color="black", weight=3]; 32.13/13.19 1989[label="FiniteMap.mkBalBranch6Single_L (Just xuu600) xuu61 xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];1989 -> 2115[label="",style="solid", color="black", weight=3]; 32.13/13.19 4052[label="Pos (Succ Zero)",fontsize=16,color="green",shape="box"];4053[label="FiniteMap.mkBranchLeft_size xuu212 xuu209 xuu211",fontsize=16,color="black",shape="box"];4053 -> 4056[label="",style="solid", color="black", weight=3]; 32.13/13.19 4054[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];4054 -> 4057[label="",style="solid", color="black", weight=3]; 32.13/13.19 4055[label="FiniteMap.sizeFM (FiniteMap.Branch xuu2120 xuu2121 xuu2122 xuu2123 xuu2124)",fontsize=16,color="black",shape="box"];4055 -> 4058[label="",style="solid", color="black", weight=3]; 32.13/13.19 3848[label="xuu61",fontsize=16,color="green",shape="box"];3849[label="xuu64",fontsize=16,color="green",shape="box"];3850[label="Succ Zero",fontsize=16,color="green",shape="box"];3851[label="Nothing",fontsize=16,color="green",shape="box"];3852[label="xuu36",fontsize=16,color="green",shape="box"];1996 -> 2123[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1996[label="FiniteMap.mkBalBranch6MkBalBranch11 Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 xuu360 xuu361 xuu362 xuu363 xuu364 (FiniteMap.sizeFM xuu364 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu363)",fontsize=16,color="magenta"];1996 -> 2124[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1997[label="xuu643",fontsize=16,color="green",shape="box"];1998[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1999 -> 1526[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1999[label="FiniteMap.sizeFM xuu644",fontsize=16,color="magenta"];1999 -> 2181[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2000[label="FiniteMap.mkBalBranch6MkBalBranch00 Nothing xuu61 xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 otherwise",fontsize=16,color="black",shape="box"];2000 -> 2182[label="",style="solid", color="black", weight=3]; 32.13/13.19 2001[label="FiniteMap.mkBalBranch6Single_L Nothing xuu61 xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];2001 -> 2183[label="",style="solid", color="black", weight=3]; 32.13/13.19 1888 -> 2003[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1888[label="primPlusNat (primMulNat xuu311000000 (Succ xuu600100)) (Succ xuu600100)",fontsize=16,color="magenta"];1888 -> 2004[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1889[label="Zero",fontsize=16,color="green",shape="box"];1890[label="Zero",fontsize=16,color="green",shape="box"];1891[label="Zero",fontsize=16,color="green",shape="box"];2005[label="xuu340",fontsize=16,color="green",shape="box"];2006[label="Succ xuu3300",fontsize=16,color="green",shape="box"];2007 -> 1861[label="",style="dashed", color="red", weight=0]; 32.13/13.19 2007[label="primCmpNat Zero (Succ xuu3400)",fontsize=16,color="magenta"];2007 -> 2203[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2007 -> 2204[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2008[label="EQ",fontsize=16,color="green",shape="box"];2009[label="GT",fontsize=16,color="green",shape="box"];2010[label="EQ",fontsize=16,color="green",shape="box"];2011[label="Succ xuu3300",fontsize=16,color="green",shape="box"];2012[label="xuu340",fontsize=16,color="green",shape="box"];2013[label="LT",fontsize=16,color="green",shape="box"];2014[label="EQ",fontsize=16,color="green",shape="box"];2015 -> 1861[label="",style="dashed", color="red", weight=0]; 32.13/13.19 2015[label="primCmpNat (Succ xuu3400) Zero",fontsize=16,color="magenta"];2015 -> 2205[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2015 -> 2206[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2016[label="EQ",fontsize=16,color="green",shape="box"];3536[label="xuu33002",fontsize=16,color="green",shape="box"];3537[label="xuu34002",fontsize=16,color="green",shape="box"];3538[label="xuu33002",fontsize=16,color="green",shape="box"];3539[label="xuu34002",fontsize=16,color="green",shape="box"];3540[label="xuu33002",fontsize=16,color="green",shape="box"];3541[label="xuu34002",fontsize=16,color="green",shape="box"];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="xuu33001",fontsize=16,color="green",shape="box"];3565[label="xuu34001",fontsize=16,color="green",shape="box"];3566[label="xuu33001",fontsize=16,color="green",shape="box"];3567[label="xuu34001",fontsize=16,color="green",shape="box"];3568[label="xuu33001",fontsize=16,color="green",shape="box"];3569[label="xuu34001",fontsize=16,color="green",shape="box"];3570[label="xuu33001",fontsize=16,color="green",shape="box"];3571[label="xuu34001",fontsize=16,color="green",shape="box"];3572[label="xuu33001",fontsize=16,color="green",shape="box"];3573[label="xuu34001",fontsize=16,color="green",shape="box"];3574[label="xuu33001",fontsize=16,color="green",shape="box"];3575[label="xuu34001",fontsize=16,color="green",shape="box"];3576[label="xuu33001",fontsize=16,color="green",shape="box"];3577[label="xuu34001",fontsize=16,color="green",shape="box"];3578[label="xuu33001",fontsize=16,color="green",shape="box"];3579[label="xuu34001",fontsize=16,color="green",shape="box"];3580[label="xuu33001",fontsize=16,color="green",shape="box"];3581[label="xuu34001",fontsize=16,color="green",shape="box"];3582[label="xuu33001",fontsize=16,color="green",shape="box"];3583[label="xuu34001",fontsize=16,color="green",shape="box"];3584[label="xuu33001",fontsize=16,color="green",shape="box"];3585[label="xuu34001",fontsize=16,color="green",shape="box"];3586[label="xuu33001",fontsize=16,color="green",shape="box"];3587[label="xuu34001",fontsize=16,color="green",shape="box"];3588[label="xuu33001",fontsize=16,color="green",shape="box"];3589[label="xuu34001",fontsize=16,color="green",shape="box"];3590[label="xuu33001",fontsize=16,color="green",shape="box"];3591[label="xuu34001",fontsize=16,color="green",shape="box"];3592 -> 3654[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3592[label="compare2 xuu33000 xuu34000 (xuu33000 == xuu34000)",fontsize=16,color="magenta"];3592 -> 3655[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1774[label="xuu330",fontsize=16,color="green",shape="box"];1775[label="xuu340",fontsize=16,color="green",shape="box"];3593 -> 3659[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3593[label="compare2 xuu33000 xuu34000 (xuu33000 == xuu34000)",fontsize=16,color="magenta"];3593 -> 3660[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3594 -> 3662[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3594[label="compare2 xuu33000 xuu34000 (xuu33000 == xuu34000)",fontsize=16,color="magenta"];3594 -> 3663[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3595 -> 2023[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3595[label="compare2 xuu33000 xuu34000 (xuu33000 == xuu34000)",fontsize=16,color="magenta"];3595 -> 3664[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3595 -> 3665[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3595 -> 3666[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3596 -> 3667[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3596[label="compare2 xuu33000 xuu34000 (xuu33000 == xuu34000)",fontsize=16,color="magenta"];3596 -> 3668[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3597 -> 3669[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3597[label="compare2 xuu33000 xuu34000 (xuu33000 == xuu34000)",fontsize=16,color="magenta"];3597 -> 3670[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3598 -> 617[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3598[label="xuu33000 * Pos xuu340010",fontsize=16,color="magenta"];3598 -> 3671[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3598 -> 3672[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3599 -> 617[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3599[label="Pos xuu330010 * xuu34000",fontsize=16,color="magenta"];3599 -> 3673[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3599 -> 3674[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3600 -> 617[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3600[label="xuu33000 * Pos xuu340010",fontsize=16,color="magenta"];3600 -> 3675[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3600 -> 3676[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3601 -> 617[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3601[label="Neg xuu330010 * xuu34000",fontsize=16,color="magenta"];3601 -> 3677[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3601 -> 3678[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3602 -> 617[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3602[label="xuu33000 * Neg xuu340010",fontsize=16,color="magenta"];3602 -> 3679[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3602 -> 3680[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3603 -> 617[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3603[label="Pos xuu330010 * xuu34000",fontsize=16,color="magenta"];3603 -> 3681[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3603 -> 3682[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3604 -> 617[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3604[label="xuu33000 * Neg xuu340010",fontsize=16,color="magenta"];3604 -> 3683[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3604 -> 3684[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3605 -> 617[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3605[label="Neg xuu330010 * xuu34000",fontsize=16,color="magenta"];3605 -> 3685[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3605 -> 3686[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3606 -> 617[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3606[label="xuu33000 * Pos xuu340010",fontsize=16,color="magenta"];3606 -> 3687[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3606 -> 3688[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3607 -> 617[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3607[label="Pos xuu330010 * xuu34000",fontsize=16,color="magenta"];3607 -> 3689[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3607 -> 3690[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3608 -> 617[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3608[label="xuu33000 * Pos xuu340010",fontsize=16,color="magenta"];3608 -> 3691[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3608 -> 3692[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3609 -> 617[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3609[label="Neg xuu330010 * xuu34000",fontsize=16,color="magenta"];3609 -> 3693[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3609 -> 3694[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3610 -> 617[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3610[label="xuu33000 * Neg xuu340010",fontsize=16,color="magenta"];3610 -> 3695[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3610 -> 3696[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3611 -> 617[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3611[label="Pos xuu330010 * xuu34000",fontsize=16,color="magenta"];3611 -> 3697[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3611 -> 3698[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3612 -> 617[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3612[label="xuu33000 * Neg xuu340010",fontsize=16,color="magenta"];3612 -> 3699[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3612 -> 3700[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3613 -> 617[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3613[label="Neg xuu330010 * xuu34000",fontsize=16,color="magenta"];3613 -> 3701[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3613 -> 3702[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3614 -> 3325[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3614[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3614 -> 3703[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3614 -> 3704[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3615 -> 1208[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3615[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3615 -> 3705[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3615 -> 3706[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3616 -> 3327[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3616[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3616 -> 3707[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3616 -> 3708[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3617 -> 2874[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3617[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3617 -> 3709[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3617 -> 3710[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3618 -> 2875[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3618[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3618 -> 3711[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3618 -> 3712[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3619 -> 2876[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3619[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3619 -> 3713[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3619 -> 3714[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3620 -> 3335[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3620[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3620 -> 3715[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3620 -> 3716[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3621 -> 2877[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3621[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3621 -> 3717[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3621 -> 3718[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3622 -> 3339[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3622[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3622 -> 3719[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3622 -> 3720[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3623 -> 3341[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3623[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3623 -> 3721[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3623 -> 3722[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3624 -> 2878[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3624[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3624 -> 3723[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3624 -> 3724[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3625 -> 3345[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3625[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3625 -> 3725[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3625 -> 3726[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3626 -> 2879[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3626[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3626 -> 3727[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3626 -> 3728[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3627 -> 2880[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3627[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3627 -> 3729[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3627 -> 3730[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3628[label="primCompAux0 xuu182 LT",fontsize=16,color="black",shape="box"];3628 -> 3731[label="",style="solid", color="black", weight=3]; 32.13/13.19 3629[label="primCompAux0 xuu182 EQ",fontsize=16,color="black",shape="box"];3629 -> 3732[label="",style="solid", color="black", weight=3]; 32.13/13.19 3630[label="primCompAux0 xuu182 GT",fontsize=16,color="black",shape="box"];3630 -> 3733[label="",style="solid", color="black", weight=3]; 32.13/13.19 3653[label="Integer xuu330000 * Integer xuu340010",fontsize=16,color="black",shape="box"];3653 -> 3734[label="",style="solid", color="black", weight=3]; 32.13/13.19 2207[label="primCmpNat (Succ xuu3300) (Succ xuu3400)",fontsize=16,color="black",shape="box"];2207 -> 2270[label="",style="solid", color="black", weight=3]; 32.13/13.19 2208[label="primCmpNat (Succ xuu3300) Zero",fontsize=16,color="black",shape="box"];2208 -> 2271[label="",style="solid", color="black", weight=3]; 32.13/13.19 2209[label="primCmpNat Zero (Succ xuu3400)",fontsize=16,color="black",shape="box"];2209 -> 2272[label="",style="solid", color="black", weight=3]; 32.13/13.19 2210[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];2210 -> 2273[label="",style="solid", color="black", weight=3]; 32.13/13.19 1991[label="Pos (primPlusNat xuu2820 xuu970)",fontsize=16,color="green",shape="box"];1991 -> 2117[label="",style="dashed", color="green", weight=3]; 32.13/13.19 1992[label="primMinusNat xuu2820 xuu970",fontsize=16,color="burlywood",shape="triangle"];4676[label="xuu2820/Succ xuu28200",fontsize=10,color="white",style="solid",shape="box"];1992 -> 4676[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4676 -> 2118[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4677[label="xuu2820/Zero",fontsize=10,color="white",style="solid",shape="box"];1992 -> 4677[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4677 -> 2119[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 1993 -> 1992[label="",style="dashed", color="red", weight=0]; 32.13/13.19 1993[label="primMinusNat xuu970 xuu2820",fontsize=16,color="magenta"];1993 -> 2120[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1993 -> 2121[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 1994[label="Neg (primPlusNat xuu2820 xuu970)",fontsize=16,color="green",shape="box"];1994 -> 2122[label="",style="dashed", color="green", weight=3]; 32.13/13.19 2079 -> 1333[label="",style="dashed", color="red", weight=0]; 32.13/13.19 2079[label="FiniteMap.sizeFM xuu284 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu283",fontsize=16,color="magenta"];2079 -> 2185[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2079 -> 2186[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2078[label="FiniteMap.mkBalBranch6MkBalBranch11 (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 xuu280 xuu281 xuu282 xuu283 xuu284 xuu112",fontsize=16,color="burlywood",shape="triangle"];4678[label="xuu112/False",fontsize=10,color="white",style="solid",shape="box"];2078 -> 4678[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4678 -> 2187[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4679[label="xuu112/True",fontsize=10,color="white",style="solid",shape="box"];2078 -> 4679[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4679 -> 2188[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 2113[label="xuu644",fontsize=16,color="green",shape="box"];2114[label="FiniteMap.mkBalBranch6MkBalBranch00 (Just xuu600) xuu61 xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 True",fontsize=16,color="black",shape="box"];2114 -> 2189[label="",style="solid", color="black", weight=3]; 32.13/13.19 2115 -> 3832[label="",style="dashed", color="red", weight=0]; 32.13/13.19 2115[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu640 xuu641 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (Just xuu600) xuu61 xuu28 xuu643) xuu644",fontsize=16,color="magenta"];2115 -> 3853[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2115 -> 3854[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2115 -> 3855[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2115 -> 3856[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2115 -> 3857[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 4056 -> 4051[label="",style="dashed", color="red", weight=0]; 32.13/13.19 4056[label="FiniteMap.sizeFM xuu211",fontsize=16,color="magenta"];4056 -> 4059[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 4057[label="Pos Zero",fontsize=16,color="green",shape="box"];4058[label="xuu2122",fontsize=16,color="green",shape="box"];2124 -> 1333[label="",style="dashed", color="red", weight=0]; 32.13/13.19 2124[label="FiniteMap.sizeFM xuu364 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu363",fontsize=16,color="magenta"];2124 -> 2199[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2124 -> 2200[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2123[label="FiniteMap.mkBalBranch6MkBalBranch11 Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 xuu360 xuu361 xuu362 xuu363 xuu364 xuu116",fontsize=16,color="burlywood",shape="triangle"];4680[label="xuu116/False",fontsize=10,color="white",style="solid",shape="box"];2123 -> 4680[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4680 -> 2201[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4681[label="xuu116/True",fontsize=10,color="white",style="solid",shape="box"];2123 -> 4681[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4681 -> 2202[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 2181[label="xuu644",fontsize=16,color="green",shape="box"];2182[label="FiniteMap.mkBalBranch6MkBalBranch00 Nothing xuu61 xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 True",fontsize=16,color="black",shape="box"];2182 -> 2247[label="",style="solid", color="black", weight=3]; 32.13/13.19 2183 -> 3832[label="",style="dashed", color="red", weight=0]; 32.13/13.19 2183[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu640 xuu641 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) Nothing xuu61 xuu36 xuu643) xuu644",fontsize=16,color="magenta"];2183 -> 3858[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2183 -> 3859[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2183 -> 3860[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2183 -> 3861[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2183 -> 3862[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2004 -> 1399[label="",style="dashed", color="red", weight=0]; 32.13/13.19 2004[label="primMulNat xuu311000000 (Succ xuu600100)",fontsize=16,color="magenta"];2004 -> 2211[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2004 -> 2212[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2003 -> 2117[label="",style="dashed", color="red", weight=0]; 32.13/13.19 2003[label="primPlusNat xuu107 (Succ xuu600100)",fontsize=16,color="magenta"];2003 -> 2213[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2003 -> 2214[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2203[label="Succ xuu3400",fontsize=16,color="green",shape="box"];2204[label="Zero",fontsize=16,color="green",shape="box"];2205[label="Zero",fontsize=16,color="green",shape="box"];2206[label="Succ xuu3400",fontsize=16,color="green",shape="box"];3655 -> 2067[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3655[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3655 -> 3736[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3655 -> 3737[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3654[label="compare2 xuu33000 xuu34000 xuu193",fontsize=16,color="burlywood",shape="triangle"];4682[label="xuu193/False",fontsize=10,color="white",style="solid",shape="box"];3654 -> 4682[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4682 -> 3738[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4683[label="xuu193/True",fontsize=10,color="white",style="solid",shape="box"];3654 -> 4683[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4683 -> 3739[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 3660 -> 2063[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3660[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3660 -> 3740[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3660 -> 3741[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3659[label="compare2 xuu33000 xuu34000 xuu194",fontsize=16,color="burlywood",shape="triangle"];4684[label="xuu194/False",fontsize=10,color="white",style="solid",shape="box"];3659 -> 4684[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4684 -> 3742[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4685[label="xuu194/True",fontsize=10,color="white",style="solid",shape="box"];3659 -> 4685[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4685 -> 3743[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 3663 -> 86[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3663[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3663 -> 3744[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3663 -> 3745[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3662[label="compare2 xuu33000 xuu34000 xuu195",fontsize=16,color="burlywood",shape="triangle"];4686[label="xuu195/False",fontsize=10,color="white",style="solid",shape="box"];3662 -> 4686[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4686 -> 3746[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4687[label="xuu195/True",fontsize=10,color="white",style="solid",shape="box"];3662 -> 4687[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4687 -> 3747[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 3664[label="xuu33000",fontsize=16,color="green",shape="box"];3665 -> 2072[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3665[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3665 -> 3748[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3665 -> 3749[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3666[label="xuu34000",fontsize=16,color="green",shape="box"];3668 -> 2062[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3668[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3668 -> 3750[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3668 -> 3751[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3667[label="compare2 xuu33000 xuu34000 xuu196",fontsize=16,color="burlywood",shape="triangle"];4688[label="xuu196/False",fontsize=10,color="white",style="solid",shape="box"];3667 -> 4688[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4688 -> 3752[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4689[label="xuu196/True",fontsize=10,color="white",style="solid",shape="box"];3667 -> 4689[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4689 -> 3753[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 3670 -> 2066[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3670[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3670 -> 3754[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3670 -> 3755[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3669[label="compare2 xuu33000 xuu34000 xuu197",fontsize=16,color="burlywood",shape="triangle"];4690[label="xuu197/False",fontsize=10,color="white",style="solid",shape="box"];3669 -> 4690[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4690 -> 3756[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4691[label="xuu197/True",fontsize=10,color="white",style="solid",shape="box"];3669 -> 4691[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4691 -> 3757[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 3671[label="xuu33000",fontsize=16,color="green",shape="box"];3672[label="Pos xuu340010",fontsize=16,color="green",shape="box"];3673[label="Pos xuu330010",fontsize=16,color="green",shape="box"];3674[label="xuu34000",fontsize=16,color="green",shape="box"];3675[label="xuu33000",fontsize=16,color="green",shape="box"];3676[label="Pos xuu340010",fontsize=16,color="green",shape="box"];3677[label="Neg xuu330010",fontsize=16,color="green",shape="box"];3678[label="xuu34000",fontsize=16,color="green",shape="box"];3679[label="xuu33000",fontsize=16,color="green",shape="box"];3680[label="Neg xuu340010",fontsize=16,color="green",shape="box"];3681[label="Pos xuu330010",fontsize=16,color="green",shape="box"];3682[label="xuu34000",fontsize=16,color="green",shape="box"];3683[label="xuu33000",fontsize=16,color="green",shape="box"];3684[label="Neg xuu340010",fontsize=16,color="green",shape="box"];3685[label="Neg xuu330010",fontsize=16,color="green",shape="box"];3686[label="xuu34000",fontsize=16,color="green",shape="box"];3687[label="xuu33000",fontsize=16,color="green",shape="box"];3688[label="Pos xuu340010",fontsize=16,color="green",shape="box"];3689[label="Pos xuu330010",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="Pos xuu340010",fontsize=16,color="green",shape="box"];3693[label="Neg xuu330010",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="Neg xuu340010",fontsize=16,color="green",shape="box"];3697[label="Pos xuu330010",fontsize=16,color="green",shape="box"];3698[label="xuu34000",fontsize=16,color="green",shape="box"];3699[label="xuu33000",fontsize=16,color="green",shape="box"];3700[label="Neg xuu340010",fontsize=16,color="green",shape="box"];3701[label="Neg xuu330010",fontsize=16,color="green",shape="box"];3702[label="xuu34000",fontsize=16,color="green",shape="box"];3703[label="xuu33000",fontsize=16,color="green",shape="box"];3704[label="xuu34000",fontsize=16,color="green",shape="box"];3705[label="xuu33000",fontsize=16,color="green",shape="box"];3706[label="xuu34000",fontsize=16,color="green",shape="box"];3707[label="xuu33000",fontsize=16,color="green",shape="box"];3708[label="xuu34000",fontsize=16,color="green",shape="box"];3709[label="xuu33000",fontsize=16,color="green",shape="box"];3710[label="xuu34000",fontsize=16,color="green",shape="box"];3711[label="xuu33000",fontsize=16,color="green",shape="box"];3712[label="xuu34000",fontsize=16,color="green",shape="box"];3713[label="xuu33000",fontsize=16,color="green",shape="box"];3714[label="xuu34000",fontsize=16,color="green",shape="box"];3715[label="xuu33000",fontsize=16,color="green",shape="box"];3716[label="xuu34000",fontsize=16,color="green",shape="box"];3717[label="xuu33000",fontsize=16,color="green",shape="box"];3718[label="xuu34000",fontsize=16,color="green",shape="box"];3719[label="xuu33000",fontsize=16,color="green",shape="box"];3720[label="xuu34000",fontsize=16,color="green",shape="box"];3721[label="xuu33000",fontsize=16,color="green",shape="box"];3722[label="xuu34000",fontsize=16,color="green",shape="box"];3723[label="xuu33000",fontsize=16,color="green",shape="box"];3724[label="xuu34000",fontsize=16,color="green",shape="box"];3725[label="xuu33000",fontsize=16,color="green",shape="box"];3726[label="xuu34000",fontsize=16,color="green",shape="box"];3727[label="xuu33000",fontsize=16,color="green",shape="box"];3728[label="xuu34000",fontsize=16,color="green",shape="box"];3729[label="xuu33000",fontsize=16,color="green",shape="box"];3730[label="xuu34000",fontsize=16,color="green",shape="box"];3731[label="LT",fontsize=16,color="green",shape="box"];3732[label="xuu182",fontsize=16,color="green",shape="box"];3733[label="GT",fontsize=16,color="green",shape="box"];3734[label="Integer (primMulInt xuu330000 xuu340010)",fontsize=16,color="green",shape="box"];3734 -> 3771[label="",style="dashed", color="green", weight=3]; 32.13/13.19 2270 -> 1861[label="",style="dashed", color="red", weight=0]; 32.13/13.19 2270[label="primCmpNat xuu3300 xuu3400",fontsize=16,color="magenta"];2270 -> 2598[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2270 -> 2599[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2271[label="GT",fontsize=16,color="green",shape="box"];2272[label="LT",fontsize=16,color="green",shape="box"];2273[label="EQ",fontsize=16,color="green",shape="box"];2117[label="primPlusNat xuu2820 xuu970",fontsize=16,color="burlywood",shape="triangle"];4692[label="xuu2820/Succ xuu28200",fontsize=10,color="white",style="solid",shape="box"];2117 -> 4692[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4692 -> 2191[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4693[label="xuu2820/Zero",fontsize=10,color="white",style="solid",shape="box"];2117 -> 4693[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4693 -> 2192[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 2118[label="primMinusNat (Succ xuu28200) xuu970",fontsize=16,color="burlywood",shape="box"];4694[label="xuu970/Succ xuu9700",fontsize=10,color="white",style="solid",shape="box"];2118 -> 4694[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4694 -> 2193[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4695[label="xuu970/Zero",fontsize=10,color="white",style="solid",shape="box"];2118 -> 4695[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4695 -> 2194[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 2119[label="primMinusNat Zero xuu970",fontsize=16,color="burlywood",shape="box"];4696[label="xuu970/Succ xuu9700",fontsize=10,color="white",style="solid",shape="box"];2119 -> 4696[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4696 -> 2195[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4697[label="xuu970/Zero",fontsize=10,color="white",style="solid",shape="box"];2119 -> 4697[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4697 -> 2196[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 2120[label="xuu2820",fontsize=16,color="green",shape="box"];2121[label="xuu970",fontsize=16,color="green",shape="box"];2122 -> 2117[label="",style="dashed", color="red", weight=0]; 32.13/13.19 2122[label="primPlusNat xuu2820 xuu970",fontsize=16,color="magenta"];2122 -> 2197[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2122 -> 2198[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2185 -> 1526[label="",style="dashed", color="red", weight=0]; 32.13/13.19 2185[label="FiniteMap.sizeFM xuu284",fontsize=16,color="magenta"];2185 -> 2249[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2186 -> 617[label="",style="dashed", color="red", weight=0]; 32.13/13.19 2186[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu283",fontsize=16,color="magenta"];2186 -> 2250[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2186 -> 2251[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2187[label="FiniteMap.mkBalBranch6MkBalBranch11 (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 xuu280 xuu281 xuu282 xuu283 xuu284 False",fontsize=16,color="black",shape="box"];2187 -> 2252[label="",style="solid", color="black", weight=3]; 32.13/13.19 2188[label="FiniteMap.mkBalBranch6MkBalBranch11 (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 xuu280 xuu281 xuu282 xuu283 xuu284 True",fontsize=16,color="black",shape="box"];2188 -> 2253[label="",style="solid", color="black", weight=3]; 32.13/13.19 2189[label="FiniteMap.mkBalBranch6Double_L (Just xuu600) xuu61 xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="burlywood",shape="box"];4698[label="xuu643/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2189 -> 4698[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4698 -> 2254[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4699[label="xuu643/FiniteMap.Branch xuu6430 xuu6431 xuu6432 xuu6433 xuu6434",fontsize=10,color="white",style="solid",shape="box"];2189 -> 4699[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4699 -> 2255[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 3853[label="xuu641",fontsize=16,color="green",shape="box"];3854[label="xuu644",fontsize=16,color="green",shape="box"];3855[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];3856[label="xuu640",fontsize=16,color="green",shape="box"];3857 -> 3832[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3857[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (Just xuu600) xuu61 xuu28 xuu643",fontsize=16,color="magenta"];3857 -> 3964[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3857 -> 3965[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3857 -> 3966[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3857 -> 3967[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3857 -> 3968[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 4059[label="xuu211",fontsize=16,color="green",shape="box"];2199 -> 1526[label="",style="dashed", color="red", weight=0]; 32.13/13.19 2199[label="FiniteMap.sizeFM xuu364",fontsize=16,color="magenta"];2199 -> 2265[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2200 -> 617[label="",style="dashed", color="red", weight=0]; 32.13/13.19 2200[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu363",fontsize=16,color="magenta"];2200 -> 2266[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2200 -> 2267[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2201[label="FiniteMap.mkBalBranch6MkBalBranch11 Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 xuu360 xuu361 xuu362 xuu363 xuu364 False",fontsize=16,color="black",shape="box"];2201 -> 2268[label="",style="solid", color="black", weight=3]; 32.13/13.19 2202[label="FiniteMap.mkBalBranch6MkBalBranch11 Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 xuu360 xuu361 xuu362 xuu363 xuu364 True",fontsize=16,color="black",shape="box"];2202 -> 2269[label="",style="solid", color="black", weight=3]; 32.13/13.19 2247[label="FiniteMap.mkBalBranch6Double_L Nothing xuu61 xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="burlywood",shape="box"];4700[label="xuu643/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2247 -> 4700[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4700 -> 2579[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4701[label="xuu643/FiniteMap.Branch xuu6430 xuu6431 xuu6432 xuu6433 xuu6434",fontsize=10,color="white",style="solid",shape="box"];2247 -> 4701[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4701 -> 2580[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 3858[label="xuu641",fontsize=16,color="green",shape="box"];3859[label="xuu644",fontsize=16,color="green",shape="box"];3860[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];3861[label="xuu640",fontsize=16,color="green",shape="box"];3862 -> 3832[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3862[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) Nothing xuu61 xuu36 xuu643",fontsize=16,color="magenta"];3862 -> 3969[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3862 -> 3970[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3862 -> 3971[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3862 -> 3972[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3862 -> 3973[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2211[label="Succ xuu600100",fontsize=16,color="green",shape="box"];2212[label="xuu311000000",fontsize=16,color="green",shape="box"];2213[label="Succ xuu600100",fontsize=16,color="green",shape="box"];2214[label="xuu107",fontsize=16,color="green",shape="box"];3736[label="xuu33000",fontsize=16,color="green",shape="box"];3737[label="xuu34000",fontsize=16,color="green",shape="box"];3738[label="compare2 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3738 -> 3772[label="",style="solid", color="black", weight=3]; 32.13/13.19 3739[label="compare2 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3739 -> 3773[label="",style="solid", color="black", weight=3]; 32.13/13.19 3740[label="xuu33000",fontsize=16,color="green",shape="box"];3741[label="xuu34000",fontsize=16,color="green",shape="box"];3742[label="compare2 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3742 -> 3774[label="",style="solid", color="black", weight=3]; 32.13/13.19 3743[label="compare2 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3743 -> 3775[label="",style="solid", color="black", weight=3]; 32.13/13.19 3744[label="xuu33000",fontsize=16,color="green",shape="box"];3745[label="xuu34000",fontsize=16,color="green",shape="box"];3746[label="compare2 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3746 -> 3776[label="",style="solid", color="black", weight=3]; 32.13/13.19 3747[label="compare2 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3747 -> 3777[label="",style="solid", color="black", weight=3]; 32.13/13.19 3748[label="xuu33000",fontsize=16,color="green",shape="box"];3749[label="xuu34000",fontsize=16,color="green",shape="box"];3750[label="xuu33000",fontsize=16,color="green",shape="box"];3751[label="xuu34000",fontsize=16,color="green",shape="box"];3752[label="compare2 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3752 -> 3778[label="",style="solid", color="black", weight=3]; 32.13/13.19 3753[label="compare2 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3753 -> 3779[label="",style="solid", color="black", weight=3]; 32.13/13.19 3754[label="xuu33000",fontsize=16,color="green",shape="box"];3755[label="xuu34000",fontsize=16,color="green",shape="box"];3756[label="compare2 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3756 -> 3780[label="",style="solid", color="black", weight=3]; 32.13/13.19 3757[label="compare2 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3757 -> 3781[label="",style="solid", color="black", weight=3]; 32.13/13.19 3771 -> 903[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3771[label="primMulInt xuu330000 xuu340010",fontsize=16,color="magenta"];3771 -> 3799[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3771 -> 3800[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2598[label="xuu3400",fontsize=16,color="green",shape="box"];2599[label="xuu3300",fontsize=16,color="green",shape="box"];2191[label="primPlusNat (Succ xuu28200) xuu970",fontsize=16,color="burlywood",shape="box"];4702[label="xuu970/Succ xuu9700",fontsize=10,color="white",style="solid",shape="box"];2191 -> 4702[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4702 -> 2257[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4703[label="xuu970/Zero",fontsize=10,color="white",style="solid",shape="box"];2191 -> 4703[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4703 -> 2258[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 2192[label="primPlusNat Zero xuu970",fontsize=16,color="burlywood",shape="box"];4704[label="xuu970/Succ xuu9700",fontsize=10,color="white",style="solid",shape="box"];2192 -> 4704[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4704 -> 2259[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4705[label="xuu970/Zero",fontsize=10,color="white",style="solid",shape="box"];2192 -> 4705[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4705 -> 2260[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 2193[label="primMinusNat (Succ xuu28200) (Succ xuu9700)",fontsize=16,color="black",shape="box"];2193 -> 2261[label="",style="solid", color="black", weight=3]; 32.13/13.19 2194[label="primMinusNat (Succ xuu28200) Zero",fontsize=16,color="black",shape="box"];2194 -> 2262[label="",style="solid", color="black", weight=3]; 32.13/13.19 2195[label="primMinusNat Zero (Succ xuu9700)",fontsize=16,color="black",shape="box"];2195 -> 2263[label="",style="solid", color="black", weight=3]; 32.13/13.19 2196[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];2196 -> 2264[label="",style="solid", color="black", weight=3]; 32.13/13.19 2197[label="xuu970",fontsize=16,color="green",shape="box"];2198[label="xuu2820",fontsize=16,color="green",shape="box"];2249[label="xuu284",fontsize=16,color="green",shape="box"];2250[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2251 -> 1526[label="",style="dashed", color="red", weight=0]; 32.13/13.19 2251[label="FiniteMap.sizeFM xuu283",fontsize=16,color="magenta"];2251 -> 2582[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2252[label="FiniteMap.mkBalBranch6MkBalBranch10 (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 xuu280 xuu281 xuu282 xuu283 xuu284 otherwise",fontsize=16,color="black",shape="box"];2252 -> 2583[label="",style="solid", color="black", weight=3]; 32.13/13.19 2253[label="FiniteMap.mkBalBranch6Single_R (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64",fontsize=16,color="black",shape="box"];2253 -> 2584[label="",style="solid", color="black", weight=3]; 32.13/13.19 2254[label="FiniteMap.mkBalBranch6Double_L (Just xuu600) xuu61 xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 FiniteMap.EmptyFM xuu644) xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 FiniteMap.EmptyFM xuu644)",fontsize=16,color="black",shape="box"];2254 -> 2585[label="",style="solid", color="black", weight=3]; 32.13/13.19 2255[label="FiniteMap.mkBalBranch6Double_L (Just xuu600) xuu61 xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 (FiniteMap.Branch xuu6430 xuu6431 xuu6432 xuu6433 xuu6434) xuu644) xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 (FiniteMap.Branch xuu6430 xuu6431 xuu6432 xuu6433 xuu6434) xuu644)",fontsize=16,color="black",shape="box"];2255 -> 2586[label="",style="solid", color="black", weight=3]; 32.13/13.19 3964[label="xuu61",fontsize=16,color="green",shape="box"];3965[label="xuu643",fontsize=16,color="green",shape="box"];3966[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3967[label="Just xuu600",fontsize=16,color="green",shape="box"];3968[label="xuu28",fontsize=16,color="green",shape="box"];2265[label="xuu364",fontsize=16,color="green",shape="box"];2266[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2267 -> 1526[label="",style="dashed", color="red", weight=0]; 32.13/13.19 2267[label="FiniteMap.sizeFM xuu363",fontsize=16,color="magenta"];2267 -> 2595[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2268[label="FiniteMap.mkBalBranch6MkBalBranch10 Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 xuu360 xuu361 xuu362 xuu363 xuu364 otherwise",fontsize=16,color="black",shape="box"];2268 -> 2596[label="",style="solid", color="black", weight=3]; 32.13/13.19 2269[label="FiniteMap.mkBalBranch6Single_R Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64",fontsize=16,color="black",shape="box"];2269 -> 2597[label="",style="solid", color="black", weight=3]; 32.13/13.19 2579[label="FiniteMap.mkBalBranch6Double_L Nothing xuu61 xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 FiniteMap.EmptyFM xuu644) xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 FiniteMap.EmptyFM xuu644)",fontsize=16,color="black",shape="box"];2579 -> 2794[label="",style="solid", color="black", weight=3]; 32.13/13.19 2580[label="FiniteMap.mkBalBranch6Double_L Nothing xuu61 xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 (FiniteMap.Branch xuu6430 xuu6431 xuu6432 xuu6433 xuu6434) xuu644) xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 (FiniteMap.Branch xuu6430 xuu6431 xuu6432 xuu6433 xuu6434) xuu644)",fontsize=16,color="black",shape="box"];2580 -> 2795[label="",style="solid", color="black", weight=3]; 32.13/13.19 3969[label="xuu61",fontsize=16,color="green",shape="box"];3970[label="xuu643",fontsize=16,color="green",shape="box"];3971[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3972[label="Nothing",fontsize=16,color="green",shape="box"];3973[label="xuu36",fontsize=16,color="green",shape="box"];3772 -> 3801[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3772[label="compare1 xuu33000 xuu34000 (xuu33000 <= xuu34000)",fontsize=16,color="magenta"];3772 -> 3802[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3773[label="EQ",fontsize=16,color="green",shape="box"];3774 -> 3803[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3774[label="compare1 xuu33000 xuu34000 (xuu33000 <= xuu34000)",fontsize=16,color="magenta"];3774 -> 3804[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3775[label="EQ",fontsize=16,color="green",shape="box"];3776 -> 3805[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3776[label="compare1 xuu33000 xuu34000 (xuu33000 <= xuu34000)",fontsize=16,color="magenta"];3776 -> 3806[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3777[label="EQ",fontsize=16,color="green",shape="box"];3778 -> 3807[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3778[label="compare1 xuu33000 xuu34000 (xuu33000 <= xuu34000)",fontsize=16,color="magenta"];3778 -> 3808[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3779[label="EQ",fontsize=16,color="green",shape="box"];3780 -> 3809[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3780[label="compare1 xuu33000 xuu34000 (xuu33000 <= xuu34000)",fontsize=16,color="magenta"];3780 -> 3810[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3781[label="EQ",fontsize=16,color="green",shape="box"];3799[label="xuu330000",fontsize=16,color="green",shape="box"];3800[label="xuu340010",fontsize=16,color="green",shape="box"];2257[label="primPlusNat (Succ xuu28200) (Succ xuu9700)",fontsize=16,color="black",shape="box"];2257 -> 2589[label="",style="solid", color="black", weight=3]; 32.13/13.19 2258[label="primPlusNat (Succ xuu28200) Zero",fontsize=16,color="black",shape="box"];2258 -> 2590[label="",style="solid", color="black", weight=3]; 32.13/13.19 2259[label="primPlusNat Zero (Succ xuu9700)",fontsize=16,color="black",shape="box"];2259 -> 2591[label="",style="solid", color="black", weight=3]; 32.13/13.19 2260[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2260 -> 2592[label="",style="solid", color="black", weight=3]; 32.13/13.19 2261 -> 1992[label="",style="dashed", color="red", weight=0]; 32.13/13.19 2261[label="primMinusNat xuu28200 xuu9700",fontsize=16,color="magenta"];2261 -> 2593[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2261 -> 2594[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2262[label="Pos (Succ xuu28200)",fontsize=16,color="green",shape="box"];2263[label="Neg (Succ xuu9700)",fontsize=16,color="green",shape="box"];2264[label="Pos Zero",fontsize=16,color="green",shape="box"];2582[label="xuu283",fontsize=16,color="green",shape="box"];2583[label="FiniteMap.mkBalBranch6MkBalBranch10 (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 xuu280 xuu281 xuu282 xuu283 xuu284 True",fontsize=16,color="black",shape="box"];2583 -> 2798[label="",style="solid", color="black", weight=3]; 32.13/13.19 2584 -> 3832[label="",style="dashed", color="red", weight=0]; 32.13/13.19 2584[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 xuu600) xuu61 xuu284 xuu64)",fontsize=16,color="magenta"];2584 -> 3863[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2584 -> 3864[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2584 -> 3865[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2584 -> 3866[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2584 -> 3867[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2585[label="error []",fontsize=16,color="red",shape="box"];2586 -> 3832[label="",style="dashed", color="red", weight=0]; 32.13/13.19 2586[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu6430 xuu6431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (Just xuu600) xuu61 xuu28 xuu6433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu640 xuu641 xuu6434 xuu644)",fontsize=16,color="magenta"];2586 -> 3868[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2586 -> 3869[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2586 -> 3870[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2586 -> 3871[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2586 -> 3872[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2595[label="xuu363",fontsize=16,color="green",shape="box"];2596[label="FiniteMap.mkBalBranch6MkBalBranch10 Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 xuu360 xuu361 xuu362 xuu363 xuu364 True",fontsize=16,color="black",shape="box"];2596 -> 2922[label="",style="solid", color="black", weight=3]; 32.13/13.19 2597 -> 3832[label="",style="dashed", color="red", weight=0]; 32.13/13.19 2597[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 xuu61 xuu364 xuu64)",fontsize=16,color="magenta"];2597 -> 3878[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2597 -> 3879[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2597 -> 3880[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2597 -> 3881[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2597 -> 3882[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2794[label="error []",fontsize=16,color="red",shape="box"];2795 -> 3832[label="",style="dashed", color="red", weight=0]; 32.13/13.19 2795[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu6430 xuu6431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) Nothing xuu61 xuu36 xuu6433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu640 xuu641 xuu6434 xuu644)",fontsize=16,color="magenta"];2795 -> 3883[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2795 -> 3884[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2795 -> 3885[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2795 -> 3886[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2795 -> 3887[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3802 -> 2559[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3802[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];3802 -> 3811[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3802 -> 3812[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3801[label="compare1 xuu33000 xuu34000 xuu202",fontsize=16,color="burlywood",shape="triangle"];4706[label="xuu202/False",fontsize=10,color="white",style="solid",shape="box"];3801 -> 4706[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4706 -> 3813[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4707[label="xuu202/True",fontsize=10,color="white",style="solid",shape="box"];3801 -> 4707[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4707 -> 3814[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 3804 -> 2561[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3804[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];3804 -> 3815[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3804 -> 3816[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3803[label="compare1 xuu33000 xuu34000 xuu203",fontsize=16,color="burlywood",shape="triangle"];4708[label="xuu203/False",fontsize=10,color="white",style="solid",shape="box"];3803 -> 4708[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4708 -> 3817[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4709[label="xuu203/True",fontsize=10,color="white",style="solid",shape="box"];3803 -> 4709[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4709 -> 3818[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 3806 -> 2565[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3806[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];3806 -> 3819[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3806 -> 3820[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3805[label="compare1 xuu33000 xuu34000 xuu204",fontsize=16,color="burlywood",shape="triangle"];4710[label="xuu204/False",fontsize=10,color="white",style="solid",shape="box"];3805 -> 4710[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4710 -> 3821[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4711[label="xuu204/True",fontsize=10,color="white",style="solid",shape="box"];3805 -> 4711[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4711 -> 3822[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 3808 -> 2568[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3808[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];3808 -> 3823[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3808 -> 3824[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3807[label="compare1 xuu33000 xuu34000 xuu205",fontsize=16,color="burlywood",shape="triangle"];4712[label="xuu205/False",fontsize=10,color="white",style="solid",shape="box"];3807 -> 4712[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4712 -> 3825[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4713[label="xuu205/True",fontsize=10,color="white",style="solid",shape="box"];3807 -> 4713[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4713 -> 3826[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 3810 -> 2570[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3810[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];3810 -> 3827[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3810 -> 3828[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3809[label="compare1 xuu33000 xuu34000 xuu206",fontsize=16,color="burlywood",shape="triangle"];4714[label="xuu206/False",fontsize=10,color="white",style="solid",shape="box"];3809 -> 4714[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4714 -> 3829[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4715[label="xuu206/True",fontsize=10,color="white",style="solid",shape="box"];3809 -> 4715[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4715 -> 3830[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 2589[label="Succ (Succ (primPlusNat xuu28200 xuu9700))",fontsize=16,color="green",shape="box"];2589 -> 2921[label="",style="dashed", color="green", weight=3]; 32.13/13.19 2590[label="Succ xuu28200",fontsize=16,color="green",shape="box"];2591[label="Succ xuu9700",fontsize=16,color="green",shape="box"];2592[label="Zero",fontsize=16,color="green",shape="box"];2593[label="xuu9700",fontsize=16,color="green",shape="box"];2594[label="xuu28200",fontsize=16,color="green",shape="box"];2798[label="FiniteMap.mkBalBranch6Double_R (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64",fontsize=16,color="burlywood",shape="box"];4716[label="xuu284/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4716[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4716 -> 3160[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4717[label="xuu284/FiniteMap.Branch xuu2840 xuu2841 xuu2842 xuu2843 xuu2844",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4717[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4717 -> 3161[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 3863[label="xuu281",fontsize=16,color="green",shape="box"];3864 -> 3832[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3864[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (Just xuu600) xuu61 xuu284 xuu64",fontsize=16,color="magenta"];3864 -> 3974[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3864 -> 3975[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3864 -> 3976[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3864 -> 3977[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3864 -> 3978[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3865[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];3866[label="xuu280",fontsize=16,color="green",shape="box"];3867[label="xuu283",fontsize=16,color="green",shape="box"];3868[label="xuu6431",fontsize=16,color="green",shape="box"];3869 -> 3832[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3869[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu640 xuu641 xuu6434 xuu644",fontsize=16,color="magenta"];3869 -> 3979[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3869 -> 3980[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3869 -> 3981[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3869 -> 3982[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3869 -> 3983[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3870[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];3871[label="xuu6430",fontsize=16,color="green",shape="box"];3872 -> 3832[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3872[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (Just xuu600) xuu61 xuu28 xuu6433",fontsize=16,color="magenta"];3872 -> 3984[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3872 -> 3985[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3872 -> 3986[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3872 -> 3987[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3872 -> 3988[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2922[label="FiniteMap.mkBalBranch6Double_R Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64",fontsize=16,color="burlywood",shape="box"];4718[label="xuu364/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2922 -> 4718[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4718 -> 3632[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 4719[label="xuu364/FiniteMap.Branch xuu3640 xuu3641 xuu3642 xuu3643 xuu3644",fontsize=10,color="white",style="solid",shape="box"];2922 -> 4719[label="",style="solid", color="burlywood", weight=9]; 32.13/13.19 4719 -> 3633[label="",style="solid", color="burlywood", weight=3]; 32.13/13.19 3878[label="xuu361",fontsize=16,color="green",shape="box"];3879 -> 3832[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3879[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) Nothing xuu61 xuu364 xuu64",fontsize=16,color="magenta"];3879 -> 3989[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3879 -> 3990[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3879 -> 3991[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3879 -> 3992[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3879 -> 3993[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3880[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];3881[label="xuu360",fontsize=16,color="green",shape="box"];3882[label="xuu363",fontsize=16,color="green",shape="box"];3883[label="xuu6431",fontsize=16,color="green",shape="box"];3884 -> 3832[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3884[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu640 xuu641 xuu6434 xuu644",fontsize=16,color="magenta"];3884 -> 3994[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3884 -> 3995[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3884 -> 3996[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3884 -> 3997[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3884 -> 3998[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3885[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];3886[label="xuu6430",fontsize=16,color="green",shape="box"];3887 -> 3832[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3887[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) Nothing xuu61 xuu36 xuu6433",fontsize=16,color="magenta"];3887 -> 3999[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3887 -> 4000[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3887 -> 4001[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3887 -> 4002[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3887 -> 4003[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3811[label="xuu33000",fontsize=16,color="green",shape="box"];3812[label="xuu34000",fontsize=16,color="green",shape="box"];3813[label="compare1 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3813 -> 4004[label="",style="solid", color="black", weight=3]; 32.13/13.19 3814[label="compare1 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3814 -> 4005[label="",style="solid", color="black", weight=3]; 32.13/13.19 3815[label="xuu33000",fontsize=16,color="green",shape="box"];3816[label="xuu34000",fontsize=16,color="green",shape="box"];3817[label="compare1 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3817 -> 4006[label="",style="solid", color="black", weight=3]; 32.13/13.19 3818[label="compare1 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3818 -> 4007[label="",style="solid", color="black", weight=3]; 32.13/13.19 3819[label="xuu33000",fontsize=16,color="green",shape="box"];3820[label="xuu34000",fontsize=16,color="green",shape="box"];3821[label="compare1 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3821 -> 4008[label="",style="solid", color="black", weight=3]; 32.13/13.19 3822[label="compare1 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3822 -> 4009[label="",style="solid", color="black", weight=3]; 32.13/13.19 3823[label="xuu33000",fontsize=16,color="green",shape="box"];3824[label="xuu34000",fontsize=16,color="green",shape="box"];3825[label="compare1 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3825 -> 4010[label="",style="solid", color="black", weight=3]; 32.13/13.19 3826[label="compare1 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3826 -> 4011[label="",style="solid", color="black", weight=3]; 32.13/13.19 3827[label="xuu33000",fontsize=16,color="green",shape="box"];3828[label="xuu34000",fontsize=16,color="green",shape="box"];3829[label="compare1 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3829 -> 4012[label="",style="solid", color="black", weight=3]; 32.13/13.19 3830[label="compare1 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3830 -> 4013[label="",style="solid", color="black", weight=3]; 32.13/13.19 2921 -> 2117[label="",style="dashed", color="red", weight=0]; 32.13/13.19 2921[label="primPlusNat xuu28200 xuu9700",fontsize=16,color="magenta"];2921 -> 3761[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 2921 -> 3762[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3160[label="FiniteMap.mkBalBranch6Double_R (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 FiniteMap.EmptyFM) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 FiniteMap.EmptyFM) xuu64",fontsize=16,color="black",shape="box"];3160 -> 3763[label="",style="solid", color="black", weight=3]; 32.13/13.19 3161[label="FiniteMap.mkBalBranch6Double_R (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 (FiniteMap.Branch xuu2840 xuu2841 xuu2842 xuu2843 xuu2844)) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 (FiniteMap.Branch xuu2840 xuu2841 xuu2842 xuu2843 xuu2844)) xuu64",fontsize=16,color="black",shape="box"];3161 -> 3764[label="",style="solid", color="black", weight=3]; 32.13/13.19 3974[label="xuu61",fontsize=16,color="green",shape="box"];3975[label="xuu64",fontsize=16,color="green",shape="box"];3976[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];3977[label="Just xuu600",fontsize=16,color="green",shape="box"];3978[label="xuu284",fontsize=16,color="green",shape="box"];3979[label="xuu641",fontsize=16,color="green",shape="box"];3980[label="xuu644",fontsize=16,color="green",shape="box"];3981[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];3982[label="xuu640",fontsize=16,color="green",shape="box"];3983[label="xuu6434",fontsize=16,color="green",shape="box"];3984[label="xuu61",fontsize=16,color="green",shape="box"];3985[label="xuu6433",fontsize=16,color="green",shape="box"];3986[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];3987[label="Just xuu600",fontsize=16,color="green",shape="box"];3988[label="xuu28",fontsize=16,color="green",shape="box"];3632[label="FiniteMap.mkBalBranch6Double_R Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 FiniteMap.EmptyFM) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 FiniteMap.EmptyFM) xuu64",fontsize=16,color="black",shape="box"];3632 -> 3769[label="",style="solid", color="black", weight=3]; 32.13/13.19 3633[label="FiniteMap.mkBalBranch6Double_R Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 (FiniteMap.Branch xuu3640 xuu3641 xuu3642 xuu3643 xuu3644)) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 (FiniteMap.Branch xuu3640 xuu3641 xuu3642 xuu3643 xuu3644)) xuu64",fontsize=16,color="black",shape="box"];3633 -> 3770[label="",style="solid", color="black", weight=3]; 32.13/13.19 3989[label="xuu61",fontsize=16,color="green",shape="box"];3990[label="xuu64",fontsize=16,color="green",shape="box"];3991[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];3992[label="Nothing",fontsize=16,color="green",shape="box"];3993[label="xuu364",fontsize=16,color="green",shape="box"];3994[label="xuu641",fontsize=16,color="green",shape="box"];3995[label="xuu644",fontsize=16,color="green",shape="box"];3996[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];3997[label="xuu640",fontsize=16,color="green",shape="box"];3998[label="xuu6434",fontsize=16,color="green",shape="box"];3999[label="xuu61",fontsize=16,color="green",shape="box"];4000[label="xuu6433",fontsize=16,color="green",shape="box"];4001[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];4002[label="Nothing",fontsize=16,color="green",shape="box"];4003[label="xuu36",fontsize=16,color="green",shape="box"];4004[label="compare0 xuu33000 xuu34000 otherwise",fontsize=16,color="black",shape="box"];4004 -> 4035[label="",style="solid", color="black", weight=3]; 32.13/13.19 4005[label="LT",fontsize=16,color="green",shape="box"];4006[label="compare0 xuu33000 xuu34000 otherwise",fontsize=16,color="black",shape="box"];4006 -> 4036[label="",style="solid", color="black", weight=3]; 32.13/13.19 4007[label="LT",fontsize=16,color="green",shape="box"];4008[label="compare0 xuu33000 xuu34000 otherwise",fontsize=16,color="black",shape="box"];4008 -> 4037[label="",style="solid", color="black", weight=3]; 32.13/13.19 4009[label="LT",fontsize=16,color="green",shape="box"];4010[label="compare0 xuu33000 xuu34000 otherwise",fontsize=16,color="black",shape="box"];4010 -> 4038[label="",style="solid", color="black", weight=3]; 32.13/13.19 4011[label="LT",fontsize=16,color="green",shape="box"];4012[label="compare0 xuu33000 xuu34000 otherwise",fontsize=16,color="black",shape="box"];4012 -> 4039[label="",style="solid", color="black", weight=3]; 32.13/13.19 4013[label="LT",fontsize=16,color="green",shape="box"];3761[label="xuu9700",fontsize=16,color="green",shape="box"];3762[label="xuu28200",fontsize=16,color="green",shape="box"];3763[label="error []",fontsize=16,color="red",shape="box"];3764 -> 3832[label="",style="dashed", color="red", weight=0]; 32.13/13.19 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 xuu600) xuu61 xuu2844 xuu64)",fontsize=16,color="magenta"];3764 -> 3923[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3764 -> 3924[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3764 -> 3925[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3764 -> 3926[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3764 -> 3927[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3769[label="error []",fontsize=16,color="red",shape="box"];3770 -> 3832[label="",style="dashed", color="red", weight=0]; 32.13/13.19 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 xuu61 xuu3644 xuu64)",fontsize=16,color="magenta"];3770 -> 3938[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3770 -> 3939[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3770 -> 3940[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3770 -> 3941[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3770 -> 3942[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 4035[label="compare0 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];4035 -> 4041[label="",style="solid", color="black", weight=3]; 32.13/13.19 4036[label="compare0 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];4036 -> 4042[label="",style="solid", color="black", weight=3]; 32.13/13.19 4037[label="compare0 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];4037 -> 4043[label="",style="solid", color="black", weight=3]; 32.13/13.19 4038[label="compare0 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];4038 -> 4044[label="",style="solid", color="black", weight=3]; 32.13/13.19 4039[label="compare0 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];4039 -> 4045[label="",style="solid", color="black", weight=3]; 32.13/13.19 3923[label="xuu2841",fontsize=16,color="green",shape="box"];3924 -> 3832[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3924[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (Just xuu600) xuu61 xuu2844 xuu64",fontsize=16,color="magenta"];3924 -> 4014[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3924 -> 4015[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3924 -> 4016[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3924 -> 4017[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3924 -> 4018[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3925[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];3926[label="xuu2840",fontsize=16,color="green",shape="box"];3927 -> 3832[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3927[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu280 xuu281 xuu283 xuu2843",fontsize=16,color="magenta"];3927 -> 4019[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3927 -> 4020[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3927 -> 4021[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3927 -> 4022[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3927 -> 4023[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3938[label="xuu3641",fontsize=16,color="green",shape="box"];3939 -> 3832[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3939[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) Nothing xuu61 xuu3644 xuu64",fontsize=16,color="magenta"];3939 -> 4024[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3939 -> 4025[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3939 -> 4026[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3939 -> 4027[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3939 -> 4028[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3940[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];3941[label="xuu3640",fontsize=16,color="green",shape="box"];3942 -> 3832[label="",style="dashed", color="red", weight=0]; 32.13/13.19 3942[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu360 xuu361 xuu363 xuu3643",fontsize=16,color="magenta"];3942 -> 4029[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3942 -> 4030[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3942 -> 4031[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3942 -> 4032[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 3942 -> 4033[label="",style="dashed", color="magenta", weight=3]; 32.13/13.19 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"];4045[label="GT",fontsize=16,color="green",shape="box"];4014[label="xuu61",fontsize=16,color="green",shape="box"];4015[label="xuu64",fontsize=16,color="green",shape="box"];4016[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];4017[label="Just xuu600",fontsize=16,color="green",shape="box"];4018[label="xuu2844",fontsize=16,color="green",shape="box"];4019[label="xuu281",fontsize=16,color="green",shape="box"];4020[label="xuu2843",fontsize=16,color="green",shape="box"];4021[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];4022[label="xuu280",fontsize=16,color="green",shape="box"];4023[label="xuu283",fontsize=16,color="green",shape="box"];4024[label="xuu61",fontsize=16,color="green",shape="box"];4025[label="xuu64",fontsize=16,color="green",shape="box"];4026[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];4027[label="Nothing",fontsize=16,color="green",shape="box"];4028[label="xuu3644",fontsize=16,color="green",shape="box"];4029[label="xuu361",fontsize=16,color="green",shape="box"];4030[label="xuu3643",fontsize=16,color="green",shape="box"];4031[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];4032[label="xuu360",fontsize=16,color="green",shape="box"];4033[label="xuu363",fontsize=16,color="green",shape="box"];} 32.13/13.19 32.13/13.19 ---------------------------------------- 32.13/13.19 32.13/13.19 (16) 32.13/13.19 Complex Obligation (AND) 32.13/13.19 32.13/13.19 ---------------------------------------- 32.13/13.19 32.13/13.19 (17) 32.13/13.19 Obligation: 32.13/13.19 Q DP problem: 32.13/13.19 The TRS P consists of the following rules: 32.13/13.19 32.13/13.19 new_primCmpNat(Succ(xuu3300), Succ(xuu3400)) -> new_primCmpNat(xuu3300, xuu3400) 32.13/13.19 32.13/13.19 R is empty. 32.13/13.19 Q is empty. 32.13/13.19 We have to consider all minimal (P,Q,R)-chains. 32.13/13.19 ---------------------------------------- 32.13/13.19 32.13/13.19 (18) QDPSizeChangeProof (EQUIVALENT) 32.13/13.19 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. 32.13/13.19 32.13/13.19 From the DPs we obtained the following set of size-change graphs: 32.13/13.19 *new_primCmpNat(Succ(xuu3300), Succ(xuu3400)) -> new_primCmpNat(xuu3300, xuu3400) 32.13/13.19 The graph contains the following edges 1 > 1, 2 > 2 32.13/13.19 32.13/13.19 32.13/13.19 ---------------------------------------- 32.13/13.19 32.13/13.19 (19) 32.13/13.19 YES 32.13/13.19 32.13/13.19 ---------------------------------------- 32.13/13.19 32.13/13.19 (20) 32.13/13.19 Obligation: 32.13/13.19 Q DP problem: 32.13/13.19 The TRS P consists of the following rules: 32.13/13.19 32.13/13.19 new_addToFM_C2(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, True, h, ba) -> new_addToFM_C(xuu63, Nothing, xuu31101, h, ba) 32.13/13.19 new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Nothing, xuu31101, h, ba) -> new_addToFM_C1(xuu61, xuu62, xuu63, xuu64, xuu31101, new_esEs8(new_compare23(Nothing, Nothing, True, h), GT), h, ba) 32.13/13.19 new_addToFM_C(Branch(Just(xuu600), xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Just(xuu600), new_esEs29(xuu311000, xuu600, h), h), LT), h, ba) 32.13/13.19 new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Nothing, False, h), GT), h, ba) 32.13/13.19 new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Just(xuu311000), xuu31101, h, ba) 32.13/13.19 new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu21, Just(xuu22), xuu23, bb, bc) 32.13/13.19 new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Nothing, False, h), LT), h, ba) 32.13/13.19 new_addToFM_C2(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, False, h, ba) -> new_addToFM_C10(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, new_esEs8(new_compare23(Nothing, Just(xuu600), False, h), GT), h, ba) 32.13/13.19 new_addToFM_C1(xuu61, xuu62, xuu63, xuu64, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Nothing, xuu31101, h, ba) 32.13/13.19 new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) -> new_addToFM_C(xuu63, Just(xuu311000), xuu31101, h, ba) 32.13/13.19 new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, bb, bc) -> new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs8(new_compare23(Just(xuu22), Just(xuu17), new_esEs30(xuu22, xuu17, bb), bb), GT), bb, bc) 32.13/13.19 new_addToFM_C(Branch(Just(xuu600), xuu61, xuu62, xuu63, xuu64), Nothing, xuu31101, h, ba) -> new_addToFM_C2(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, new_esEs8(new_compare23(Nothing, Just(xuu600), False, h), LT), h, ba) 32.13/13.19 new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu20, Just(xuu22), xuu23, bb, bc) 32.13/13.19 new_addToFM_C10(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Nothing, xuu31101, h, ba) 32.13/13.19 32.13/13.19 The TRS R consists of the following rules: 32.13/13.19 32.13/13.19 new_lt20(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) 32.13/13.19 new_esEs20(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.13/13.19 new_compare30(xuu33000, xuu34000, app(app(app(ty_@3, chc), chd), che)) -> new_compare28(xuu33000, xuu34000, chc, chd, che) 32.13/13.19 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 32.13/13.19 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Float) -> new_ltEs11(xuu33000, xuu34000) 32.13/13.19 new_primCmpInt(Neg(Succ(xuu3300)), Pos(xuu340)) -> LT 32.13/13.19 new_compare8(xuu33000, xuu34000, ee, ef) -> new_compare24(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, ee, ef), ee, ef) 32.13/13.19 new_esEs23(xuu3110000, xuu6000, app(ty_Maybe, cba)) -> new_esEs6(xuu3110000, xuu6000, cba) 32.13/13.19 new_pePe(True, xuu165) -> True 32.13/13.19 new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.13/13.19 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.13/13.19 new_esEs30(xuu22, xuu17, ty_Ordering) -> new_esEs8(xuu22, xuu17) 32.13/13.19 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Float) -> new_ltEs11(xuu33000, xuu34000) 32.13/13.19 new_esEs17(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) 32.13/13.19 new_lt4(xuu33000, xuu34000, bd, be) -> new_esEs8(new_compare6(xuu33000, xuu34000, bd, be), LT) 32.13/13.19 new_esEs29(xuu311000, xuu600, ty_Int) -> new_esEs12(xuu311000, xuu600) 32.13/13.19 new_esEs30(xuu22, xuu17, ty_Bool) -> new_esEs13(xuu22, xuu17) 32.13/13.19 new_compare23(xuu330, xuu340, True, dc) -> EQ 32.13/13.19 new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Maybe, bee)) -> new_ltEs13(xuu33000, xuu34000, bee) 32.13/13.19 new_lt15(xuu33000, xuu34000) -> new_esEs8(new_compare31(xuu33000, xuu34000), LT) 32.13/13.19 new_lt10(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) 32.13/13.19 new_ltEs12(LT, LT) -> True 32.13/13.19 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.13/13.19 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(ty_@2, dcd), dce)) -> new_ltEs14(xuu33000, xuu34000, dcd, dce) 32.13/13.19 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Char) -> new_ltEs17(xuu33000, xuu34000) 32.13/13.19 new_esEs4(Left(xuu3110000), Right(xuu6000), gc, eg) -> False 32.13/13.19 new_esEs4(Right(xuu3110000), Left(xuu6000), gc, eg) -> False 32.13/13.19 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Int, de) -> new_ltEs7(xuu33000, xuu34000) 32.13/13.19 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 32.13/13.19 new_primCmpInt(Pos(Zero), Neg(Succ(xuu3400))) -> GT 32.13/13.19 new_esEs29(xuu311000, xuu600, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs5(xuu311000, xuu600, hf, hg, hh) 32.13/13.19 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_[], dcb)) -> new_ltEs4(xuu33000, xuu34000, dcb) 32.13/13.19 new_esEs15(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), dea) -> new_asAs(new_esEs28(xuu3110000, xuu6000, dea), new_esEs27(xuu3110001, xuu6001, dea)) 32.13/13.19 new_esEs24(xuu33001, xuu34001, ty_Ordering) -> new_esEs8(xuu33001, xuu34001) 32.13/13.19 new_ltEs14(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), eb, ec) -> new_pePe(new_lt20(xuu33000, xuu34000, eb), new_asAs(new_esEs26(xuu33000, xuu34000, eb), new_ltEs20(xuu33001, xuu34001, ec))) 32.13/13.19 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_Ratio, dcf)) -> new_ltEs15(xuu33000, xuu34000, dcf) 32.13/13.19 new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, bhb), bhc)) -> new_esEs4(xuu3110000, xuu6000, bhb, bhc) 32.13/13.19 new_compare0(:(xuu33000, xuu33001), :(xuu34000, xuu34001), bf) -> new_primCompAux1(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, bf), bf) 32.13/13.19 new_primCmpInt(Neg(Succ(xuu3300)), Neg(xuu340)) -> new_primCmpNat0(xuu340, Succ(xuu3300)) 32.13/13.19 new_lt9(xuu33001, xuu34001, app(ty_[], cde)) -> new_lt16(xuu33001, xuu34001, cde) 32.13/13.19 new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_Either, bdg), bdh)) -> new_ltEs6(xuu33000, xuu34000, bdg, bdh) 32.13/13.19 new_lt10(xuu33000, xuu34000, app(ty_Ratio, cbe)) -> new_lt8(xuu33000, xuu34000, cbe) 32.13/13.19 new_esEs28(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.13/13.19 new_esEs26(xuu33000, xuu34000, app(app(ty_@2, cgf), cgg)) -> new_esEs7(xuu33000, xuu34000, cgf, cgg) 32.13/13.19 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Char) -> new_ltEs17(xuu33000, xuu34000) 32.13/13.19 new_esEs23(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.13/13.19 new_ltEs20(xuu33001, xuu34001, ty_@0) -> new_ltEs18(xuu33001, xuu34001) 32.13/13.19 new_esEs5(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), hf, hg, hh) -> new_asAs(new_esEs20(xuu3110000, xuu6000, hf), new_asAs(new_esEs19(xuu3110001, xuu6001, hg), new_esEs18(xuu3110002, xuu6002, hh))) 32.13/13.19 new_esEs10(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) 32.13/13.19 new_ltEs7(xuu3300, xuu3400) -> new_fsEs(new_compare12(xuu3300, xuu3400)) 32.13/13.19 new_esEs18(xuu3110002, xuu6002, ty_Ordering) -> new_esEs8(xuu3110002, xuu6002) 32.13/13.19 new_compare25(xuu33000, xuu34000, False) -> new_compare17(xuu33000, xuu34000, new_ltEs16(xuu33000, xuu34000)) 32.13/13.19 new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_[], dah), de) -> new_ltEs4(xuu33000, xuu34000, dah) 32.13/13.19 new_esEs18(xuu3110002, xuu6002, ty_Bool) -> new_esEs13(xuu3110002, xuu6002) 32.13/13.19 new_primCompAux0(xuu182, GT) -> GT 32.13/13.19 new_lt9(xuu33001, xuu34001, ty_Bool) -> new_lt18(xuu33001, xuu34001) 32.13/13.19 new_esEs23(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.13/13.19 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Double) -> new_ltEs9(xuu33000, xuu34000) 32.13/13.19 new_compare210(xuu33000, xuu34000, False) -> new_compare110(xuu33000, xuu34000, new_ltEs12(xuu33000, xuu34000)) 32.13/13.19 new_esEs18(xuu3110002, xuu6002, app(ty_Ratio, bah)) -> new_esEs15(xuu3110002, xuu6002, bah) 32.13/13.19 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Integer, eg) -> new_esEs17(xuu3110000, xuu6000) 32.13/13.19 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False 32.13/13.19 new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False 32.13/13.19 new_esEs8(GT, GT) -> True 32.13/13.19 new_fsEs(xuu149) -> new_not(new_esEs8(xuu149, GT)) 32.13/13.19 new_esEs19(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) 32.13/13.19 new_lt12(xuu33000, xuu34000) -> new_esEs8(new_compare19(xuu33000, xuu34000), LT) 32.13/13.19 new_esEs24(xuu33001, xuu34001, app(ty_Ratio, cea)) -> new_esEs15(xuu33001, xuu34001, cea) 32.13/13.19 new_esEs20(xuu3110000, xuu6000, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs5(xuu3110000, xuu6000, bcg, bch, bda) 32.13/13.19 new_ltEs4(xuu3300, xuu3400, bf) -> new_fsEs(new_compare0(xuu3300, xuu3400, bf)) 32.13/13.19 new_esEs8(EQ, EQ) -> True 32.13/13.19 new_esEs24(xuu33001, xuu34001, ty_Bool) -> new_esEs13(xuu33001, xuu34001) 32.13/13.19 new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Ratio, dbd), de) -> new_ltEs15(xuu33000, xuu34000, dbd) 32.13/13.19 new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) 32.13/13.19 new_lt10(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) 32.13/13.19 new_lt10(xuu33000, xuu34000, app(ty_Maybe, cec)) -> new_lt17(xuu33000, xuu34000, cec) 32.13/13.19 new_ltEs20(xuu33001, xuu34001, ty_Integer) -> new_ltEs10(xuu33001, xuu34001) 32.13/13.19 new_primCompAux0(xuu182, LT) -> LT 32.13/13.19 new_not(True) -> False 32.13/13.19 new_ltEs19(xuu33002, xuu34002, ty_@0) -> new_ltEs18(xuu33002, xuu34002) 32.13/13.19 new_ltEs12(LT, GT) -> True 32.13/13.19 new_primCmpNat0(Zero, Zero) -> EQ 32.13/13.19 new_esEs18(xuu3110002, xuu6002, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs5(xuu3110002, xuu6002, bac, bad, bae) 32.13/13.19 new_compare6(xuu33000, xuu34000, bd, be) -> new_compare27(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, bd, be), bd, be) 32.13/13.19 new_compare16(xuu33000, xuu34000, False, bd, be) -> GT 32.13/13.19 new_ltEs19(xuu33002, xuu34002, ty_Integer) -> new_ltEs10(xuu33002, xuu34002) 32.13/13.19 new_esEs25(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) 32.13/13.19 new_compare14(xuu33000, xuu34000, True, cbb, cbc, cbd) -> LT 32.13/13.19 new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.13/13.19 new_esEs30(xuu22, xuu17, app(ty_Ratio, ddf)) -> new_esEs15(xuu22, xuu17, ddf) 32.13/13.19 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.13/13.19 new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_Either, dac), dad), de) -> new_ltEs6(xuu33000, xuu34000, dac, dad) 32.13/13.19 new_esEs19(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) 32.13/13.19 new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_[], bed)) -> new_ltEs4(xuu33000, xuu34000, bed) 32.13/13.19 new_primEqNat0(Succ(xuu31100000), Zero) -> False 32.13/13.19 new_primEqNat0(Zero, Succ(xuu60000)) -> False 32.13/13.19 new_ltEs5(xuu3300, xuu3400, app(app(ty_Either, dd), de)) -> new_ltEs6(xuu3300, xuu3400, dd, de) 32.13/13.19 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.13/13.19 new_lt20(xuu33000, xuu34000, app(ty_Ratio, cgh)) -> new_lt8(xuu33000, xuu34000, cgh) 32.13/13.19 new_esEs19(xuu3110001, xuu6001, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs5(xuu3110001, xuu6001, bbe, bbf, bbg) 32.13/13.19 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_@0, eg) -> new_esEs9(xuu3110000, xuu6000) 32.13/13.19 new_esEs29(xuu311000, xuu600, ty_Bool) -> new_esEs13(xuu311000, xuu600) 32.13/13.19 new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, dae), daf), dag), de) -> new_ltEs8(xuu33000, xuu34000, dae, daf, dag) 32.13/13.19 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_@0) -> new_ltEs18(xuu33000, xuu34000) 32.13/13.19 new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, bge), bgf)) -> new_esEs7(xuu3110000, xuu6000, bge, bgf) 32.13/13.19 new_esEs25(xuu33000, xuu34000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs5(xuu33000, xuu34000, cbb, cbc, cbd) 32.13/13.19 new_compare110(xuu33000, xuu34000, True) -> LT 32.13/13.19 new_lt9(xuu33001, xuu34001, app(app(ty_@2, cdg), cdh)) -> new_lt4(xuu33001, xuu34001, cdg, cdh) 32.13/13.19 new_ltEs5(xuu3300, xuu3400, ty_Ordering) -> new_ltEs12(xuu3300, xuu3400) 32.13/13.19 new_lt9(xuu33001, xuu34001, ty_Int) -> new_lt6(xuu33001, xuu34001) 32.13/13.19 new_esEs27(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) 32.13/13.19 new_esEs20(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.13/13.19 new_compare23(Just(xuu3300), Just(xuu3400), False, dc) -> new_compare10(xuu3300, xuu3400, new_ltEs5(xuu3300, xuu3400, dc), dc) 32.13/13.19 new_lt20(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) 32.13/13.19 new_compare30(xuu33000, xuu34000, app(ty_Ratio, dab)) -> new_compare15(xuu33000, xuu34000, dab) 32.13/13.19 new_lt20(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) 32.13/13.19 new_primCmpInt(Pos(Succ(xuu3300)), Neg(xuu340)) -> GT 32.13/13.19 new_ltEs10(xuu3300, xuu3400) -> new_fsEs(new_compare7(xuu3300, xuu3400)) 32.13/13.19 new_compare24(xuu33000, xuu34000, False, ee, ef) -> new_compare11(xuu33000, xuu34000, new_ltEs6(xuu33000, xuu34000, ee, ef), ee, ef) 32.13/13.19 new_lt5(xuu33000, xuu34000, ee, ef) -> new_esEs8(new_compare8(xuu33000, xuu34000, ee, ef), LT) 32.13/13.19 new_esEs20(xuu3110000, xuu6000, app(ty_Ratio, bdd)) -> new_esEs15(xuu3110000, xuu6000, bdd) 32.13/13.19 new_esEs24(xuu33001, xuu34001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs5(xuu33001, xuu34001, cdb, cdc, cdd) 32.13/13.19 new_esEs30(xuu22, xuu17, app(app(app(ty_@3, dda), ddb), ddc)) -> new_esEs5(xuu22, xuu17, dda, ddb, ddc) 32.13/13.19 new_esEs26(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) 32.13/13.19 new_primPlusNat1(Succ(xuu28200), Succ(xuu9700)) -> Succ(Succ(new_primPlusNat1(xuu28200, xuu9700))) 32.13/13.19 new_lt9(xuu33001, xuu34001, ty_Char) -> new_lt7(xuu33001, xuu34001) 32.13/13.19 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Double) -> new_ltEs9(xuu33000, xuu34000) 32.13/13.19 new_lt18(xuu33000, xuu34000) -> new_esEs8(new_compare9(xuu33000, xuu34000), LT) 32.13/13.19 new_primCmpNat0(Zero, Succ(xuu3400)) -> LT 32.13/13.19 new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Maybe, dba), de) -> new_ltEs13(xuu33000, xuu34000, dba) 32.13/13.19 new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Integer) -> new_compare7(new_sr0(xuu33000, xuu34001), new_sr0(xuu34000, xuu33001)) 32.13/13.19 new_esEs30(xuu22, xuu17, ty_Int) -> new_esEs12(xuu22, xuu17) 32.13/13.19 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Bool, eg) -> new_esEs13(xuu3110000, xuu6000) 32.13/13.19 new_esEs18(xuu3110002, xuu6002, ty_Int) -> new_esEs12(xuu3110002, xuu6002) 32.13/13.19 new_compare210(xuu33000, xuu34000, True) -> EQ 32.13/13.19 new_esEs24(xuu33001, xuu34001, ty_Int) -> new_esEs12(xuu33001, xuu34001) 32.13/13.19 new_lt9(xuu33001, xuu34001, app(ty_Ratio, cea)) -> new_lt8(xuu33001, xuu34001, cea) 32.13/13.19 new_esEs21(xuu3110001, xuu6001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs5(xuu3110001, xuu6001, bfe, bff, bfg) 32.13/13.19 new_primCmpNat0(Succ(xuu3300), Zero) -> GT 32.13/13.19 new_ltEs20(xuu33001, xuu34001, app(ty_Maybe, cfc)) -> new_ltEs13(xuu33001, xuu34001, cfc) 32.13/13.19 new_pePe(False, xuu165) -> xuu165 32.13/13.19 new_ltEs5(xuu3300, xuu3400, ty_Char) -> new_ltEs17(xuu3300, xuu3400) 32.13/13.19 new_esEs20(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.13/13.19 new_esEs23(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.13/13.19 new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.13/13.19 new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.13/13.19 new_ltEs20(xuu33001, xuu34001, ty_Float) -> new_ltEs11(xuu33001, xuu34001) 32.13/13.19 new_ltEs12(GT, GT) -> True 32.13/13.19 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Ordering, eg) -> new_esEs8(xuu3110000, xuu6000) 32.13/13.19 new_ltEs18(xuu3300, xuu3400) -> new_fsEs(new_compare32(xuu3300, xuu3400)) 32.13/13.19 new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Int) -> new_compare12(new_sr(xuu33000, xuu34001), new_sr(xuu34000, xuu33001)) 32.13/13.19 new_ltEs20(xuu33001, xuu34001, ty_Double) -> new_ltEs9(xuu33001, xuu34001) 32.13/13.19 new_ltEs19(xuu33002, xuu34002, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs8(xuu33002, xuu34002, cbh, cca, ccb) 32.13/13.19 new_esEs29(xuu311000, xuu600, ty_Integer) -> new_esEs17(xuu311000, xuu600) 32.13/13.19 new_esEs21(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) 32.13/13.19 new_ltEs12(GT, EQ) -> False 32.13/13.19 new_esEs24(xuu33001, xuu34001, ty_@0) -> new_esEs9(xuu33001, xuu34001) 32.13/13.19 new_esEs21(xuu3110001, xuu6001, app(app(ty_Either, bfh), bga)) -> new_esEs4(xuu3110001, xuu6001, bfh, bga) 32.13/13.19 new_esEs18(xuu3110002, xuu6002, ty_Float) -> new_esEs11(xuu3110002, xuu6002) 32.13/13.19 new_lt10(xuu33000, xuu34000, app(ty_[], ceb)) -> new_lt16(xuu33000, xuu34000, ceb) 32.13/13.19 new_compare27(xuu33000, xuu34000, False, bd, be) -> new_compare16(xuu33000, xuu34000, new_ltEs14(xuu33000, xuu34000, bd, be), bd, be) 32.13/13.19 new_esEs26(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) 32.13/13.19 new_compare7(Integer(xuu33000), Integer(xuu34000)) -> new_primCmpInt(xuu33000, xuu34000) 32.13/13.19 new_compare10(xuu132, xuu133, False, ced) -> GT 32.13/13.19 new_esEs30(xuu22, xuu17, ty_Float) -> new_esEs11(xuu22, xuu17) 32.13/13.19 new_esEs8(LT, EQ) -> False 32.13/13.19 new_esEs8(EQ, LT) -> False 32.13/13.19 new_compare17(xuu33000, xuu34000, True) -> LT 32.13/13.19 new_compare11(xuu33000, xuu34000, False, ee, ef) -> GT 32.13/13.19 new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, bhf)) -> new_esEs6(xuu3110000, xuu6000, bhf) 32.13/13.19 new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False 32.13/13.19 new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False 32.13/13.19 new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.13/13.19 new_esEs21(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) 32.13/13.19 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Ordering, de) -> new_ltEs12(xuu33000, xuu34000) 32.13/13.19 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Integer) -> new_ltEs10(xuu33000, xuu34000) 32.13/13.19 new_compare30(xuu33000, xuu34000, app(ty_Maybe, chg)) -> new_compare29(xuu33000, xuu34000, chg) 32.13/13.19 new_ltEs5(xuu3300, xuu3400, app(ty_Maybe, ea)) -> new_ltEs13(xuu3300, xuu3400, ea) 32.13/13.19 new_esEs26(xuu33000, xuu34000, app(ty_[], cgd)) -> new_esEs16(xuu33000, xuu34000, cgd) 32.13/13.19 new_ltEs17(xuu3300, xuu3400) -> new_fsEs(new_compare13(xuu3300, xuu3400)) 32.13/13.19 new_ltEs15(xuu3300, xuu3400, ed) -> new_fsEs(new_compare15(xuu3300, xuu3400, ed)) 32.13/13.19 new_ltEs19(xuu33002, xuu34002, app(app(ty_@2, cce), ccf)) -> new_ltEs14(xuu33002, xuu34002, cce, ccf) 32.13/13.19 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 32.13/13.19 new_esEs25(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) 32.13/13.19 new_esEs23(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.13/13.19 new_primCmpInt(Neg(Zero), Pos(Succ(xuu3400))) -> LT 32.13/13.19 new_compare13(Char(xuu33000), Char(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) 32.13/13.19 new_ltEs5(xuu3300, xuu3400, app(app(app(ty_@3, df), dg), dh)) -> new_ltEs8(xuu3300, xuu3400, df, dg, dh) 32.13/13.19 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Int, eg) -> new_esEs12(xuu3110000, xuu6000) 32.13/13.19 new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.13/13.19 new_ltEs20(xuu33001, xuu34001, ty_Char) -> new_ltEs17(xuu33001, xuu34001) 32.13/13.19 new_compare17(xuu33000, xuu34000, False) -> GT 32.13/13.19 new_lt9(xuu33001, xuu34001, ty_Integer) -> new_lt13(xuu33001, xuu34001) 32.13/13.19 new_primMulInt(Pos(xuu31100000), Pos(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) 32.13/13.19 new_compare30(xuu33000, xuu34000, ty_Float) -> new_compare18(xuu33000, xuu34000) 32.13/13.19 new_ltEs5(xuu3300, xuu3400, ty_Float) -> new_ltEs11(xuu3300, xuu3400) 32.13/13.19 new_ltEs5(xuu3300, xuu3400, app(app(ty_@2, eb), ec)) -> new_ltEs14(xuu3300, xuu3400, eb, ec) 32.13/13.19 new_esEs23(xuu3110000, xuu6000, app(app(ty_Either, cae), caf)) -> new_esEs4(xuu3110000, xuu6000, cae, caf) 32.13/13.19 new_esEs18(xuu3110002, xuu6002, app(ty_[], bba)) -> new_esEs16(xuu3110002, xuu6002, bba) 32.13/13.19 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Bool) -> new_ltEs16(xuu33000, xuu34000) 32.13/13.19 new_esEs25(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) 32.13/13.19 new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, ce), cf)) -> new_esEs4(xuu3110000, xuu6000, ce, cf) 32.13/13.19 new_primCompAux1(xuu33000, xuu34000, xuu176, bf) -> new_primCompAux0(xuu176, new_compare30(xuu33000, xuu34000, bf)) 32.13/13.19 new_lt9(xuu33001, xuu34001, ty_Double) -> new_lt12(xuu33001, xuu34001) 32.13/13.19 new_compare10(xuu132, xuu133, True, ced) -> LT 32.13/13.19 new_esEs24(xuu33001, xuu34001, app(ty_Maybe, cdf)) -> new_esEs6(xuu33001, xuu34001, cdf) 32.13/13.19 new_primMulNat0(Succ(xuu311000000), Zero) -> Zero 32.13/13.19 new_primMulNat0(Zero, Succ(xuu600100)) -> Zero 32.13/13.19 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) 32.13/13.19 new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, cb), cc), cd)) -> new_esEs5(xuu3110000, xuu6000, cb, cc, cd) 32.13/13.19 new_lt10(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) 32.13/13.19 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(ty_Either, dbe), dbf)) -> new_ltEs6(xuu33000, xuu34000, dbe, dbf) 32.13/13.19 new_esEs23(xuu3110000, xuu6000, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs5(xuu3110000, xuu6000, cab, cac, cad) 32.13/13.19 new_ltEs19(xuu33002, xuu34002, ty_Char) -> new_ltEs17(xuu33002, xuu34002) 32.13/13.19 new_lt17(xuu33000, xuu34000, cec) -> new_esEs8(new_compare29(xuu33000, xuu34000, cec), LT) 32.13/13.19 new_ltEs5(xuu3300, xuu3400, ty_Double) -> new_ltEs9(xuu3300, xuu3400) 32.13/13.19 new_lt20(xuu33000, xuu34000, app(app(app(ty_@3, cga), cgb), cgc)) -> new_lt11(xuu33000, xuu34000, cga, cgb, cgc) 32.13/13.19 new_esEs24(xuu33001, xuu34001, ty_Char) -> new_esEs10(xuu33001, xuu34001) 32.13/13.19 new_lt9(xuu33001, xuu34001, app(ty_Maybe, cdf)) -> new_lt17(xuu33001, xuu34001, cdf) 32.13/13.19 new_esEs18(xuu3110002, xuu6002, ty_Integer) -> new_esEs17(xuu3110002, xuu6002) 32.13/13.19 new_lt14(xuu33000, xuu34000) -> new_esEs8(new_compare18(xuu33000, xuu34000), LT) 32.13/13.19 new_ltEs5(xuu3300, xuu3400, ty_Bool) -> new_ltEs16(xuu3300, xuu3400) 32.13/13.19 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Integer, de) -> new_ltEs10(xuu33000, xuu34000) 32.13/13.19 new_esEs8(LT, LT) -> True 32.13/13.19 new_esEs29(xuu311000, xuu600, ty_Float) -> new_esEs11(xuu311000, xuu600) 32.13/13.19 new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, bhd)) -> new_esEs15(xuu3110000, xuu6000, bhd) 32.13/13.19 new_esEs26(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) 32.13/13.19 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.13/13.19 new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, bea), beb), bec)) -> new_ltEs8(xuu33000, xuu34000, bea, beb, bec) 32.13/13.19 new_primPlusNat1(Succ(xuu28200), Zero) -> Succ(xuu28200) 32.13/13.19 new_primPlusNat1(Zero, Succ(xuu9700)) -> Succ(xuu9700) 32.13/13.19 new_compare23(Just(xuu3300), Nothing, False, dc) -> GT 32.13/13.19 new_compare30(xuu33000, xuu34000, ty_Char) -> new_compare13(xuu33000, xuu34000) 32.13/13.19 new_ltEs19(xuu33002, xuu34002, ty_Double) -> new_ltEs9(xuu33002, xuu34002) 32.13/13.19 new_esEs19(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) 32.13/13.19 new_lt10(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) 32.13/13.19 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(app(ty_@3, gf), gg), gh)) -> new_esEs5(xuu3110000, xuu6000, gf, gg, gh) 32.13/13.19 new_esEs13(True, True) -> True 32.13/13.19 new_esEs30(xuu22, xuu17, ty_Integer) -> new_esEs17(xuu22, xuu17) 32.13/13.19 new_ltEs20(xuu33001, xuu34001, app(app(ty_@2, cfd), cfe)) -> new_ltEs14(xuu33001, xuu34001, cfd, cfe) 32.13/13.19 new_esEs23(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.13/13.19 new_esEs23(xuu3110000, xuu6000, app(ty_Ratio, cag)) -> new_esEs15(xuu3110000, xuu6000, cag) 32.13/13.19 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Char, eg) -> new_esEs10(xuu3110000, xuu6000) 32.13/13.19 new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_[], ga), eg) -> new_esEs16(xuu3110000, xuu6000, ga) 32.13/13.19 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.13/13.19 new_esEs16([], [], bhg) -> True 32.13/13.19 new_ltEs19(xuu33002, xuu34002, ty_Float) -> new_ltEs11(xuu33002, xuu34002) 32.13/13.19 new_esEs25(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) 32.13/13.19 new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, cg)) -> new_esEs15(xuu3110000, xuu6000, cg) 32.13/13.19 new_primMulInt(Neg(xuu31100000), Neg(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) 32.13/13.19 new_primCmpInt(Pos(Zero), Pos(Succ(xuu3400))) -> new_primCmpNat0(Zero, Succ(xuu3400)) 32.13/13.19 new_esEs29(xuu311000, xuu600, ty_Double) -> new_esEs14(xuu311000, xuu600) 32.13/13.19 new_esEs25(xuu33000, xuu34000, app(app(ty_@2, bd), be)) -> new_esEs7(xuu33000, xuu34000, bd, be) 32.13/13.19 new_ltEs20(xuu33001, xuu34001, ty_Bool) -> new_ltEs16(xuu33001, xuu34001) 32.13/13.19 new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, db)) -> new_esEs6(xuu3110000, xuu6000, db) 32.13/13.19 new_esEs6(Nothing, Just(xuu6000), bg) -> False 32.13/13.19 new_esEs6(Just(xuu3110000), Nothing, bg) -> False 32.13/13.19 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.13/13.19 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_Maybe, he)) -> new_esEs6(xuu3110000, xuu6000, he) 32.13/13.19 new_esEs6(Nothing, Nothing, bg) -> True 32.13/13.19 new_esEs14(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 32.13/13.19 new_esEs23(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.13/13.19 new_compare26(xuu33000, xuu34000, True, cbb, cbc, cbd) -> EQ 32.13/13.19 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_Ratio, hc)) -> new_esEs15(xuu3110000, xuu6000, hc) 32.13/13.19 new_compare26(xuu33000, xuu34000, False, cbb, cbc, cbd) -> new_compare14(xuu33000, xuu34000, new_ltEs8(xuu33000, xuu34000, cbb, cbc, cbd), cbb, cbc, cbd) 32.13/13.19 new_ltEs19(xuu33002, xuu34002, ty_Bool) -> new_ltEs16(xuu33002, xuu34002) 32.13/13.19 new_lt10(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) 32.13/13.19 new_primMulInt(Pos(xuu31100000), Neg(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) 32.13/13.19 new_primMulInt(Neg(xuu31100000), Pos(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) 32.13/13.19 new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.13/13.19 new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.13/13.19 new_compare30(xuu33000, xuu34000, app(app(ty_@2, chh), daa)) -> new_compare6(xuu33000, xuu34000, chh, daa) 32.13/13.19 new_esEs26(xuu33000, xuu34000, app(ty_Ratio, cgh)) -> new_esEs15(xuu33000, xuu34000, cgh) 32.13/13.19 new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, fh), eg) -> new_esEs15(xuu3110000, xuu6000, fh) 32.13/13.19 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.13/13.19 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Int) -> new_ltEs7(xuu33000, xuu34000) 32.13/13.19 new_ltEs19(xuu33002, xuu34002, ty_Ordering) -> new_ltEs12(xuu33002, xuu34002) 32.13/13.19 new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs5(xuu3110000, xuu6000, bgg, bgh, bha) 32.13/13.19 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(ty_@2, gd), ge)) -> new_esEs7(xuu3110000, xuu6000, gd, ge) 32.13/13.19 new_esEs21(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) 32.13/13.20 new_sr0(Integer(xuu330000), Integer(xuu340010)) -> Integer(new_primMulInt(xuu330000, xuu340010)) 32.13/13.20 new_esEs24(xuu33001, xuu34001, ty_Double) -> new_esEs14(xuu33001, xuu34001) 32.13/13.20 new_esEs25(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) 32.13/13.20 new_esEs13(False, False) -> True 32.13/13.20 new_esEs30(xuu22, xuu17, ty_Double) -> new_esEs14(xuu22, xuu17) 32.13/13.20 new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.13/13.20 new_compare31(xuu33000, xuu34000) -> new_compare210(xuu33000, xuu34000, new_esEs8(xuu33000, xuu34000)) 32.13/13.20 new_lt8(xuu33000, xuu34000, cbe) -> new_esEs8(new_compare15(xuu33000, xuu34000, cbe), LT) 32.13/13.20 new_esEs18(xuu3110002, xuu6002, ty_Double) -> new_esEs14(xuu3110002, xuu6002) 32.13/13.20 new_compare0([], :(xuu34000, xuu34001), bf) -> LT 32.13/13.20 new_asAs(True, xuu139) -> xuu139 32.13/13.20 new_esEs19(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) 32.13/13.20 new_esEs21(xuu3110001, xuu6001, app(ty_Maybe, bgd)) -> new_esEs6(xuu3110001, xuu6001, bgd) 32.13/13.20 new_lt10(xuu33000, xuu34000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_lt11(xuu33000, xuu34000, cbb, cbc, cbd) 32.13/13.20 new_lt16(xuu33000, xuu34000, ceb) -> new_esEs8(new_compare0(xuu33000, xuu34000, ceb), LT) 32.13/13.20 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.13/13.20 new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, ff), fg), eg) -> new_esEs4(xuu3110000, xuu6000, ff, fg) 32.13/13.20 new_esEs21(xuu3110001, xuu6001, app(ty_Ratio, bgb)) -> new_esEs15(xuu3110001, xuu6001, bgb) 32.13/13.20 new_esEs26(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) 32.13/13.20 new_ltEs16(True, False) -> False 32.13/13.20 new_compare16(xuu33000, xuu34000, True, bd, be) -> LT 32.13/13.20 new_esEs29(xuu311000, xuu600, app(ty_[], bhg)) -> new_esEs16(xuu311000, xuu600, bhg) 32.13/13.20 new_ltEs5(xuu3300, xuu3400, ty_@0) -> new_ltEs18(xuu3300, xuu3400) 32.13/13.20 new_lt9(xuu33001, xuu34001, app(app(ty_Either, cch), cda)) -> new_lt5(xuu33001, xuu34001, cch, cda) 32.13/13.20 new_esEs18(xuu3110002, xuu6002, app(app(ty_@2, baa), bab)) -> new_esEs7(xuu3110002, xuu6002, baa, bab) 32.13/13.20 new_compare24(xuu33000, xuu34000, True, ee, ef) -> EQ 32.13/13.20 new_esEs24(xuu33001, xuu34001, app(app(ty_@2, cdg), cdh)) -> new_esEs7(xuu33001, xuu34001, cdg, cdh) 32.13/13.20 new_esEs30(xuu22, xuu17, app(app(ty_@2, dcg), dch)) -> new_esEs7(xuu22, xuu17, dcg, dch) 32.13/13.20 new_primCmpInt(Pos(Succ(xuu3300)), Pos(xuu340)) -> new_primCmpNat0(Succ(xuu3300), xuu340) 32.13/13.20 new_lt9(xuu33001, xuu34001, ty_@0) -> new_lt19(xuu33001, xuu34001) 32.13/13.20 new_compare110(xuu33000, xuu34000, False) -> GT 32.13/13.20 new_compare9(xuu33000, xuu34000) -> new_compare25(xuu33000, xuu34000, new_esEs13(xuu33000, xuu34000)) 32.13/13.20 new_esEs25(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) 32.13/13.20 new_lt20(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) 32.13/13.20 new_esEs9(@0, @0) -> True 32.13/13.20 new_compare0([], [], bf) -> EQ 32.13/13.20 new_esEs19(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) 32.13/13.20 new_esEs20(xuu3110000, xuu6000, app(app(ty_Either, bdb), bdc)) -> new_esEs4(xuu3110000, xuu6000, bdb, bdc) 32.13/13.20 new_sr(xuu3110000, xuu6001) -> new_primMulInt(xuu3110000, xuu6001) 32.13/13.20 new_esEs19(xuu3110001, xuu6001, app(app(ty_Either, bbh), bca)) -> new_esEs4(xuu3110001, xuu6001, bbh, bca) 32.13/13.20 new_compare30(xuu33000, xuu34000, ty_@0) -> new_compare32(xuu33000, xuu34000) 32.13/13.20 new_primMulNat0(Zero, Zero) -> Zero 32.13/13.20 new_ltEs20(xuu33001, xuu34001, ty_Ordering) -> new_ltEs12(xuu33001, xuu34001) 32.13/13.20 new_lt9(xuu33001, xuu34001, ty_Ordering) -> new_lt15(xuu33001, xuu34001) 32.13/13.20 new_ltEs13(Nothing, Nothing, ea) -> True 32.13/13.20 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.13/13.20 new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_@2, bef), beg)) -> new_ltEs14(xuu33000, xuu34000, bef, beg) 32.13/13.20 new_ltEs13(Just(xuu33000), Nothing, ea) -> False 32.13/13.20 new_lt20(xuu33000, xuu34000, app(ty_[], cgd)) -> new_lt16(xuu33000, xuu34000, cgd) 32.13/13.20 new_esEs24(xuu33001, xuu34001, app(ty_[], cde)) -> new_esEs16(xuu33001, xuu34001, cde) 32.13/13.20 new_esEs30(xuu22, xuu17, app(ty_[], ddg)) -> new_esEs16(xuu22, xuu17, ddg) 32.13/13.20 new_esEs20(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.13/13.20 new_compare14(xuu33000, xuu34000, False, cbb, cbc, cbd) -> GT 32.13/13.20 new_esEs23(xuu3110000, xuu6000, app(app(ty_@2, bhh), caa)) -> new_esEs7(xuu3110000, xuu6000, bhh, caa) 32.13/13.20 new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.13/13.20 new_lt20(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) 32.13/13.20 new_esEs25(xuu33000, xuu34000, app(app(ty_Either, ee), ef)) -> new_esEs4(xuu33000, xuu34000, ee, ef) 32.13/13.20 new_ltEs19(xuu33002, xuu34002, app(ty_Maybe, ccd)) -> new_ltEs13(xuu33002, xuu34002, ccd) 32.13/13.20 new_esEs19(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) 32.13/13.20 new_esEs21(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) 32.13/13.20 new_ltEs20(xuu33001, xuu34001, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_ltEs8(xuu33001, xuu34001, ceg, ceh, cfa) 32.13/13.20 new_esEs26(xuu33000, xuu34000, app(ty_Maybe, cge)) -> new_esEs6(xuu33000, xuu34000, cge) 32.13/13.20 new_lt11(xuu33000, xuu34000, cbb, cbc, cbd) -> new_esEs8(new_compare28(xuu33000, xuu34000, cbb, cbc, cbd), LT) 32.13/13.20 new_ltEs5(xuu3300, xuu3400, ty_Integer) -> new_ltEs10(xuu3300, xuu3400) 32.13/13.20 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(ty_Either, ha), hb)) -> new_esEs4(xuu3110000, xuu6000, ha, hb) 32.13/13.20 new_compare30(xuu33000, xuu34000, ty_Double) -> new_compare19(xuu33000, xuu34000) 32.13/13.20 new_compare32(@0, @0) -> EQ 32.13/13.20 new_ltEs12(GT, LT) -> False 32.13/13.20 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Bool) -> new_ltEs16(xuu33000, xuu34000) 32.13/13.20 new_primCompAux0(xuu182, EQ) -> xuu182 32.13/13.20 new_esEs26(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) 32.13/13.20 new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, bh), ca)) -> new_esEs7(xuu3110000, xuu6000, bh, ca) 32.13/13.20 new_esEs20(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.13/13.20 new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.13/13.20 new_esEs29(xuu311000, xuu600, app(app(ty_Either, gc), eg)) -> new_esEs4(xuu311000, xuu600, gc, eg) 32.13/13.20 new_esEs7(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bfa, bfb) -> new_asAs(new_esEs22(xuu3110000, xuu6000, bfa), new_esEs21(xuu3110001, xuu6001, bfb)) 32.13/13.20 new_esEs30(xuu22, xuu17, ty_@0) -> new_esEs9(xuu22, xuu17) 32.13/13.20 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False 32.13/13.20 new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False 32.13/13.20 new_esEs25(xuu33000, xuu34000, app(ty_Maybe, cec)) -> new_esEs6(xuu33000, xuu34000, cec) 32.13/13.20 new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, eh), fa), eg) -> new_esEs7(xuu3110000, xuu6000, eh, fa) 32.13/13.20 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 32.13/13.20 new_esEs13(False, True) -> False 32.13/13.20 new_esEs13(True, False) -> False 32.13/13.20 new_esEs20(xuu3110000, xuu6000, app(ty_[], bde)) -> new_esEs16(xuu3110000, xuu6000, bde) 32.13/13.20 new_ltEs20(xuu33001, xuu34001, app(app(ty_Either, cee), cef)) -> new_ltEs6(xuu33001, xuu34001, cee, cef) 32.13/13.20 new_esEs26(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) 32.13/13.20 new_esEs20(xuu3110000, xuu6000, app(ty_Maybe, bdf)) -> new_esEs6(xuu3110000, xuu6000, bdf) 32.13/13.20 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.13/13.20 new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False 32.13/13.20 new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False 32.13/13.20 new_esEs26(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) 32.13/13.20 new_esEs19(xuu3110001, xuu6001, app(ty_Maybe, bcd)) -> new_esEs6(xuu3110001, xuu6001, bcd) 32.13/13.20 new_esEs25(xuu33000, xuu34000, app(ty_Ratio, cbe)) -> new_esEs15(xuu33000, xuu34000, cbe) 32.13/13.20 new_compare30(xuu33000, xuu34000, app(ty_[], chf)) -> new_compare0(xuu33000, xuu34000, chf) 32.13/13.20 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Int) -> new_ltEs7(xuu33000, xuu34000) 32.13/13.20 new_lt9(xuu33001, xuu34001, ty_Float) -> new_lt14(xuu33001, xuu34001) 32.13/13.20 new_primCmpInt(Neg(Zero), Neg(Succ(xuu3400))) -> new_primCmpNat0(Succ(xuu3400), Zero) 32.13/13.20 new_esEs16(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bhg) -> new_asAs(new_esEs23(xuu3110000, xuu6000, bhg), new_esEs16(xuu3110001, xuu6001, bhg)) 32.13/13.20 new_compare23(Nothing, Just(xuu3400), False, dc) -> LT 32.13/13.20 new_compare29(xuu33000, xuu34000, cec) -> new_compare23(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, cec), cec) 32.13/13.20 new_esEs21(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) 32.13/13.20 new_esEs25(xuu33000, xuu34000, app(ty_[], ceb)) -> new_esEs16(xuu33000, xuu34000, ceb) 32.13/13.20 new_esEs30(xuu22, xuu17, app(app(ty_Either, ddd), dde)) -> new_esEs4(xuu22, xuu17, ddd, dde) 32.13/13.20 new_esEs29(xuu311000, xuu600, ty_@0) -> new_esEs9(xuu311000, xuu600) 32.13/13.20 new_esEs19(xuu3110001, xuu6001, app(ty_[], bcc)) -> new_esEs16(xuu3110001, xuu6001, bcc) 32.13/13.20 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_@0, de) -> new_ltEs18(xuu33000, xuu34000) 32.13/13.20 new_esEs24(xuu33001, xuu34001, app(app(ty_Either, cch), cda)) -> new_esEs4(xuu33001, xuu34001, cch, cda) 32.13/13.20 new_ltEs19(xuu33002, xuu34002, app(app(ty_Either, cbf), cbg)) -> new_ltEs6(xuu33002, xuu34002, cbf, cbg) 32.13/13.20 new_ltEs12(EQ, GT) -> True 32.13/13.20 new_esEs19(xuu3110001, xuu6001, app(ty_Ratio, bcb)) -> new_esEs15(xuu3110001, xuu6001, bcb) 32.13/13.20 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 32.13/13.20 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.13/13.20 new_esEs18(xuu3110002, xuu6002, app(app(ty_Either, baf), bag)) -> new_esEs4(xuu3110002, xuu6002, baf, bag) 32.13/13.20 new_lt20(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) 32.13/13.20 new_lt10(xuu33000, xuu34000, app(app(ty_Either, ee), ef)) -> new_lt5(xuu33000, xuu34000, ee, ef) 32.13/13.20 new_ltEs12(EQ, EQ) -> True 32.13/13.20 new_esEs30(xuu22, xuu17, app(ty_Maybe, ddh)) -> new_esEs6(xuu22, xuu17, ddh) 32.13/13.20 new_esEs24(xuu33001, xuu34001, ty_Float) -> new_esEs11(xuu33001, xuu34001) 32.13/13.20 new_compare30(xuu33000, xuu34000, ty_Int) -> new_compare12(xuu33000, xuu34000) 32.13/13.20 new_esEs23(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.13/13.20 new_esEs12(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) 32.13/13.20 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Double, eg) -> new_esEs14(xuu3110000, xuu6000) 32.13/13.20 new_esEs20(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.13/13.20 new_compare30(xuu33000, xuu34000, ty_Integer) -> new_compare7(xuu33000, xuu34000) 32.13/13.20 new_compare23(Nothing, Nothing, False, dc) -> LT 32.13/13.20 new_esEs18(xuu3110002, xuu6002, ty_@0) -> new_esEs9(xuu3110002, xuu6002) 32.13/13.20 new_esEs19(xuu3110001, xuu6001, app(app(ty_@2, bbc), bbd)) -> new_esEs7(xuu3110001, xuu6001, bbc, bbd) 32.13/13.20 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.13/13.20 new_primPlusNat0(xuu107, xuu600100) -> new_primPlusNat1(xuu107, Succ(xuu600100)) 32.13/13.20 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.13/13.20 new_ltEs6(Right(xuu33000), Left(xuu34000), dd, de) -> False 32.13/13.20 new_not(False) -> True 32.13/13.20 new_esEs21(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) 32.13/13.20 new_esEs21(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) 32.13/13.20 new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_@2, dbb), dbc), de) -> new_ltEs14(xuu33000, xuu34000, dbb, dbc) 32.13/13.20 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_Maybe, dcc)) -> new_ltEs13(xuu33000, xuu34000, dcc) 32.13/13.20 new_ltEs5(xuu3300, xuu3400, ty_Int) -> new_ltEs7(xuu3300, xuu3400) 32.13/13.20 new_compare28(xuu33000, xuu34000, cbb, cbc, cbd) -> new_compare26(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, cbb, cbc, cbd), cbb, cbc, cbd) 32.13/13.20 new_ltEs8(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), df, dg, dh) -> new_pePe(new_lt10(xuu33000, xuu34000, df), new_asAs(new_esEs25(xuu33000, xuu34000, df), new_pePe(new_lt9(xuu33001, xuu34001, dg), new_asAs(new_esEs24(xuu33001, xuu34001, dg), new_ltEs19(xuu33002, xuu34002, dh))))) 32.13/13.20 new_compare30(xuu33000, xuu34000, ty_Bool) -> new_compare9(xuu33000, xuu34000) 32.13/13.20 new_compare0(:(xuu33000, xuu33001), [], bf) -> GT 32.13/13.20 new_esEs8(LT, GT) -> False 32.13/13.20 new_esEs8(GT, LT) -> False 32.13/13.20 new_esEs29(xuu311000, xuu600, app(ty_Ratio, dea)) -> new_esEs15(xuu311000, xuu600, dea) 32.13/13.20 new_esEs19(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) 32.13/13.20 new_esEs25(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) 32.13/13.20 new_compare25(xuu33000, xuu34000, True) -> EQ 32.13/13.20 new_compare27(xuu33000, xuu34000, True, bd, be) -> EQ 32.13/13.20 new_esEs29(xuu311000, xuu600, app(app(ty_@2, bfa), bfb)) -> new_esEs7(xuu311000, xuu600, bfa, bfb) 32.13/13.20 new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.13/13.20 new_esEs18(xuu3110002, xuu6002, app(ty_Maybe, bbb)) -> new_esEs6(xuu3110002, xuu6002, bbb) 32.13/13.20 new_ltEs16(False, False) -> True 32.13/13.20 new_compare11(xuu33000, xuu34000, True, ee, ef) -> LT 32.13/13.20 new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Ratio, beh)) -> new_ltEs15(xuu33000, xuu34000, beh) 32.13/13.20 new_ltEs19(xuu33002, xuu34002, ty_Int) -> new_ltEs7(xuu33002, xuu34002) 32.13/13.20 new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.13/13.20 new_esEs29(xuu311000, xuu600, app(ty_Maybe, bg)) -> new_esEs6(xuu311000, xuu600, bg) 32.13/13.20 new_lt10(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) 32.13/13.20 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 32.13/13.20 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 32.13/13.20 new_primPlusNat1(Zero, Zero) -> Zero 32.13/13.20 new_lt20(xuu33000, xuu34000, app(app(ty_@2, cgf), cgg)) -> new_lt4(xuu33000, xuu34000, cgf, cgg) 32.13/13.20 new_lt9(xuu33001, xuu34001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt11(xuu33001, xuu34001, cdb, cdc, cdd) 32.13/13.20 new_ltEs11(xuu3300, xuu3400) -> new_fsEs(new_compare18(xuu3300, xuu3400)) 32.13/13.20 new_lt19(xuu33000, xuu34000) -> new_esEs8(new_compare32(xuu33000, xuu34000), LT) 32.13/13.20 new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.13/13.20 new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.13/13.20 new_ltEs20(xuu33001, xuu34001, ty_Int) -> new_ltEs7(xuu33001, xuu34001) 32.13/13.20 new_lt20(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) 32.13/13.20 new_esEs28(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.13/13.20 new_lt10(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) 32.13/13.20 new_esEs21(xuu3110001, xuu6001, app(ty_[], bgc)) -> new_esEs16(xuu3110001, xuu6001, bgc) 32.13/13.20 new_ltEs16(True, True) -> True 32.13/13.20 new_lt13(xuu33000, xuu34000) -> new_esEs8(new_compare7(xuu33000, xuu34000), LT) 32.13/13.20 new_esEs20(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.13/13.20 new_esEs26(xuu33000, xuu34000, app(app(ty_Either, cfg), cfh)) -> new_esEs4(xuu33000, xuu34000, cfg, cfh) 32.13/13.20 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Bool, de) -> new_ltEs16(xuu33000, xuu34000) 32.13/13.20 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 32.13/13.20 new_ltEs5(xuu3300, xuu3400, app(ty_Ratio, ed)) -> new_ltEs15(xuu3300, xuu3400, ed) 32.13/13.20 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.13/13.20 new_esEs25(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) 32.13/13.20 new_primMulNat0(Succ(xuu311000000), Succ(xuu600100)) -> new_primPlusNat0(new_primMulNat0(xuu311000000, Succ(xuu600100)), xuu600100) 32.13/13.20 new_ltEs12(EQ, LT) -> False 32.13/13.20 new_ltEs5(xuu3300, xuu3400, app(ty_[], bf)) -> new_ltEs4(xuu3300, xuu3400, bf) 32.13/13.20 new_lt6(xuu330, xuu340) -> new_esEs8(new_compare12(xuu330, xuu340), LT) 32.13/13.20 new_lt7(xuu33000, xuu34000) -> new_esEs8(new_compare13(xuu33000, xuu34000), LT) 32.13/13.20 new_primCmpNat0(Succ(xuu3300), Succ(xuu3400)) -> new_primCmpNat0(xuu3300, xuu3400) 32.13/13.20 new_ltEs19(xuu33002, xuu34002, app(ty_Ratio, ccg)) -> new_ltEs15(xuu33002, xuu34002, ccg) 32.13/13.20 new_esEs26(xuu33000, xuu34000, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs5(xuu33000, xuu34000, cga, cgb, cgc) 32.13/13.20 new_esEs30(xuu22, xuu17, ty_Char) -> new_esEs10(xuu22, xuu17) 32.13/13.20 new_esEs21(xuu3110001, xuu6001, app(app(ty_@2, bfc), bfd)) -> new_esEs7(xuu3110001, xuu6001, bfc, bfd) 32.13/13.20 new_esEs26(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) 32.13/13.20 new_esEs18(xuu3110002, xuu6002, ty_Char) -> new_esEs10(xuu3110002, xuu6002) 32.13/13.20 new_esEs24(xuu33001, xuu34001, ty_Integer) -> new_esEs17(xuu33001, xuu34001) 32.13/13.20 new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_[], da)) -> new_esEs16(xuu3110000, xuu6000, da) 32.13/13.20 new_compare12(xuu33, xuu34) -> new_primCmpInt(xuu33, xuu34) 32.13/13.20 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(app(ty_@3, dbg), dbh), dca)) -> new_ltEs8(xuu33000, xuu34000, dbg, dbh, dca) 32.13/13.20 new_esEs19(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) 32.13/13.20 new_esEs16(:(xuu3110000, xuu3110001), [], bhg) -> False 32.13/13.20 new_esEs16([], :(xuu6000, xuu6001), bhg) -> False 32.13/13.20 new_esEs23(xuu3110000, xuu6000, app(ty_[], cah)) -> new_esEs16(xuu3110000, xuu6000, cah) 32.13/13.20 new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, fb), fc), fd), eg) -> new_esEs5(xuu3110000, xuu6000, fb, fc, fd) 32.13/13.20 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 32.13/13.20 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 32.13/13.20 new_ltEs12(LT, EQ) -> True 32.13/13.20 new_ltEs20(xuu33001, xuu34001, app(ty_[], cfb)) -> new_ltEs4(xuu33001, xuu34001, cfb) 32.13/13.20 new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.13/13.20 new_compare30(xuu33000, xuu34000, app(app(ty_Either, cha), chb)) -> new_compare8(xuu33000, xuu34000, cha, chb) 32.13/13.20 new_ltEs20(xuu33001, xuu34001, app(ty_Ratio, cff)) -> new_ltEs15(xuu33001, xuu34001, cff) 32.13/13.20 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Float, de) -> new_ltEs11(xuu33000, xuu34000) 32.13/13.20 new_ltEs9(xuu3300, xuu3400) -> new_fsEs(new_compare19(xuu3300, xuu3400)) 32.13/13.20 new_esEs27(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) 32.13/13.20 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_@0) -> new_ltEs18(xuu33000, xuu34000) 32.13/13.20 new_primEqNat0(Zero, Zero) -> True 32.13/13.20 new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, gb), eg) -> new_esEs6(xuu3110000, xuu6000, gb) 32.13/13.20 new_esEs20(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.13/13.20 new_esEs29(xuu311000, xuu600, ty_Ordering) -> new_esEs8(xuu311000, xuu600) 32.13/13.20 new_lt20(xuu33000, xuu34000, app(app(ty_Either, cfg), cfh)) -> new_lt5(xuu33000, xuu34000, cfg, cfh) 32.13/13.20 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Float, eg) -> new_esEs11(xuu3110000, xuu6000) 32.13/13.20 new_lt10(xuu33000, xuu34000, app(app(ty_@2, bd), be)) -> new_lt4(xuu33000, xuu34000, bd, be) 32.13/13.20 new_esEs22(xuu3110000, xuu6000, app(ty_[], bhe)) -> new_esEs16(xuu3110000, xuu6000, bhe) 32.13/13.20 new_asAs(False, xuu139) -> False 32.13/13.20 new_ltEs19(xuu33002, xuu34002, app(ty_[], ccc)) -> new_ltEs4(xuu33002, xuu34002, ccc) 32.13/13.20 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.13/13.20 new_compare30(xuu33000, xuu34000, ty_Ordering) -> new_compare31(xuu33000, xuu34000) 32.13/13.20 new_lt20(xuu33000, xuu34000, app(ty_Maybe, cge)) -> new_lt17(xuu33000, xuu34000, cge) 32.13/13.20 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Double, de) -> new_ltEs9(xuu33000, xuu34000) 32.13/13.20 new_lt20(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) 32.13/13.20 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) 32.13/13.20 new_ltEs13(Nothing, Just(xuu34000), ea) -> True 32.13/13.20 new_esEs23(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.13/13.20 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_[], hd)) -> new_esEs16(xuu3110000, xuu6000, hd) 32.13/13.20 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Char, de) -> new_ltEs17(xuu33000, xuu34000) 32.13/13.20 new_ltEs6(Left(xuu33000), Right(xuu34000), dd, de) -> True 32.13/13.20 new_esEs8(EQ, GT) -> False 32.13/13.20 new_esEs8(GT, EQ) -> False 32.13/13.20 new_esEs11(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 32.13/13.20 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Integer) -> new_ltEs10(xuu33000, xuu34000) 32.13/13.20 new_ltEs16(False, True) -> True 32.13/13.20 new_lt10(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) 32.13/13.20 new_esEs29(xuu311000, xuu600, ty_Char) -> new_esEs10(xuu311000, xuu600) 32.13/13.20 new_esEs21(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) 32.13/13.20 new_esEs20(xuu3110000, xuu6000, app(app(ty_@2, bce), bcf)) -> new_esEs7(xuu3110000, xuu6000, bce, bcf) 32.13/13.20 32.13/13.20 The set Q consists of the following terms: 32.13/13.20 32.13/13.20 new_lt10(x0, x1, app(ty_[], x2)) 32.13/13.20 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.20 new_esEs8(EQ, EQ) 32.13/13.20 new_esEs6(Just(x0), Just(x1), ty_Double) 32.13/13.20 new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 32.13/13.20 new_esEs4(Left(x0), Left(x1), ty_Double, x2) 32.13/13.20 new_esEs19(x0, x1, app(ty_[], x2)) 32.13/13.20 new_ltEs13(Nothing, Just(x0), x1) 32.13/13.20 new_lt9(x0, x1, ty_Bool) 32.13/13.20 new_lt10(x0, x1, ty_@0) 32.13/13.20 new_esEs29(x0, x1, ty_@0) 32.13/13.20 new_ltEs20(x0, x1, ty_Int) 32.13/13.20 new_esEs30(x0, x1, ty_Bool) 32.13/13.20 new_lt20(x0, x1, ty_Integer) 32.13/13.20 new_ltEs11(x0, x1) 32.13/13.20 new_lt5(x0, x1, x2, x3) 32.13/13.20 new_ltEs7(x0, x1) 32.13/13.20 new_esEs26(x0, x1, app(ty_Maybe, x2)) 32.13/13.20 new_esEs24(x0, x1, ty_Float) 32.13/13.20 new_ltEs19(x0, x1, app(ty_[], x2)) 32.13/13.20 new_esEs6(Just(x0), Just(x1), ty_Ordering) 32.13/13.20 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 32.13/13.20 new_esEs6(Just(x0), Nothing, x1) 32.13/13.20 new_compare0(:(x0, x1), [], x2) 32.13/13.20 new_primPlusNat1(Zero, Zero) 32.13/13.20 new_pePe(True, x0) 32.13/13.20 new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) 32.13/13.20 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 32.13/13.20 new_esEs29(x0, x1, ty_Bool) 32.13/13.20 new_esEs6(Nothing, Nothing, x0) 32.13/13.20 new_ltEs20(x0, x1, ty_Char) 32.13/13.20 new_lt10(x0, x1, ty_Bool) 32.13/13.20 new_ltEs9(x0, x1) 32.13/13.20 new_lt9(x0, x1, ty_Integer) 32.13/13.20 new_ltEs19(x0, x1, ty_Double) 32.13/13.20 new_esEs12(x0, x1) 32.13/13.20 new_primEqInt(Pos(Zero), Pos(Zero)) 32.13/13.20 new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) 32.13/13.20 new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_lt13(x0, x1) 32.13/13.20 new_lt7(x0, x1) 32.13/13.20 new_esEs4(Left(x0), Left(x1), ty_Int, x2) 32.13/13.20 new_esEs26(x0, x1, ty_Double) 32.13/13.20 new_ltEs5(x0, x1, app(ty_Ratio, x2)) 32.13/13.20 new_fsEs(x0) 32.13/13.20 new_lt9(x0, x1, ty_@0) 32.13/13.20 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 32.13/13.20 new_lt9(x0, x1, app(ty_Ratio, x2)) 32.13/13.20 new_esEs16([], :(x0, x1), x2) 32.13/13.20 new_primEqNat0(Zero, Succ(x0)) 32.13/13.20 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 32.13/13.20 new_lt10(x0, x1, ty_Char) 32.13/13.20 new_primEqInt(Neg(Zero), Neg(Zero)) 32.13/13.20 new_compare16(x0, x1, True, x2, x3) 32.13/13.20 new_ltEs20(x0, x1, app(ty_[], x2)) 32.13/13.20 new_esEs23(x0, x1, ty_Bool) 32.13/13.20 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_esEs6(Just(x0), Just(x1), ty_Char) 32.13/13.20 new_esEs4(Left(x0), Left(x1), ty_Char, x2) 32.13/13.20 new_esEs29(x0, x1, ty_Char) 32.13/13.20 new_ltEs16(False, False) 32.13/13.20 new_esEs20(x0, x1, app(ty_Ratio, x2)) 32.13/13.20 new_ltEs19(x0, x1, ty_Int) 32.13/13.20 new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) 32.13/13.20 new_compare30(x0, x1, ty_Double) 32.13/13.20 new_lt19(x0, x1) 32.13/13.20 new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) 32.13/13.20 new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 32.13/13.20 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 32.13/13.20 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 32.13/13.20 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_ltEs12(GT, EQ) 32.13/13.20 new_compare29(x0, x1, x2) 32.13/13.20 new_ltEs12(EQ, GT) 32.13/13.20 new_esEs19(x0, x1, app(ty_Ratio, x2)) 32.13/13.20 new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 32.13/13.20 new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) 32.13/13.20 new_ltEs13(Just(x0), Nothing, x1) 32.13/13.20 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.20 new_esEs30(x0, x1, ty_Integer) 32.13/13.20 new_compare6(x0, x1, x2, x3) 32.13/13.20 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.20 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 32.13/13.20 new_primEqInt(Pos(Zero), Neg(Zero)) 32.13/13.20 new_primEqInt(Neg(Zero), Pos(Zero)) 32.13/13.20 new_compare14(x0, x1, True, x2, x3, x4) 32.13/13.20 new_ltEs20(x0, x1, ty_Ordering) 32.13/13.20 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 32.13/13.20 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 32.13/13.20 new_compare0([], :(x0, x1), x2) 32.13/13.20 new_compare16(x0, x1, False, x2, x3) 32.13/13.20 new_esEs19(x0, x1, ty_Float) 32.13/13.20 new_primCompAux0(x0, GT) 32.13/13.20 new_esEs29(x0, x1, ty_Int) 32.13/13.20 new_esEs20(x0, x1, app(ty_[], x2)) 32.13/13.20 new_compare210(x0, x1, False) 32.13/13.20 new_esEs18(x0, x1, app(ty_[], x2)) 32.13/13.20 new_esEs23(x0, x1, ty_Ordering) 32.13/13.20 new_pePe(False, x0) 32.13/13.20 new_esEs6(Just(x0), Just(x1), ty_Int) 32.13/13.20 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.20 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 32.13/13.20 new_lt20(x0, x1, app(ty_[], x2)) 32.13/13.20 new_lt20(x0, x1, app(ty_Ratio, x2)) 32.13/13.20 new_ltEs6(Left(x0), Left(x1), ty_Float, x2) 32.13/13.20 new_esEs25(x0, x1, ty_Integer) 32.13/13.20 new_esEs10(Char(x0), Char(x1)) 32.13/13.20 new_esEs23(x0, x1, ty_Integer) 32.13/13.20 new_esEs25(x0, x1, app(ty_[], x2)) 32.13/13.20 new_compare13(Char(x0), Char(x1)) 32.13/13.20 new_esEs30(x0, x1, app(ty_Maybe, x2)) 32.13/13.20 new_primEqNat0(Succ(x0), Succ(x1)) 32.13/13.20 new_primMulInt(Neg(x0), Neg(x1)) 32.13/13.20 new_compare30(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.20 new_ltEs13(Just(x0), Just(x1), ty_Float) 32.13/13.20 new_ltEs5(x0, x1, ty_Double) 32.13/13.20 new_esEs30(x0, x1, ty_Ordering) 32.13/13.20 new_esEs6(Just(x0), Just(x1), ty_@0) 32.13/13.20 new_esEs9(@0, @0) 32.13/13.20 new_esEs24(x0, x1, ty_Bool) 32.13/13.20 new_esEs4(Right(x0), Right(x1), x2, ty_Integer) 32.13/13.20 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.20 new_lt9(x0, x1, ty_Double) 32.13/13.20 new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 32.13/13.20 new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 32.13/13.20 new_esEs14(Double(x0, x1), Double(x2, x3)) 32.13/13.20 new_esEs4(Left(x0), Left(x1), ty_Bool, x2) 32.13/13.20 new_esEs6(Just(x0), Just(x1), ty_Bool) 32.13/13.20 new_esEs29(x0, x1, ty_Ordering) 32.13/13.20 new_lt10(x0, x1, ty_Float) 32.13/13.20 new_lt6(x0, x1) 32.13/13.20 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.20 new_ltEs5(x0, x1, ty_Ordering) 32.13/13.20 new_esEs30(x0, x1, ty_Double) 32.13/13.20 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.20 new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 32.13/13.20 new_ltEs19(x0, x1, ty_Char) 32.13/13.20 new_ltEs13(Just(x0), Just(x1), ty_Int) 32.13/13.20 new_esEs21(x0, x1, ty_Double) 32.13/13.20 new_lt10(x0, x1, ty_Ordering) 32.13/13.20 new_primPlusNat0(x0, x1) 32.13/13.20 new_compare23(Just(x0), Nothing, False, x1) 32.13/13.20 new_esEs26(x0, x1, ty_@0) 32.13/13.20 new_esEs23(x0, x1, ty_Double) 32.13/13.20 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 32.13/13.20 new_compare30(x0, x1, ty_Ordering) 32.13/13.20 new_compare23(x0, x1, True, x2) 32.13/13.20 new_primMulNat0(Succ(x0), Succ(x1)) 32.13/13.20 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) 32.13/13.20 new_primPlusNat1(Zero, Succ(x0)) 32.13/13.20 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.20 new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 32.13/13.20 new_lt10(x0, x1, ty_Int) 32.13/13.20 new_compare25(x0, x1, True) 32.13/13.20 new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) 32.13/13.20 new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 32.13/13.20 new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 32.13/13.20 new_lt9(x0, x1, app(ty_[], x2)) 32.13/13.20 new_esEs8(GT, GT) 32.13/13.20 new_ltEs19(x0, x1, ty_Bool) 32.13/13.20 new_esEs28(x0, x1, ty_Integer) 32.13/13.20 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 32.13/13.20 new_ltEs16(True, False) 32.13/13.20 new_ltEs16(False, True) 32.13/13.20 new_ltEs12(EQ, LT) 32.13/13.20 new_ltEs12(LT, EQ) 32.13/13.20 new_esEs18(x0, x1, ty_Integer) 32.13/13.20 new_esEs8(LT, EQ) 32.13/13.20 new_esEs8(EQ, LT) 32.13/13.20 new_ltEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 32.13/13.20 new_esEs18(x0, x1, ty_Float) 32.13/13.20 new_ltEs12(GT, GT) 32.13/13.20 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.20 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_compare30(x0, x1, ty_@0) 32.13/13.20 new_primCmpInt(Neg(Zero), Neg(Zero)) 32.13/13.20 new_esEs22(x0, x1, ty_Integer) 32.13/13.20 new_lt20(x0, x1, ty_@0) 32.13/13.20 new_esEs13(False, True) 32.13/13.20 new_esEs13(True, False) 32.13/13.20 new_esEs23(x0, x1, app(ty_Ratio, x2)) 32.13/13.20 new_lt10(x0, x1, ty_Integer) 32.13/13.20 new_esEs11(Float(x0, x1), Float(x2, x3)) 32.13/13.20 new_esEs24(x0, x1, app(ty_Ratio, x2)) 32.13/13.20 new_esEs8(LT, LT) 32.13/13.20 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 32.13/13.20 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.20 new_primCmpInt(Pos(Zero), Neg(Zero)) 32.13/13.20 new_primCmpInt(Neg(Zero), Pos(Zero)) 32.13/13.20 new_primMulInt(Pos(x0), Neg(x1)) 32.13/13.20 new_primMulInt(Neg(x0), Pos(x1)) 32.13/13.20 new_esEs20(x0, x1, ty_Char) 32.13/13.20 new_compare110(x0, x1, True) 32.13/13.20 new_ltEs6(Right(x0), Left(x1), x2, x3) 32.13/13.20 new_ltEs6(Left(x0), Right(x1), x2, x3) 32.13/13.20 new_primCompAux1(x0, x1, x2, x3) 32.13/13.20 new_esEs6(Just(x0), Just(x1), ty_Integer) 32.13/13.20 new_esEs18(x0, x1, ty_Int) 32.13/13.20 new_lt15(x0, x1) 32.13/13.20 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 32.13/13.20 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.20 new_compare23(Nothing, Nothing, False, x0) 32.13/13.20 new_esEs29(x0, x1, ty_Integer) 32.13/13.20 new_esEs24(x0, x1, app(ty_Maybe, x2)) 32.13/13.20 new_esEs16([], [], x0) 32.13/13.20 new_esEs4(Right(x0), Right(x1), x2, ty_@0) 32.13/13.20 new_primMulInt(Pos(x0), Pos(x1)) 32.13/13.20 new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 32.13/13.20 new_compare27(x0, x1, True, x2, x3) 32.13/13.20 new_esEs20(x0, x1, ty_Int) 32.13/13.20 new_ltEs20(x0, x1, ty_Double) 32.13/13.20 new_compare210(x0, x1, True) 32.13/13.20 new_compare10(x0, x1, False, x2) 32.13/13.20 new_esEs22(x0, x1, ty_Ordering) 32.13/13.20 new_esEs25(x0, x1, ty_@0) 32.13/13.20 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.20 new_esEs18(x0, x1, ty_Char) 32.13/13.20 new_ltEs12(LT, LT) 32.13/13.20 new_asAs(True, x0) 32.13/13.20 new_esEs29(x0, x1, app(ty_Ratio, x2)) 32.13/13.20 new_esEs23(x0, x1, app(ty_[], x2)) 32.13/13.20 new_ltEs6(Right(x0), Right(x1), x2, ty_Double) 32.13/13.20 new_ltEs6(Right(x0), Right(x1), x2, ty_@0) 32.13/13.20 new_compare24(x0, x1, False, x2, x3) 32.13/13.20 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_lt17(x0, x1, x2) 32.13/13.20 new_ltEs19(x0, x1, ty_Ordering) 32.13/13.20 new_ltEs5(x0, x1, app(ty_[], x2)) 32.13/13.20 new_esEs18(x0, x1, ty_Bool) 32.13/13.20 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.20 new_ltEs19(x0, x1, ty_Integer) 32.13/13.20 new_esEs23(x0, x1, ty_@0) 32.13/13.20 new_esEs20(x0, x1, ty_Float) 32.13/13.20 new_ltEs17(x0, x1) 32.13/13.20 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_primCmpNat0(Succ(x0), Succ(x1)) 32.13/13.20 new_compare30(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.20 new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_lt20(x0, x1, ty_Double) 32.13/13.20 new_compare26(x0, x1, True, x2, x3, x4) 32.13/13.20 new_esEs30(x0, x1, ty_@0) 32.13/13.20 new_ltEs20(x0, x1, ty_@0) 32.13/13.20 new_primMulNat0(Succ(x0), Zero) 32.13/13.20 new_primCmpNat0(Zero, Succ(x0)) 32.13/13.20 new_esEs16(:(x0, x1), :(x2, x3), x4) 32.13/13.20 new_compare0(:(x0, x1), :(x2, x3), x4) 32.13/13.20 new_ltEs15(x0, x1, x2) 32.13/13.20 new_esEs19(x0, x1, ty_Int) 32.13/13.20 new_lt9(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.20 new_compare30(x0, x1, app(ty_[], x2)) 32.13/13.20 new_ltEs10(x0, x1) 32.13/13.20 new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 32.13/13.20 new_esEs24(x0, x1, app(ty_[], x2)) 32.13/13.20 new_esEs20(x0, x1, ty_@0) 32.13/13.20 new_primCompAux0(x0, LT) 32.13/13.20 new_esEs6(Just(x0), Just(x1), ty_Float) 32.13/13.20 new_ltEs5(x0, x1, ty_Bool) 32.13/13.20 new_esEs4(Left(x0), Left(x1), ty_Float, x2) 32.13/13.20 new_compare7(Integer(x0), Integer(x1)) 32.13/13.20 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.20 new_ltEs13(Just(x0), Just(x1), ty_Bool) 32.13/13.20 new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_primMulNat0(Zero, Zero) 32.13/13.20 new_esEs22(x0, x1, ty_@0) 32.13/13.20 new_compare30(x0, x1, ty_Integer) 32.13/13.20 new_ltEs6(Left(x0), Left(x1), ty_Char, x2) 32.13/13.20 new_esEs4(Right(x0), Right(x1), x2, ty_Int) 32.13/13.20 new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.20 new_ltEs6(Left(x0), Left(x1), ty_Int, x2) 32.13/13.20 new_esEs17(Integer(x0), Integer(x1)) 32.13/13.20 new_ltEs5(x0, x1, ty_@0) 32.13/13.20 new_esEs19(x0, x1, ty_Ordering) 32.13/13.20 new_lt20(x0, x1, app(ty_Maybe, x2)) 32.13/13.20 new_lt12(x0, x1) 32.13/13.20 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 32.13/13.20 new_esEs24(x0, x1, ty_Double) 32.13/13.20 new_esEs18(x0, x1, ty_@0) 32.13/13.20 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_compare11(x0, x1, False, x2, x3) 32.13/13.20 new_lt9(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.20 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 32.13/13.20 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 32.13/13.20 new_compare10(x0, x1, True, x2) 32.13/13.20 new_esEs28(x0, x1, ty_Int) 32.13/13.20 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.20 new_esEs19(x0, x1, ty_Double) 32.13/13.20 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 32.13/13.20 new_esEs25(x0, x1, ty_Double) 32.13/13.20 new_esEs24(x0, x1, ty_Int) 32.13/13.20 new_lt4(x0, x1, x2, x3) 32.13/13.20 new_esEs21(x0, x1, ty_Bool) 32.13/13.20 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_esEs20(x0, x1, ty_Bool) 32.13/13.20 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 32.13/13.20 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.20 new_compare23(Just(x0), Just(x1), False, x2) 32.13/13.20 new_esEs19(x0, x1, ty_Char) 32.13/13.20 new_esEs4(Right(x0), Right(x1), x2, ty_Char) 32.13/13.20 new_esEs4(Right(x0), Right(x1), x2, ty_Double) 32.13/13.20 new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 32.13/13.20 new_ltEs13(Just(x0), Just(x1), ty_@0) 32.13/13.20 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.20 new_esEs24(x0, x1, ty_Ordering) 32.13/13.20 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_compare14(x0, x1, False, x2, x3, x4) 32.13/13.20 new_esEs30(x0, x1, app(ty_Ratio, x2)) 32.13/13.20 new_esEs29(x0, x1, app(ty_[], x2)) 32.13/13.20 new_esEs22(x0, x1, app(ty_Maybe, x2)) 32.13/13.20 new_lt11(x0, x1, x2, x3, x4) 32.13/13.20 new_not(True) 32.13/13.20 new_ltEs5(x0, x1, app(ty_Maybe, x2)) 32.13/13.20 new_compare17(x0, x1, False) 32.13/13.20 new_compare30(x0, x1, app(ty_Ratio, x2)) 32.13/13.20 new_esEs19(x0, x1, app(ty_Maybe, x2)) 32.13/13.20 new_ltEs13(Just(x0), Just(x1), ty_Char) 32.13/13.20 new_esEs23(x0, x1, app(ty_Maybe, x2)) 32.13/13.20 new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 32.13/13.20 new_esEs26(x0, x1, app(ty_[], x2)) 32.13/13.20 new_compare17(x0, x1, True) 32.13/13.20 new_ltEs6(Left(x0), Left(x1), ty_@0, x2) 32.13/13.20 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.20 new_esEs8(EQ, GT) 32.13/13.20 new_esEs8(GT, EQ) 32.13/13.20 new_esEs18(x0, x1, ty_Ordering) 32.13/13.20 new_esEs18(x0, x1, app(ty_Ratio, x2)) 32.13/13.20 new_esEs22(x0, x1, ty_Int) 32.13/13.20 new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 32.13/13.20 new_esEs24(x0, x1, ty_Char) 32.13/13.20 new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 32.13/13.20 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.20 new_ltEs6(Left(x0), Left(x1), ty_Double, x2) 32.13/13.20 new_esEs4(Left(x0), Left(x1), ty_Integer, x2) 32.13/13.20 new_lt9(x0, x1, app(ty_Maybe, x2)) 32.13/13.20 new_lt20(x0, x1, ty_Ordering) 32.13/13.20 new_esEs19(x0, x1, ty_@0) 32.13/13.20 new_ltEs13(Just(x0), Just(x1), ty_Integer) 32.13/13.20 new_esEs6(Nothing, Just(x0), x1) 32.13/13.20 new_esEs26(x0, x1, app(ty_Ratio, x2)) 32.13/13.20 new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_compare110(x0, x1, False) 32.13/13.20 new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) 32.13/13.20 new_esEs13(True, True) 32.13/13.20 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.20 new_esEs21(x0, x1, ty_@0) 32.13/13.20 new_ltEs18(x0, x1) 32.13/13.20 new_compare12(x0, x1) 32.13/13.20 new_compare30(x0, x1, ty_Bool) 32.13/13.20 new_esEs26(x0, x1, ty_Float) 32.13/13.20 new_compare27(x0, x1, False, x2, x3) 32.13/13.20 new_ltEs13(Nothing, Nothing, x0) 32.13/13.20 new_primPlusNat1(Succ(x0), Succ(x1)) 32.13/13.20 new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) 32.13/13.20 new_esEs22(x0, x1, ty_Bool) 32.13/13.20 new_ltEs19(x0, x1, ty_@0) 32.13/13.20 new_esEs21(x0, x1, ty_Float) 32.13/13.20 new_esEs21(x0, x1, app(ty_[], x2)) 32.13/13.20 new_compare11(x0, x1, True, x2, x3) 32.13/13.20 new_primEqNat0(Succ(x0), Zero) 32.13/13.20 new_primCompAux0(x0, EQ) 32.13/13.20 new_lt10(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.20 new_lt14(x0, x1) 32.13/13.20 new_ltEs19(x0, x1, ty_Float) 32.13/13.20 new_ltEs12(EQ, EQ) 32.13/13.20 new_compare28(x0, x1, x2, x3, x4) 32.13/13.20 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 32.13/13.20 new_esEs27(x0, x1, ty_Int) 32.13/13.20 new_lt8(x0, x1, x2) 32.13/13.20 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.20 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 32.13/13.20 new_esEs22(x0, x1, ty_Char) 32.13/13.20 new_compare25(x0, x1, False) 32.13/13.20 new_esEs21(x0, x1, app(ty_Ratio, x2)) 32.13/13.20 new_ltEs5(x0, x1, ty_Integer) 32.13/13.20 new_esEs25(x0, x1, ty_Ordering) 32.13/13.20 new_esEs4(Left(x0), Right(x1), x2, x3) 32.13/13.20 new_esEs4(Right(x0), Left(x1), x2, x3) 32.13/13.20 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 32.13/13.20 new_esEs20(x0, x1, ty_Integer) 32.13/13.20 new_esEs22(x0, x1, ty_Double) 32.13/13.20 new_lt10(x0, x1, app(ty_Ratio, x2)) 32.13/13.20 new_primCmpInt(Pos(Zero), Pos(Zero)) 32.13/13.20 new_lt10(x0, x1, app(ty_Maybe, x2)) 32.13/13.20 new_compare0([], [], x0) 32.13/13.20 new_ltEs20(x0, x1, ty_Integer) 32.13/13.20 new_esEs29(x0, x1, ty_Double) 32.13/13.20 new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 32.13/13.20 new_lt9(x0, x1, ty_Ordering) 32.13/13.20 new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 32.13/13.20 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 32.13/13.20 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 32.13/13.20 new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) 32.13/13.20 new_ltEs5(x0, x1, ty_Float) 32.13/13.20 new_ltEs13(Just(x0), Just(x1), ty_Double) 32.13/13.20 new_esEs22(x0, x1, app(ty_[], x2)) 32.13/13.20 new_compare30(x0, x1, ty_Char) 32.13/13.20 new_esEs4(Left(x0), Left(x1), ty_@0, x2) 32.13/13.20 new_esEs19(x0, x1, ty_Integer) 32.13/13.20 new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 32.13/13.20 new_esEs29(x0, x1, ty_Float) 32.13/13.20 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.20 new_esEs20(x0, x1, ty_Double) 32.13/13.20 new_sr(x0, x1) 32.13/13.20 new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 32.13/13.20 new_esEs30(x0, x1, ty_Float) 32.13/13.20 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 32.13/13.20 new_compare24(x0, x1, True, x2, x3) 32.13/13.20 new_esEs30(x0, x1, app(ty_[], x2)) 32.13/13.20 new_esEs21(x0, x1, ty_Ordering) 32.13/13.20 new_compare9(x0, x1) 32.13/13.20 new_esEs20(x0, x1, ty_Ordering) 32.13/13.20 new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 32.13/13.20 new_esEs21(x0, x1, ty_Int) 32.13/13.20 new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.20 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.20 new_lt9(x0, x1, ty_Float) 32.13/13.20 new_esEs29(x0, x1, app(ty_Maybe, x2)) 32.13/13.20 new_esEs8(LT, GT) 32.13/13.20 new_esEs8(GT, LT) 32.13/13.20 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 32.13/13.20 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.20 new_esEs19(x0, x1, ty_Bool) 32.13/13.20 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 32.13/13.20 new_esEs25(x0, x1, ty_Char) 32.13/13.20 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 32.13/13.20 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.20 new_ltEs5(x0, x1, ty_Int) 32.13/13.20 new_ltEs20(x0, x1, ty_Bool) 32.13/13.20 new_compare26(x0, x1, False, x2, x3, x4) 32.13/13.20 new_esEs21(x0, x1, ty_Char) 32.13/13.20 new_esEs22(x0, x1, ty_Float) 32.13/13.20 new_esEs26(x0, x1, ty_Char) 32.13/13.20 new_esEs24(x0, x1, ty_Integer) 32.13/13.20 new_esEs4(Right(x0), Right(x1), x2, ty_Bool) 32.13/13.20 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_lt9(x0, x1, ty_Char) 32.13/13.20 new_lt10(x0, x1, ty_Double) 32.13/13.20 new_esEs24(x0, x1, ty_@0) 32.13/13.20 new_compare23(Nothing, Just(x0), False, x1) 32.13/13.20 new_esEs26(x0, x1, ty_Int) 32.13/13.20 new_compare30(x0, x1, ty_Int) 32.13/13.20 new_compare8(x0, x1, x2, x3) 32.13/13.20 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 32.13/13.20 new_lt10(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.20 new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) 32.13/13.20 new_esEs21(x0, x1, app(ty_Maybe, x2)) 32.13/13.20 new_asAs(False, x0) 32.13/13.20 new_esEs16(:(x0, x1), [], x2) 32.13/13.20 new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 32.13/13.20 new_ltEs13(Just(x0), Just(x1), ty_Ordering) 32.13/13.20 new_esEs25(x0, x1, ty_Bool) 32.13/13.20 new_lt9(x0, x1, ty_Int) 32.13/13.20 new_lt18(x0, x1) 32.13/13.20 new_esEs23(x0, x1, ty_Int) 32.13/13.20 new_compare30(x0, x1, app(ty_Maybe, x2)) 32.13/13.20 new_primEqNat0(Zero, Zero) 32.13/13.20 new_esEs13(False, False) 32.13/13.20 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 32.13/13.20 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_primMulNat0(Zero, Succ(x0)) 32.13/13.20 new_ltEs5(x0, x1, ty_Char) 32.13/13.20 new_not(False) 32.13/13.20 new_lt20(x0, x1, ty_Float) 32.13/13.20 new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 32.13/13.20 new_esEs26(x0, x1, ty_Ordering) 32.13/13.20 new_ltEs16(True, True) 32.13/13.20 new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) 32.13/13.20 new_lt20(x0, x1, ty_Bool) 32.13/13.20 new_ltEs12(LT, GT) 32.13/13.20 new_ltEs12(GT, LT) 32.13/13.20 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.20 new_esEs25(x0, x1, ty_Int) 32.13/13.20 new_esEs30(x0, x1, ty_Char) 32.13/13.20 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 32.13/13.20 new_ltEs6(Right(x0), Right(x1), x2, ty_Float) 32.13/13.20 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 32.13/13.20 new_esEs22(x0, x1, app(ty_Ratio, x2)) 32.13/13.20 new_esEs26(x0, x1, ty_Bool) 32.13/13.20 new_esEs23(x0, x1, ty_Char) 32.13/13.20 new_esEs15(:%(x0, x1), :%(x2, x3), x4) 32.13/13.20 new_sr0(Integer(x0), Integer(x1)) 32.13/13.20 new_compare30(x0, x1, ty_Float) 32.13/13.20 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 32.13/13.20 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 32.13/13.20 new_esEs26(x0, x1, ty_Integer) 32.13/13.20 new_esEs25(x0, x1, app(ty_Ratio, x2)) 32.13/13.20 new_esEs25(x0, x1, app(ty_Maybe, x2)) 32.13/13.20 new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) 32.13/13.20 new_esEs20(x0, x1, app(ty_Maybe, x2)) 32.13/13.20 new_ltEs6(Right(x0), Right(x1), x2, ty_Char) 32.13/13.20 new_esEs23(x0, x1, ty_Float) 32.13/13.20 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 32.13/13.20 new_primPlusNat1(Succ(x0), Zero) 32.13/13.20 new_esEs30(x0, x1, ty_Int) 32.13/13.20 new_esEs18(x0, x1, app(ty_Maybe, x2)) 32.13/13.20 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 32.13/13.20 new_ltEs4(x0, x1, x2) 32.13/13.20 new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) 32.13/13.20 new_ltEs20(x0, x1, ty_Float) 32.13/13.20 new_esEs18(x0, x1, ty_Double) 32.13/13.20 new_lt20(x0, x1, ty_Int) 32.13/13.20 new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_esEs21(x0, x1, ty_Integer) 32.13/13.20 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.20 new_esEs27(x0, x1, ty_Integer) 32.13/13.20 new_primCmpNat0(Succ(x0), Zero) 32.13/13.20 new_lt16(x0, x1, x2) 32.13/13.20 new_compare31(x0, x1) 32.13/13.20 new_esEs4(Right(x0), Right(x1), x2, ty_Float) 32.13/13.20 new_esEs25(x0, x1, ty_Float) 32.13/13.20 new_ltEs6(Right(x0), Right(x1), x2, ty_Int) 32.13/13.20 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 32.13/13.20 new_compare32(@0, @0) 32.13/13.20 new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 32.13/13.20 new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 32.13/13.20 new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 32.13/13.20 new_primCmpNat0(Zero, Zero) 32.13/13.20 new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 32.13/13.20 new_lt20(x0, x1, ty_Char) 32.13/13.20 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.20 32.13/13.20 We have to consider all minimal (P,Q,R)-chains. 32.13/13.20 ---------------------------------------- 32.13/13.20 32.13/13.20 (21) DependencyGraphProof (EQUIVALENT) 32.13/13.20 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. 32.13/13.20 ---------------------------------------- 32.13/13.20 32.13/13.20 (22) 32.13/13.20 Complex Obligation (AND) 32.13/13.20 32.13/13.20 ---------------------------------------- 32.13/13.20 32.13/13.20 (23) 32.13/13.20 Obligation: 32.13/13.20 Q DP problem: 32.13/13.20 The TRS P consists of the following rules: 32.13/13.20 32.13/13.20 new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, bb, bc) -> new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs8(new_compare23(Just(xuu22), Just(xuu17), new_esEs30(xuu22, xuu17, bb), bb), GT), bb, bc) 32.13/13.20 new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu21, Just(xuu22), xuu23, bb, bc) 32.13/13.20 new_addToFM_C(Branch(Just(xuu600), xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Just(xuu600), new_esEs29(xuu311000, xuu600, h), h), LT), h, ba) 32.13/13.20 new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu20, Just(xuu22), xuu23, bb, bc) 32.13/13.20 new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Nothing, False, h), LT), h, ba) 32.13/13.20 new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Nothing, False, h), GT), h, ba) 32.13/13.20 new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Just(xuu311000), xuu31101, h, ba) 32.13/13.20 new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) -> new_addToFM_C(xuu63, Just(xuu311000), xuu31101, h, ba) 32.13/13.20 32.13/13.20 The TRS R consists of the following rules: 32.13/13.20 32.13/13.20 new_lt20(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) 32.13/13.20 new_esEs20(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.13/13.20 new_compare30(xuu33000, xuu34000, app(app(app(ty_@3, chc), chd), che)) -> new_compare28(xuu33000, xuu34000, chc, chd, che) 32.13/13.20 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 32.13/13.20 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Float) -> new_ltEs11(xuu33000, xuu34000) 32.13/13.20 new_primCmpInt(Neg(Succ(xuu3300)), Pos(xuu340)) -> LT 32.13/13.20 new_compare8(xuu33000, xuu34000, ee, ef) -> new_compare24(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, ee, ef), ee, ef) 32.13/13.20 new_esEs23(xuu3110000, xuu6000, app(ty_Maybe, cba)) -> new_esEs6(xuu3110000, xuu6000, cba) 32.13/13.20 new_pePe(True, xuu165) -> True 32.13/13.20 new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.13/13.20 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.13/13.20 new_esEs30(xuu22, xuu17, ty_Ordering) -> new_esEs8(xuu22, xuu17) 32.13/13.20 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Float) -> new_ltEs11(xuu33000, xuu34000) 32.13/13.20 new_esEs17(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) 32.13/13.20 new_lt4(xuu33000, xuu34000, bd, be) -> new_esEs8(new_compare6(xuu33000, xuu34000, bd, be), LT) 32.13/13.20 new_esEs29(xuu311000, xuu600, ty_Int) -> new_esEs12(xuu311000, xuu600) 32.13/13.20 new_esEs30(xuu22, xuu17, ty_Bool) -> new_esEs13(xuu22, xuu17) 32.13/13.20 new_compare23(xuu330, xuu340, True, dc) -> EQ 32.13/13.20 new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Maybe, bee)) -> new_ltEs13(xuu33000, xuu34000, bee) 32.13/13.20 new_lt15(xuu33000, xuu34000) -> new_esEs8(new_compare31(xuu33000, xuu34000), LT) 32.13/13.20 new_lt10(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) 32.13/13.20 new_ltEs12(LT, LT) -> True 32.13/13.20 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.13/13.20 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(ty_@2, dcd), dce)) -> new_ltEs14(xuu33000, xuu34000, dcd, dce) 32.13/13.20 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Char) -> new_ltEs17(xuu33000, xuu34000) 32.13/13.20 new_esEs4(Left(xuu3110000), Right(xuu6000), gc, eg) -> False 32.13/13.20 new_esEs4(Right(xuu3110000), Left(xuu6000), gc, eg) -> False 32.13/13.20 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Int, de) -> new_ltEs7(xuu33000, xuu34000) 32.13/13.20 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 32.13/13.20 new_primCmpInt(Pos(Zero), Neg(Succ(xuu3400))) -> GT 32.13/13.20 new_esEs29(xuu311000, xuu600, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs5(xuu311000, xuu600, hf, hg, hh) 32.13/13.20 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_[], dcb)) -> new_ltEs4(xuu33000, xuu34000, dcb) 32.13/13.20 new_esEs15(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), dea) -> new_asAs(new_esEs28(xuu3110000, xuu6000, dea), new_esEs27(xuu3110001, xuu6001, dea)) 32.13/13.20 new_esEs24(xuu33001, xuu34001, ty_Ordering) -> new_esEs8(xuu33001, xuu34001) 32.13/13.20 new_ltEs14(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), eb, ec) -> new_pePe(new_lt20(xuu33000, xuu34000, eb), new_asAs(new_esEs26(xuu33000, xuu34000, eb), new_ltEs20(xuu33001, xuu34001, ec))) 32.13/13.20 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_Ratio, dcf)) -> new_ltEs15(xuu33000, xuu34000, dcf) 32.13/13.20 new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, bhb), bhc)) -> new_esEs4(xuu3110000, xuu6000, bhb, bhc) 32.13/13.20 new_compare0(:(xuu33000, xuu33001), :(xuu34000, xuu34001), bf) -> new_primCompAux1(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, bf), bf) 32.13/13.20 new_primCmpInt(Neg(Succ(xuu3300)), Neg(xuu340)) -> new_primCmpNat0(xuu340, Succ(xuu3300)) 32.13/13.20 new_lt9(xuu33001, xuu34001, app(ty_[], cde)) -> new_lt16(xuu33001, xuu34001, cde) 32.13/13.20 new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_Either, bdg), bdh)) -> new_ltEs6(xuu33000, xuu34000, bdg, bdh) 32.13/13.20 new_lt10(xuu33000, xuu34000, app(ty_Ratio, cbe)) -> new_lt8(xuu33000, xuu34000, cbe) 32.13/13.20 new_esEs28(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.13/13.20 new_esEs26(xuu33000, xuu34000, app(app(ty_@2, cgf), cgg)) -> new_esEs7(xuu33000, xuu34000, cgf, cgg) 32.13/13.20 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Char) -> new_ltEs17(xuu33000, xuu34000) 32.13/13.20 new_esEs23(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.13/13.20 new_ltEs20(xuu33001, xuu34001, ty_@0) -> new_ltEs18(xuu33001, xuu34001) 32.13/13.20 new_esEs5(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), hf, hg, hh) -> new_asAs(new_esEs20(xuu3110000, xuu6000, hf), new_asAs(new_esEs19(xuu3110001, xuu6001, hg), new_esEs18(xuu3110002, xuu6002, hh))) 32.13/13.20 new_esEs10(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) 32.13/13.20 new_ltEs7(xuu3300, xuu3400) -> new_fsEs(new_compare12(xuu3300, xuu3400)) 32.13/13.20 new_esEs18(xuu3110002, xuu6002, ty_Ordering) -> new_esEs8(xuu3110002, xuu6002) 32.13/13.20 new_compare25(xuu33000, xuu34000, False) -> new_compare17(xuu33000, xuu34000, new_ltEs16(xuu33000, xuu34000)) 32.13/13.20 new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_[], dah), de) -> new_ltEs4(xuu33000, xuu34000, dah) 32.13/13.20 new_esEs18(xuu3110002, xuu6002, ty_Bool) -> new_esEs13(xuu3110002, xuu6002) 32.13/13.20 new_primCompAux0(xuu182, GT) -> GT 32.13/13.20 new_lt9(xuu33001, xuu34001, ty_Bool) -> new_lt18(xuu33001, xuu34001) 32.13/13.20 new_esEs23(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.13/13.20 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Double) -> new_ltEs9(xuu33000, xuu34000) 32.13/13.20 new_compare210(xuu33000, xuu34000, False) -> new_compare110(xuu33000, xuu34000, new_ltEs12(xuu33000, xuu34000)) 32.13/13.20 new_esEs18(xuu3110002, xuu6002, app(ty_Ratio, bah)) -> new_esEs15(xuu3110002, xuu6002, bah) 32.13/13.20 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Integer, eg) -> new_esEs17(xuu3110000, xuu6000) 32.13/13.20 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False 32.13/13.20 new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False 32.13/13.20 new_esEs8(GT, GT) -> True 32.13/13.20 new_fsEs(xuu149) -> new_not(new_esEs8(xuu149, GT)) 32.13/13.20 new_esEs19(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) 32.13/13.20 new_lt12(xuu33000, xuu34000) -> new_esEs8(new_compare19(xuu33000, xuu34000), LT) 32.13/13.20 new_esEs24(xuu33001, xuu34001, app(ty_Ratio, cea)) -> new_esEs15(xuu33001, xuu34001, cea) 32.13/13.20 new_esEs20(xuu3110000, xuu6000, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs5(xuu3110000, xuu6000, bcg, bch, bda) 32.13/13.20 new_ltEs4(xuu3300, xuu3400, bf) -> new_fsEs(new_compare0(xuu3300, xuu3400, bf)) 32.13/13.20 new_esEs8(EQ, EQ) -> True 32.13/13.20 new_esEs24(xuu33001, xuu34001, ty_Bool) -> new_esEs13(xuu33001, xuu34001) 32.13/13.20 new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Ratio, dbd), de) -> new_ltEs15(xuu33000, xuu34000, dbd) 32.13/13.20 new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) 32.13/13.20 new_lt10(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) 32.13/13.20 new_lt10(xuu33000, xuu34000, app(ty_Maybe, cec)) -> new_lt17(xuu33000, xuu34000, cec) 32.13/13.20 new_ltEs20(xuu33001, xuu34001, ty_Integer) -> new_ltEs10(xuu33001, xuu34001) 32.13/13.20 new_primCompAux0(xuu182, LT) -> LT 32.13/13.20 new_not(True) -> False 32.13/13.20 new_ltEs19(xuu33002, xuu34002, ty_@0) -> new_ltEs18(xuu33002, xuu34002) 32.13/13.20 new_ltEs12(LT, GT) -> True 32.13/13.20 new_primCmpNat0(Zero, Zero) -> EQ 32.13/13.20 new_esEs18(xuu3110002, xuu6002, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs5(xuu3110002, xuu6002, bac, bad, bae) 32.13/13.20 new_compare6(xuu33000, xuu34000, bd, be) -> new_compare27(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, bd, be), bd, be) 32.13/13.20 new_compare16(xuu33000, xuu34000, False, bd, be) -> GT 32.13/13.20 new_ltEs19(xuu33002, xuu34002, ty_Integer) -> new_ltEs10(xuu33002, xuu34002) 32.13/13.20 new_esEs25(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) 32.13/13.20 new_compare14(xuu33000, xuu34000, True, cbb, cbc, cbd) -> LT 32.13/13.20 new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.13/13.20 new_esEs30(xuu22, xuu17, app(ty_Ratio, ddf)) -> new_esEs15(xuu22, xuu17, ddf) 32.13/13.20 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.13/13.20 new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_Either, dac), dad), de) -> new_ltEs6(xuu33000, xuu34000, dac, dad) 32.13/13.20 new_esEs19(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) 32.13/13.20 new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_[], bed)) -> new_ltEs4(xuu33000, xuu34000, bed) 32.13/13.20 new_primEqNat0(Succ(xuu31100000), Zero) -> False 32.13/13.20 new_primEqNat0(Zero, Succ(xuu60000)) -> False 32.13/13.20 new_ltEs5(xuu3300, xuu3400, app(app(ty_Either, dd), de)) -> new_ltEs6(xuu3300, xuu3400, dd, de) 32.13/13.20 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.13/13.20 new_lt20(xuu33000, xuu34000, app(ty_Ratio, cgh)) -> new_lt8(xuu33000, xuu34000, cgh) 32.13/13.20 new_esEs19(xuu3110001, xuu6001, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs5(xuu3110001, xuu6001, bbe, bbf, bbg) 32.13/13.20 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_@0, eg) -> new_esEs9(xuu3110000, xuu6000) 32.13/13.20 new_esEs29(xuu311000, xuu600, ty_Bool) -> new_esEs13(xuu311000, xuu600) 32.13/13.20 new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, dae), daf), dag), de) -> new_ltEs8(xuu33000, xuu34000, dae, daf, dag) 32.13/13.20 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_@0) -> new_ltEs18(xuu33000, xuu34000) 32.13/13.20 new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, bge), bgf)) -> new_esEs7(xuu3110000, xuu6000, bge, bgf) 32.13/13.20 new_esEs25(xuu33000, xuu34000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs5(xuu33000, xuu34000, cbb, cbc, cbd) 32.13/13.20 new_compare110(xuu33000, xuu34000, True) -> LT 32.13/13.20 new_lt9(xuu33001, xuu34001, app(app(ty_@2, cdg), cdh)) -> new_lt4(xuu33001, xuu34001, cdg, cdh) 32.13/13.20 new_ltEs5(xuu3300, xuu3400, ty_Ordering) -> new_ltEs12(xuu3300, xuu3400) 32.13/13.20 new_lt9(xuu33001, xuu34001, ty_Int) -> new_lt6(xuu33001, xuu34001) 32.13/13.20 new_esEs27(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) 32.13/13.20 new_esEs20(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.13/13.20 new_compare23(Just(xuu3300), Just(xuu3400), False, dc) -> new_compare10(xuu3300, xuu3400, new_ltEs5(xuu3300, xuu3400, dc), dc) 32.13/13.20 new_lt20(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) 32.13/13.20 new_compare30(xuu33000, xuu34000, app(ty_Ratio, dab)) -> new_compare15(xuu33000, xuu34000, dab) 32.13/13.20 new_lt20(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) 32.13/13.20 new_primCmpInt(Pos(Succ(xuu3300)), Neg(xuu340)) -> GT 32.13/13.20 new_ltEs10(xuu3300, xuu3400) -> new_fsEs(new_compare7(xuu3300, xuu3400)) 32.13/13.20 new_compare24(xuu33000, xuu34000, False, ee, ef) -> new_compare11(xuu33000, xuu34000, new_ltEs6(xuu33000, xuu34000, ee, ef), ee, ef) 32.13/13.20 new_lt5(xuu33000, xuu34000, ee, ef) -> new_esEs8(new_compare8(xuu33000, xuu34000, ee, ef), LT) 32.13/13.20 new_esEs20(xuu3110000, xuu6000, app(ty_Ratio, bdd)) -> new_esEs15(xuu3110000, xuu6000, bdd) 32.13/13.20 new_esEs24(xuu33001, xuu34001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs5(xuu33001, xuu34001, cdb, cdc, cdd) 32.13/13.20 new_esEs30(xuu22, xuu17, app(app(app(ty_@3, dda), ddb), ddc)) -> new_esEs5(xuu22, xuu17, dda, ddb, ddc) 32.13/13.20 new_esEs26(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) 32.13/13.20 new_primPlusNat1(Succ(xuu28200), Succ(xuu9700)) -> Succ(Succ(new_primPlusNat1(xuu28200, xuu9700))) 32.13/13.20 new_lt9(xuu33001, xuu34001, ty_Char) -> new_lt7(xuu33001, xuu34001) 32.13/13.20 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Double) -> new_ltEs9(xuu33000, xuu34000) 32.13/13.20 new_lt18(xuu33000, xuu34000) -> new_esEs8(new_compare9(xuu33000, xuu34000), LT) 32.13/13.20 new_primCmpNat0(Zero, Succ(xuu3400)) -> LT 32.13/13.20 new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Maybe, dba), de) -> new_ltEs13(xuu33000, xuu34000, dba) 32.13/13.20 new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Integer) -> new_compare7(new_sr0(xuu33000, xuu34001), new_sr0(xuu34000, xuu33001)) 32.13/13.20 new_esEs30(xuu22, xuu17, ty_Int) -> new_esEs12(xuu22, xuu17) 32.13/13.20 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Bool, eg) -> new_esEs13(xuu3110000, xuu6000) 32.13/13.20 new_esEs18(xuu3110002, xuu6002, ty_Int) -> new_esEs12(xuu3110002, xuu6002) 32.13/13.20 new_compare210(xuu33000, xuu34000, True) -> EQ 32.13/13.20 new_esEs24(xuu33001, xuu34001, ty_Int) -> new_esEs12(xuu33001, xuu34001) 32.13/13.20 new_lt9(xuu33001, xuu34001, app(ty_Ratio, cea)) -> new_lt8(xuu33001, xuu34001, cea) 32.13/13.20 new_esEs21(xuu3110001, xuu6001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs5(xuu3110001, xuu6001, bfe, bff, bfg) 32.13/13.20 new_primCmpNat0(Succ(xuu3300), Zero) -> GT 32.13/13.20 new_ltEs20(xuu33001, xuu34001, app(ty_Maybe, cfc)) -> new_ltEs13(xuu33001, xuu34001, cfc) 32.13/13.20 new_pePe(False, xuu165) -> xuu165 32.13/13.20 new_ltEs5(xuu3300, xuu3400, ty_Char) -> new_ltEs17(xuu3300, xuu3400) 32.13/13.20 new_esEs20(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.13/13.20 new_esEs23(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.13/13.20 new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.13/13.20 new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.13/13.20 new_ltEs20(xuu33001, xuu34001, ty_Float) -> new_ltEs11(xuu33001, xuu34001) 32.13/13.20 new_ltEs12(GT, GT) -> True 32.13/13.20 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Ordering, eg) -> new_esEs8(xuu3110000, xuu6000) 32.13/13.20 new_ltEs18(xuu3300, xuu3400) -> new_fsEs(new_compare32(xuu3300, xuu3400)) 32.13/13.20 new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Int) -> new_compare12(new_sr(xuu33000, xuu34001), new_sr(xuu34000, xuu33001)) 32.13/13.20 new_ltEs20(xuu33001, xuu34001, ty_Double) -> new_ltEs9(xuu33001, xuu34001) 32.13/13.20 new_ltEs19(xuu33002, xuu34002, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs8(xuu33002, xuu34002, cbh, cca, ccb) 32.13/13.20 new_esEs29(xuu311000, xuu600, ty_Integer) -> new_esEs17(xuu311000, xuu600) 32.13/13.20 new_esEs21(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) 32.13/13.20 new_ltEs12(GT, EQ) -> False 32.13/13.20 new_esEs24(xuu33001, xuu34001, ty_@0) -> new_esEs9(xuu33001, xuu34001) 32.13/13.20 new_esEs21(xuu3110001, xuu6001, app(app(ty_Either, bfh), bga)) -> new_esEs4(xuu3110001, xuu6001, bfh, bga) 32.13/13.20 new_esEs18(xuu3110002, xuu6002, ty_Float) -> new_esEs11(xuu3110002, xuu6002) 32.13/13.20 new_lt10(xuu33000, xuu34000, app(ty_[], ceb)) -> new_lt16(xuu33000, xuu34000, ceb) 32.13/13.20 new_compare27(xuu33000, xuu34000, False, bd, be) -> new_compare16(xuu33000, xuu34000, new_ltEs14(xuu33000, xuu34000, bd, be), bd, be) 32.13/13.20 new_esEs26(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) 32.13/13.20 new_compare7(Integer(xuu33000), Integer(xuu34000)) -> new_primCmpInt(xuu33000, xuu34000) 32.13/13.20 new_compare10(xuu132, xuu133, False, ced) -> GT 32.13/13.20 new_esEs30(xuu22, xuu17, ty_Float) -> new_esEs11(xuu22, xuu17) 32.13/13.20 new_esEs8(LT, EQ) -> False 32.13/13.20 new_esEs8(EQ, LT) -> False 32.13/13.20 new_compare17(xuu33000, xuu34000, True) -> LT 32.13/13.20 new_compare11(xuu33000, xuu34000, False, ee, ef) -> GT 32.13/13.20 new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, bhf)) -> new_esEs6(xuu3110000, xuu6000, bhf) 32.13/13.20 new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False 32.13/13.20 new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False 32.13/13.20 new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.13/13.20 new_esEs21(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) 32.13/13.20 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Ordering, de) -> new_ltEs12(xuu33000, xuu34000) 32.13/13.20 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Integer) -> new_ltEs10(xuu33000, xuu34000) 32.13/13.20 new_compare30(xuu33000, xuu34000, app(ty_Maybe, chg)) -> new_compare29(xuu33000, xuu34000, chg) 32.13/13.20 new_ltEs5(xuu3300, xuu3400, app(ty_Maybe, ea)) -> new_ltEs13(xuu3300, xuu3400, ea) 32.13/13.20 new_esEs26(xuu33000, xuu34000, app(ty_[], cgd)) -> new_esEs16(xuu33000, xuu34000, cgd) 32.13/13.20 new_ltEs17(xuu3300, xuu3400) -> new_fsEs(new_compare13(xuu3300, xuu3400)) 32.13/13.20 new_ltEs15(xuu3300, xuu3400, ed) -> new_fsEs(new_compare15(xuu3300, xuu3400, ed)) 32.13/13.20 new_ltEs19(xuu33002, xuu34002, app(app(ty_@2, cce), ccf)) -> new_ltEs14(xuu33002, xuu34002, cce, ccf) 32.13/13.20 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 32.13/13.20 new_esEs25(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) 32.13/13.20 new_esEs23(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.13/13.20 new_primCmpInt(Neg(Zero), Pos(Succ(xuu3400))) -> LT 32.13/13.20 new_compare13(Char(xuu33000), Char(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) 32.13/13.20 new_ltEs5(xuu3300, xuu3400, app(app(app(ty_@3, df), dg), dh)) -> new_ltEs8(xuu3300, xuu3400, df, dg, dh) 32.13/13.20 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Int, eg) -> new_esEs12(xuu3110000, xuu6000) 32.13/13.20 new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.13/13.20 new_ltEs20(xuu33001, xuu34001, ty_Char) -> new_ltEs17(xuu33001, xuu34001) 32.13/13.20 new_compare17(xuu33000, xuu34000, False) -> GT 32.13/13.20 new_lt9(xuu33001, xuu34001, ty_Integer) -> new_lt13(xuu33001, xuu34001) 32.13/13.20 new_primMulInt(Pos(xuu31100000), Pos(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) 32.13/13.20 new_compare30(xuu33000, xuu34000, ty_Float) -> new_compare18(xuu33000, xuu34000) 32.13/13.20 new_ltEs5(xuu3300, xuu3400, ty_Float) -> new_ltEs11(xuu3300, xuu3400) 32.13/13.20 new_ltEs5(xuu3300, xuu3400, app(app(ty_@2, eb), ec)) -> new_ltEs14(xuu3300, xuu3400, eb, ec) 32.13/13.20 new_esEs23(xuu3110000, xuu6000, app(app(ty_Either, cae), caf)) -> new_esEs4(xuu3110000, xuu6000, cae, caf) 32.13/13.20 new_esEs18(xuu3110002, xuu6002, app(ty_[], bba)) -> new_esEs16(xuu3110002, xuu6002, bba) 32.13/13.20 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Bool) -> new_ltEs16(xuu33000, xuu34000) 32.13/13.20 new_esEs25(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) 32.13/13.20 new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, ce), cf)) -> new_esEs4(xuu3110000, xuu6000, ce, cf) 32.13/13.20 new_primCompAux1(xuu33000, xuu34000, xuu176, bf) -> new_primCompAux0(xuu176, new_compare30(xuu33000, xuu34000, bf)) 32.13/13.20 new_lt9(xuu33001, xuu34001, ty_Double) -> new_lt12(xuu33001, xuu34001) 32.13/13.20 new_compare10(xuu132, xuu133, True, ced) -> LT 32.13/13.20 new_esEs24(xuu33001, xuu34001, app(ty_Maybe, cdf)) -> new_esEs6(xuu33001, xuu34001, cdf) 32.13/13.20 new_primMulNat0(Succ(xuu311000000), Zero) -> Zero 32.13/13.20 new_primMulNat0(Zero, Succ(xuu600100)) -> Zero 32.13/13.20 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) 32.13/13.20 new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, cb), cc), cd)) -> new_esEs5(xuu3110000, xuu6000, cb, cc, cd) 32.13/13.20 new_lt10(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) 32.13/13.20 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(ty_Either, dbe), dbf)) -> new_ltEs6(xuu33000, xuu34000, dbe, dbf) 32.13/13.20 new_esEs23(xuu3110000, xuu6000, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs5(xuu3110000, xuu6000, cab, cac, cad) 32.13/13.20 new_ltEs19(xuu33002, xuu34002, ty_Char) -> new_ltEs17(xuu33002, xuu34002) 32.13/13.20 new_lt17(xuu33000, xuu34000, cec) -> new_esEs8(new_compare29(xuu33000, xuu34000, cec), LT) 32.13/13.20 new_ltEs5(xuu3300, xuu3400, ty_Double) -> new_ltEs9(xuu3300, xuu3400) 32.13/13.20 new_lt20(xuu33000, xuu34000, app(app(app(ty_@3, cga), cgb), cgc)) -> new_lt11(xuu33000, xuu34000, cga, cgb, cgc) 32.13/13.20 new_esEs24(xuu33001, xuu34001, ty_Char) -> new_esEs10(xuu33001, xuu34001) 32.13/13.20 new_lt9(xuu33001, xuu34001, app(ty_Maybe, cdf)) -> new_lt17(xuu33001, xuu34001, cdf) 32.13/13.20 new_esEs18(xuu3110002, xuu6002, ty_Integer) -> new_esEs17(xuu3110002, xuu6002) 32.13/13.20 new_lt14(xuu33000, xuu34000) -> new_esEs8(new_compare18(xuu33000, xuu34000), LT) 32.13/13.20 new_ltEs5(xuu3300, xuu3400, ty_Bool) -> new_ltEs16(xuu3300, xuu3400) 32.13/13.20 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Integer, de) -> new_ltEs10(xuu33000, xuu34000) 32.13/13.20 new_esEs8(LT, LT) -> True 32.13/13.20 new_esEs29(xuu311000, xuu600, ty_Float) -> new_esEs11(xuu311000, xuu600) 32.13/13.20 new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, bhd)) -> new_esEs15(xuu3110000, xuu6000, bhd) 32.13/13.20 new_esEs26(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) 32.13/13.20 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.13/13.20 new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, bea), beb), bec)) -> new_ltEs8(xuu33000, xuu34000, bea, beb, bec) 32.13/13.20 new_primPlusNat1(Succ(xuu28200), Zero) -> Succ(xuu28200) 32.13/13.20 new_primPlusNat1(Zero, Succ(xuu9700)) -> Succ(xuu9700) 32.13/13.20 new_compare23(Just(xuu3300), Nothing, False, dc) -> GT 32.13/13.20 new_compare30(xuu33000, xuu34000, ty_Char) -> new_compare13(xuu33000, xuu34000) 32.13/13.20 new_ltEs19(xuu33002, xuu34002, ty_Double) -> new_ltEs9(xuu33002, xuu34002) 32.13/13.20 new_esEs19(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) 32.13/13.20 new_lt10(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) 32.13/13.20 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(app(ty_@3, gf), gg), gh)) -> new_esEs5(xuu3110000, xuu6000, gf, gg, gh) 32.13/13.20 new_esEs13(True, True) -> True 32.13/13.20 new_esEs30(xuu22, xuu17, ty_Integer) -> new_esEs17(xuu22, xuu17) 32.13/13.20 new_ltEs20(xuu33001, xuu34001, app(app(ty_@2, cfd), cfe)) -> new_ltEs14(xuu33001, xuu34001, cfd, cfe) 32.13/13.20 new_esEs23(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.13/13.20 new_esEs23(xuu3110000, xuu6000, app(ty_Ratio, cag)) -> new_esEs15(xuu3110000, xuu6000, cag) 32.13/13.20 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Char, eg) -> new_esEs10(xuu3110000, xuu6000) 32.13/13.20 new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_[], ga), eg) -> new_esEs16(xuu3110000, xuu6000, ga) 32.13/13.20 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.13/13.20 new_esEs16([], [], bhg) -> True 32.13/13.20 new_ltEs19(xuu33002, xuu34002, ty_Float) -> new_ltEs11(xuu33002, xuu34002) 32.13/13.20 new_esEs25(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) 32.13/13.20 new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, cg)) -> new_esEs15(xuu3110000, xuu6000, cg) 32.13/13.20 new_primMulInt(Neg(xuu31100000), Neg(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) 32.13/13.20 new_primCmpInt(Pos(Zero), Pos(Succ(xuu3400))) -> new_primCmpNat0(Zero, Succ(xuu3400)) 32.13/13.20 new_esEs29(xuu311000, xuu600, ty_Double) -> new_esEs14(xuu311000, xuu600) 32.13/13.20 new_esEs25(xuu33000, xuu34000, app(app(ty_@2, bd), be)) -> new_esEs7(xuu33000, xuu34000, bd, be) 32.13/13.20 new_ltEs20(xuu33001, xuu34001, ty_Bool) -> new_ltEs16(xuu33001, xuu34001) 32.13/13.20 new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, db)) -> new_esEs6(xuu3110000, xuu6000, db) 32.13/13.20 new_esEs6(Nothing, Just(xuu6000), bg) -> False 32.13/13.20 new_esEs6(Just(xuu3110000), Nothing, bg) -> False 32.13/13.20 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.13/13.20 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_Maybe, he)) -> new_esEs6(xuu3110000, xuu6000, he) 32.13/13.20 new_esEs6(Nothing, Nothing, bg) -> True 32.13/13.20 new_esEs14(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 32.13/13.20 new_esEs23(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.13/13.20 new_compare26(xuu33000, xuu34000, True, cbb, cbc, cbd) -> EQ 32.13/13.20 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_Ratio, hc)) -> new_esEs15(xuu3110000, xuu6000, hc) 32.13/13.20 new_compare26(xuu33000, xuu34000, False, cbb, cbc, cbd) -> new_compare14(xuu33000, xuu34000, new_ltEs8(xuu33000, xuu34000, cbb, cbc, cbd), cbb, cbc, cbd) 32.13/13.20 new_ltEs19(xuu33002, xuu34002, ty_Bool) -> new_ltEs16(xuu33002, xuu34002) 32.13/13.20 new_lt10(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) 32.13/13.20 new_primMulInt(Pos(xuu31100000), Neg(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) 32.13/13.20 new_primMulInt(Neg(xuu31100000), Pos(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) 32.13/13.20 new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.13/13.20 new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.13/13.20 new_compare30(xuu33000, xuu34000, app(app(ty_@2, chh), daa)) -> new_compare6(xuu33000, xuu34000, chh, daa) 32.13/13.20 new_esEs26(xuu33000, xuu34000, app(ty_Ratio, cgh)) -> new_esEs15(xuu33000, xuu34000, cgh) 32.13/13.20 new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, fh), eg) -> new_esEs15(xuu3110000, xuu6000, fh) 32.13/13.20 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.13/13.20 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Int) -> new_ltEs7(xuu33000, xuu34000) 32.13/13.20 new_ltEs19(xuu33002, xuu34002, ty_Ordering) -> new_ltEs12(xuu33002, xuu34002) 32.13/13.20 new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs5(xuu3110000, xuu6000, bgg, bgh, bha) 32.13/13.20 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(ty_@2, gd), ge)) -> new_esEs7(xuu3110000, xuu6000, gd, ge) 32.13/13.20 new_esEs21(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) 32.13/13.20 new_sr0(Integer(xuu330000), Integer(xuu340010)) -> Integer(new_primMulInt(xuu330000, xuu340010)) 32.13/13.20 new_esEs24(xuu33001, xuu34001, ty_Double) -> new_esEs14(xuu33001, xuu34001) 32.13/13.20 new_esEs25(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) 32.13/13.20 new_esEs13(False, False) -> True 32.13/13.20 new_esEs30(xuu22, xuu17, ty_Double) -> new_esEs14(xuu22, xuu17) 32.13/13.20 new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.13/13.20 new_compare31(xuu33000, xuu34000) -> new_compare210(xuu33000, xuu34000, new_esEs8(xuu33000, xuu34000)) 32.13/13.20 new_lt8(xuu33000, xuu34000, cbe) -> new_esEs8(new_compare15(xuu33000, xuu34000, cbe), LT) 32.13/13.20 new_esEs18(xuu3110002, xuu6002, ty_Double) -> new_esEs14(xuu3110002, xuu6002) 32.13/13.20 new_compare0([], :(xuu34000, xuu34001), bf) -> LT 32.13/13.20 new_asAs(True, xuu139) -> xuu139 32.13/13.20 new_esEs19(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) 32.13/13.20 new_esEs21(xuu3110001, xuu6001, app(ty_Maybe, bgd)) -> new_esEs6(xuu3110001, xuu6001, bgd) 32.13/13.20 new_lt10(xuu33000, xuu34000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_lt11(xuu33000, xuu34000, cbb, cbc, cbd) 32.13/13.20 new_lt16(xuu33000, xuu34000, ceb) -> new_esEs8(new_compare0(xuu33000, xuu34000, ceb), LT) 32.13/13.20 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.13/13.20 new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, ff), fg), eg) -> new_esEs4(xuu3110000, xuu6000, ff, fg) 32.13/13.20 new_esEs21(xuu3110001, xuu6001, app(ty_Ratio, bgb)) -> new_esEs15(xuu3110001, xuu6001, bgb) 32.13/13.20 new_esEs26(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) 32.13/13.20 new_ltEs16(True, False) -> False 32.13/13.20 new_compare16(xuu33000, xuu34000, True, bd, be) -> LT 32.13/13.20 new_esEs29(xuu311000, xuu600, app(ty_[], bhg)) -> new_esEs16(xuu311000, xuu600, bhg) 32.13/13.20 new_ltEs5(xuu3300, xuu3400, ty_@0) -> new_ltEs18(xuu3300, xuu3400) 32.13/13.20 new_lt9(xuu33001, xuu34001, app(app(ty_Either, cch), cda)) -> new_lt5(xuu33001, xuu34001, cch, cda) 32.13/13.20 new_esEs18(xuu3110002, xuu6002, app(app(ty_@2, baa), bab)) -> new_esEs7(xuu3110002, xuu6002, baa, bab) 32.13/13.20 new_compare24(xuu33000, xuu34000, True, ee, ef) -> EQ 32.13/13.20 new_esEs24(xuu33001, xuu34001, app(app(ty_@2, cdg), cdh)) -> new_esEs7(xuu33001, xuu34001, cdg, cdh) 32.13/13.20 new_esEs30(xuu22, xuu17, app(app(ty_@2, dcg), dch)) -> new_esEs7(xuu22, xuu17, dcg, dch) 32.13/13.20 new_primCmpInt(Pos(Succ(xuu3300)), Pos(xuu340)) -> new_primCmpNat0(Succ(xuu3300), xuu340) 32.13/13.20 new_lt9(xuu33001, xuu34001, ty_@0) -> new_lt19(xuu33001, xuu34001) 32.13/13.20 new_compare110(xuu33000, xuu34000, False) -> GT 32.13/13.20 new_compare9(xuu33000, xuu34000) -> new_compare25(xuu33000, xuu34000, new_esEs13(xuu33000, xuu34000)) 32.13/13.20 new_esEs25(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) 32.13/13.20 new_lt20(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) 32.13/13.20 new_esEs9(@0, @0) -> True 32.13/13.20 new_compare0([], [], bf) -> EQ 32.13/13.20 new_esEs19(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) 32.13/13.20 new_esEs20(xuu3110000, xuu6000, app(app(ty_Either, bdb), bdc)) -> new_esEs4(xuu3110000, xuu6000, bdb, bdc) 32.13/13.20 new_sr(xuu3110000, xuu6001) -> new_primMulInt(xuu3110000, xuu6001) 32.13/13.20 new_esEs19(xuu3110001, xuu6001, app(app(ty_Either, bbh), bca)) -> new_esEs4(xuu3110001, xuu6001, bbh, bca) 32.13/13.20 new_compare30(xuu33000, xuu34000, ty_@0) -> new_compare32(xuu33000, xuu34000) 32.13/13.20 new_primMulNat0(Zero, Zero) -> Zero 32.13/13.20 new_ltEs20(xuu33001, xuu34001, ty_Ordering) -> new_ltEs12(xuu33001, xuu34001) 32.13/13.20 new_lt9(xuu33001, xuu34001, ty_Ordering) -> new_lt15(xuu33001, xuu34001) 32.13/13.20 new_ltEs13(Nothing, Nothing, ea) -> True 32.13/13.20 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.13/13.20 new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_@2, bef), beg)) -> new_ltEs14(xuu33000, xuu34000, bef, beg) 32.13/13.20 new_ltEs13(Just(xuu33000), Nothing, ea) -> False 32.13/13.20 new_lt20(xuu33000, xuu34000, app(ty_[], cgd)) -> new_lt16(xuu33000, xuu34000, cgd) 32.13/13.20 new_esEs24(xuu33001, xuu34001, app(ty_[], cde)) -> new_esEs16(xuu33001, xuu34001, cde) 32.13/13.20 new_esEs30(xuu22, xuu17, app(ty_[], ddg)) -> new_esEs16(xuu22, xuu17, ddg) 32.13/13.20 new_esEs20(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.13/13.20 new_compare14(xuu33000, xuu34000, False, cbb, cbc, cbd) -> GT 32.13/13.20 new_esEs23(xuu3110000, xuu6000, app(app(ty_@2, bhh), caa)) -> new_esEs7(xuu3110000, xuu6000, bhh, caa) 32.13/13.20 new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.13/13.20 new_lt20(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) 32.13/13.20 new_esEs25(xuu33000, xuu34000, app(app(ty_Either, ee), ef)) -> new_esEs4(xuu33000, xuu34000, ee, ef) 32.13/13.20 new_ltEs19(xuu33002, xuu34002, app(ty_Maybe, ccd)) -> new_ltEs13(xuu33002, xuu34002, ccd) 32.13/13.20 new_esEs19(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) 32.13/13.20 new_esEs21(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) 32.13/13.20 new_ltEs20(xuu33001, xuu34001, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_ltEs8(xuu33001, xuu34001, ceg, ceh, cfa) 32.13/13.20 new_esEs26(xuu33000, xuu34000, app(ty_Maybe, cge)) -> new_esEs6(xuu33000, xuu34000, cge) 32.13/13.20 new_lt11(xuu33000, xuu34000, cbb, cbc, cbd) -> new_esEs8(new_compare28(xuu33000, xuu34000, cbb, cbc, cbd), LT) 32.13/13.20 new_ltEs5(xuu3300, xuu3400, ty_Integer) -> new_ltEs10(xuu3300, xuu3400) 32.13/13.20 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(ty_Either, ha), hb)) -> new_esEs4(xuu3110000, xuu6000, ha, hb) 32.13/13.20 new_compare30(xuu33000, xuu34000, ty_Double) -> new_compare19(xuu33000, xuu34000) 32.13/13.20 new_compare32(@0, @0) -> EQ 32.13/13.20 new_ltEs12(GT, LT) -> False 32.13/13.20 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Bool) -> new_ltEs16(xuu33000, xuu34000) 32.13/13.20 new_primCompAux0(xuu182, EQ) -> xuu182 32.13/13.20 new_esEs26(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) 32.13/13.20 new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, bh), ca)) -> new_esEs7(xuu3110000, xuu6000, bh, ca) 32.13/13.20 new_esEs20(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.13/13.20 new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.13/13.20 new_esEs29(xuu311000, xuu600, app(app(ty_Either, gc), eg)) -> new_esEs4(xuu311000, xuu600, gc, eg) 32.13/13.20 new_esEs7(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bfa, bfb) -> new_asAs(new_esEs22(xuu3110000, xuu6000, bfa), new_esEs21(xuu3110001, xuu6001, bfb)) 32.13/13.20 new_esEs30(xuu22, xuu17, ty_@0) -> new_esEs9(xuu22, xuu17) 32.13/13.20 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False 32.13/13.20 new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False 32.13/13.20 new_esEs25(xuu33000, xuu34000, app(ty_Maybe, cec)) -> new_esEs6(xuu33000, xuu34000, cec) 32.13/13.20 new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, eh), fa), eg) -> new_esEs7(xuu3110000, xuu6000, eh, fa) 32.13/13.20 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 32.13/13.20 new_esEs13(False, True) -> False 32.13/13.20 new_esEs13(True, False) -> False 32.13/13.20 new_esEs20(xuu3110000, xuu6000, app(ty_[], bde)) -> new_esEs16(xuu3110000, xuu6000, bde) 32.13/13.20 new_ltEs20(xuu33001, xuu34001, app(app(ty_Either, cee), cef)) -> new_ltEs6(xuu33001, xuu34001, cee, cef) 32.13/13.20 new_esEs26(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) 32.13/13.20 new_esEs20(xuu3110000, xuu6000, app(ty_Maybe, bdf)) -> new_esEs6(xuu3110000, xuu6000, bdf) 32.13/13.20 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.13/13.20 new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False 32.13/13.20 new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False 32.13/13.20 new_esEs26(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) 32.13/13.20 new_esEs19(xuu3110001, xuu6001, app(ty_Maybe, bcd)) -> new_esEs6(xuu3110001, xuu6001, bcd) 32.13/13.20 new_esEs25(xuu33000, xuu34000, app(ty_Ratio, cbe)) -> new_esEs15(xuu33000, xuu34000, cbe) 32.13/13.20 new_compare30(xuu33000, xuu34000, app(ty_[], chf)) -> new_compare0(xuu33000, xuu34000, chf) 32.13/13.20 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Int) -> new_ltEs7(xuu33000, xuu34000) 32.13/13.20 new_lt9(xuu33001, xuu34001, ty_Float) -> new_lt14(xuu33001, xuu34001) 32.13/13.20 new_primCmpInt(Neg(Zero), Neg(Succ(xuu3400))) -> new_primCmpNat0(Succ(xuu3400), Zero) 32.13/13.20 new_esEs16(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bhg) -> new_asAs(new_esEs23(xuu3110000, xuu6000, bhg), new_esEs16(xuu3110001, xuu6001, bhg)) 32.13/13.20 new_compare23(Nothing, Just(xuu3400), False, dc) -> LT 32.13/13.20 new_compare29(xuu33000, xuu34000, cec) -> new_compare23(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, cec), cec) 32.13/13.20 new_esEs21(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) 32.13/13.20 new_esEs25(xuu33000, xuu34000, app(ty_[], ceb)) -> new_esEs16(xuu33000, xuu34000, ceb) 32.13/13.20 new_esEs30(xuu22, xuu17, app(app(ty_Either, ddd), dde)) -> new_esEs4(xuu22, xuu17, ddd, dde) 32.13/13.20 new_esEs29(xuu311000, xuu600, ty_@0) -> new_esEs9(xuu311000, xuu600) 32.13/13.20 new_esEs19(xuu3110001, xuu6001, app(ty_[], bcc)) -> new_esEs16(xuu3110001, xuu6001, bcc) 32.13/13.20 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_@0, de) -> new_ltEs18(xuu33000, xuu34000) 32.13/13.20 new_esEs24(xuu33001, xuu34001, app(app(ty_Either, cch), cda)) -> new_esEs4(xuu33001, xuu34001, cch, cda) 32.13/13.20 new_ltEs19(xuu33002, xuu34002, app(app(ty_Either, cbf), cbg)) -> new_ltEs6(xuu33002, xuu34002, cbf, cbg) 32.13/13.20 new_ltEs12(EQ, GT) -> True 32.13/13.20 new_esEs19(xuu3110001, xuu6001, app(ty_Ratio, bcb)) -> new_esEs15(xuu3110001, xuu6001, bcb) 32.13/13.20 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 32.13/13.20 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.13/13.20 new_esEs18(xuu3110002, xuu6002, app(app(ty_Either, baf), bag)) -> new_esEs4(xuu3110002, xuu6002, baf, bag) 32.13/13.20 new_lt20(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) 32.13/13.20 new_lt10(xuu33000, xuu34000, app(app(ty_Either, ee), ef)) -> new_lt5(xuu33000, xuu34000, ee, ef) 32.13/13.20 new_ltEs12(EQ, EQ) -> True 32.13/13.20 new_esEs30(xuu22, xuu17, app(ty_Maybe, ddh)) -> new_esEs6(xuu22, xuu17, ddh) 32.13/13.20 new_esEs24(xuu33001, xuu34001, ty_Float) -> new_esEs11(xuu33001, xuu34001) 32.13/13.20 new_compare30(xuu33000, xuu34000, ty_Int) -> new_compare12(xuu33000, xuu34000) 32.13/13.20 new_esEs23(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.13/13.20 new_esEs12(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) 32.13/13.20 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Double, eg) -> new_esEs14(xuu3110000, xuu6000) 32.13/13.20 new_esEs20(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.13/13.20 new_compare30(xuu33000, xuu34000, ty_Integer) -> new_compare7(xuu33000, xuu34000) 32.13/13.20 new_compare23(Nothing, Nothing, False, dc) -> LT 32.13/13.20 new_esEs18(xuu3110002, xuu6002, ty_@0) -> new_esEs9(xuu3110002, xuu6002) 32.13/13.20 new_esEs19(xuu3110001, xuu6001, app(app(ty_@2, bbc), bbd)) -> new_esEs7(xuu3110001, xuu6001, bbc, bbd) 32.13/13.20 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.13/13.20 new_primPlusNat0(xuu107, xuu600100) -> new_primPlusNat1(xuu107, Succ(xuu600100)) 32.13/13.20 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.13/13.20 new_ltEs6(Right(xuu33000), Left(xuu34000), dd, de) -> False 32.13/13.20 new_not(False) -> True 32.13/13.20 new_esEs21(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) 32.13/13.20 new_esEs21(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) 32.13/13.20 new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_@2, dbb), dbc), de) -> new_ltEs14(xuu33000, xuu34000, dbb, dbc) 32.13/13.20 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_Maybe, dcc)) -> new_ltEs13(xuu33000, xuu34000, dcc) 32.13/13.20 new_ltEs5(xuu3300, xuu3400, ty_Int) -> new_ltEs7(xuu3300, xuu3400) 32.13/13.20 new_compare28(xuu33000, xuu34000, cbb, cbc, cbd) -> new_compare26(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, cbb, cbc, cbd), cbb, cbc, cbd) 32.13/13.20 new_ltEs8(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), df, dg, dh) -> new_pePe(new_lt10(xuu33000, xuu34000, df), new_asAs(new_esEs25(xuu33000, xuu34000, df), new_pePe(new_lt9(xuu33001, xuu34001, dg), new_asAs(new_esEs24(xuu33001, xuu34001, dg), new_ltEs19(xuu33002, xuu34002, dh))))) 32.13/13.20 new_compare30(xuu33000, xuu34000, ty_Bool) -> new_compare9(xuu33000, xuu34000) 32.13/13.20 new_compare0(:(xuu33000, xuu33001), [], bf) -> GT 32.13/13.20 new_esEs8(LT, GT) -> False 32.13/13.20 new_esEs8(GT, LT) -> False 32.13/13.20 new_esEs29(xuu311000, xuu600, app(ty_Ratio, dea)) -> new_esEs15(xuu311000, xuu600, dea) 32.13/13.20 new_esEs19(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) 32.13/13.20 new_esEs25(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) 32.13/13.20 new_compare25(xuu33000, xuu34000, True) -> EQ 32.13/13.20 new_compare27(xuu33000, xuu34000, True, bd, be) -> EQ 32.13/13.20 new_esEs29(xuu311000, xuu600, app(app(ty_@2, bfa), bfb)) -> new_esEs7(xuu311000, xuu600, bfa, bfb) 32.13/13.20 new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.13/13.20 new_esEs18(xuu3110002, xuu6002, app(ty_Maybe, bbb)) -> new_esEs6(xuu3110002, xuu6002, bbb) 32.13/13.20 new_ltEs16(False, False) -> True 32.13/13.20 new_compare11(xuu33000, xuu34000, True, ee, ef) -> LT 32.13/13.20 new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Ratio, beh)) -> new_ltEs15(xuu33000, xuu34000, beh) 32.13/13.20 new_ltEs19(xuu33002, xuu34002, ty_Int) -> new_ltEs7(xuu33002, xuu34002) 32.13/13.20 new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.13/13.20 new_esEs29(xuu311000, xuu600, app(ty_Maybe, bg)) -> new_esEs6(xuu311000, xuu600, bg) 32.13/13.20 new_lt10(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) 32.13/13.20 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 32.13/13.20 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 32.13/13.20 new_primPlusNat1(Zero, Zero) -> Zero 32.13/13.20 new_lt20(xuu33000, xuu34000, app(app(ty_@2, cgf), cgg)) -> new_lt4(xuu33000, xuu34000, cgf, cgg) 32.13/13.20 new_lt9(xuu33001, xuu34001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt11(xuu33001, xuu34001, cdb, cdc, cdd) 32.13/13.20 new_ltEs11(xuu3300, xuu3400) -> new_fsEs(new_compare18(xuu3300, xuu3400)) 32.13/13.20 new_lt19(xuu33000, xuu34000) -> new_esEs8(new_compare32(xuu33000, xuu34000), LT) 32.13/13.20 new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.13/13.20 new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.13/13.20 new_ltEs20(xuu33001, xuu34001, ty_Int) -> new_ltEs7(xuu33001, xuu34001) 32.13/13.20 new_lt20(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) 32.13/13.20 new_esEs28(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.13/13.20 new_lt10(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) 32.13/13.20 new_esEs21(xuu3110001, xuu6001, app(ty_[], bgc)) -> new_esEs16(xuu3110001, xuu6001, bgc) 32.13/13.20 new_ltEs16(True, True) -> True 32.13/13.20 new_lt13(xuu33000, xuu34000) -> new_esEs8(new_compare7(xuu33000, xuu34000), LT) 32.13/13.20 new_esEs20(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.13/13.20 new_esEs26(xuu33000, xuu34000, app(app(ty_Either, cfg), cfh)) -> new_esEs4(xuu33000, xuu34000, cfg, cfh) 32.13/13.20 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Bool, de) -> new_ltEs16(xuu33000, xuu34000) 32.13/13.20 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 32.13/13.20 new_ltEs5(xuu3300, xuu3400, app(ty_Ratio, ed)) -> new_ltEs15(xuu3300, xuu3400, ed) 32.13/13.20 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.13/13.20 new_esEs25(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) 32.13/13.20 new_primMulNat0(Succ(xuu311000000), Succ(xuu600100)) -> new_primPlusNat0(new_primMulNat0(xuu311000000, Succ(xuu600100)), xuu600100) 32.13/13.20 new_ltEs12(EQ, LT) -> False 32.13/13.20 new_ltEs5(xuu3300, xuu3400, app(ty_[], bf)) -> new_ltEs4(xuu3300, xuu3400, bf) 32.13/13.20 new_lt6(xuu330, xuu340) -> new_esEs8(new_compare12(xuu330, xuu340), LT) 32.13/13.20 new_lt7(xuu33000, xuu34000) -> new_esEs8(new_compare13(xuu33000, xuu34000), LT) 32.13/13.20 new_primCmpNat0(Succ(xuu3300), Succ(xuu3400)) -> new_primCmpNat0(xuu3300, xuu3400) 32.13/13.20 new_ltEs19(xuu33002, xuu34002, app(ty_Ratio, ccg)) -> new_ltEs15(xuu33002, xuu34002, ccg) 32.13/13.20 new_esEs26(xuu33000, xuu34000, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs5(xuu33000, xuu34000, cga, cgb, cgc) 32.13/13.20 new_esEs30(xuu22, xuu17, ty_Char) -> new_esEs10(xuu22, xuu17) 32.13/13.20 new_esEs21(xuu3110001, xuu6001, app(app(ty_@2, bfc), bfd)) -> new_esEs7(xuu3110001, xuu6001, bfc, bfd) 32.13/13.20 new_esEs26(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) 32.13/13.20 new_esEs18(xuu3110002, xuu6002, ty_Char) -> new_esEs10(xuu3110002, xuu6002) 32.13/13.20 new_esEs24(xuu33001, xuu34001, ty_Integer) -> new_esEs17(xuu33001, xuu34001) 32.13/13.20 new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_[], da)) -> new_esEs16(xuu3110000, xuu6000, da) 32.13/13.20 new_compare12(xuu33, xuu34) -> new_primCmpInt(xuu33, xuu34) 32.13/13.20 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(app(ty_@3, dbg), dbh), dca)) -> new_ltEs8(xuu33000, xuu34000, dbg, dbh, dca) 32.13/13.20 new_esEs19(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) 32.13/13.20 new_esEs16(:(xuu3110000, xuu3110001), [], bhg) -> False 32.13/13.20 new_esEs16([], :(xuu6000, xuu6001), bhg) -> False 32.13/13.20 new_esEs23(xuu3110000, xuu6000, app(ty_[], cah)) -> new_esEs16(xuu3110000, xuu6000, cah) 32.13/13.20 new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, fb), fc), fd), eg) -> new_esEs5(xuu3110000, xuu6000, fb, fc, fd) 32.13/13.20 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 32.13/13.20 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 32.13/13.20 new_ltEs12(LT, EQ) -> True 32.13/13.20 new_ltEs20(xuu33001, xuu34001, app(ty_[], cfb)) -> new_ltEs4(xuu33001, xuu34001, cfb) 32.13/13.20 new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.13/13.20 new_compare30(xuu33000, xuu34000, app(app(ty_Either, cha), chb)) -> new_compare8(xuu33000, xuu34000, cha, chb) 32.13/13.20 new_ltEs20(xuu33001, xuu34001, app(ty_Ratio, cff)) -> new_ltEs15(xuu33001, xuu34001, cff) 32.13/13.20 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Float, de) -> new_ltEs11(xuu33000, xuu34000) 32.13/13.20 new_ltEs9(xuu3300, xuu3400) -> new_fsEs(new_compare19(xuu3300, xuu3400)) 32.13/13.20 new_esEs27(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) 32.13/13.20 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_@0) -> new_ltEs18(xuu33000, xuu34000) 32.13/13.20 new_primEqNat0(Zero, Zero) -> True 32.13/13.20 new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, gb), eg) -> new_esEs6(xuu3110000, xuu6000, gb) 32.13/13.20 new_esEs20(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.13/13.20 new_esEs29(xuu311000, xuu600, ty_Ordering) -> new_esEs8(xuu311000, xuu600) 32.13/13.20 new_lt20(xuu33000, xuu34000, app(app(ty_Either, cfg), cfh)) -> new_lt5(xuu33000, xuu34000, cfg, cfh) 32.13/13.20 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Float, eg) -> new_esEs11(xuu3110000, xuu6000) 32.13/13.20 new_lt10(xuu33000, xuu34000, app(app(ty_@2, bd), be)) -> new_lt4(xuu33000, xuu34000, bd, be) 32.13/13.20 new_esEs22(xuu3110000, xuu6000, app(ty_[], bhe)) -> new_esEs16(xuu3110000, xuu6000, bhe) 32.13/13.20 new_asAs(False, xuu139) -> False 32.13/13.20 new_ltEs19(xuu33002, xuu34002, app(ty_[], ccc)) -> new_ltEs4(xuu33002, xuu34002, ccc) 32.13/13.20 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.13/13.20 new_compare30(xuu33000, xuu34000, ty_Ordering) -> new_compare31(xuu33000, xuu34000) 32.13/13.20 new_lt20(xuu33000, xuu34000, app(ty_Maybe, cge)) -> new_lt17(xuu33000, xuu34000, cge) 32.13/13.20 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Double, de) -> new_ltEs9(xuu33000, xuu34000) 32.13/13.20 new_lt20(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) 32.13/13.20 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) 32.13/13.20 new_ltEs13(Nothing, Just(xuu34000), ea) -> True 32.13/13.20 new_esEs23(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.13/13.20 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_[], hd)) -> new_esEs16(xuu3110000, xuu6000, hd) 32.13/13.20 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Char, de) -> new_ltEs17(xuu33000, xuu34000) 32.13/13.20 new_ltEs6(Left(xuu33000), Right(xuu34000), dd, de) -> True 32.13/13.20 new_esEs8(EQ, GT) -> False 32.13/13.20 new_esEs8(GT, EQ) -> False 32.13/13.20 new_esEs11(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 32.13/13.20 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Integer) -> new_ltEs10(xuu33000, xuu34000) 32.13/13.20 new_ltEs16(False, True) -> True 32.13/13.20 new_lt10(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) 32.13/13.20 new_esEs29(xuu311000, xuu600, ty_Char) -> new_esEs10(xuu311000, xuu600) 32.13/13.20 new_esEs21(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) 32.13/13.20 new_esEs20(xuu3110000, xuu6000, app(app(ty_@2, bce), bcf)) -> new_esEs7(xuu3110000, xuu6000, bce, bcf) 32.13/13.20 32.13/13.20 The set Q consists of the following terms: 32.13/13.20 32.13/13.20 new_lt10(x0, x1, app(ty_[], x2)) 32.13/13.20 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.20 new_esEs8(EQ, EQ) 32.13/13.20 new_esEs6(Just(x0), Just(x1), ty_Double) 32.13/13.20 new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 32.13/13.20 new_esEs4(Left(x0), Left(x1), ty_Double, x2) 32.13/13.20 new_esEs19(x0, x1, app(ty_[], x2)) 32.13/13.20 new_ltEs13(Nothing, Just(x0), x1) 32.13/13.20 new_lt9(x0, x1, ty_Bool) 32.13/13.20 new_lt10(x0, x1, ty_@0) 32.13/13.20 new_esEs29(x0, x1, ty_@0) 32.13/13.20 new_ltEs20(x0, x1, ty_Int) 32.13/13.20 new_esEs30(x0, x1, ty_Bool) 32.13/13.20 new_lt20(x0, x1, ty_Integer) 32.13/13.20 new_ltEs11(x0, x1) 32.13/13.20 new_lt5(x0, x1, x2, x3) 32.13/13.20 new_ltEs7(x0, x1) 32.13/13.20 new_esEs26(x0, x1, app(ty_Maybe, x2)) 32.13/13.20 new_esEs24(x0, x1, ty_Float) 32.13/13.20 new_ltEs19(x0, x1, app(ty_[], x2)) 32.13/13.20 new_esEs6(Just(x0), Just(x1), ty_Ordering) 32.13/13.20 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 32.13/13.20 new_esEs6(Just(x0), Nothing, x1) 32.13/13.20 new_compare0(:(x0, x1), [], x2) 32.13/13.20 new_primPlusNat1(Zero, Zero) 32.13/13.20 new_pePe(True, x0) 32.13/13.20 new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) 32.13/13.20 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 32.13/13.20 new_esEs29(x0, x1, ty_Bool) 32.13/13.20 new_esEs6(Nothing, Nothing, x0) 32.13/13.20 new_ltEs20(x0, x1, ty_Char) 32.13/13.20 new_lt10(x0, x1, ty_Bool) 32.13/13.20 new_ltEs9(x0, x1) 32.13/13.20 new_lt9(x0, x1, ty_Integer) 32.13/13.20 new_ltEs19(x0, x1, ty_Double) 32.13/13.20 new_esEs12(x0, x1) 32.13/13.20 new_primEqInt(Pos(Zero), Pos(Zero)) 32.13/13.20 new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) 32.13/13.20 new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_lt13(x0, x1) 32.13/13.20 new_lt7(x0, x1) 32.13/13.20 new_esEs4(Left(x0), Left(x1), ty_Int, x2) 32.13/13.20 new_esEs26(x0, x1, ty_Double) 32.13/13.20 new_ltEs5(x0, x1, app(ty_Ratio, x2)) 32.13/13.20 new_fsEs(x0) 32.13/13.20 new_lt9(x0, x1, ty_@0) 32.13/13.20 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 32.13/13.20 new_lt9(x0, x1, app(ty_Ratio, x2)) 32.13/13.20 new_esEs16([], :(x0, x1), x2) 32.13/13.20 new_primEqNat0(Zero, Succ(x0)) 32.13/13.20 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 32.13/13.20 new_lt10(x0, x1, ty_Char) 32.13/13.20 new_primEqInt(Neg(Zero), Neg(Zero)) 32.13/13.20 new_compare16(x0, x1, True, x2, x3) 32.13/13.20 new_ltEs20(x0, x1, app(ty_[], x2)) 32.13/13.20 new_esEs23(x0, x1, ty_Bool) 32.13/13.20 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_esEs6(Just(x0), Just(x1), ty_Char) 32.13/13.20 new_esEs4(Left(x0), Left(x1), ty_Char, x2) 32.13/13.20 new_esEs29(x0, x1, ty_Char) 32.13/13.20 new_ltEs16(False, False) 32.13/13.20 new_esEs20(x0, x1, app(ty_Ratio, x2)) 32.13/13.20 new_ltEs19(x0, x1, ty_Int) 32.13/13.20 new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) 32.13/13.20 new_compare30(x0, x1, ty_Double) 32.13/13.20 new_lt19(x0, x1) 32.13/13.20 new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) 32.13/13.20 new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 32.13/13.20 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 32.13/13.20 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 32.13/13.20 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_ltEs12(GT, EQ) 32.13/13.20 new_compare29(x0, x1, x2) 32.13/13.20 new_ltEs12(EQ, GT) 32.13/13.20 new_esEs19(x0, x1, app(ty_Ratio, x2)) 32.13/13.20 new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 32.13/13.20 new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) 32.13/13.20 new_ltEs13(Just(x0), Nothing, x1) 32.13/13.20 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.20 new_esEs30(x0, x1, ty_Integer) 32.13/13.20 new_compare6(x0, x1, x2, x3) 32.13/13.20 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.20 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 32.13/13.20 new_primEqInt(Pos(Zero), Neg(Zero)) 32.13/13.20 new_primEqInt(Neg(Zero), Pos(Zero)) 32.13/13.20 new_compare14(x0, x1, True, x2, x3, x4) 32.13/13.20 new_ltEs20(x0, x1, ty_Ordering) 32.13/13.20 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 32.13/13.20 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 32.13/13.20 new_compare0([], :(x0, x1), x2) 32.13/13.20 new_compare16(x0, x1, False, x2, x3) 32.13/13.20 new_esEs19(x0, x1, ty_Float) 32.13/13.20 new_primCompAux0(x0, GT) 32.13/13.20 new_esEs29(x0, x1, ty_Int) 32.13/13.20 new_esEs20(x0, x1, app(ty_[], x2)) 32.13/13.20 new_compare210(x0, x1, False) 32.13/13.20 new_esEs18(x0, x1, app(ty_[], x2)) 32.13/13.20 new_esEs23(x0, x1, ty_Ordering) 32.13/13.20 new_pePe(False, x0) 32.13/13.20 new_esEs6(Just(x0), Just(x1), ty_Int) 32.13/13.20 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.20 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 32.13/13.20 new_lt20(x0, x1, app(ty_[], x2)) 32.13/13.20 new_lt20(x0, x1, app(ty_Ratio, x2)) 32.13/13.20 new_ltEs6(Left(x0), Left(x1), ty_Float, x2) 32.13/13.20 new_esEs25(x0, x1, ty_Integer) 32.13/13.20 new_esEs10(Char(x0), Char(x1)) 32.13/13.20 new_esEs23(x0, x1, ty_Integer) 32.13/13.20 new_esEs25(x0, x1, app(ty_[], x2)) 32.13/13.20 new_compare13(Char(x0), Char(x1)) 32.13/13.20 new_esEs30(x0, x1, app(ty_Maybe, x2)) 32.13/13.20 new_primEqNat0(Succ(x0), Succ(x1)) 32.13/13.20 new_primMulInt(Neg(x0), Neg(x1)) 32.13/13.20 new_compare30(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.20 new_ltEs13(Just(x0), Just(x1), ty_Float) 32.13/13.20 new_ltEs5(x0, x1, ty_Double) 32.13/13.20 new_esEs30(x0, x1, ty_Ordering) 32.13/13.20 new_esEs6(Just(x0), Just(x1), ty_@0) 32.13/13.20 new_esEs9(@0, @0) 32.13/13.20 new_esEs24(x0, x1, ty_Bool) 32.13/13.20 new_esEs4(Right(x0), Right(x1), x2, ty_Integer) 32.13/13.20 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.20 new_lt9(x0, x1, ty_Double) 32.13/13.20 new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 32.13/13.20 new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 32.13/13.20 new_esEs14(Double(x0, x1), Double(x2, x3)) 32.13/13.20 new_esEs4(Left(x0), Left(x1), ty_Bool, x2) 32.13/13.20 new_esEs6(Just(x0), Just(x1), ty_Bool) 32.13/13.20 new_esEs29(x0, x1, ty_Ordering) 32.13/13.20 new_lt10(x0, x1, ty_Float) 32.13/13.20 new_lt6(x0, x1) 32.13/13.20 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.20 new_ltEs5(x0, x1, ty_Ordering) 32.13/13.20 new_esEs30(x0, x1, ty_Double) 32.13/13.20 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.20 new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 32.13/13.20 new_ltEs19(x0, x1, ty_Char) 32.13/13.20 new_ltEs13(Just(x0), Just(x1), ty_Int) 32.13/13.20 new_esEs21(x0, x1, ty_Double) 32.13/13.20 new_lt10(x0, x1, ty_Ordering) 32.13/13.20 new_primPlusNat0(x0, x1) 32.13/13.20 new_compare23(Just(x0), Nothing, False, x1) 32.13/13.20 new_esEs26(x0, x1, ty_@0) 32.13/13.20 new_esEs23(x0, x1, ty_Double) 32.13/13.20 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 32.13/13.20 new_compare30(x0, x1, ty_Ordering) 32.13/13.20 new_compare23(x0, x1, True, x2) 32.13/13.20 new_primMulNat0(Succ(x0), Succ(x1)) 32.13/13.20 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) 32.13/13.20 new_primPlusNat1(Zero, Succ(x0)) 32.13/13.20 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.20 new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 32.13/13.20 new_lt10(x0, x1, ty_Int) 32.13/13.20 new_compare25(x0, x1, True) 32.13/13.20 new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) 32.13/13.20 new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 32.13/13.20 new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 32.13/13.20 new_lt9(x0, x1, app(ty_[], x2)) 32.13/13.20 new_esEs8(GT, GT) 32.13/13.20 new_ltEs19(x0, x1, ty_Bool) 32.13/13.20 new_esEs28(x0, x1, ty_Integer) 32.13/13.20 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 32.13/13.20 new_ltEs16(True, False) 32.13/13.20 new_ltEs16(False, True) 32.13/13.20 new_ltEs12(EQ, LT) 32.13/13.20 new_ltEs12(LT, EQ) 32.13/13.20 new_esEs18(x0, x1, ty_Integer) 32.13/13.20 new_esEs8(LT, EQ) 32.13/13.20 new_esEs8(EQ, LT) 32.13/13.20 new_ltEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 32.13/13.20 new_esEs18(x0, x1, ty_Float) 32.13/13.20 new_ltEs12(GT, GT) 32.13/13.20 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.20 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_compare30(x0, x1, ty_@0) 32.13/13.20 new_primCmpInt(Neg(Zero), Neg(Zero)) 32.13/13.20 new_esEs22(x0, x1, ty_Integer) 32.13/13.20 new_lt20(x0, x1, ty_@0) 32.13/13.20 new_esEs13(False, True) 32.13/13.20 new_esEs13(True, False) 32.13/13.20 new_esEs23(x0, x1, app(ty_Ratio, x2)) 32.13/13.20 new_lt10(x0, x1, ty_Integer) 32.13/13.20 new_esEs11(Float(x0, x1), Float(x2, x3)) 32.13/13.20 new_esEs24(x0, x1, app(ty_Ratio, x2)) 32.13/13.20 new_esEs8(LT, LT) 32.13/13.20 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 32.13/13.20 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.20 new_primCmpInt(Pos(Zero), Neg(Zero)) 32.13/13.20 new_primCmpInt(Neg(Zero), Pos(Zero)) 32.13/13.20 new_primMulInt(Pos(x0), Neg(x1)) 32.13/13.20 new_primMulInt(Neg(x0), Pos(x1)) 32.13/13.20 new_esEs20(x0, x1, ty_Char) 32.13/13.20 new_compare110(x0, x1, True) 32.13/13.20 new_ltEs6(Right(x0), Left(x1), x2, x3) 32.13/13.20 new_ltEs6(Left(x0), Right(x1), x2, x3) 32.13/13.20 new_primCompAux1(x0, x1, x2, x3) 32.13/13.20 new_esEs6(Just(x0), Just(x1), ty_Integer) 32.13/13.20 new_esEs18(x0, x1, ty_Int) 32.13/13.20 new_lt15(x0, x1) 32.13/13.20 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 32.13/13.20 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.20 new_compare23(Nothing, Nothing, False, x0) 32.13/13.20 new_esEs29(x0, x1, ty_Integer) 32.13/13.20 new_esEs24(x0, x1, app(ty_Maybe, x2)) 32.13/13.20 new_esEs16([], [], x0) 32.13/13.20 new_esEs4(Right(x0), Right(x1), x2, ty_@0) 32.13/13.20 new_primMulInt(Pos(x0), Pos(x1)) 32.13/13.20 new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 32.13/13.20 new_compare27(x0, x1, True, x2, x3) 32.13/13.20 new_esEs20(x0, x1, ty_Int) 32.13/13.20 new_ltEs20(x0, x1, ty_Double) 32.13/13.20 new_compare210(x0, x1, True) 32.13/13.20 new_compare10(x0, x1, False, x2) 32.13/13.20 new_esEs22(x0, x1, ty_Ordering) 32.13/13.20 new_esEs25(x0, x1, ty_@0) 32.13/13.20 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.20 new_esEs18(x0, x1, ty_Char) 32.13/13.20 new_ltEs12(LT, LT) 32.13/13.20 new_asAs(True, x0) 32.13/13.20 new_esEs29(x0, x1, app(ty_Ratio, x2)) 32.13/13.20 new_esEs23(x0, x1, app(ty_[], x2)) 32.13/13.20 new_ltEs6(Right(x0), Right(x1), x2, ty_Double) 32.13/13.20 new_ltEs6(Right(x0), Right(x1), x2, ty_@0) 32.13/13.20 new_compare24(x0, x1, False, x2, x3) 32.13/13.20 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_lt17(x0, x1, x2) 32.13/13.20 new_ltEs19(x0, x1, ty_Ordering) 32.13/13.20 new_ltEs5(x0, x1, app(ty_[], x2)) 32.13/13.20 new_esEs18(x0, x1, ty_Bool) 32.13/13.20 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.20 new_ltEs19(x0, x1, ty_Integer) 32.13/13.20 new_esEs23(x0, x1, ty_@0) 32.13/13.20 new_esEs20(x0, x1, ty_Float) 32.13/13.20 new_ltEs17(x0, x1) 32.13/13.20 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_primCmpNat0(Succ(x0), Succ(x1)) 32.13/13.20 new_compare30(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.20 new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_lt20(x0, x1, ty_Double) 32.13/13.20 new_compare26(x0, x1, True, x2, x3, x4) 32.13/13.20 new_esEs30(x0, x1, ty_@0) 32.13/13.20 new_ltEs20(x0, x1, ty_@0) 32.13/13.20 new_primMulNat0(Succ(x0), Zero) 32.13/13.20 new_primCmpNat0(Zero, Succ(x0)) 32.13/13.20 new_esEs16(:(x0, x1), :(x2, x3), x4) 32.13/13.20 new_compare0(:(x0, x1), :(x2, x3), x4) 32.13/13.20 new_ltEs15(x0, x1, x2) 32.13/13.20 new_esEs19(x0, x1, ty_Int) 32.13/13.20 new_lt9(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.20 new_compare30(x0, x1, app(ty_[], x2)) 32.13/13.20 new_ltEs10(x0, x1) 32.13/13.20 new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 32.13/13.20 new_esEs24(x0, x1, app(ty_[], x2)) 32.13/13.20 new_esEs20(x0, x1, ty_@0) 32.13/13.20 new_primCompAux0(x0, LT) 32.13/13.20 new_esEs6(Just(x0), Just(x1), ty_Float) 32.13/13.20 new_ltEs5(x0, x1, ty_Bool) 32.13/13.20 new_esEs4(Left(x0), Left(x1), ty_Float, x2) 32.13/13.20 new_compare7(Integer(x0), Integer(x1)) 32.13/13.20 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.20 new_ltEs13(Just(x0), Just(x1), ty_Bool) 32.13/13.20 new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_primMulNat0(Zero, Zero) 32.13/13.20 new_esEs22(x0, x1, ty_@0) 32.13/13.20 new_compare30(x0, x1, ty_Integer) 32.13/13.20 new_ltEs6(Left(x0), Left(x1), ty_Char, x2) 32.13/13.20 new_esEs4(Right(x0), Right(x1), x2, ty_Int) 32.13/13.20 new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.20 new_ltEs6(Left(x0), Left(x1), ty_Int, x2) 32.13/13.20 new_esEs17(Integer(x0), Integer(x1)) 32.13/13.20 new_ltEs5(x0, x1, ty_@0) 32.13/13.20 new_esEs19(x0, x1, ty_Ordering) 32.13/13.20 new_lt20(x0, x1, app(ty_Maybe, x2)) 32.13/13.20 new_lt12(x0, x1) 32.13/13.20 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 32.13/13.20 new_esEs24(x0, x1, ty_Double) 32.13/13.20 new_esEs18(x0, x1, ty_@0) 32.13/13.20 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_compare11(x0, x1, False, x2, x3) 32.13/13.20 new_lt9(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.20 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 32.13/13.20 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 32.13/13.20 new_compare10(x0, x1, True, x2) 32.13/13.20 new_esEs28(x0, x1, ty_Int) 32.13/13.20 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.20 new_esEs19(x0, x1, ty_Double) 32.13/13.20 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 32.13/13.20 new_esEs25(x0, x1, ty_Double) 32.13/13.20 new_esEs24(x0, x1, ty_Int) 32.13/13.20 new_lt4(x0, x1, x2, x3) 32.13/13.20 new_esEs21(x0, x1, ty_Bool) 32.13/13.20 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_esEs20(x0, x1, ty_Bool) 32.13/13.20 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 32.13/13.20 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.20 new_compare23(Just(x0), Just(x1), False, x2) 32.13/13.20 new_esEs19(x0, x1, ty_Char) 32.13/13.20 new_esEs4(Right(x0), Right(x1), x2, ty_Char) 32.13/13.20 new_esEs4(Right(x0), Right(x1), x2, ty_Double) 32.13/13.20 new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 32.13/13.20 new_ltEs13(Just(x0), Just(x1), ty_@0) 32.13/13.20 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.20 new_esEs24(x0, x1, ty_Ordering) 32.13/13.20 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_compare14(x0, x1, False, x2, x3, x4) 32.13/13.20 new_esEs30(x0, x1, app(ty_Ratio, x2)) 32.13/13.20 new_esEs29(x0, x1, app(ty_[], x2)) 32.13/13.20 new_esEs22(x0, x1, app(ty_Maybe, x2)) 32.13/13.20 new_lt11(x0, x1, x2, x3, x4) 32.13/13.20 new_not(True) 32.13/13.20 new_ltEs5(x0, x1, app(ty_Maybe, x2)) 32.13/13.20 new_compare17(x0, x1, False) 32.13/13.20 new_compare30(x0, x1, app(ty_Ratio, x2)) 32.13/13.20 new_esEs19(x0, x1, app(ty_Maybe, x2)) 32.13/13.20 new_ltEs13(Just(x0), Just(x1), ty_Char) 32.13/13.20 new_esEs23(x0, x1, app(ty_Maybe, x2)) 32.13/13.20 new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 32.13/13.20 new_esEs26(x0, x1, app(ty_[], x2)) 32.13/13.20 new_compare17(x0, x1, True) 32.13/13.20 new_ltEs6(Left(x0), Left(x1), ty_@0, x2) 32.13/13.20 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.20 new_esEs8(EQ, GT) 32.13/13.20 new_esEs8(GT, EQ) 32.13/13.20 new_esEs18(x0, x1, ty_Ordering) 32.13/13.20 new_esEs18(x0, x1, app(ty_Ratio, x2)) 32.13/13.20 new_esEs22(x0, x1, ty_Int) 32.13/13.20 new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 32.13/13.20 new_esEs24(x0, x1, ty_Char) 32.13/13.20 new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 32.13/13.20 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.20 new_ltEs6(Left(x0), Left(x1), ty_Double, x2) 32.13/13.20 new_esEs4(Left(x0), Left(x1), ty_Integer, x2) 32.13/13.20 new_lt9(x0, x1, app(ty_Maybe, x2)) 32.13/13.20 new_lt20(x0, x1, ty_Ordering) 32.13/13.20 new_esEs19(x0, x1, ty_@0) 32.13/13.20 new_ltEs13(Just(x0), Just(x1), ty_Integer) 32.13/13.20 new_esEs6(Nothing, Just(x0), x1) 32.13/13.20 new_esEs26(x0, x1, app(ty_Ratio, x2)) 32.13/13.20 new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_compare110(x0, x1, False) 32.13/13.20 new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) 32.13/13.20 new_esEs13(True, True) 32.13/13.20 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.20 new_esEs21(x0, x1, ty_@0) 32.13/13.20 new_ltEs18(x0, x1) 32.13/13.20 new_compare12(x0, x1) 32.13/13.20 new_compare30(x0, x1, ty_Bool) 32.13/13.20 new_esEs26(x0, x1, ty_Float) 32.13/13.20 new_compare27(x0, x1, False, x2, x3) 32.13/13.20 new_ltEs13(Nothing, Nothing, x0) 32.13/13.20 new_primPlusNat1(Succ(x0), Succ(x1)) 32.13/13.20 new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) 32.13/13.20 new_esEs22(x0, x1, ty_Bool) 32.13/13.20 new_ltEs19(x0, x1, ty_@0) 32.13/13.20 new_esEs21(x0, x1, ty_Float) 32.13/13.20 new_esEs21(x0, x1, app(ty_[], x2)) 32.13/13.20 new_compare11(x0, x1, True, x2, x3) 32.13/13.20 new_primEqNat0(Succ(x0), Zero) 32.13/13.20 new_primCompAux0(x0, EQ) 32.13/13.20 new_lt10(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.20 new_lt14(x0, x1) 32.13/13.20 new_ltEs19(x0, x1, ty_Float) 32.13/13.20 new_ltEs12(EQ, EQ) 32.13/13.20 new_compare28(x0, x1, x2, x3, x4) 32.13/13.20 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 32.13/13.20 new_esEs27(x0, x1, ty_Int) 32.13/13.20 new_lt8(x0, x1, x2) 32.13/13.20 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.20 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 32.13/13.20 new_esEs22(x0, x1, ty_Char) 32.13/13.20 new_compare25(x0, x1, False) 32.13/13.20 new_esEs21(x0, x1, app(ty_Ratio, x2)) 32.13/13.20 new_ltEs5(x0, x1, ty_Integer) 32.13/13.20 new_esEs25(x0, x1, ty_Ordering) 32.13/13.20 new_esEs4(Left(x0), Right(x1), x2, x3) 32.13/13.20 new_esEs4(Right(x0), Left(x1), x2, x3) 32.13/13.20 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 32.13/13.20 new_esEs20(x0, x1, ty_Integer) 32.13/13.20 new_esEs22(x0, x1, ty_Double) 32.13/13.20 new_lt10(x0, x1, app(ty_Ratio, x2)) 32.13/13.20 new_primCmpInt(Pos(Zero), Pos(Zero)) 32.13/13.20 new_lt10(x0, x1, app(ty_Maybe, x2)) 32.13/13.20 new_compare0([], [], x0) 32.13/13.20 new_ltEs20(x0, x1, ty_Integer) 32.13/13.20 new_esEs29(x0, x1, ty_Double) 32.13/13.20 new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 32.13/13.20 new_lt9(x0, x1, ty_Ordering) 32.13/13.20 new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 32.13/13.20 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 32.13/13.20 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 32.13/13.20 new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) 32.13/13.20 new_ltEs5(x0, x1, ty_Float) 32.13/13.20 new_ltEs13(Just(x0), Just(x1), ty_Double) 32.13/13.20 new_esEs22(x0, x1, app(ty_[], x2)) 32.13/13.20 new_compare30(x0, x1, ty_Char) 32.13/13.20 new_esEs4(Left(x0), Left(x1), ty_@0, x2) 32.13/13.20 new_esEs19(x0, x1, ty_Integer) 32.13/13.20 new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 32.13/13.20 new_esEs29(x0, x1, ty_Float) 32.13/13.20 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.20 new_esEs20(x0, x1, ty_Double) 32.13/13.20 new_sr(x0, x1) 32.13/13.20 new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 32.13/13.20 new_esEs30(x0, x1, ty_Float) 32.13/13.20 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 32.13/13.20 new_compare24(x0, x1, True, x2, x3) 32.13/13.20 new_esEs30(x0, x1, app(ty_[], x2)) 32.13/13.20 new_esEs21(x0, x1, ty_Ordering) 32.13/13.20 new_compare9(x0, x1) 32.13/13.20 new_esEs20(x0, x1, ty_Ordering) 32.13/13.20 new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 32.13/13.20 new_esEs21(x0, x1, ty_Int) 32.13/13.20 new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.20 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.20 new_lt9(x0, x1, ty_Float) 32.13/13.20 new_esEs29(x0, x1, app(ty_Maybe, x2)) 32.13/13.20 new_esEs8(LT, GT) 32.13/13.20 new_esEs8(GT, LT) 32.13/13.20 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 32.13/13.20 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.20 new_esEs19(x0, x1, ty_Bool) 32.13/13.20 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 32.13/13.20 new_esEs25(x0, x1, ty_Char) 32.13/13.20 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 32.13/13.20 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.20 new_ltEs5(x0, x1, ty_Int) 32.13/13.20 new_ltEs20(x0, x1, ty_Bool) 32.13/13.20 new_compare26(x0, x1, False, x2, x3, x4) 32.13/13.20 new_esEs21(x0, x1, ty_Char) 32.13/13.20 new_esEs22(x0, x1, ty_Float) 32.13/13.20 new_esEs26(x0, x1, ty_Char) 32.13/13.20 new_esEs24(x0, x1, ty_Integer) 32.13/13.20 new_esEs4(Right(x0), Right(x1), x2, ty_Bool) 32.13/13.20 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_lt9(x0, x1, ty_Char) 32.13/13.20 new_lt10(x0, x1, ty_Double) 32.13/13.20 new_esEs24(x0, x1, ty_@0) 32.13/13.20 new_compare23(Nothing, Just(x0), False, x1) 32.13/13.20 new_esEs26(x0, x1, ty_Int) 32.13/13.20 new_compare30(x0, x1, ty_Int) 32.13/13.20 new_compare8(x0, x1, x2, x3) 32.13/13.20 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 32.13/13.20 new_lt10(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.20 new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) 32.13/13.20 new_esEs21(x0, x1, app(ty_Maybe, x2)) 32.13/13.20 new_asAs(False, x0) 32.13/13.20 new_esEs16(:(x0, x1), [], x2) 32.13/13.20 new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 32.13/13.20 new_ltEs13(Just(x0), Just(x1), ty_Ordering) 32.13/13.20 new_esEs25(x0, x1, ty_Bool) 32.13/13.20 new_lt9(x0, x1, ty_Int) 32.13/13.20 new_lt18(x0, x1) 32.13/13.20 new_esEs23(x0, x1, ty_Int) 32.13/13.20 new_compare30(x0, x1, app(ty_Maybe, x2)) 32.13/13.20 new_primEqNat0(Zero, Zero) 32.13/13.20 new_esEs13(False, False) 32.13/13.20 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 32.13/13.20 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_primMulNat0(Zero, Succ(x0)) 32.13/13.20 new_ltEs5(x0, x1, ty_Char) 32.13/13.20 new_not(False) 32.13/13.20 new_lt20(x0, x1, ty_Float) 32.13/13.20 new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 32.13/13.20 new_esEs26(x0, x1, ty_Ordering) 32.13/13.20 new_ltEs16(True, True) 32.13/13.20 new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) 32.13/13.20 new_lt20(x0, x1, ty_Bool) 32.13/13.20 new_ltEs12(LT, GT) 32.13/13.20 new_ltEs12(GT, LT) 32.13/13.20 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.20 new_esEs25(x0, x1, ty_Int) 32.13/13.20 new_esEs30(x0, x1, ty_Char) 32.13/13.20 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 32.13/13.20 new_ltEs6(Right(x0), Right(x1), x2, ty_Float) 32.13/13.20 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 32.13/13.20 new_esEs22(x0, x1, app(ty_Ratio, x2)) 32.13/13.20 new_esEs26(x0, x1, ty_Bool) 32.13/13.20 new_esEs23(x0, x1, ty_Char) 32.13/13.20 new_esEs15(:%(x0, x1), :%(x2, x3), x4) 32.13/13.20 new_sr0(Integer(x0), Integer(x1)) 32.13/13.20 new_compare30(x0, x1, ty_Float) 32.13/13.20 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 32.13/13.20 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 32.13/13.20 new_esEs26(x0, x1, ty_Integer) 32.13/13.20 new_esEs25(x0, x1, app(ty_Ratio, x2)) 32.13/13.20 new_esEs25(x0, x1, app(ty_Maybe, x2)) 32.13/13.20 new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) 32.13/13.20 new_esEs20(x0, x1, app(ty_Maybe, x2)) 32.13/13.20 new_ltEs6(Right(x0), Right(x1), x2, ty_Char) 32.13/13.20 new_esEs23(x0, x1, ty_Float) 32.13/13.20 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 32.13/13.20 new_primPlusNat1(Succ(x0), Zero) 32.13/13.20 new_esEs30(x0, x1, ty_Int) 32.13/13.20 new_esEs18(x0, x1, app(ty_Maybe, x2)) 32.13/13.20 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 32.13/13.20 new_ltEs4(x0, x1, x2) 32.13/13.20 new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) 32.13/13.20 new_ltEs20(x0, x1, ty_Float) 32.13/13.20 new_esEs18(x0, x1, ty_Double) 32.13/13.20 new_lt20(x0, x1, ty_Int) 32.13/13.20 new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.20 new_esEs21(x0, x1, ty_Integer) 32.13/13.20 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.20 new_esEs27(x0, x1, ty_Integer) 32.13/13.20 new_primCmpNat0(Succ(x0), Zero) 32.13/13.20 new_lt16(x0, x1, x2) 32.13/13.20 new_compare31(x0, x1) 32.13/13.20 new_esEs4(Right(x0), Right(x1), x2, ty_Float) 32.13/13.20 new_esEs25(x0, x1, ty_Float) 32.13/13.20 new_ltEs6(Right(x0), Right(x1), x2, ty_Int) 32.13/13.20 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 32.13/13.20 new_compare32(@0, @0) 32.13/13.20 new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 32.13/13.20 new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 32.13/13.20 new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 32.13/13.20 new_primCmpNat0(Zero, Zero) 32.13/13.20 new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 32.13/13.20 new_lt20(x0, x1, ty_Char) 32.13/13.20 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.20 32.13/13.20 We have to consider all minimal (P,Q,R)-chains. 32.13/13.20 ---------------------------------------- 32.13/13.20 32.13/13.20 (24) TransformationProof (EQUIVALENT) 32.13/13.20 By rewriting [LPAR04] the rule new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Nothing, False, h), LT), h, ba) at position [6,0] we obtained the following new rules [LPAR04]: 32.13/13.20 32.13/13.20 (new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(GT, LT), h, ba),new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(GT, LT), h, ba)) 32.13/13.20 32.13/13.20 32.13/13.20 ---------------------------------------- 32.13/13.20 32.13/13.20 (25) 32.13/13.20 Obligation: 32.13/13.20 Q DP problem: 32.13/13.20 The TRS P consists of the following rules: 32.13/13.20 32.13/13.20 new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, bb, bc) -> new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs8(new_compare23(Just(xuu22), Just(xuu17), new_esEs30(xuu22, xuu17, bb), bb), GT), bb, bc) 32.13/13.20 new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu21, Just(xuu22), xuu23, bb, bc) 32.13/13.20 new_addToFM_C(Branch(Just(xuu600), xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Just(xuu600), new_esEs29(xuu311000, xuu600, h), h), LT), h, ba) 32.13/13.20 new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu20, Just(xuu22), xuu23, bb, bc) 32.13/13.20 new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Nothing, False, h), GT), h, ba) 32.13/13.20 new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Just(xuu311000), xuu31101, h, ba) 32.13/13.20 new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) -> new_addToFM_C(xuu63, Just(xuu311000), xuu31101, h, ba) 32.13/13.20 new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(GT, LT), h, ba) 32.13/13.20 32.13/13.20 The TRS R consists of the following rules: 32.13/13.20 32.13/13.20 new_lt20(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) 32.13/13.20 new_esEs20(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.13/13.20 new_compare30(xuu33000, xuu34000, app(app(app(ty_@3, chc), chd), che)) -> new_compare28(xuu33000, xuu34000, chc, chd, che) 32.13/13.20 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 32.13/13.20 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Float) -> new_ltEs11(xuu33000, xuu34000) 32.13/13.20 new_primCmpInt(Neg(Succ(xuu3300)), Pos(xuu340)) -> LT 32.13/13.20 new_compare8(xuu33000, xuu34000, ee, ef) -> new_compare24(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, ee, ef), ee, ef) 32.13/13.20 new_esEs23(xuu3110000, xuu6000, app(ty_Maybe, cba)) -> new_esEs6(xuu3110000, xuu6000, cba) 32.13/13.20 new_pePe(True, xuu165) -> True 32.13/13.20 new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.13/13.20 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.13/13.20 new_esEs30(xuu22, xuu17, ty_Ordering) -> new_esEs8(xuu22, xuu17) 32.13/13.20 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Float) -> new_ltEs11(xuu33000, xuu34000) 32.13/13.20 new_esEs17(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) 32.13/13.20 new_lt4(xuu33000, xuu34000, bd, be) -> new_esEs8(new_compare6(xuu33000, xuu34000, bd, be), LT) 32.13/13.20 new_esEs29(xuu311000, xuu600, ty_Int) -> new_esEs12(xuu311000, xuu600) 32.13/13.20 new_esEs30(xuu22, xuu17, ty_Bool) -> new_esEs13(xuu22, xuu17) 32.13/13.20 new_compare23(xuu330, xuu340, True, dc) -> EQ 32.13/13.20 new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Maybe, bee)) -> new_ltEs13(xuu33000, xuu34000, bee) 32.13/13.20 new_lt15(xuu33000, xuu34000) -> new_esEs8(new_compare31(xuu33000, xuu34000), LT) 32.13/13.20 new_lt10(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) 32.13/13.20 new_ltEs12(LT, LT) -> True 32.13/13.20 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.13/13.20 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(ty_@2, dcd), dce)) -> new_ltEs14(xuu33000, xuu34000, dcd, dce) 32.13/13.20 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Char) -> new_ltEs17(xuu33000, xuu34000) 32.13/13.20 new_esEs4(Left(xuu3110000), Right(xuu6000), gc, eg) -> False 32.13/13.20 new_esEs4(Right(xuu3110000), Left(xuu6000), gc, eg) -> False 32.13/13.20 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Int, de) -> new_ltEs7(xuu33000, xuu34000) 32.13/13.20 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 32.13/13.20 new_primCmpInt(Pos(Zero), Neg(Succ(xuu3400))) -> GT 32.13/13.20 new_esEs29(xuu311000, xuu600, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs5(xuu311000, xuu600, hf, hg, hh) 32.13/13.20 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_[], dcb)) -> new_ltEs4(xuu33000, xuu34000, dcb) 32.13/13.20 new_esEs15(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), dea) -> new_asAs(new_esEs28(xuu3110000, xuu6000, dea), new_esEs27(xuu3110001, xuu6001, dea)) 32.13/13.20 new_esEs24(xuu33001, xuu34001, ty_Ordering) -> new_esEs8(xuu33001, xuu34001) 32.13/13.20 new_ltEs14(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), eb, ec) -> new_pePe(new_lt20(xuu33000, xuu34000, eb), new_asAs(new_esEs26(xuu33000, xuu34000, eb), new_ltEs20(xuu33001, xuu34001, ec))) 32.13/13.20 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_Ratio, dcf)) -> new_ltEs15(xuu33000, xuu34000, dcf) 32.13/13.20 new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, bhb), bhc)) -> new_esEs4(xuu3110000, xuu6000, bhb, bhc) 32.13/13.20 new_compare0(:(xuu33000, xuu33001), :(xuu34000, xuu34001), bf) -> new_primCompAux1(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, bf), bf) 32.13/13.20 new_primCmpInt(Neg(Succ(xuu3300)), Neg(xuu340)) -> new_primCmpNat0(xuu340, Succ(xuu3300)) 32.13/13.20 new_lt9(xuu33001, xuu34001, app(ty_[], cde)) -> new_lt16(xuu33001, xuu34001, cde) 32.13/13.20 new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_Either, bdg), bdh)) -> new_ltEs6(xuu33000, xuu34000, bdg, bdh) 32.13/13.20 new_lt10(xuu33000, xuu34000, app(ty_Ratio, cbe)) -> new_lt8(xuu33000, xuu34000, cbe) 32.13/13.20 new_esEs28(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.13/13.20 new_esEs26(xuu33000, xuu34000, app(app(ty_@2, cgf), cgg)) -> new_esEs7(xuu33000, xuu34000, cgf, cgg) 32.13/13.20 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Char) -> new_ltEs17(xuu33000, xuu34000) 32.13/13.20 new_esEs23(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.13/13.20 new_ltEs20(xuu33001, xuu34001, ty_@0) -> new_ltEs18(xuu33001, xuu34001) 32.13/13.20 new_esEs5(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), hf, hg, hh) -> new_asAs(new_esEs20(xuu3110000, xuu6000, hf), new_asAs(new_esEs19(xuu3110001, xuu6001, hg), new_esEs18(xuu3110002, xuu6002, hh))) 32.13/13.20 new_esEs10(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) 32.13/13.20 new_ltEs7(xuu3300, xuu3400) -> new_fsEs(new_compare12(xuu3300, xuu3400)) 32.13/13.20 new_esEs18(xuu3110002, xuu6002, ty_Ordering) -> new_esEs8(xuu3110002, xuu6002) 32.13/13.20 new_compare25(xuu33000, xuu34000, False) -> new_compare17(xuu33000, xuu34000, new_ltEs16(xuu33000, xuu34000)) 32.13/13.20 new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_[], dah), de) -> new_ltEs4(xuu33000, xuu34000, dah) 32.13/13.20 new_esEs18(xuu3110002, xuu6002, ty_Bool) -> new_esEs13(xuu3110002, xuu6002) 32.13/13.20 new_primCompAux0(xuu182, GT) -> GT 32.13/13.20 new_lt9(xuu33001, xuu34001, ty_Bool) -> new_lt18(xuu33001, xuu34001) 32.13/13.20 new_esEs23(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.13/13.20 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Double) -> new_ltEs9(xuu33000, xuu34000) 32.13/13.20 new_compare210(xuu33000, xuu34000, False) -> new_compare110(xuu33000, xuu34000, new_ltEs12(xuu33000, xuu34000)) 32.13/13.20 new_esEs18(xuu3110002, xuu6002, app(ty_Ratio, bah)) -> new_esEs15(xuu3110002, xuu6002, bah) 32.13/13.20 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Integer, eg) -> new_esEs17(xuu3110000, xuu6000) 32.13/13.20 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False 32.13/13.20 new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False 32.13/13.20 new_esEs8(GT, GT) -> True 32.13/13.20 new_fsEs(xuu149) -> new_not(new_esEs8(xuu149, GT)) 32.13/13.20 new_esEs19(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) 32.13/13.20 new_lt12(xuu33000, xuu34000) -> new_esEs8(new_compare19(xuu33000, xuu34000), LT) 32.13/13.20 new_esEs24(xuu33001, xuu34001, app(ty_Ratio, cea)) -> new_esEs15(xuu33001, xuu34001, cea) 32.13/13.20 new_esEs20(xuu3110000, xuu6000, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs5(xuu3110000, xuu6000, bcg, bch, bda) 32.13/13.20 new_ltEs4(xuu3300, xuu3400, bf) -> new_fsEs(new_compare0(xuu3300, xuu3400, bf)) 32.13/13.20 new_esEs8(EQ, EQ) -> True 32.13/13.20 new_esEs24(xuu33001, xuu34001, ty_Bool) -> new_esEs13(xuu33001, xuu34001) 32.13/13.20 new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Ratio, dbd), de) -> new_ltEs15(xuu33000, xuu34000, dbd) 32.13/13.20 new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) 32.13/13.20 new_lt10(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) 32.13/13.20 new_lt10(xuu33000, xuu34000, app(ty_Maybe, cec)) -> new_lt17(xuu33000, xuu34000, cec) 32.13/13.20 new_ltEs20(xuu33001, xuu34001, ty_Integer) -> new_ltEs10(xuu33001, xuu34001) 32.13/13.20 new_primCompAux0(xuu182, LT) -> LT 32.13/13.20 new_not(True) -> False 32.13/13.20 new_ltEs19(xuu33002, xuu34002, ty_@0) -> new_ltEs18(xuu33002, xuu34002) 32.13/13.20 new_ltEs12(LT, GT) -> True 32.13/13.20 new_primCmpNat0(Zero, Zero) -> EQ 32.13/13.20 new_esEs18(xuu3110002, xuu6002, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs5(xuu3110002, xuu6002, bac, bad, bae) 32.13/13.20 new_compare6(xuu33000, xuu34000, bd, be) -> new_compare27(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, bd, be), bd, be) 32.13/13.20 new_compare16(xuu33000, xuu34000, False, bd, be) -> GT 32.13/13.20 new_ltEs19(xuu33002, xuu34002, ty_Integer) -> new_ltEs10(xuu33002, xuu34002) 32.13/13.20 new_esEs25(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) 32.13/13.20 new_compare14(xuu33000, xuu34000, True, cbb, cbc, cbd) -> LT 32.13/13.20 new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.13/13.20 new_esEs30(xuu22, xuu17, app(ty_Ratio, ddf)) -> new_esEs15(xuu22, xuu17, ddf) 32.13/13.20 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.13/13.20 new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_Either, dac), dad), de) -> new_ltEs6(xuu33000, xuu34000, dac, dad) 32.13/13.20 new_esEs19(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) 32.13/13.20 new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_[], bed)) -> new_ltEs4(xuu33000, xuu34000, bed) 32.13/13.20 new_primEqNat0(Succ(xuu31100000), Zero) -> False 32.13/13.20 new_primEqNat0(Zero, Succ(xuu60000)) -> False 32.13/13.20 new_ltEs5(xuu3300, xuu3400, app(app(ty_Either, dd), de)) -> new_ltEs6(xuu3300, xuu3400, dd, de) 32.13/13.20 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.13/13.20 new_lt20(xuu33000, xuu34000, app(ty_Ratio, cgh)) -> new_lt8(xuu33000, xuu34000, cgh) 32.13/13.20 new_esEs19(xuu3110001, xuu6001, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs5(xuu3110001, xuu6001, bbe, bbf, bbg) 32.13/13.20 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_@0, eg) -> new_esEs9(xuu3110000, xuu6000) 32.13/13.20 new_esEs29(xuu311000, xuu600, ty_Bool) -> new_esEs13(xuu311000, xuu600) 32.13/13.20 new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, dae), daf), dag), de) -> new_ltEs8(xuu33000, xuu34000, dae, daf, dag) 32.13/13.20 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_@0) -> new_ltEs18(xuu33000, xuu34000) 32.13/13.20 new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, bge), bgf)) -> new_esEs7(xuu3110000, xuu6000, bge, bgf) 32.13/13.20 new_esEs25(xuu33000, xuu34000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs5(xuu33000, xuu34000, cbb, cbc, cbd) 32.13/13.20 new_compare110(xuu33000, xuu34000, True) -> LT 32.13/13.20 new_lt9(xuu33001, xuu34001, app(app(ty_@2, cdg), cdh)) -> new_lt4(xuu33001, xuu34001, cdg, cdh) 32.13/13.20 new_ltEs5(xuu3300, xuu3400, ty_Ordering) -> new_ltEs12(xuu3300, xuu3400) 32.13/13.20 new_lt9(xuu33001, xuu34001, ty_Int) -> new_lt6(xuu33001, xuu34001) 32.13/13.20 new_esEs27(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) 32.13/13.20 new_esEs20(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.13/13.20 new_compare23(Just(xuu3300), Just(xuu3400), False, dc) -> new_compare10(xuu3300, xuu3400, new_ltEs5(xuu3300, xuu3400, dc), dc) 32.13/13.20 new_lt20(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) 32.13/13.20 new_compare30(xuu33000, xuu34000, app(ty_Ratio, dab)) -> new_compare15(xuu33000, xuu34000, dab) 32.13/13.20 new_lt20(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) 32.13/13.20 new_primCmpInt(Pos(Succ(xuu3300)), Neg(xuu340)) -> GT 32.13/13.20 new_ltEs10(xuu3300, xuu3400) -> new_fsEs(new_compare7(xuu3300, xuu3400)) 32.13/13.20 new_compare24(xuu33000, xuu34000, False, ee, ef) -> new_compare11(xuu33000, xuu34000, new_ltEs6(xuu33000, xuu34000, ee, ef), ee, ef) 32.13/13.20 new_lt5(xuu33000, xuu34000, ee, ef) -> new_esEs8(new_compare8(xuu33000, xuu34000, ee, ef), LT) 32.13/13.20 new_esEs20(xuu3110000, xuu6000, app(ty_Ratio, bdd)) -> new_esEs15(xuu3110000, xuu6000, bdd) 32.13/13.20 new_esEs24(xuu33001, xuu34001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs5(xuu33001, xuu34001, cdb, cdc, cdd) 32.13/13.20 new_esEs30(xuu22, xuu17, app(app(app(ty_@3, dda), ddb), ddc)) -> new_esEs5(xuu22, xuu17, dda, ddb, ddc) 32.13/13.20 new_esEs26(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) 32.13/13.21 new_primPlusNat1(Succ(xuu28200), Succ(xuu9700)) -> Succ(Succ(new_primPlusNat1(xuu28200, xuu9700))) 32.13/13.21 new_lt9(xuu33001, xuu34001, ty_Char) -> new_lt7(xuu33001, xuu34001) 32.13/13.21 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Double) -> new_ltEs9(xuu33000, xuu34000) 32.13/13.21 new_lt18(xuu33000, xuu34000) -> new_esEs8(new_compare9(xuu33000, xuu34000), LT) 32.13/13.21 new_primCmpNat0(Zero, Succ(xuu3400)) -> LT 32.13/13.21 new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Maybe, dba), de) -> new_ltEs13(xuu33000, xuu34000, dba) 32.13/13.21 new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Integer) -> new_compare7(new_sr0(xuu33000, xuu34001), new_sr0(xuu34000, xuu33001)) 32.13/13.21 new_esEs30(xuu22, xuu17, ty_Int) -> new_esEs12(xuu22, xuu17) 32.13/13.21 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Bool, eg) -> new_esEs13(xuu3110000, xuu6000) 32.13/13.21 new_esEs18(xuu3110002, xuu6002, ty_Int) -> new_esEs12(xuu3110002, xuu6002) 32.13/13.21 new_compare210(xuu33000, xuu34000, True) -> EQ 32.13/13.21 new_esEs24(xuu33001, xuu34001, ty_Int) -> new_esEs12(xuu33001, xuu34001) 32.13/13.21 new_lt9(xuu33001, xuu34001, app(ty_Ratio, cea)) -> new_lt8(xuu33001, xuu34001, cea) 32.13/13.21 new_esEs21(xuu3110001, xuu6001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs5(xuu3110001, xuu6001, bfe, bff, bfg) 32.13/13.21 new_primCmpNat0(Succ(xuu3300), Zero) -> GT 32.13/13.21 new_ltEs20(xuu33001, xuu34001, app(ty_Maybe, cfc)) -> new_ltEs13(xuu33001, xuu34001, cfc) 32.13/13.21 new_pePe(False, xuu165) -> xuu165 32.13/13.21 new_ltEs5(xuu3300, xuu3400, ty_Char) -> new_ltEs17(xuu3300, xuu3400) 32.13/13.21 new_esEs20(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.13/13.21 new_esEs23(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.13/13.21 new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.13/13.21 new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.13/13.21 new_ltEs20(xuu33001, xuu34001, ty_Float) -> new_ltEs11(xuu33001, xuu34001) 32.13/13.21 new_ltEs12(GT, GT) -> True 32.13/13.21 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Ordering, eg) -> new_esEs8(xuu3110000, xuu6000) 32.13/13.21 new_ltEs18(xuu3300, xuu3400) -> new_fsEs(new_compare32(xuu3300, xuu3400)) 32.13/13.21 new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Int) -> new_compare12(new_sr(xuu33000, xuu34001), new_sr(xuu34000, xuu33001)) 32.13/13.21 new_ltEs20(xuu33001, xuu34001, ty_Double) -> new_ltEs9(xuu33001, xuu34001) 32.13/13.21 new_ltEs19(xuu33002, xuu34002, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs8(xuu33002, xuu34002, cbh, cca, ccb) 32.13/13.21 new_esEs29(xuu311000, xuu600, ty_Integer) -> new_esEs17(xuu311000, xuu600) 32.13/13.21 new_esEs21(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) 32.13/13.21 new_ltEs12(GT, EQ) -> False 32.13/13.21 new_esEs24(xuu33001, xuu34001, ty_@0) -> new_esEs9(xuu33001, xuu34001) 32.13/13.21 new_esEs21(xuu3110001, xuu6001, app(app(ty_Either, bfh), bga)) -> new_esEs4(xuu3110001, xuu6001, bfh, bga) 32.13/13.21 new_esEs18(xuu3110002, xuu6002, ty_Float) -> new_esEs11(xuu3110002, xuu6002) 32.13/13.21 new_lt10(xuu33000, xuu34000, app(ty_[], ceb)) -> new_lt16(xuu33000, xuu34000, ceb) 32.13/13.21 new_compare27(xuu33000, xuu34000, False, bd, be) -> new_compare16(xuu33000, xuu34000, new_ltEs14(xuu33000, xuu34000, bd, be), bd, be) 32.13/13.21 new_esEs26(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) 32.13/13.21 new_compare7(Integer(xuu33000), Integer(xuu34000)) -> new_primCmpInt(xuu33000, xuu34000) 32.13/13.21 new_compare10(xuu132, xuu133, False, ced) -> GT 32.13/13.21 new_esEs30(xuu22, xuu17, ty_Float) -> new_esEs11(xuu22, xuu17) 32.13/13.21 new_esEs8(LT, EQ) -> False 32.13/13.21 new_esEs8(EQ, LT) -> False 32.13/13.21 new_compare17(xuu33000, xuu34000, True) -> LT 32.13/13.21 new_compare11(xuu33000, xuu34000, False, ee, ef) -> GT 32.13/13.21 new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, bhf)) -> new_esEs6(xuu3110000, xuu6000, bhf) 32.13/13.21 new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False 32.13/13.21 new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False 32.13/13.21 new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.13/13.21 new_esEs21(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) 32.13/13.21 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Ordering, de) -> new_ltEs12(xuu33000, xuu34000) 32.13/13.21 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Integer) -> new_ltEs10(xuu33000, xuu34000) 32.13/13.21 new_compare30(xuu33000, xuu34000, app(ty_Maybe, chg)) -> new_compare29(xuu33000, xuu34000, chg) 32.13/13.21 new_ltEs5(xuu3300, xuu3400, app(ty_Maybe, ea)) -> new_ltEs13(xuu3300, xuu3400, ea) 32.13/13.21 new_esEs26(xuu33000, xuu34000, app(ty_[], cgd)) -> new_esEs16(xuu33000, xuu34000, cgd) 32.13/13.21 new_ltEs17(xuu3300, xuu3400) -> new_fsEs(new_compare13(xuu3300, xuu3400)) 32.13/13.21 new_ltEs15(xuu3300, xuu3400, ed) -> new_fsEs(new_compare15(xuu3300, xuu3400, ed)) 32.13/13.21 new_ltEs19(xuu33002, xuu34002, app(app(ty_@2, cce), ccf)) -> new_ltEs14(xuu33002, xuu34002, cce, ccf) 32.13/13.21 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 32.13/13.21 new_esEs25(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) 32.13/13.21 new_esEs23(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.13/13.21 new_primCmpInt(Neg(Zero), Pos(Succ(xuu3400))) -> LT 32.13/13.21 new_compare13(Char(xuu33000), Char(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) 32.13/13.21 new_ltEs5(xuu3300, xuu3400, app(app(app(ty_@3, df), dg), dh)) -> new_ltEs8(xuu3300, xuu3400, df, dg, dh) 32.13/13.21 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Int, eg) -> new_esEs12(xuu3110000, xuu6000) 32.13/13.21 new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.13/13.21 new_ltEs20(xuu33001, xuu34001, ty_Char) -> new_ltEs17(xuu33001, xuu34001) 32.13/13.21 new_compare17(xuu33000, xuu34000, False) -> GT 32.13/13.21 new_lt9(xuu33001, xuu34001, ty_Integer) -> new_lt13(xuu33001, xuu34001) 32.13/13.21 new_primMulInt(Pos(xuu31100000), Pos(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) 32.13/13.21 new_compare30(xuu33000, xuu34000, ty_Float) -> new_compare18(xuu33000, xuu34000) 32.13/13.21 new_ltEs5(xuu3300, xuu3400, ty_Float) -> new_ltEs11(xuu3300, xuu3400) 32.13/13.21 new_ltEs5(xuu3300, xuu3400, app(app(ty_@2, eb), ec)) -> new_ltEs14(xuu3300, xuu3400, eb, ec) 32.13/13.21 new_esEs23(xuu3110000, xuu6000, app(app(ty_Either, cae), caf)) -> new_esEs4(xuu3110000, xuu6000, cae, caf) 32.13/13.21 new_esEs18(xuu3110002, xuu6002, app(ty_[], bba)) -> new_esEs16(xuu3110002, xuu6002, bba) 32.13/13.21 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Bool) -> new_ltEs16(xuu33000, xuu34000) 32.13/13.21 new_esEs25(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) 32.13/13.21 new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, ce), cf)) -> new_esEs4(xuu3110000, xuu6000, ce, cf) 32.13/13.21 new_primCompAux1(xuu33000, xuu34000, xuu176, bf) -> new_primCompAux0(xuu176, new_compare30(xuu33000, xuu34000, bf)) 32.13/13.21 new_lt9(xuu33001, xuu34001, ty_Double) -> new_lt12(xuu33001, xuu34001) 32.13/13.21 new_compare10(xuu132, xuu133, True, ced) -> LT 32.13/13.21 new_esEs24(xuu33001, xuu34001, app(ty_Maybe, cdf)) -> new_esEs6(xuu33001, xuu34001, cdf) 32.13/13.21 new_primMulNat0(Succ(xuu311000000), Zero) -> Zero 32.13/13.21 new_primMulNat0(Zero, Succ(xuu600100)) -> Zero 32.13/13.21 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) 32.13/13.21 new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, cb), cc), cd)) -> new_esEs5(xuu3110000, xuu6000, cb, cc, cd) 32.13/13.21 new_lt10(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) 32.13/13.21 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(ty_Either, dbe), dbf)) -> new_ltEs6(xuu33000, xuu34000, dbe, dbf) 32.13/13.21 new_esEs23(xuu3110000, xuu6000, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs5(xuu3110000, xuu6000, cab, cac, cad) 32.13/13.21 new_ltEs19(xuu33002, xuu34002, ty_Char) -> new_ltEs17(xuu33002, xuu34002) 32.13/13.21 new_lt17(xuu33000, xuu34000, cec) -> new_esEs8(new_compare29(xuu33000, xuu34000, cec), LT) 32.13/13.21 new_ltEs5(xuu3300, xuu3400, ty_Double) -> new_ltEs9(xuu3300, xuu3400) 32.13/13.21 new_lt20(xuu33000, xuu34000, app(app(app(ty_@3, cga), cgb), cgc)) -> new_lt11(xuu33000, xuu34000, cga, cgb, cgc) 32.13/13.21 new_esEs24(xuu33001, xuu34001, ty_Char) -> new_esEs10(xuu33001, xuu34001) 32.13/13.21 new_lt9(xuu33001, xuu34001, app(ty_Maybe, cdf)) -> new_lt17(xuu33001, xuu34001, cdf) 32.13/13.21 new_esEs18(xuu3110002, xuu6002, ty_Integer) -> new_esEs17(xuu3110002, xuu6002) 32.13/13.21 new_lt14(xuu33000, xuu34000) -> new_esEs8(new_compare18(xuu33000, xuu34000), LT) 32.13/13.21 new_ltEs5(xuu3300, xuu3400, ty_Bool) -> new_ltEs16(xuu3300, xuu3400) 32.13/13.21 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Integer, de) -> new_ltEs10(xuu33000, xuu34000) 32.13/13.21 new_esEs8(LT, LT) -> True 32.13/13.21 new_esEs29(xuu311000, xuu600, ty_Float) -> new_esEs11(xuu311000, xuu600) 32.13/13.21 new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, bhd)) -> new_esEs15(xuu3110000, xuu6000, bhd) 32.13/13.21 new_esEs26(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) 32.13/13.21 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.13/13.21 new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, bea), beb), bec)) -> new_ltEs8(xuu33000, xuu34000, bea, beb, bec) 32.13/13.21 new_primPlusNat1(Succ(xuu28200), Zero) -> Succ(xuu28200) 32.13/13.21 new_primPlusNat1(Zero, Succ(xuu9700)) -> Succ(xuu9700) 32.13/13.21 new_compare23(Just(xuu3300), Nothing, False, dc) -> GT 32.13/13.21 new_compare30(xuu33000, xuu34000, ty_Char) -> new_compare13(xuu33000, xuu34000) 32.13/13.21 new_ltEs19(xuu33002, xuu34002, ty_Double) -> new_ltEs9(xuu33002, xuu34002) 32.13/13.21 new_esEs19(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) 32.13/13.21 new_lt10(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) 32.13/13.21 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(app(ty_@3, gf), gg), gh)) -> new_esEs5(xuu3110000, xuu6000, gf, gg, gh) 32.13/13.21 new_esEs13(True, True) -> True 32.13/13.21 new_esEs30(xuu22, xuu17, ty_Integer) -> new_esEs17(xuu22, xuu17) 32.13/13.21 new_ltEs20(xuu33001, xuu34001, app(app(ty_@2, cfd), cfe)) -> new_ltEs14(xuu33001, xuu34001, cfd, cfe) 32.13/13.21 new_esEs23(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.13/13.21 new_esEs23(xuu3110000, xuu6000, app(ty_Ratio, cag)) -> new_esEs15(xuu3110000, xuu6000, cag) 32.13/13.21 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Char, eg) -> new_esEs10(xuu3110000, xuu6000) 32.13/13.21 new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_[], ga), eg) -> new_esEs16(xuu3110000, xuu6000, ga) 32.13/13.21 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.13/13.21 new_esEs16([], [], bhg) -> True 32.13/13.21 new_ltEs19(xuu33002, xuu34002, ty_Float) -> new_ltEs11(xuu33002, xuu34002) 32.13/13.21 new_esEs25(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) 32.13/13.21 new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, cg)) -> new_esEs15(xuu3110000, xuu6000, cg) 32.13/13.21 new_primMulInt(Neg(xuu31100000), Neg(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) 32.13/13.21 new_primCmpInt(Pos(Zero), Pos(Succ(xuu3400))) -> new_primCmpNat0(Zero, Succ(xuu3400)) 32.13/13.21 new_esEs29(xuu311000, xuu600, ty_Double) -> new_esEs14(xuu311000, xuu600) 32.13/13.21 new_esEs25(xuu33000, xuu34000, app(app(ty_@2, bd), be)) -> new_esEs7(xuu33000, xuu34000, bd, be) 32.13/13.21 new_ltEs20(xuu33001, xuu34001, ty_Bool) -> new_ltEs16(xuu33001, xuu34001) 32.13/13.21 new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, db)) -> new_esEs6(xuu3110000, xuu6000, db) 32.13/13.21 new_esEs6(Nothing, Just(xuu6000), bg) -> False 32.13/13.21 new_esEs6(Just(xuu3110000), Nothing, bg) -> False 32.13/13.21 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.13/13.21 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_Maybe, he)) -> new_esEs6(xuu3110000, xuu6000, he) 32.13/13.21 new_esEs6(Nothing, Nothing, bg) -> True 32.13/13.21 new_esEs14(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 32.13/13.21 new_esEs23(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.13/13.21 new_compare26(xuu33000, xuu34000, True, cbb, cbc, cbd) -> EQ 32.13/13.21 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_Ratio, hc)) -> new_esEs15(xuu3110000, xuu6000, hc) 32.13/13.21 new_compare26(xuu33000, xuu34000, False, cbb, cbc, cbd) -> new_compare14(xuu33000, xuu34000, new_ltEs8(xuu33000, xuu34000, cbb, cbc, cbd), cbb, cbc, cbd) 32.13/13.21 new_ltEs19(xuu33002, xuu34002, ty_Bool) -> new_ltEs16(xuu33002, xuu34002) 32.13/13.21 new_lt10(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) 32.13/13.21 new_primMulInt(Pos(xuu31100000), Neg(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) 32.13/13.21 new_primMulInt(Neg(xuu31100000), Pos(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) 32.13/13.21 new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.13/13.21 new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.13/13.21 new_compare30(xuu33000, xuu34000, app(app(ty_@2, chh), daa)) -> new_compare6(xuu33000, xuu34000, chh, daa) 32.13/13.21 new_esEs26(xuu33000, xuu34000, app(ty_Ratio, cgh)) -> new_esEs15(xuu33000, xuu34000, cgh) 32.13/13.21 new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, fh), eg) -> new_esEs15(xuu3110000, xuu6000, fh) 32.13/13.21 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.13/13.21 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Int) -> new_ltEs7(xuu33000, xuu34000) 32.13/13.21 new_ltEs19(xuu33002, xuu34002, ty_Ordering) -> new_ltEs12(xuu33002, xuu34002) 32.13/13.21 new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs5(xuu3110000, xuu6000, bgg, bgh, bha) 32.13/13.21 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(ty_@2, gd), ge)) -> new_esEs7(xuu3110000, xuu6000, gd, ge) 32.13/13.21 new_esEs21(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) 32.13/13.21 new_sr0(Integer(xuu330000), Integer(xuu340010)) -> Integer(new_primMulInt(xuu330000, xuu340010)) 32.13/13.21 new_esEs24(xuu33001, xuu34001, ty_Double) -> new_esEs14(xuu33001, xuu34001) 32.13/13.21 new_esEs25(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) 32.13/13.21 new_esEs13(False, False) -> True 32.13/13.21 new_esEs30(xuu22, xuu17, ty_Double) -> new_esEs14(xuu22, xuu17) 32.13/13.21 new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.13/13.21 new_compare31(xuu33000, xuu34000) -> new_compare210(xuu33000, xuu34000, new_esEs8(xuu33000, xuu34000)) 32.13/13.21 new_lt8(xuu33000, xuu34000, cbe) -> new_esEs8(new_compare15(xuu33000, xuu34000, cbe), LT) 32.13/13.21 new_esEs18(xuu3110002, xuu6002, ty_Double) -> new_esEs14(xuu3110002, xuu6002) 32.13/13.21 new_compare0([], :(xuu34000, xuu34001), bf) -> LT 32.13/13.21 new_asAs(True, xuu139) -> xuu139 32.13/13.21 new_esEs19(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) 32.13/13.21 new_esEs21(xuu3110001, xuu6001, app(ty_Maybe, bgd)) -> new_esEs6(xuu3110001, xuu6001, bgd) 32.13/13.21 new_lt10(xuu33000, xuu34000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_lt11(xuu33000, xuu34000, cbb, cbc, cbd) 32.13/13.21 new_lt16(xuu33000, xuu34000, ceb) -> new_esEs8(new_compare0(xuu33000, xuu34000, ceb), LT) 32.13/13.21 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.13/13.21 new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, ff), fg), eg) -> new_esEs4(xuu3110000, xuu6000, ff, fg) 32.13/13.21 new_esEs21(xuu3110001, xuu6001, app(ty_Ratio, bgb)) -> new_esEs15(xuu3110001, xuu6001, bgb) 32.13/13.21 new_esEs26(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) 32.13/13.21 new_ltEs16(True, False) -> False 32.13/13.21 new_compare16(xuu33000, xuu34000, True, bd, be) -> LT 32.13/13.21 new_esEs29(xuu311000, xuu600, app(ty_[], bhg)) -> new_esEs16(xuu311000, xuu600, bhg) 32.13/13.21 new_ltEs5(xuu3300, xuu3400, ty_@0) -> new_ltEs18(xuu3300, xuu3400) 32.13/13.21 new_lt9(xuu33001, xuu34001, app(app(ty_Either, cch), cda)) -> new_lt5(xuu33001, xuu34001, cch, cda) 32.13/13.21 new_esEs18(xuu3110002, xuu6002, app(app(ty_@2, baa), bab)) -> new_esEs7(xuu3110002, xuu6002, baa, bab) 32.13/13.21 new_compare24(xuu33000, xuu34000, True, ee, ef) -> EQ 32.13/13.21 new_esEs24(xuu33001, xuu34001, app(app(ty_@2, cdg), cdh)) -> new_esEs7(xuu33001, xuu34001, cdg, cdh) 32.13/13.21 new_esEs30(xuu22, xuu17, app(app(ty_@2, dcg), dch)) -> new_esEs7(xuu22, xuu17, dcg, dch) 32.13/13.21 new_primCmpInt(Pos(Succ(xuu3300)), Pos(xuu340)) -> new_primCmpNat0(Succ(xuu3300), xuu340) 32.13/13.21 new_lt9(xuu33001, xuu34001, ty_@0) -> new_lt19(xuu33001, xuu34001) 32.13/13.21 new_compare110(xuu33000, xuu34000, False) -> GT 32.13/13.21 new_compare9(xuu33000, xuu34000) -> new_compare25(xuu33000, xuu34000, new_esEs13(xuu33000, xuu34000)) 32.13/13.21 new_esEs25(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) 32.13/13.21 new_lt20(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) 32.13/13.21 new_esEs9(@0, @0) -> True 32.13/13.21 new_compare0([], [], bf) -> EQ 32.13/13.21 new_esEs19(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) 32.13/13.21 new_esEs20(xuu3110000, xuu6000, app(app(ty_Either, bdb), bdc)) -> new_esEs4(xuu3110000, xuu6000, bdb, bdc) 32.13/13.21 new_sr(xuu3110000, xuu6001) -> new_primMulInt(xuu3110000, xuu6001) 32.13/13.21 new_esEs19(xuu3110001, xuu6001, app(app(ty_Either, bbh), bca)) -> new_esEs4(xuu3110001, xuu6001, bbh, bca) 32.13/13.21 new_compare30(xuu33000, xuu34000, ty_@0) -> new_compare32(xuu33000, xuu34000) 32.13/13.21 new_primMulNat0(Zero, Zero) -> Zero 32.13/13.21 new_ltEs20(xuu33001, xuu34001, ty_Ordering) -> new_ltEs12(xuu33001, xuu34001) 32.13/13.21 new_lt9(xuu33001, xuu34001, ty_Ordering) -> new_lt15(xuu33001, xuu34001) 32.13/13.21 new_ltEs13(Nothing, Nothing, ea) -> True 32.13/13.21 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.13/13.21 new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_@2, bef), beg)) -> new_ltEs14(xuu33000, xuu34000, bef, beg) 32.13/13.21 new_ltEs13(Just(xuu33000), Nothing, ea) -> False 32.13/13.21 new_lt20(xuu33000, xuu34000, app(ty_[], cgd)) -> new_lt16(xuu33000, xuu34000, cgd) 32.13/13.21 new_esEs24(xuu33001, xuu34001, app(ty_[], cde)) -> new_esEs16(xuu33001, xuu34001, cde) 32.13/13.21 new_esEs30(xuu22, xuu17, app(ty_[], ddg)) -> new_esEs16(xuu22, xuu17, ddg) 32.13/13.21 new_esEs20(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.13/13.21 new_compare14(xuu33000, xuu34000, False, cbb, cbc, cbd) -> GT 32.13/13.21 new_esEs23(xuu3110000, xuu6000, app(app(ty_@2, bhh), caa)) -> new_esEs7(xuu3110000, xuu6000, bhh, caa) 32.13/13.21 new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.13/13.21 new_lt20(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) 32.13/13.21 new_esEs25(xuu33000, xuu34000, app(app(ty_Either, ee), ef)) -> new_esEs4(xuu33000, xuu34000, ee, ef) 32.13/13.21 new_ltEs19(xuu33002, xuu34002, app(ty_Maybe, ccd)) -> new_ltEs13(xuu33002, xuu34002, ccd) 32.13/13.21 new_esEs19(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) 32.13/13.21 new_esEs21(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) 32.13/13.21 new_ltEs20(xuu33001, xuu34001, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_ltEs8(xuu33001, xuu34001, ceg, ceh, cfa) 32.13/13.21 new_esEs26(xuu33000, xuu34000, app(ty_Maybe, cge)) -> new_esEs6(xuu33000, xuu34000, cge) 32.13/13.21 new_lt11(xuu33000, xuu34000, cbb, cbc, cbd) -> new_esEs8(new_compare28(xuu33000, xuu34000, cbb, cbc, cbd), LT) 32.13/13.21 new_ltEs5(xuu3300, xuu3400, ty_Integer) -> new_ltEs10(xuu3300, xuu3400) 32.13/13.21 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(ty_Either, ha), hb)) -> new_esEs4(xuu3110000, xuu6000, ha, hb) 32.13/13.21 new_compare30(xuu33000, xuu34000, ty_Double) -> new_compare19(xuu33000, xuu34000) 32.13/13.21 new_compare32(@0, @0) -> EQ 32.13/13.21 new_ltEs12(GT, LT) -> False 32.13/13.21 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Bool) -> new_ltEs16(xuu33000, xuu34000) 32.13/13.21 new_primCompAux0(xuu182, EQ) -> xuu182 32.13/13.21 new_esEs26(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) 32.13/13.21 new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, bh), ca)) -> new_esEs7(xuu3110000, xuu6000, bh, ca) 32.13/13.21 new_esEs20(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.13/13.21 new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.13/13.21 new_esEs29(xuu311000, xuu600, app(app(ty_Either, gc), eg)) -> new_esEs4(xuu311000, xuu600, gc, eg) 32.13/13.21 new_esEs7(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bfa, bfb) -> new_asAs(new_esEs22(xuu3110000, xuu6000, bfa), new_esEs21(xuu3110001, xuu6001, bfb)) 32.13/13.21 new_esEs30(xuu22, xuu17, ty_@0) -> new_esEs9(xuu22, xuu17) 32.13/13.21 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False 32.13/13.21 new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False 32.13/13.21 new_esEs25(xuu33000, xuu34000, app(ty_Maybe, cec)) -> new_esEs6(xuu33000, xuu34000, cec) 32.13/13.21 new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, eh), fa), eg) -> new_esEs7(xuu3110000, xuu6000, eh, fa) 32.13/13.21 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 32.13/13.21 new_esEs13(False, True) -> False 32.13/13.21 new_esEs13(True, False) -> False 32.13/13.21 new_esEs20(xuu3110000, xuu6000, app(ty_[], bde)) -> new_esEs16(xuu3110000, xuu6000, bde) 32.13/13.21 new_ltEs20(xuu33001, xuu34001, app(app(ty_Either, cee), cef)) -> new_ltEs6(xuu33001, xuu34001, cee, cef) 32.13/13.21 new_esEs26(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) 32.13/13.21 new_esEs20(xuu3110000, xuu6000, app(ty_Maybe, bdf)) -> new_esEs6(xuu3110000, xuu6000, bdf) 32.13/13.21 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.13/13.21 new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False 32.13/13.21 new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False 32.13/13.21 new_esEs26(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) 32.13/13.21 new_esEs19(xuu3110001, xuu6001, app(ty_Maybe, bcd)) -> new_esEs6(xuu3110001, xuu6001, bcd) 32.13/13.21 new_esEs25(xuu33000, xuu34000, app(ty_Ratio, cbe)) -> new_esEs15(xuu33000, xuu34000, cbe) 32.13/13.21 new_compare30(xuu33000, xuu34000, app(ty_[], chf)) -> new_compare0(xuu33000, xuu34000, chf) 32.13/13.21 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Int) -> new_ltEs7(xuu33000, xuu34000) 32.13/13.21 new_lt9(xuu33001, xuu34001, ty_Float) -> new_lt14(xuu33001, xuu34001) 32.13/13.21 new_primCmpInt(Neg(Zero), Neg(Succ(xuu3400))) -> new_primCmpNat0(Succ(xuu3400), Zero) 32.13/13.21 new_esEs16(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bhg) -> new_asAs(new_esEs23(xuu3110000, xuu6000, bhg), new_esEs16(xuu3110001, xuu6001, bhg)) 32.13/13.21 new_compare23(Nothing, Just(xuu3400), False, dc) -> LT 32.13/13.21 new_compare29(xuu33000, xuu34000, cec) -> new_compare23(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, cec), cec) 32.13/13.21 new_esEs21(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) 32.13/13.21 new_esEs25(xuu33000, xuu34000, app(ty_[], ceb)) -> new_esEs16(xuu33000, xuu34000, ceb) 32.13/13.21 new_esEs30(xuu22, xuu17, app(app(ty_Either, ddd), dde)) -> new_esEs4(xuu22, xuu17, ddd, dde) 32.13/13.21 new_esEs29(xuu311000, xuu600, ty_@0) -> new_esEs9(xuu311000, xuu600) 32.13/13.21 new_esEs19(xuu3110001, xuu6001, app(ty_[], bcc)) -> new_esEs16(xuu3110001, xuu6001, bcc) 32.13/13.21 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_@0, de) -> new_ltEs18(xuu33000, xuu34000) 32.13/13.21 new_esEs24(xuu33001, xuu34001, app(app(ty_Either, cch), cda)) -> new_esEs4(xuu33001, xuu34001, cch, cda) 32.13/13.21 new_ltEs19(xuu33002, xuu34002, app(app(ty_Either, cbf), cbg)) -> new_ltEs6(xuu33002, xuu34002, cbf, cbg) 32.13/13.21 new_ltEs12(EQ, GT) -> True 32.13/13.21 new_esEs19(xuu3110001, xuu6001, app(ty_Ratio, bcb)) -> new_esEs15(xuu3110001, xuu6001, bcb) 32.13/13.21 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 32.13/13.21 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.13/13.21 new_esEs18(xuu3110002, xuu6002, app(app(ty_Either, baf), bag)) -> new_esEs4(xuu3110002, xuu6002, baf, bag) 32.13/13.21 new_lt20(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) 32.13/13.21 new_lt10(xuu33000, xuu34000, app(app(ty_Either, ee), ef)) -> new_lt5(xuu33000, xuu34000, ee, ef) 32.13/13.21 new_ltEs12(EQ, EQ) -> True 32.13/13.21 new_esEs30(xuu22, xuu17, app(ty_Maybe, ddh)) -> new_esEs6(xuu22, xuu17, ddh) 32.13/13.21 new_esEs24(xuu33001, xuu34001, ty_Float) -> new_esEs11(xuu33001, xuu34001) 32.13/13.21 new_compare30(xuu33000, xuu34000, ty_Int) -> new_compare12(xuu33000, xuu34000) 32.13/13.21 new_esEs23(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.13/13.21 new_esEs12(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) 32.13/13.21 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Double, eg) -> new_esEs14(xuu3110000, xuu6000) 32.13/13.21 new_esEs20(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.13/13.21 new_compare30(xuu33000, xuu34000, ty_Integer) -> new_compare7(xuu33000, xuu34000) 32.13/13.21 new_compare23(Nothing, Nothing, False, dc) -> LT 32.13/13.21 new_esEs18(xuu3110002, xuu6002, ty_@0) -> new_esEs9(xuu3110002, xuu6002) 32.13/13.21 new_esEs19(xuu3110001, xuu6001, app(app(ty_@2, bbc), bbd)) -> new_esEs7(xuu3110001, xuu6001, bbc, bbd) 32.13/13.21 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.13/13.21 new_primPlusNat0(xuu107, xuu600100) -> new_primPlusNat1(xuu107, Succ(xuu600100)) 32.13/13.21 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.13/13.21 new_ltEs6(Right(xuu33000), Left(xuu34000), dd, de) -> False 32.13/13.21 new_not(False) -> True 32.13/13.21 new_esEs21(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) 32.13/13.21 new_esEs21(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) 32.13/13.21 new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_@2, dbb), dbc), de) -> new_ltEs14(xuu33000, xuu34000, dbb, dbc) 32.13/13.21 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_Maybe, dcc)) -> new_ltEs13(xuu33000, xuu34000, dcc) 32.13/13.21 new_ltEs5(xuu3300, xuu3400, ty_Int) -> new_ltEs7(xuu3300, xuu3400) 32.13/13.21 new_compare28(xuu33000, xuu34000, cbb, cbc, cbd) -> new_compare26(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, cbb, cbc, cbd), cbb, cbc, cbd) 32.13/13.21 new_ltEs8(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), df, dg, dh) -> new_pePe(new_lt10(xuu33000, xuu34000, df), new_asAs(new_esEs25(xuu33000, xuu34000, df), new_pePe(new_lt9(xuu33001, xuu34001, dg), new_asAs(new_esEs24(xuu33001, xuu34001, dg), new_ltEs19(xuu33002, xuu34002, dh))))) 32.13/13.21 new_compare30(xuu33000, xuu34000, ty_Bool) -> new_compare9(xuu33000, xuu34000) 32.13/13.21 new_compare0(:(xuu33000, xuu33001), [], bf) -> GT 32.13/13.21 new_esEs8(LT, GT) -> False 32.13/13.21 new_esEs8(GT, LT) -> False 32.13/13.21 new_esEs29(xuu311000, xuu600, app(ty_Ratio, dea)) -> new_esEs15(xuu311000, xuu600, dea) 32.13/13.21 new_esEs19(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) 32.13/13.21 new_esEs25(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) 32.13/13.21 new_compare25(xuu33000, xuu34000, True) -> EQ 32.13/13.21 new_compare27(xuu33000, xuu34000, True, bd, be) -> EQ 32.13/13.21 new_esEs29(xuu311000, xuu600, app(app(ty_@2, bfa), bfb)) -> new_esEs7(xuu311000, xuu600, bfa, bfb) 32.13/13.21 new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.13/13.21 new_esEs18(xuu3110002, xuu6002, app(ty_Maybe, bbb)) -> new_esEs6(xuu3110002, xuu6002, bbb) 32.13/13.21 new_ltEs16(False, False) -> True 32.13/13.21 new_compare11(xuu33000, xuu34000, True, ee, ef) -> LT 32.13/13.21 new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Ratio, beh)) -> new_ltEs15(xuu33000, xuu34000, beh) 32.13/13.21 new_ltEs19(xuu33002, xuu34002, ty_Int) -> new_ltEs7(xuu33002, xuu34002) 32.13/13.21 new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.13/13.21 new_esEs29(xuu311000, xuu600, app(ty_Maybe, bg)) -> new_esEs6(xuu311000, xuu600, bg) 32.13/13.21 new_lt10(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) 32.13/13.21 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 32.13/13.21 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 32.13/13.21 new_primPlusNat1(Zero, Zero) -> Zero 32.13/13.21 new_lt20(xuu33000, xuu34000, app(app(ty_@2, cgf), cgg)) -> new_lt4(xuu33000, xuu34000, cgf, cgg) 32.13/13.21 new_lt9(xuu33001, xuu34001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt11(xuu33001, xuu34001, cdb, cdc, cdd) 32.13/13.21 new_ltEs11(xuu3300, xuu3400) -> new_fsEs(new_compare18(xuu3300, xuu3400)) 32.13/13.21 new_lt19(xuu33000, xuu34000) -> new_esEs8(new_compare32(xuu33000, xuu34000), LT) 32.13/13.21 new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.13/13.21 new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.13/13.21 new_ltEs20(xuu33001, xuu34001, ty_Int) -> new_ltEs7(xuu33001, xuu34001) 32.13/13.21 new_lt20(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) 32.13/13.21 new_esEs28(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.13/13.21 new_lt10(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) 32.13/13.21 new_esEs21(xuu3110001, xuu6001, app(ty_[], bgc)) -> new_esEs16(xuu3110001, xuu6001, bgc) 32.13/13.21 new_ltEs16(True, True) -> True 32.13/13.21 new_lt13(xuu33000, xuu34000) -> new_esEs8(new_compare7(xuu33000, xuu34000), LT) 32.13/13.21 new_esEs20(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.13/13.21 new_esEs26(xuu33000, xuu34000, app(app(ty_Either, cfg), cfh)) -> new_esEs4(xuu33000, xuu34000, cfg, cfh) 32.13/13.21 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Bool, de) -> new_ltEs16(xuu33000, xuu34000) 32.13/13.21 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 32.13/13.21 new_ltEs5(xuu3300, xuu3400, app(ty_Ratio, ed)) -> new_ltEs15(xuu3300, xuu3400, ed) 32.13/13.21 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.13/13.21 new_esEs25(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) 32.13/13.21 new_primMulNat0(Succ(xuu311000000), Succ(xuu600100)) -> new_primPlusNat0(new_primMulNat0(xuu311000000, Succ(xuu600100)), xuu600100) 32.13/13.21 new_ltEs12(EQ, LT) -> False 32.13/13.21 new_ltEs5(xuu3300, xuu3400, app(ty_[], bf)) -> new_ltEs4(xuu3300, xuu3400, bf) 32.13/13.21 new_lt6(xuu330, xuu340) -> new_esEs8(new_compare12(xuu330, xuu340), LT) 32.13/13.21 new_lt7(xuu33000, xuu34000) -> new_esEs8(new_compare13(xuu33000, xuu34000), LT) 32.13/13.21 new_primCmpNat0(Succ(xuu3300), Succ(xuu3400)) -> new_primCmpNat0(xuu3300, xuu3400) 32.13/13.21 new_ltEs19(xuu33002, xuu34002, app(ty_Ratio, ccg)) -> new_ltEs15(xuu33002, xuu34002, ccg) 32.13/13.21 new_esEs26(xuu33000, xuu34000, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs5(xuu33000, xuu34000, cga, cgb, cgc) 32.13/13.21 new_esEs30(xuu22, xuu17, ty_Char) -> new_esEs10(xuu22, xuu17) 32.13/13.21 new_esEs21(xuu3110001, xuu6001, app(app(ty_@2, bfc), bfd)) -> new_esEs7(xuu3110001, xuu6001, bfc, bfd) 32.13/13.21 new_esEs26(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) 32.13/13.21 new_esEs18(xuu3110002, xuu6002, ty_Char) -> new_esEs10(xuu3110002, xuu6002) 32.13/13.21 new_esEs24(xuu33001, xuu34001, ty_Integer) -> new_esEs17(xuu33001, xuu34001) 32.13/13.21 new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_[], da)) -> new_esEs16(xuu3110000, xuu6000, da) 32.13/13.21 new_compare12(xuu33, xuu34) -> new_primCmpInt(xuu33, xuu34) 32.13/13.21 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(app(ty_@3, dbg), dbh), dca)) -> new_ltEs8(xuu33000, xuu34000, dbg, dbh, dca) 32.13/13.21 new_esEs19(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) 32.13/13.21 new_esEs16(:(xuu3110000, xuu3110001), [], bhg) -> False 32.13/13.21 new_esEs16([], :(xuu6000, xuu6001), bhg) -> False 32.13/13.21 new_esEs23(xuu3110000, xuu6000, app(ty_[], cah)) -> new_esEs16(xuu3110000, xuu6000, cah) 32.13/13.21 new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, fb), fc), fd), eg) -> new_esEs5(xuu3110000, xuu6000, fb, fc, fd) 32.13/13.21 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 32.13/13.21 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 32.13/13.21 new_ltEs12(LT, EQ) -> True 32.13/13.21 new_ltEs20(xuu33001, xuu34001, app(ty_[], cfb)) -> new_ltEs4(xuu33001, xuu34001, cfb) 32.13/13.21 new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.13/13.21 new_compare30(xuu33000, xuu34000, app(app(ty_Either, cha), chb)) -> new_compare8(xuu33000, xuu34000, cha, chb) 32.13/13.21 new_ltEs20(xuu33001, xuu34001, app(ty_Ratio, cff)) -> new_ltEs15(xuu33001, xuu34001, cff) 32.13/13.21 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Float, de) -> new_ltEs11(xuu33000, xuu34000) 32.13/13.21 new_ltEs9(xuu3300, xuu3400) -> new_fsEs(new_compare19(xuu3300, xuu3400)) 32.13/13.21 new_esEs27(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) 32.13/13.21 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_@0) -> new_ltEs18(xuu33000, xuu34000) 32.13/13.21 new_primEqNat0(Zero, Zero) -> True 32.13/13.21 new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, gb), eg) -> new_esEs6(xuu3110000, xuu6000, gb) 32.13/13.21 new_esEs20(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.13/13.21 new_esEs29(xuu311000, xuu600, ty_Ordering) -> new_esEs8(xuu311000, xuu600) 32.13/13.21 new_lt20(xuu33000, xuu34000, app(app(ty_Either, cfg), cfh)) -> new_lt5(xuu33000, xuu34000, cfg, cfh) 32.13/13.21 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Float, eg) -> new_esEs11(xuu3110000, xuu6000) 32.13/13.21 new_lt10(xuu33000, xuu34000, app(app(ty_@2, bd), be)) -> new_lt4(xuu33000, xuu34000, bd, be) 32.13/13.21 new_esEs22(xuu3110000, xuu6000, app(ty_[], bhe)) -> new_esEs16(xuu3110000, xuu6000, bhe) 32.13/13.21 new_asAs(False, xuu139) -> False 32.13/13.21 new_ltEs19(xuu33002, xuu34002, app(ty_[], ccc)) -> new_ltEs4(xuu33002, xuu34002, ccc) 32.13/13.21 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.13/13.21 new_compare30(xuu33000, xuu34000, ty_Ordering) -> new_compare31(xuu33000, xuu34000) 32.13/13.21 new_lt20(xuu33000, xuu34000, app(ty_Maybe, cge)) -> new_lt17(xuu33000, xuu34000, cge) 32.13/13.21 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Double, de) -> new_ltEs9(xuu33000, xuu34000) 32.13/13.21 new_lt20(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) 32.13/13.21 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) 32.13/13.21 new_ltEs13(Nothing, Just(xuu34000), ea) -> True 32.13/13.21 new_esEs23(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.13/13.21 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_[], hd)) -> new_esEs16(xuu3110000, xuu6000, hd) 32.13/13.21 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Char, de) -> new_ltEs17(xuu33000, xuu34000) 32.13/13.21 new_ltEs6(Left(xuu33000), Right(xuu34000), dd, de) -> True 32.13/13.21 new_esEs8(EQ, GT) -> False 32.13/13.21 new_esEs8(GT, EQ) -> False 32.13/13.21 new_esEs11(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 32.13/13.21 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Integer) -> new_ltEs10(xuu33000, xuu34000) 32.13/13.21 new_ltEs16(False, True) -> True 32.13/13.21 new_lt10(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) 32.13/13.21 new_esEs29(xuu311000, xuu600, ty_Char) -> new_esEs10(xuu311000, xuu600) 32.13/13.21 new_esEs21(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) 32.13/13.21 new_esEs20(xuu3110000, xuu6000, app(app(ty_@2, bce), bcf)) -> new_esEs7(xuu3110000, xuu6000, bce, bcf) 32.13/13.21 32.13/13.21 The set Q consists of the following terms: 32.13/13.21 32.13/13.21 new_lt10(x0, x1, app(ty_[], x2)) 32.13/13.21 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.21 new_esEs8(EQ, EQ) 32.13/13.21 new_esEs6(Just(x0), Just(x1), ty_Double) 32.13/13.21 new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 32.13/13.21 new_esEs4(Left(x0), Left(x1), ty_Double, x2) 32.13/13.21 new_esEs19(x0, x1, app(ty_[], x2)) 32.13/13.21 new_ltEs13(Nothing, Just(x0), x1) 32.13/13.21 new_lt9(x0, x1, ty_Bool) 32.13/13.21 new_lt10(x0, x1, ty_@0) 32.13/13.21 new_esEs29(x0, x1, ty_@0) 32.13/13.21 new_ltEs20(x0, x1, ty_Int) 32.13/13.21 new_esEs30(x0, x1, ty_Bool) 32.13/13.21 new_lt20(x0, x1, ty_Integer) 32.13/13.21 new_ltEs11(x0, x1) 32.13/13.21 new_lt5(x0, x1, x2, x3) 32.13/13.21 new_ltEs7(x0, x1) 32.13/13.21 new_esEs26(x0, x1, app(ty_Maybe, x2)) 32.13/13.21 new_esEs24(x0, x1, ty_Float) 32.13/13.21 new_ltEs19(x0, x1, app(ty_[], x2)) 32.13/13.21 new_esEs6(Just(x0), Just(x1), ty_Ordering) 32.13/13.21 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 32.13/13.21 new_esEs6(Just(x0), Nothing, x1) 32.13/13.21 new_compare0(:(x0, x1), [], x2) 32.13/13.21 new_primPlusNat1(Zero, Zero) 32.13/13.21 new_pePe(True, x0) 32.13/13.21 new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) 32.13/13.21 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 32.13/13.21 new_esEs29(x0, x1, ty_Bool) 32.13/13.21 new_esEs6(Nothing, Nothing, x0) 32.13/13.21 new_ltEs20(x0, x1, ty_Char) 32.13/13.21 new_lt10(x0, x1, ty_Bool) 32.13/13.21 new_ltEs9(x0, x1) 32.13/13.21 new_lt9(x0, x1, ty_Integer) 32.13/13.21 new_ltEs19(x0, x1, ty_Double) 32.13/13.21 new_esEs12(x0, x1) 32.13/13.21 new_primEqInt(Pos(Zero), Pos(Zero)) 32.13/13.21 new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) 32.13/13.21 new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_lt13(x0, x1) 32.13/13.21 new_lt7(x0, x1) 32.13/13.21 new_esEs4(Left(x0), Left(x1), ty_Int, x2) 32.13/13.21 new_esEs26(x0, x1, ty_Double) 32.13/13.21 new_ltEs5(x0, x1, app(ty_Ratio, x2)) 32.13/13.21 new_fsEs(x0) 32.13/13.21 new_lt9(x0, x1, ty_@0) 32.13/13.21 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 32.13/13.21 new_lt9(x0, x1, app(ty_Ratio, x2)) 32.13/13.21 new_esEs16([], :(x0, x1), x2) 32.13/13.21 new_primEqNat0(Zero, Succ(x0)) 32.13/13.21 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 32.13/13.21 new_lt10(x0, x1, ty_Char) 32.13/13.21 new_primEqInt(Neg(Zero), Neg(Zero)) 32.13/13.21 new_compare16(x0, x1, True, x2, x3) 32.13/13.21 new_ltEs20(x0, x1, app(ty_[], x2)) 32.13/13.21 new_esEs23(x0, x1, ty_Bool) 32.13/13.21 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_esEs6(Just(x0), Just(x1), ty_Char) 32.13/13.21 new_esEs4(Left(x0), Left(x1), ty_Char, x2) 32.13/13.21 new_esEs29(x0, x1, ty_Char) 32.13/13.21 new_ltEs16(False, False) 32.13/13.21 new_esEs20(x0, x1, app(ty_Ratio, x2)) 32.13/13.21 new_ltEs19(x0, x1, ty_Int) 32.13/13.21 new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) 32.13/13.21 new_compare30(x0, x1, ty_Double) 32.13/13.21 new_lt19(x0, x1) 32.13/13.21 new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) 32.13/13.21 new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 32.13/13.21 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 32.13/13.21 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 32.13/13.21 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_ltEs12(GT, EQ) 32.13/13.21 new_compare29(x0, x1, x2) 32.13/13.21 new_ltEs12(EQ, GT) 32.13/13.21 new_esEs19(x0, x1, app(ty_Ratio, x2)) 32.13/13.21 new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 32.13/13.21 new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) 32.13/13.21 new_ltEs13(Just(x0), Nothing, x1) 32.13/13.21 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.21 new_esEs30(x0, x1, ty_Integer) 32.13/13.21 new_compare6(x0, x1, x2, x3) 32.13/13.21 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.21 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 32.13/13.21 new_primEqInt(Pos(Zero), Neg(Zero)) 32.13/13.21 new_primEqInt(Neg(Zero), Pos(Zero)) 32.13/13.21 new_compare14(x0, x1, True, x2, x3, x4) 32.13/13.21 new_ltEs20(x0, x1, ty_Ordering) 32.13/13.21 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 32.13/13.21 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 32.13/13.21 new_compare0([], :(x0, x1), x2) 32.13/13.21 new_compare16(x0, x1, False, x2, x3) 32.13/13.21 new_esEs19(x0, x1, ty_Float) 32.13/13.21 new_primCompAux0(x0, GT) 32.13/13.21 new_esEs29(x0, x1, ty_Int) 32.13/13.21 new_esEs20(x0, x1, app(ty_[], x2)) 32.13/13.21 new_compare210(x0, x1, False) 32.13/13.21 new_esEs18(x0, x1, app(ty_[], x2)) 32.13/13.21 new_esEs23(x0, x1, ty_Ordering) 32.13/13.21 new_pePe(False, x0) 32.13/13.21 new_esEs6(Just(x0), Just(x1), ty_Int) 32.13/13.21 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.21 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 32.13/13.21 new_lt20(x0, x1, app(ty_[], x2)) 32.13/13.21 new_lt20(x0, x1, app(ty_Ratio, x2)) 32.13/13.21 new_ltEs6(Left(x0), Left(x1), ty_Float, x2) 32.13/13.21 new_esEs25(x0, x1, ty_Integer) 32.13/13.21 new_esEs10(Char(x0), Char(x1)) 32.13/13.21 new_esEs23(x0, x1, ty_Integer) 32.13/13.21 new_esEs25(x0, x1, app(ty_[], x2)) 32.13/13.21 new_compare13(Char(x0), Char(x1)) 32.13/13.21 new_esEs30(x0, x1, app(ty_Maybe, x2)) 32.13/13.21 new_primEqNat0(Succ(x0), Succ(x1)) 32.13/13.21 new_primMulInt(Neg(x0), Neg(x1)) 32.13/13.21 new_compare30(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.21 new_ltEs13(Just(x0), Just(x1), ty_Float) 32.13/13.21 new_ltEs5(x0, x1, ty_Double) 32.13/13.21 new_esEs30(x0, x1, ty_Ordering) 32.13/13.21 new_esEs6(Just(x0), Just(x1), ty_@0) 32.13/13.21 new_esEs9(@0, @0) 32.13/13.21 new_esEs24(x0, x1, ty_Bool) 32.13/13.21 new_esEs4(Right(x0), Right(x1), x2, ty_Integer) 32.13/13.21 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.21 new_lt9(x0, x1, ty_Double) 32.13/13.21 new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 32.13/13.21 new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 32.13/13.21 new_esEs14(Double(x0, x1), Double(x2, x3)) 32.13/13.21 new_esEs4(Left(x0), Left(x1), ty_Bool, x2) 32.13/13.21 new_esEs6(Just(x0), Just(x1), ty_Bool) 32.13/13.21 new_esEs29(x0, x1, ty_Ordering) 32.13/13.21 new_lt10(x0, x1, ty_Float) 32.13/13.21 new_lt6(x0, x1) 32.13/13.21 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.21 new_ltEs5(x0, x1, ty_Ordering) 32.13/13.21 new_esEs30(x0, x1, ty_Double) 32.13/13.21 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.21 new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 32.13/13.21 new_ltEs19(x0, x1, ty_Char) 32.13/13.21 new_ltEs13(Just(x0), Just(x1), ty_Int) 32.13/13.21 new_esEs21(x0, x1, ty_Double) 32.13/13.21 new_lt10(x0, x1, ty_Ordering) 32.13/13.21 new_primPlusNat0(x0, x1) 32.13/13.21 new_compare23(Just(x0), Nothing, False, x1) 32.13/13.21 new_esEs26(x0, x1, ty_@0) 32.13/13.21 new_esEs23(x0, x1, ty_Double) 32.13/13.21 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 32.13/13.21 new_compare30(x0, x1, ty_Ordering) 32.13/13.21 new_compare23(x0, x1, True, x2) 32.13/13.21 new_primMulNat0(Succ(x0), Succ(x1)) 32.13/13.21 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) 32.13/13.21 new_primPlusNat1(Zero, Succ(x0)) 32.13/13.21 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.21 new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 32.13/13.21 new_lt10(x0, x1, ty_Int) 32.13/13.21 new_compare25(x0, x1, True) 32.13/13.21 new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) 32.13/13.21 new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 32.13/13.21 new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 32.13/13.21 new_lt9(x0, x1, app(ty_[], x2)) 32.13/13.21 new_esEs8(GT, GT) 32.13/13.21 new_ltEs19(x0, x1, ty_Bool) 32.13/13.21 new_esEs28(x0, x1, ty_Integer) 32.13/13.21 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 32.13/13.21 new_ltEs16(True, False) 32.13/13.21 new_ltEs16(False, True) 32.13/13.21 new_ltEs12(EQ, LT) 32.13/13.21 new_ltEs12(LT, EQ) 32.13/13.21 new_esEs18(x0, x1, ty_Integer) 32.13/13.21 new_esEs8(LT, EQ) 32.13/13.21 new_esEs8(EQ, LT) 32.13/13.21 new_ltEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 32.13/13.21 new_esEs18(x0, x1, ty_Float) 32.13/13.21 new_ltEs12(GT, GT) 32.13/13.21 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.21 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_compare30(x0, x1, ty_@0) 32.13/13.21 new_primCmpInt(Neg(Zero), Neg(Zero)) 32.13/13.21 new_esEs22(x0, x1, ty_Integer) 32.13/13.21 new_lt20(x0, x1, ty_@0) 32.13/13.21 new_esEs13(False, True) 32.13/13.21 new_esEs13(True, False) 32.13/13.21 new_esEs23(x0, x1, app(ty_Ratio, x2)) 32.13/13.21 new_lt10(x0, x1, ty_Integer) 32.13/13.21 new_esEs11(Float(x0, x1), Float(x2, x3)) 32.13/13.21 new_esEs24(x0, x1, app(ty_Ratio, x2)) 32.13/13.21 new_esEs8(LT, LT) 32.13/13.21 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 32.13/13.21 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.21 new_primCmpInt(Pos(Zero), Neg(Zero)) 32.13/13.21 new_primCmpInt(Neg(Zero), Pos(Zero)) 32.13/13.21 new_primMulInt(Pos(x0), Neg(x1)) 32.13/13.21 new_primMulInt(Neg(x0), Pos(x1)) 32.13/13.21 new_esEs20(x0, x1, ty_Char) 32.13/13.21 new_compare110(x0, x1, True) 32.13/13.21 new_ltEs6(Right(x0), Left(x1), x2, x3) 32.13/13.21 new_ltEs6(Left(x0), Right(x1), x2, x3) 32.13/13.21 new_primCompAux1(x0, x1, x2, x3) 32.13/13.21 new_esEs6(Just(x0), Just(x1), ty_Integer) 32.13/13.21 new_esEs18(x0, x1, ty_Int) 32.13/13.21 new_lt15(x0, x1) 32.13/13.21 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 32.13/13.21 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.21 new_compare23(Nothing, Nothing, False, x0) 32.13/13.21 new_esEs29(x0, x1, ty_Integer) 32.13/13.21 new_esEs24(x0, x1, app(ty_Maybe, x2)) 32.13/13.21 new_esEs16([], [], x0) 32.13/13.21 new_esEs4(Right(x0), Right(x1), x2, ty_@0) 32.13/13.21 new_primMulInt(Pos(x0), Pos(x1)) 32.13/13.21 new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 32.13/13.21 new_compare27(x0, x1, True, x2, x3) 32.13/13.21 new_esEs20(x0, x1, ty_Int) 32.13/13.21 new_ltEs20(x0, x1, ty_Double) 32.13/13.21 new_compare210(x0, x1, True) 32.13/13.21 new_compare10(x0, x1, False, x2) 32.13/13.21 new_esEs22(x0, x1, ty_Ordering) 32.13/13.21 new_esEs25(x0, x1, ty_@0) 32.13/13.21 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.21 new_esEs18(x0, x1, ty_Char) 32.13/13.21 new_ltEs12(LT, LT) 32.13/13.21 new_asAs(True, x0) 32.13/13.21 new_esEs29(x0, x1, app(ty_Ratio, x2)) 32.13/13.21 new_esEs23(x0, x1, app(ty_[], x2)) 32.13/13.21 new_ltEs6(Right(x0), Right(x1), x2, ty_Double) 32.13/13.21 new_ltEs6(Right(x0), Right(x1), x2, ty_@0) 32.13/13.21 new_compare24(x0, x1, False, x2, x3) 32.13/13.21 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_lt17(x0, x1, x2) 32.13/13.21 new_ltEs19(x0, x1, ty_Ordering) 32.13/13.21 new_ltEs5(x0, x1, app(ty_[], x2)) 32.13/13.21 new_esEs18(x0, x1, ty_Bool) 32.13/13.21 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.21 new_ltEs19(x0, x1, ty_Integer) 32.13/13.21 new_esEs23(x0, x1, ty_@0) 32.13/13.21 new_esEs20(x0, x1, ty_Float) 32.13/13.21 new_ltEs17(x0, x1) 32.13/13.21 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_primCmpNat0(Succ(x0), Succ(x1)) 32.13/13.21 new_compare30(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.21 new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_lt20(x0, x1, ty_Double) 32.13/13.21 new_compare26(x0, x1, True, x2, x3, x4) 32.13/13.21 new_esEs30(x0, x1, ty_@0) 32.13/13.21 new_ltEs20(x0, x1, ty_@0) 32.13/13.21 new_primMulNat0(Succ(x0), Zero) 32.13/13.21 new_primCmpNat0(Zero, Succ(x0)) 32.13/13.21 new_esEs16(:(x0, x1), :(x2, x3), x4) 32.13/13.21 new_compare0(:(x0, x1), :(x2, x3), x4) 32.13/13.21 new_ltEs15(x0, x1, x2) 32.13/13.21 new_esEs19(x0, x1, ty_Int) 32.13/13.21 new_lt9(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.21 new_compare30(x0, x1, app(ty_[], x2)) 32.13/13.21 new_ltEs10(x0, x1) 32.13/13.21 new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 32.13/13.21 new_esEs24(x0, x1, app(ty_[], x2)) 32.13/13.21 new_esEs20(x0, x1, ty_@0) 32.13/13.21 new_primCompAux0(x0, LT) 32.13/13.21 new_esEs6(Just(x0), Just(x1), ty_Float) 32.13/13.21 new_ltEs5(x0, x1, ty_Bool) 32.13/13.21 new_esEs4(Left(x0), Left(x1), ty_Float, x2) 32.13/13.21 new_compare7(Integer(x0), Integer(x1)) 32.13/13.21 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.21 new_ltEs13(Just(x0), Just(x1), ty_Bool) 32.13/13.21 new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_primMulNat0(Zero, Zero) 32.13/13.21 new_esEs22(x0, x1, ty_@0) 32.13/13.21 new_compare30(x0, x1, ty_Integer) 32.13/13.21 new_ltEs6(Left(x0), Left(x1), ty_Char, x2) 32.13/13.21 new_esEs4(Right(x0), Right(x1), x2, ty_Int) 32.13/13.21 new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.21 new_ltEs6(Left(x0), Left(x1), ty_Int, x2) 32.13/13.21 new_esEs17(Integer(x0), Integer(x1)) 32.13/13.21 new_ltEs5(x0, x1, ty_@0) 32.13/13.21 new_esEs19(x0, x1, ty_Ordering) 32.13/13.21 new_lt20(x0, x1, app(ty_Maybe, x2)) 32.13/13.21 new_lt12(x0, x1) 32.13/13.21 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 32.13/13.21 new_esEs24(x0, x1, ty_Double) 32.13/13.21 new_esEs18(x0, x1, ty_@0) 32.13/13.21 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_compare11(x0, x1, False, x2, x3) 32.13/13.21 new_lt9(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.21 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 32.13/13.21 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 32.13/13.21 new_compare10(x0, x1, True, x2) 32.13/13.21 new_esEs28(x0, x1, ty_Int) 32.13/13.21 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.21 new_esEs19(x0, x1, ty_Double) 32.13/13.21 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 32.13/13.21 new_esEs25(x0, x1, ty_Double) 32.13/13.21 new_esEs24(x0, x1, ty_Int) 32.13/13.21 new_lt4(x0, x1, x2, x3) 32.13/13.21 new_esEs21(x0, x1, ty_Bool) 32.13/13.21 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_esEs20(x0, x1, ty_Bool) 32.13/13.21 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 32.13/13.21 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.21 new_compare23(Just(x0), Just(x1), False, x2) 32.13/13.21 new_esEs19(x0, x1, ty_Char) 32.13/13.21 new_esEs4(Right(x0), Right(x1), x2, ty_Char) 32.13/13.21 new_esEs4(Right(x0), Right(x1), x2, ty_Double) 32.13/13.21 new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 32.13/13.21 new_ltEs13(Just(x0), Just(x1), ty_@0) 32.13/13.21 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.21 new_esEs24(x0, x1, ty_Ordering) 32.13/13.21 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_compare14(x0, x1, False, x2, x3, x4) 32.13/13.21 new_esEs30(x0, x1, app(ty_Ratio, x2)) 32.13/13.21 new_esEs29(x0, x1, app(ty_[], x2)) 32.13/13.21 new_esEs22(x0, x1, app(ty_Maybe, x2)) 32.13/13.21 new_lt11(x0, x1, x2, x3, x4) 32.13/13.21 new_not(True) 32.13/13.21 new_ltEs5(x0, x1, app(ty_Maybe, x2)) 32.13/13.21 new_compare17(x0, x1, False) 32.13/13.21 new_compare30(x0, x1, app(ty_Ratio, x2)) 32.13/13.21 new_esEs19(x0, x1, app(ty_Maybe, x2)) 32.13/13.21 new_ltEs13(Just(x0), Just(x1), ty_Char) 32.13/13.21 new_esEs23(x0, x1, app(ty_Maybe, x2)) 32.13/13.21 new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 32.13/13.21 new_esEs26(x0, x1, app(ty_[], x2)) 32.13/13.21 new_compare17(x0, x1, True) 32.13/13.21 new_ltEs6(Left(x0), Left(x1), ty_@0, x2) 32.13/13.21 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.21 new_esEs8(EQ, GT) 32.13/13.21 new_esEs8(GT, EQ) 32.13/13.21 new_esEs18(x0, x1, ty_Ordering) 32.13/13.21 new_esEs18(x0, x1, app(ty_Ratio, x2)) 32.13/13.21 new_esEs22(x0, x1, ty_Int) 32.13/13.21 new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 32.13/13.21 new_esEs24(x0, x1, ty_Char) 32.13/13.21 new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 32.13/13.21 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.21 new_ltEs6(Left(x0), Left(x1), ty_Double, x2) 32.13/13.21 new_esEs4(Left(x0), Left(x1), ty_Integer, x2) 32.13/13.21 new_lt9(x0, x1, app(ty_Maybe, x2)) 32.13/13.21 new_lt20(x0, x1, ty_Ordering) 32.13/13.21 new_esEs19(x0, x1, ty_@0) 32.13/13.21 new_ltEs13(Just(x0), Just(x1), ty_Integer) 32.13/13.21 new_esEs6(Nothing, Just(x0), x1) 32.13/13.21 new_esEs26(x0, x1, app(ty_Ratio, x2)) 32.13/13.21 new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_compare110(x0, x1, False) 32.13/13.21 new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) 32.13/13.21 new_esEs13(True, True) 32.13/13.21 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.21 new_esEs21(x0, x1, ty_@0) 32.13/13.21 new_ltEs18(x0, x1) 32.13/13.21 new_compare12(x0, x1) 32.13/13.21 new_compare30(x0, x1, ty_Bool) 32.13/13.21 new_esEs26(x0, x1, ty_Float) 32.13/13.21 new_compare27(x0, x1, False, x2, x3) 32.13/13.21 new_ltEs13(Nothing, Nothing, x0) 32.13/13.21 new_primPlusNat1(Succ(x0), Succ(x1)) 32.13/13.21 new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) 32.13/13.21 new_esEs22(x0, x1, ty_Bool) 32.13/13.21 new_ltEs19(x0, x1, ty_@0) 32.13/13.21 new_esEs21(x0, x1, ty_Float) 32.13/13.21 new_esEs21(x0, x1, app(ty_[], x2)) 32.13/13.21 new_compare11(x0, x1, True, x2, x3) 32.13/13.21 new_primEqNat0(Succ(x0), Zero) 32.13/13.21 new_primCompAux0(x0, EQ) 32.13/13.21 new_lt10(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.21 new_lt14(x0, x1) 32.13/13.21 new_ltEs19(x0, x1, ty_Float) 32.13/13.21 new_ltEs12(EQ, EQ) 32.13/13.21 new_compare28(x0, x1, x2, x3, x4) 32.13/13.21 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 32.13/13.21 new_esEs27(x0, x1, ty_Int) 32.13/13.21 new_lt8(x0, x1, x2) 32.13/13.21 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.21 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 32.13/13.21 new_esEs22(x0, x1, ty_Char) 32.13/13.21 new_compare25(x0, x1, False) 32.13/13.21 new_esEs21(x0, x1, app(ty_Ratio, x2)) 32.13/13.21 new_ltEs5(x0, x1, ty_Integer) 32.13/13.21 new_esEs25(x0, x1, ty_Ordering) 32.13/13.21 new_esEs4(Left(x0), Right(x1), x2, x3) 32.13/13.21 new_esEs4(Right(x0), Left(x1), x2, x3) 32.13/13.21 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 32.13/13.21 new_esEs20(x0, x1, ty_Integer) 32.13/13.21 new_esEs22(x0, x1, ty_Double) 32.13/13.21 new_lt10(x0, x1, app(ty_Ratio, x2)) 32.13/13.21 new_primCmpInt(Pos(Zero), Pos(Zero)) 32.13/13.21 new_lt10(x0, x1, app(ty_Maybe, x2)) 32.13/13.21 new_compare0([], [], x0) 32.13/13.21 new_ltEs20(x0, x1, ty_Integer) 32.13/13.21 new_esEs29(x0, x1, ty_Double) 32.13/13.21 new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 32.13/13.21 new_lt9(x0, x1, ty_Ordering) 32.13/13.21 new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 32.13/13.21 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 32.13/13.21 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 32.13/13.21 new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) 32.13/13.21 new_ltEs5(x0, x1, ty_Float) 32.13/13.21 new_ltEs13(Just(x0), Just(x1), ty_Double) 32.13/13.21 new_esEs22(x0, x1, app(ty_[], x2)) 32.13/13.21 new_compare30(x0, x1, ty_Char) 32.13/13.21 new_esEs4(Left(x0), Left(x1), ty_@0, x2) 32.13/13.21 new_esEs19(x0, x1, ty_Integer) 32.13/13.21 new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 32.13/13.21 new_esEs29(x0, x1, ty_Float) 32.13/13.21 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.21 new_esEs20(x0, x1, ty_Double) 32.13/13.21 new_sr(x0, x1) 32.13/13.21 new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 32.13/13.21 new_esEs30(x0, x1, ty_Float) 32.13/13.21 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 32.13/13.21 new_compare24(x0, x1, True, x2, x3) 32.13/13.21 new_esEs30(x0, x1, app(ty_[], x2)) 32.13/13.21 new_esEs21(x0, x1, ty_Ordering) 32.13/13.21 new_compare9(x0, x1) 32.13/13.21 new_esEs20(x0, x1, ty_Ordering) 32.13/13.21 new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 32.13/13.21 new_esEs21(x0, x1, ty_Int) 32.13/13.21 new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.21 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.21 new_lt9(x0, x1, ty_Float) 32.13/13.21 new_esEs29(x0, x1, app(ty_Maybe, x2)) 32.13/13.21 new_esEs8(LT, GT) 32.13/13.21 new_esEs8(GT, LT) 32.13/13.21 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 32.13/13.21 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.21 new_esEs19(x0, x1, ty_Bool) 32.13/13.21 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 32.13/13.21 new_esEs25(x0, x1, ty_Char) 32.13/13.21 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 32.13/13.21 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.21 new_ltEs5(x0, x1, ty_Int) 32.13/13.21 new_ltEs20(x0, x1, ty_Bool) 32.13/13.21 new_compare26(x0, x1, False, x2, x3, x4) 32.13/13.21 new_esEs21(x0, x1, ty_Char) 32.13/13.21 new_esEs22(x0, x1, ty_Float) 32.13/13.21 new_esEs26(x0, x1, ty_Char) 32.13/13.21 new_esEs24(x0, x1, ty_Integer) 32.13/13.21 new_esEs4(Right(x0), Right(x1), x2, ty_Bool) 32.13/13.21 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_lt9(x0, x1, ty_Char) 32.13/13.21 new_lt10(x0, x1, ty_Double) 32.13/13.21 new_esEs24(x0, x1, ty_@0) 32.13/13.21 new_compare23(Nothing, Just(x0), False, x1) 32.13/13.21 new_esEs26(x0, x1, ty_Int) 32.13/13.21 new_compare30(x0, x1, ty_Int) 32.13/13.21 new_compare8(x0, x1, x2, x3) 32.13/13.21 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 32.13/13.21 new_lt10(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.21 new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) 32.13/13.21 new_esEs21(x0, x1, app(ty_Maybe, x2)) 32.13/13.21 new_asAs(False, x0) 32.13/13.21 new_esEs16(:(x0, x1), [], x2) 32.13/13.21 new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 32.13/13.21 new_ltEs13(Just(x0), Just(x1), ty_Ordering) 32.13/13.21 new_esEs25(x0, x1, ty_Bool) 32.13/13.21 new_lt9(x0, x1, ty_Int) 32.13/13.21 new_lt18(x0, x1) 32.13/13.21 new_esEs23(x0, x1, ty_Int) 32.13/13.21 new_compare30(x0, x1, app(ty_Maybe, x2)) 32.13/13.21 new_primEqNat0(Zero, Zero) 32.13/13.21 new_esEs13(False, False) 32.13/13.21 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 32.13/13.21 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_primMulNat0(Zero, Succ(x0)) 32.13/13.21 new_ltEs5(x0, x1, ty_Char) 32.13/13.21 new_not(False) 32.13/13.21 new_lt20(x0, x1, ty_Float) 32.13/13.21 new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 32.13/13.21 new_esEs26(x0, x1, ty_Ordering) 32.13/13.21 new_ltEs16(True, True) 32.13/13.21 new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) 32.13/13.21 new_lt20(x0, x1, ty_Bool) 32.13/13.21 new_ltEs12(LT, GT) 32.13/13.21 new_ltEs12(GT, LT) 32.13/13.21 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.21 new_esEs25(x0, x1, ty_Int) 32.13/13.21 new_esEs30(x0, x1, ty_Char) 32.13/13.21 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 32.13/13.21 new_ltEs6(Right(x0), Right(x1), x2, ty_Float) 32.13/13.21 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 32.13/13.21 new_esEs22(x0, x1, app(ty_Ratio, x2)) 32.13/13.21 new_esEs26(x0, x1, ty_Bool) 32.13/13.21 new_esEs23(x0, x1, ty_Char) 32.13/13.21 new_esEs15(:%(x0, x1), :%(x2, x3), x4) 32.13/13.21 new_sr0(Integer(x0), Integer(x1)) 32.13/13.21 new_compare30(x0, x1, ty_Float) 32.13/13.21 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 32.13/13.21 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 32.13/13.21 new_esEs26(x0, x1, ty_Integer) 32.13/13.21 new_esEs25(x0, x1, app(ty_Ratio, x2)) 32.13/13.21 new_esEs25(x0, x1, app(ty_Maybe, x2)) 32.13/13.21 new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) 32.13/13.21 new_esEs20(x0, x1, app(ty_Maybe, x2)) 32.13/13.21 new_ltEs6(Right(x0), Right(x1), x2, ty_Char) 32.13/13.21 new_esEs23(x0, x1, ty_Float) 32.13/13.21 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 32.13/13.21 new_primPlusNat1(Succ(x0), Zero) 32.13/13.21 new_esEs30(x0, x1, ty_Int) 32.13/13.21 new_esEs18(x0, x1, app(ty_Maybe, x2)) 32.13/13.21 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 32.13/13.21 new_ltEs4(x0, x1, x2) 32.13/13.21 new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) 32.13/13.21 new_ltEs20(x0, x1, ty_Float) 32.13/13.21 new_esEs18(x0, x1, ty_Double) 32.13/13.21 new_lt20(x0, x1, ty_Int) 32.13/13.21 new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_esEs21(x0, x1, ty_Integer) 32.13/13.21 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.21 new_esEs27(x0, x1, ty_Integer) 32.13/13.21 new_primCmpNat0(Succ(x0), Zero) 32.13/13.21 new_lt16(x0, x1, x2) 32.13/13.21 new_compare31(x0, x1) 32.13/13.21 new_esEs4(Right(x0), Right(x1), x2, ty_Float) 32.13/13.21 new_esEs25(x0, x1, ty_Float) 32.13/13.21 new_ltEs6(Right(x0), Right(x1), x2, ty_Int) 32.13/13.21 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 32.13/13.21 new_compare32(@0, @0) 32.13/13.21 new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 32.13/13.21 new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 32.13/13.21 new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 32.13/13.21 new_primCmpNat0(Zero, Zero) 32.13/13.21 new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 32.13/13.21 new_lt20(x0, x1, ty_Char) 32.13/13.21 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.21 32.13/13.21 We have to consider all minimal (P,Q,R)-chains. 32.13/13.21 ---------------------------------------- 32.13/13.21 32.13/13.21 (26) DependencyGraphProof (EQUIVALENT) 32.13/13.21 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 1 SCC with 1 less node. 32.13/13.21 ---------------------------------------- 32.13/13.21 32.13/13.21 (27) 32.13/13.21 Obligation: 32.13/13.21 Q DP problem: 32.13/13.21 The TRS P consists of the following rules: 32.13/13.21 32.13/13.21 new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu21, Just(xuu22), xuu23, bb, bc) 32.13/13.21 new_addToFM_C(Branch(Just(xuu600), xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Just(xuu600), new_esEs29(xuu311000, xuu600, h), h), LT), h, ba) 32.13/13.21 new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, bb, bc) -> new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs8(new_compare23(Just(xuu22), Just(xuu17), new_esEs30(xuu22, xuu17, bb), bb), GT), bb, bc) 32.13/13.21 new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu20, Just(xuu22), xuu23, bb, bc) 32.13/13.21 new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(GT, LT), h, ba) 32.13/13.21 new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Nothing, False, h), GT), h, ba) 32.13/13.21 new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Just(xuu311000), xuu31101, h, ba) 32.13/13.21 32.13/13.21 The TRS R consists of the following rules: 32.13/13.21 32.13/13.21 new_lt20(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) 32.13/13.21 new_esEs20(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.13/13.21 new_compare30(xuu33000, xuu34000, app(app(app(ty_@3, chc), chd), che)) -> new_compare28(xuu33000, xuu34000, chc, chd, che) 32.13/13.21 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 32.13/13.21 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Float) -> new_ltEs11(xuu33000, xuu34000) 32.13/13.21 new_primCmpInt(Neg(Succ(xuu3300)), Pos(xuu340)) -> LT 32.13/13.21 new_compare8(xuu33000, xuu34000, ee, ef) -> new_compare24(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, ee, ef), ee, ef) 32.13/13.21 new_esEs23(xuu3110000, xuu6000, app(ty_Maybe, cba)) -> new_esEs6(xuu3110000, xuu6000, cba) 32.13/13.21 new_pePe(True, xuu165) -> True 32.13/13.21 new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.13/13.21 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.13/13.21 new_esEs30(xuu22, xuu17, ty_Ordering) -> new_esEs8(xuu22, xuu17) 32.13/13.21 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Float) -> new_ltEs11(xuu33000, xuu34000) 32.13/13.21 new_esEs17(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) 32.13/13.21 new_lt4(xuu33000, xuu34000, bd, be) -> new_esEs8(new_compare6(xuu33000, xuu34000, bd, be), LT) 32.13/13.21 new_esEs29(xuu311000, xuu600, ty_Int) -> new_esEs12(xuu311000, xuu600) 32.13/13.21 new_esEs30(xuu22, xuu17, ty_Bool) -> new_esEs13(xuu22, xuu17) 32.13/13.21 new_compare23(xuu330, xuu340, True, dc) -> EQ 32.13/13.21 new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Maybe, bee)) -> new_ltEs13(xuu33000, xuu34000, bee) 32.13/13.21 new_lt15(xuu33000, xuu34000) -> new_esEs8(new_compare31(xuu33000, xuu34000), LT) 32.13/13.21 new_lt10(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) 32.13/13.21 new_ltEs12(LT, LT) -> True 32.13/13.21 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.13/13.21 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(ty_@2, dcd), dce)) -> new_ltEs14(xuu33000, xuu34000, dcd, dce) 32.13/13.21 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Char) -> new_ltEs17(xuu33000, xuu34000) 32.13/13.21 new_esEs4(Left(xuu3110000), Right(xuu6000), gc, eg) -> False 32.13/13.21 new_esEs4(Right(xuu3110000), Left(xuu6000), gc, eg) -> False 32.13/13.21 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Int, de) -> new_ltEs7(xuu33000, xuu34000) 32.13/13.21 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 32.13/13.21 new_primCmpInt(Pos(Zero), Neg(Succ(xuu3400))) -> GT 32.13/13.21 new_esEs29(xuu311000, xuu600, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs5(xuu311000, xuu600, hf, hg, hh) 32.13/13.21 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_[], dcb)) -> new_ltEs4(xuu33000, xuu34000, dcb) 32.13/13.21 new_esEs15(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), dea) -> new_asAs(new_esEs28(xuu3110000, xuu6000, dea), new_esEs27(xuu3110001, xuu6001, dea)) 32.13/13.21 new_esEs24(xuu33001, xuu34001, ty_Ordering) -> new_esEs8(xuu33001, xuu34001) 32.13/13.21 new_ltEs14(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), eb, ec) -> new_pePe(new_lt20(xuu33000, xuu34000, eb), new_asAs(new_esEs26(xuu33000, xuu34000, eb), new_ltEs20(xuu33001, xuu34001, ec))) 32.13/13.21 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_Ratio, dcf)) -> new_ltEs15(xuu33000, xuu34000, dcf) 32.13/13.21 new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, bhb), bhc)) -> new_esEs4(xuu3110000, xuu6000, bhb, bhc) 32.13/13.21 new_compare0(:(xuu33000, xuu33001), :(xuu34000, xuu34001), bf) -> new_primCompAux1(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, bf), bf) 32.13/13.21 new_primCmpInt(Neg(Succ(xuu3300)), Neg(xuu340)) -> new_primCmpNat0(xuu340, Succ(xuu3300)) 32.13/13.21 new_lt9(xuu33001, xuu34001, app(ty_[], cde)) -> new_lt16(xuu33001, xuu34001, cde) 32.13/13.21 new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_Either, bdg), bdh)) -> new_ltEs6(xuu33000, xuu34000, bdg, bdh) 32.13/13.21 new_lt10(xuu33000, xuu34000, app(ty_Ratio, cbe)) -> new_lt8(xuu33000, xuu34000, cbe) 32.13/13.21 new_esEs28(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.13/13.21 new_esEs26(xuu33000, xuu34000, app(app(ty_@2, cgf), cgg)) -> new_esEs7(xuu33000, xuu34000, cgf, cgg) 32.13/13.21 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Char) -> new_ltEs17(xuu33000, xuu34000) 32.13/13.21 new_esEs23(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.13/13.21 new_ltEs20(xuu33001, xuu34001, ty_@0) -> new_ltEs18(xuu33001, xuu34001) 32.13/13.21 new_esEs5(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), hf, hg, hh) -> new_asAs(new_esEs20(xuu3110000, xuu6000, hf), new_asAs(new_esEs19(xuu3110001, xuu6001, hg), new_esEs18(xuu3110002, xuu6002, hh))) 32.13/13.21 new_esEs10(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) 32.13/13.21 new_ltEs7(xuu3300, xuu3400) -> new_fsEs(new_compare12(xuu3300, xuu3400)) 32.13/13.21 new_esEs18(xuu3110002, xuu6002, ty_Ordering) -> new_esEs8(xuu3110002, xuu6002) 32.13/13.21 new_compare25(xuu33000, xuu34000, False) -> new_compare17(xuu33000, xuu34000, new_ltEs16(xuu33000, xuu34000)) 32.13/13.21 new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_[], dah), de) -> new_ltEs4(xuu33000, xuu34000, dah) 32.13/13.21 new_esEs18(xuu3110002, xuu6002, ty_Bool) -> new_esEs13(xuu3110002, xuu6002) 32.13/13.21 new_primCompAux0(xuu182, GT) -> GT 32.13/13.21 new_lt9(xuu33001, xuu34001, ty_Bool) -> new_lt18(xuu33001, xuu34001) 32.13/13.21 new_esEs23(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.13/13.21 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Double) -> new_ltEs9(xuu33000, xuu34000) 32.13/13.21 new_compare210(xuu33000, xuu34000, False) -> new_compare110(xuu33000, xuu34000, new_ltEs12(xuu33000, xuu34000)) 32.13/13.21 new_esEs18(xuu3110002, xuu6002, app(ty_Ratio, bah)) -> new_esEs15(xuu3110002, xuu6002, bah) 32.13/13.21 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Integer, eg) -> new_esEs17(xuu3110000, xuu6000) 32.13/13.21 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False 32.13/13.21 new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False 32.13/13.21 new_esEs8(GT, GT) -> True 32.13/13.21 new_fsEs(xuu149) -> new_not(new_esEs8(xuu149, GT)) 32.13/13.21 new_esEs19(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) 32.13/13.21 new_lt12(xuu33000, xuu34000) -> new_esEs8(new_compare19(xuu33000, xuu34000), LT) 32.13/13.21 new_esEs24(xuu33001, xuu34001, app(ty_Ratio, cea)) -> new_esEs15(xuu33001, xuu34001, cea) 32.13/13.21 new_esEs20(xuu3110000, xuu6000, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs5(xuu3110000, xuu6000, bcg, bch, bda) 32.13/13.21 new_ltEs4(xuu3300, xuu3400, bf) -> new_fsEs(new_compare0(xuu3300, xuu3400, bf)) 32.13/13.21 new_esEs8(EQ, EQ) -> True 32.13/13.21 new_esEs24(xuu33001, xuu34001, ty_Bool) -> new_esEs13(xuu33001, xuu34001) 32.13/13.21 new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Ratio, dbd), de) -> new_ltEs15(xuu33000, xuu34000, dbd) 32.13/13.21 new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) 32.13/13.21 new_lt10(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) 32.13/13.21 new_lt10(xuu33000, xuu34000, app(ty_Maybe, cec)) -> new_lt17(xuu33000, xuu34000, cec) 32.13/13.21 new_ltEs20(xuu33001, xuu34001, ty_Integer) -> new_ltEs10(xuu33001, xuu34001) 32.13/13.21 new_primCompAux0(xuu182, LT) -> LT 32.13/13.21 new_not(True) -> False 32.13/13.21 new_ltEs19(xuu33002, xuu34002, ty_@0) -> new_ltEs18(xuu33002, xuu34002) 32.13/13.21 new_ltEs12(LT, GT) -> True 32.13/13.21 new_primCmpNat0(Zero, Zero) -> EQ 32.13/13.21 new_esEs18(xuu3110002, xuu6002, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs5(xuu3110002, xuu6002, bac, bad, bae) 32.13/13.21 new_compare6(xuu33000, xuu34000, bd, be) -> new_compare27(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, bd, be), bd, be) 32.13/13.21 new_compare16(xuu33000, xuu34000, False, bd, be) -> GT 32.13/13.21 new_ltEs19(xuu33002, xuu34002, ty_Integer) -> new_ltEs10(xuu33002, xuu34002) 32.13/13.21 new_esEs25(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) 32.13/13.21 new_compare14(xuu33000, xuu34000, True, cbb, cbc, cbd) -> LT 32.13/13.21 new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.13/13.21 new_esEs30(xuu22, xuu17, app(ty_Ratio, ddf)) -> new_esEs15(xuu22, xuu17, ddf) 32.13/13.21 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.13/13.21 new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_Either, dac), dad), de) -> new_ltEs6(xuu33000, xuu34000, dac, dad) 32.13/13.21 new_esEs19(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) 32.13/13.21 new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_[], bed)) -> new_ltEs4(xuu33000, xuu34000, bed) 32.13/13.21 new_primEqNat0(Succ(xuu31100000), Zero) -> False 32.13/13.21 new_primEqNat0(Zero, Succ(xuu60000)) -> False 32.13/13.21 new_ltEs5(xuu3300, xuu3400, app(app(ty_Either, dd), de)) -> new_ltEs6(xuu3300, xuu3400, dd, de) 32.13/13.21 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.13/13.21 new_lt20(xuu33000, xuu34000, app(ty_Ratio, cgh)) -> new_lt8(xuu33000, xuu34000, cgh) 32.13/13.21 new_esEs19(xuu3110001, xuu6001, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs5(xuu3110001, xuu6001, bbe, bbf, bbg) 32.13/13.21 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_@0, eg) -> new_esEs9(xuu3110000, xuu6000) 32.13/13.21 new_esEs29(xuu311000, xuu600, ty_Bool) -> new_esEs13(xuu311000, xuu600) 32.13/13.21 new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, dae), daf), dag), de) -> new_ltEs8(xuu33000, xuu34000, dae, daf, dag) 32.13/13.21 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_@0) -> new_ltEs18(xuu33000, xuu34000) 32.13/13.21 new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, bge), bgf)) -> new_esEs7(xuu3110000, xuu6000, bge, bgf) 32.13/13.21 new_esEs25(xuu33000, xuu34000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs5(xuu33000, xuu34000, cbb, cbc, cbd) 32.13/13.21 new_compare110(xuu33000, xuu34000, True) -> LT 32.13/13.21 new_lt9(xuu33001, xuu34001, app(app(ty_@2, cdg), cdh)) -> new_lt4(xuu33001, xuu34001, cdg, cdh) 32.13/13.21 new_ltEs5(xuu3300, xuu3400, ty_Ordering) -> new_ltEs12(xuu3300, xuu3400) 32.13/13.21 new_lt9(xuu33001, xuu34001, ty_Int) -> new_lt6(xuu33001, xuu34001) 32.13/13.21 new_esEs27(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) 32.13/13.21 new_esEs20(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.13/13.21 new_compare23(Just(xuu3300), Just(xuu3400), False, dc) -> new_compare10(xuu3300, xuu3400, new_ltEs5(xuu3300, xuu3400, dc), dc) 32.13/13.21 new_lt20(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) 32.13/13.21 new_compare30(xuu33000, xuu34000, app(ty_Ratio, dab)) -> new_compare15(xuu33000, xuu34000, dab) 32.13/13.21 new_lt20(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) 32.13/13.21 new_primCmpInt(Pos(Succ(xuu3300)), Neg(xuu340)) -> GT 32.13/13.21 new_ltEs10(xuu3300, xuu3400) -> new_fsEs(new_compare7(xuu3300, xuu3400)) 32.13/13.21 new_compare24(xuu33000, xuu34000, False, ee, ef) -> new_compare11(xuu33000, xuu34000, new_ltEs6(xuu33000, xuu34000, ee, ef), ee, ef) 32.13/13.21 new_lt5(xuu33000, xuu34000, ee, ef) -> new_esEs8(new_compare8(xuu33000, xuu34000, ee, ef), LT) 32.13/13.21 new_esEs20(xuu3110000, xuu6000, app(ty_Ratio, bdd)) -> new_esEs15(xuu3110000, xuu6000, bdd) 32.13/13.21 new_esEs24(xuu33001, xuu34001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs5(xuu33001, xuu34001, cdb, cdc, cdd) 32.13/13.21 new_esEs30(xuu22, xuu17, app(app(app(ty_@3, dda), ddb), ddc)) -> new_esEs5(xuu22, xuu17, dda, ddb, ddc) 32.13/13.21 new_esEs26(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) 32.13/13.21 new_primPlusNat1(Succ(xuu28200), Succ(xuu9700)) -> Succ(Succ(new_primPlusNat1(xuu28200, xuu9700))) 32.13/13.21 new_lt9(xuu33001, xuu34001, ty_Char) -> new_lt7(xuu33001, xuu34001) 32.13/13.21 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Double) -> new_ltEs9(xuu33000, xuu34000) 32.13/13.21 new_lt18(xuu33000, xuu34000) -> new_esEs8(new_compare9(xuu33000, xuu34000), LT) 32.13/13.21 new_primCmpNat0(Zero, Succ(xuu3400)) -> LT 32.13/13.21 new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Maybe, dba), de) -> new_ltEs13(xuu33000, xuu34000, dba) 32.13/13.21 new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Integer) -> new_compare7(new_sr0(xuu33000, xuu34001), new_sr0(xuu34000, xuu33001)) 32.13/13.21 new_esEs30(xuu22, xuu17, ty_Int) -> new_esEs12(xuu22, xuu17) 32.13/13.21 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Bool, eg) -> new_esEs13(xuu3110000, xuu6000) 32.13/13.21 new_esEs18(xuu3110002, xuu6002, ty_Int) -> new_esEs12(xuu3110002, xuu6002) 32.13/13.21 new_compare210(xuu33000, xuu34000, True) -> EQ 32.13/13.21 new_esEs24(xuu33001, xuu34001, ty_Int) -> new_esEs12(xuu33001, xuu34001) 32.13/13.21 new_lt9(xuu33001, xuu34001, app(ty_Ratio, cea)) -> new_lt8(xuu33001, xuu34001, cea) 32.13/13.21 new_esEs21(xuu3110001, xuu6001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs5(xuu3110001, xuu6001, bfe, bff, bfg) 32.13/13.21 new_primCmpNat0(Succ(xuu3300), Zero) -> GT 32.13/13.21 new_ltEs20(xuu33001, xuu34001, app(ty_Maybe, cfc)) -> new_ltEs13(xuu33001, xuu34001, cfc) 32.13/13.21 new_pePe(False, xuu165) -> xuu165 32.13/13.21 new_ltEs5(xuu3300, xuu3400, ty_Char) -> new_ltEs17(xuu3300, xuu3400) 32.13/13.21 new_esEs20(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.13/13.21 new_esEs23(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.13/13.21 new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.13/13.21 new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.13/13.21 new_ltEs20(xuu33001, xuu34001, ty_Float) -> new_ltEs11(xuu33001, xuu34001) 32.13/13.21 new_ltEs12(GT, GT) -> True 32.13/13.21 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Ordering, eg) -> new_esEs8(xuu3110000, xuu6000) 32.13/13.21 new_ltEs18(xuu3300, xuu3400) -> new_fsEs(new_compare32(xuu3300, xuu3400)) 32.13/13.21 new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Int) -> new_compare12(new_sr(xuu33000, xuu34001), new_sr(xuu34000, xuu33001)) 32.13/13.21 new_ltEs20(xuu33001, xuu34001, ty_Double) -> new_ltEs9(xuu33001, xuu34001) 32.13/13.21 new_ltEs19(xuu33002, xuu34002, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs8(xuu33002, xuu34002, cbh, cca, ccb) 32.13/13.21 new_esEs29(xuu311000, xuu600, ty_Integer) -> new_esEs17(xuu311000, xuu600) 32.13/13.21 new_esEs21(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) 32.13/13.21 new_ltEs12(GT, EQ) -> False 32.13/13.21 new_esEs24(xuu33001, xuu34001, ty_@0) -> new_esEs9(xuu33001, xuu34001) 32.13/13.21 new_esEs21(xuu3110001, xuu6001, app(app(ty_Either, bfh), bga)) -> new_esEs4(xuu3110001, xuu6001, bfh, bga) 32.13/13.21 new_esEs18(xuu3110002, xuu6002, ty_Float) -> new_esEs11(xuu3110002, xuu6002) 32.13/13.21 new_lt10(xuu33000, xuu34000, app(ty_[], ceb)) -> new_lt16(xuu33000, xuu34000, ceb) 32.13/13.21 new_compare27(xuu33000, xuu34000, False, bd, be) -> new_compare16(xuu33000, xuu34000, new_ltEs14(xuu33000, xuu34000, bd, be), bd, be) 32.13/13.21 new_esEs26(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) 32.13/13.21 new_compare7(Integer(xuu33000), Integer(xuu34000)) -> new_primCmpInt(xuu33000, xuu34000) 32.13/13.21 new_compare10(xuu132, xuu133, False, ced) -> GT 32.13/13.21 new_esEs30(xuu22, xuu17, ty_Float) -> new_esEs11(xuu22, xuu17) 32.13/13.21 new_esEs8(LT, EQ) -> False 32.13/13.21 new_esEs8(EQ, LT) -> False 32.13/13.21 new_compare17(xuu33000, xuu34000, True) -> LT 32.13/13.21 new_compare11(xuu33000, xuu34000, False, ee, ef) -> GT 32.13/13.21 new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, bhf)) -> new_esEs6(xuu3110000, xuu6000, bhf) 32.13/13.21 new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False 32.13/13.21 new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False 32.13/13.21 new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.13/13.21 new_esEs21(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) 32.13/13.21 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Ordering, de) -> new_ltEs12(xuu33000, xuu34000) 32.13/13.21 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Integer) -> new_ltEs10(xuu33000, xuu34000) 32.13/13.21 new_compare30(xuu33000, xuu34000, app(ty_Maybe, chg)) -> new_compare29(xuu33000, xuu34000, chg) 32.13/13.21 new_ltEs5(xuu3300, xuu3400, app(ty_Maybe, ea)) -> new_ltEs13(xuu3300, xuu3400, ea) 32.13/13.21 new_esEs26(xuu33000, xuu34000, app(ty_[], cgd)) -> new_esEs16(xuu33000, xuu34000, cgd) 32.13/13.21 new_ltEs17(xuu3300, xuu3400) -> new_fsEs(new_compare13(xuu3300, xuu3400)) 32.13/13.21 new_ltEs15(xuu3300, xuu3400, ed) -> new_fsEs(new_compare15(xuu3300, xuu3400, ed)) 32.13/13.21 new_ltEs19(xuu33002, xuu34002, app(app(ty_@2, cce), ccf)) -> new_ltEs14(xuu33002, xuu34002, cce, ccf) 32.13/13.21 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 32.13/13.21 new_esEs25(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) 32.13/13.21 new_esEs23(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.13/13.21 new_primCmpInt(Neg(Zero), Pos(Succ(xuu3400))) -> LT 32.13/13.21 new_compare13(Char(xuu33000), Char(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) 32.13/13.21 new_ltEs5(xuu3300, xuu3400, app(app(app(ty_@3, df), dg), dh)) -> new_ltEs8(xuu3300, xuu3400, df, dg, dh) 32.13/13.21 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Int, eg) -> new_esEs12(xuu3110000, xuu6000) 32.13/13.21 new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.13/13.21 new_ltEs20(xuu33001, xuu34001, ty_Char) -> new_ltEs17(xuu33001, xuu34001) 32.13/13.21 new_compare17(xuu33000, xuu34000, False) -> GT 32.13/13.21 new_lt9(xuu33001, xuu34001, ty_Integer) -> new_lt13(xuu33001, xuu34001) 32.13/13.21 new_primMulInt(Pos(xuu31100000), Pos(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) 32.13/13.21 new_compare30(xuu33000, xuu34000, ty_Float) -> new_compare18(xuu33000, xuu34000) 32.13/13.21 new_ltEs5(xuu3300, xuu3400, ty_Float) -> new_ltEs11(xuu3300, xuu3400) 32.13/13.21 new_ltEs5(xuu3300, xuu3400, app(app(ty_@2, eb), ec)) -> new_ltEs14(xuu3300, xuu3400, eb, ec) 32.13/13.21 new_esEs23(xuu3110000, xuu6000, app(app(ty_Either, cae), caf)) -> new_esEs4(xuu3110000, xuu6000, cae, caf) 32.13/13.21 new_esEs18(xuu3110002, xuu6002, app(ty_[], bba)) -> new_esEs16(xuu3110002, xuu6002, bba) 32.13/13.21 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Bool) -> new_ltEs16(xuu33000, xuu34000) 32.13/13.21 new_esEs25(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) 32.13/13.21 new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, ce), cf)) -> new_esEs4(xuu3110000, xuu6000, ce, cf) 32.13/13.21 new_primCompAux1(xuu33000, xuu34000, xuu176, bf) -> new_primCompAux0(xuu176, new_compare30(xuu33000, xuu34000, bf)) 32.13/13.21 new_lt9(xuu33001, xuu34001, ty_Double) -> new_lt12(xuu33001, xuu34001) 32.13/13.21 new_compare10(xuu132, xuu133, True, ced) -> LT 32.13/13.21 new_esEs24(xuu33001, xuu34001, app(ty_Maybe, cdf)) -> new_esEs6(xuu33001, xuu34001, cdf) 32.13/13.21 new_primMulNat0(Succ(xuu311000000), Zero) -> Zero 32.13/13.21 new_primMulNat0(Zero, Succ(xuu600100)) -> Zero 32.13/13.21 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) 32.13/13.21 new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, cb), cc), cd)) -> new_esEs5(xuu3110000, xuu6000, cb, cc, cd) 32.13/13.21 new_lt10(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) 32.13/13.21 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(ty_Either, dbe), dbf)) -> new_ltEs6(xuu33000, xuu34000, dbe, dbf) 32.13/13.21 new_esEs23(xuu3110000, xuu6000, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs5(xuu3110000, xuu6000, cab, cac, cad) 32.13/13.21 new_ltEs19(xuu33002, xuu34002, ty_Char) -> new_ltEs17(xuu33002, xuu34002) 32.13/13.21 new_lt17(xuu33000, xuu34000, cec) -> new_esEs8(new_compare29(xuu33000, xuu34000, cec), LT) 32.13/13.21 new_ltEs5(xuu3300, xuu3400, ty_Double) -> new_ltEs9(xuu3300, xuu3400) 32.13/13.21 new_lt20(xuu33000, xuu34000, app(app(app(ty_@3, cga), cgb), cgc)) -> new_lt11(xuu33000, xuu34000, cga, cgb, cgc) 32.13/13.21 new_esEs24(xuu33001, xuu34001, ty_Char) -> new_esEs10(xuu33001, xuu34001) 32.13/13.21 new_lt9(xuu33001, xuu34001, app(ty_Maybe, cdf)) -> new_lt17(xuu33001, xuu34001, cdf) 32.13/13.21 new_esEs18(xuu3110002, xuu6002, ty_Integer) -> new_esEs17(xuu3110002, xuu6002) 32.13/13.21 new_lt14(xuu33000, xuu34000) -> new_esEs8(new_compare18(xuu33000, xuu34000), LT) 32.13/13.21 new_ltEs5(xuu3300, xuu3400, ty_Bool) -> new_ltEs16(xuu3300, xuu3400) 32.13/13.21 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Integer, de) -> new_ltEs10(xuu33000, xuu34000) 32.13/13.21 new_esEs8(LT, LT) -> True 32.13/13.21 new_esEs29(xuu311000, xuu600, ty_Float) -> new_esEs11(xuu311000, xuu600) 32.13/13.21 new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, bhd)) -> new_esEs15(xuu3110000, xuu6000, bhd) 32.13/13.21 new_esEs26(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) 32.13/13.21 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.13/13.21 new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, bea), beb), bec)) -> new_ltEs8(xuu33000, xuu34000, bea, beb, bec) 32.13/13.21 new_primPlusNat1(Succ(xuu28200), Zero) -> Succ(xuu28200) 32.13/13.21 new_primPlusNat1(Zero, Succ(xuu9700)) -> Succ(xuu9700) 32.13/13.21 new_compare23(Just(xuu3300), Nothing, False, dc) -> GT 32.13/13.21 new_compare30(xuu33000, xuu34000, ty_Char) -> new_compare13(xuu33000, xuu34000) 32.13/13.21 new_ltEs19(xuu33002, xuu34002, ty_Double) -> new_ltEs9(xuu33002, xuu34002) 32.13/13.21 new_esEs19(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) 32.13/13.21 new_lt10(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) 32.13/13.21 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(app(ty_@3, gf), gg), gh)) -> new_esEs5(xuu3110000, xuu6000, gf, gg, gh) 32.13/13.21 new_esEs13(True, True) -> True 32.13/13.21 new_esEs30(xuu22, xuu17, ty_Integer) -> new_esEs17(xuu22, xuu17) 32.13/13.21 new_ltEs20(xuu33001, xuu34001, app(app(ty_@2, cfd), cfe)) -> new_ltEs14(xuu33001, xuu34001, cfd, cfe) 32.13/13.21 new_esEs23(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.13/13.21 new_esEs23(xuu3110000, xuu6000, app(ty_Ratio, cag)) -> new_esEs15(xuu3110000, xuu6000, cag) 32.13/13.21 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Char, eg) -> new_esEs10(xuu3110000, xuu6000) 32.13/13.21 new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_[], ga), eg) -> new_esEs16(xuu3110000, xuu6000, ga) 32.13/13.21 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.13/13.21 new_esEs16([], [], bhg) -> True 32.13/13.21 new_ltEs19(xuu33002, xuu34002, ty_Float) -> new_ltEs11(xuu33002, xuu34002) 32.13/13.21 new_esEs25(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) 32.13/13.21 new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, cg)) -> new_esEs15(xuu3110000, xuu6000, cg) 32.13/13.21 new_primMulInt(Neg(xuu31100000), Neg(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) 32.13/13.21 new_primCmpInt(Pos(Zero), Pos(Succ(xuu3400))) -> new_primCmpNat0(Zero, Succ(xuu3400)) 32.13/13.21 new_esEs29(xuu311000, xuu600, ty_Double) -> new_esEs14(xuu311000, xuu600) 32.13/13.21 new_esEs25(xuu33000, xuu34000, app(app(ty_@2, bd), be)) -> new_esEs7(xuu33000, xuu34000, bd, be) 32.13/13.21 new_ltEs20(xuu33001, xuu34001, ty_Bool) -> new_ltEs16(xuu33001, xuu34001) 32.13/13.21 new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, db)) -> new_esEs6(xuu3110000, xuu6000, db) 32.13/13.21 new_esEs6(Nothing, Just(xuu6000), bg) -> False 32.13/13.21 new_esEs6(Just(xuu3110000), Nothing, bg) -> False 32.13/13.21 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.13/13.21 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_Maybe, he)) -> new_esEs6(xuu3110000, xuu6000, he) 32.13/13.21 new_esEs6(Nothing, Nothing, bg) -> True 32.13/13.21 new_esEs14(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 32.13/13.21 new_esEs23(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.13/13.21 new_compare26(xuu33000, xuu34000, True, cbb, cbc, cbd) -> EQ 32.13/13.21 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_Ratio, hc)) -> new_esEs15(xuu3110000, xuu6000, hc) 32.13/13.21 new_compare26(xuu33000, xuu34000, False, cbb, cbc, cbd) -> new_compare14(xuu33000, xuu34000, new_ltEs8(xuu33000, xuu34000, cbb, cbc, cbd), cbb, cbc, cbd) 32.13/13.21 new_ltEs19(xuu33002, xuu34002, ty_Bool) -> new_ltEs16(xuu33002, xuu34002) 32.13/13.21 new_lt10(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) 32.13/13.21 new_primMulInt(Pos(xuu31100000), Neg(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) 32.13/13.21 new_primMulInt(Neg(xuu31100000), Pos(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) 32.13/13.21 new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.13/13.21 new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.13/13.21 new_compare30(xuu33000, xuu34000, app(app(ty_@2, chh), daa)) -> new_compare6(xuu33000, xuu34000, chh, daa) 32.13/13.21 new_esEs26(xuu33000, xuu34000, app(ty_Ratio, cgh)) -> new_esEs15(xuu33000, xuu34000, cgh) 32.13/13.21 new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, fh), eg) -> new_esEs15(xuu3110000, xuu6000, fh) 32.13/13.21 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.13/13.21 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Int) -> new_ltEs7(xuu33000, xuu34000) 32.13/13.21 new_ltEs19(xuu33002, xuu34002, ty_Ordering) -> new_ltEs12(xuu33002, xuu34002) 32.13/13.21 new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs5(xuu3110000, xuu6000, bgg, bgh, bha) 32.13/13.21 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(ty_@2, gd), ge)) -> new_esEs7(xuu3110000, xuu6000, gd, ge) 32.13/13.21 new_esEs21(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) 32.13/13.21 new_sr0(Integer(xuu330000), Integer(xuu340010)) -> Integer(new_primMulInt(xuu330000, xuu340010)) 32.13/13.21 new_esEs24(xuu33001, xuu34001, ty_Double) -> new_esEs14(xuu33001, xuu34001) 32.13/13.21 new_esEs25(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) 32.13/13.21 new_esEs13(False, False) -> True 32.13/13.21 new_esEs30(xuu22, xuu17, ty_Double) -> new_esEs14(xuu22, xuu17) 32.13/13.21 new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.13/13.21 new_compare31(xuu33000, xuu34000) -> new_compare210(xuu33000, xuu34000, new_esEs8(xuu33000, xuu34000)) 32.13/13.21 new_lt8(xuu33000, xuu34000, cbe) -> new_esEs8(new_compare15(xuu33000, xuu34000, cbe), LT) 32.13/13.21 new_esEs18(xuu3110002, xuu6002, ty_Double) -> new_esEs14(xuu3110002, xuu6002) 32.13/13.21 new_compare0([], :(xuu34000, xuu34001), bf) -> LT 32.13/13.21 new_asAs(True, xuu139) -> xuu139 32.13/13.21 new_esEs19(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) 32.13/13.21 new_esEs21(xuu3110001, xuu6001, app(ty_Maybe, bgd)) -> new_esEs6(xuu3110001, xuu6001, bgd) 32.13/13.21 new_lt10(xuu33000, xuu34000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_lt11(xuu33000, xuu34000, cbb, cbc, cbd) 32.13/13.21 new_lt16(xuu33000, xuu34000, ceb) -> new_esEs8(new_compare0(xuu33000, xuu34000, ceb), LT) 32.13/13.21 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.13/13.21 new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, ff), fg), eg) -> new_esEs4(xuu3110000, xuu6000, ff, fg) 32.13/13.21 new_esEs21(xuu3110001, xuu6001, app(ty_Ratio, bgb)) -> new_esEs15(xuu3110001, xuu6001, bgb) 32.13/13.21 new_esEs26(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) 32.13/13.21 new_ltEs16(True, False) -> False 32.13/13.21 new_compare16(xuu33000, xuu34000, True, bd, be) -> LT 32.13/13.21 new_esEs29(xuu311000, xuu600, app(ty_[], bhg)) -> new_esEs16(xuu311000, xuu600, bhg) 32.13/13.21 new_ltEs5(xuu3300, xuu3400, ty_@0) -> new_ltEs18(xuu3300, xuu3400) 32.13/13.21 new_lt9(xuu33001, xuu34001, app(app(ty_Either, cch), cda)) -> new_lt5(xuu33001, xuu34001, cch, cda) 32.13/13.21 new_esEs18(xuu3110002, xuu6002, app(app(ty_@2, baa), bab)) -> new_esEs7(xuu3110002, xuu6002, baa, bab) 32.13/13.21 new_compare24(xuu33000, xuu34000, True, ee, ef) -> EQ 32.13/13.21 new_esEs24(xuu33001, xuu34001, app(app(ty_@2, cdg), cdh)) -> new_esEs7(xuu33001, xuu34001, cdg, cdh) 32.13/13.21 new_esEs30(xuu22, xuu17, app(app(ty_@2, dcg), dch)) -> new_esEs7(xuu22, xuu17, dcg, dch) 32.13/13.21 new_primCmpInt(Pos(Succ(xuu3300)), Pos(xuu340)) -> new_primCmpNat0(Succ(xuu3300), xuu340) 32.13/13.21 new_lt9(xuu33001, xuu34001, ty_@0) -> new_lt19(xuu33001, xuu34001) 32.13/13.21 new_compare110(xuu33000, xuu34000, False) -> GT 32.13/13.21 new_compare9(xuu33000, xuu34000) -> new_compare25(xuu33000, xuu34000, new_esEs13(xuu33000, xuu34000)) 32.13/13.21 new_esEs25(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) 32.13/13.21 new_lt20(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) 32.13/13.21 new_esEs9(@0, @0) -> True 32.13/13.21 new_compare0([], [], bf) -> EQ 32.13/13.21 new_esEs19(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) 32.13/13.21 new_esEs20(xuu3110000, xuu6000, app(app(ty_Either, bdb), bdc)) -> new_esEs4(xuu3110000, xuu6000, bdb, bdc) 32.13/13.21 new_sr(xuu3110000, xuu6001) -> new_primMulInt(xuu3110000, xuu6001) 32.13/13.21 new_esEs19(xuu3110001, xuu6001, app(app(ty_Either, bbh), bca)) -> new_esEs4(xuu3110001, xuu6001, bbh, bca) 32.13/13.21 new_compare30(xuu33000, xuu34000, ty_@0) -> new_compare32(xuu33000, xuu34000) 32.13/13.21 new_primMulNat0(Zero, Zero) -> Zero 32.13/13.21 new_ltEs20(xuu33001, xuu34001, ty_Ordering) -> new_ltEs12(xuu33001, xuu34001) 32.13/13.21 new_lt9(xuu33001, xuu34001, ty_Ordering) -> new_lt15(xuu33001, xuu34001) 32.13/13.21 new_ltEs13(Nothing, Nothing, ea) -> True 32.13/13.21 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.13/13.21 new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_@2, bef), beg)) -> new_ltEs14(xuu33000, xuu34000, bef, beg) 32.13/13.21 new_ltEs13(Just(xuu33000), Nothing, ea) -> False 32.13/13.21 new_lt20(xuu33000, xuu34000, app(ty_[], cgd)) -> new_lt16(xuu33000, xuu34000, cgd) 32.13/13.21 new_esEs24(xuu33001, xuu34001, app(ty_[], cde)) -> new_esEs16(xuu33001, xuu34001, cde) 32.13/13.21 new_esEs30(xuu22, xuu17, app(ty_[], ddg)) -> new_esEs16(xuu22, xuu17, ddg) 32.13/13.21 new_esEs20(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.13/13.21 new_compare14(xuu33000, xuu34000, False, cbb, cbc, cbd) -> GT 32.13/13.21 new_esEs23(xuu3110000, xuu6000, app(app(ty_@2, bhh), caa)) -> new_esEs7(xuu3110000, xuu6000, bhh, caa) 32.13/13.21 new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.13/13.21 new_lt20(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) 32.13/13.21 new_esEs25(xuu33000, xuu34000, app(app(ty_Either, ee), ef)) -> new_esEs4(xuu33000, xuu34000, ee, ef) 32.13/13.21 new_ltEs19(xuu33002, xuu34002, app(ty_Maybe, ccd)) -> new_ltEs13(xuu33002, xuu34002, ccd) 32.13/13.21 new_esEs19(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) 32.13/13.21 new_esEs21(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) 32.13/13.21 new_ltEs20(xuu33001, xuu34001, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_ltEs8(xuu33001, xuu34001, ceg, ceh, cfa) 32.13/13.21 new_esEs26(xuu33000, xuu34000, app(ty_Maybe, cge)) -> new_esEs6(xuu33000, xuu34000, cge) 32.13/13.21 new_lt11(xuu33000, xuu34000, cbb, cbc, cbd) -> new_esEs8(new_compare28(xuu33000, xuu34000, cbb, cbc, cbd), LT) 32.13/13.21 new_ltEs5(xuu3300, xuu3400, ty_Integer) -> new_ltEs10(xuu3300, xuu3400) 32.13/13.21 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(ty_Either, ha), hb)) -> new_esEs4(xuu3110000, xuu6000, ha, hb) 32.13/13.21 new_compare30(xuu33000, xuu34000, ty_Double) -> new_compare19(xuu33000, xuu34000) 32.13/13.21 new_compare32(@0, @0) -> EQ 32.13/13.21 new_ltEs12(GT, LT) -> False 32.13/13.21 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Bool) -> new_ltEs16(xuu33000, xuu34000) 32.13/13.21 new_primCompAux0(xuu182, EQ) -> xuu182 32.13/13.21 new_esEs26(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) 32.13/13.21 new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, bh), ca)) -> new_esEs7(xuu3110000, xuu6000, bh, ca) 32.13/13.21 new_esEs20(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.13/13.21 new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.13/13.21 new_esEs29(xuu311000, xuu600, app(app(ty_Either, gc), eg)) -> new_esEs4(xuu311000, xuu600, gc, eg) 32.13/13.21 new_esEs7(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bfa, bfb) -> new_asAs(new_esEs22(xuu3110000, xuu6000, bfa), new_esEs21(xuu3110001, xuu6001, bfb)) 32.13/13.21 new_esEs30(xuu22, xuu17, ty_@0) -> new_esEs9(xuu22, xuu17) 32.13/13.21 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False 32.13/13.21 new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False 32.13/13.21 new_esEs25(xuu33000, xuu34000, app(ty_Maybe, cec)) -> new_esEs6(xuu33000, xuu34000, cec) 32.13/13.21 new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, eh), fa), eg) -> new_esEs7(xuu3110000, xuu6000, eh, fa) 32.13/13.21 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 32.13/13.21 new_esEs13(False, True) -> False 32.13/13.21 new_esEs13(True, False) -> False 32.13/13.21 new_esEs20(xuu3110000, xuu6000, app(ty_[], bde)) -> new_esEs16(xuu3110000, xuu6000, bde) 32.13/13.21 new_ltEs20(xuu33001, xuu34001, app(app(ty_Either, cee), cef)) -> new_ltEs6(xuu33001, xuu34001, cee, cef) 32.13/13.21 new_esEs26(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) 32.13/13.21 new_esEs20(xuu3110000, xuu6000, app(ty_Maybe, bdf)) -> new_esEs6(xuu3110000, xuu6000, bdf) 32.13/13.21 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.13/13.21 new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False 32.13/13.21 new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False 32.13/13.21 new_esEs26(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) 32.13/13.21 new_esEs19(xuu3110001, xuu6001, app(ty_Maybe, bcd)) -> new_esEs6(xuu3110001, xuu6001, bcd) 32.13/13.21 new_esEs25(xuu33000, xuu34000, app(ty_Ratio, cbe)) -> new_esEs15(xuu33000, xuu34000, cbe) 32.13/13.21 new_compare30(xuu33000, xuu34000, app(ty_[], chf)) -> new_compare0(xuu33000, xuu34000, chf) 32.13/13.21 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Int) -> new_ltEs7(xuu33000, xuu34000) 32.13/13.21 new_lt9(xuu33001, xuu34001, ty_Float) -> new_lt14(xuu33001, xuu34001) 32.13/13.21 new_primCmpInt(Neg(Zero), Neg(Succ(xuu3400))) -> new_primCmpNat0(Succ(xuu3400), Zero) 32.13/13.21 new_esEs16(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bhg) -> new_asAs(new_esEs23(xuu3110000, xuu6000, bhg), new_esEs16(xuu3110001, xuu6001, bhg)) 32.13/13.21 new_compare23(Nothing, Just(xuu3400), False, dc) -> LT 32.13/13.21 new_compare29(xuu33000, xuu34000, cec) -> new_compare23(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, cec), cec) 32.13/13.21 new_esEs21(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) 32.13/13.21 new_esEs25(xuu33000, xuu34000, app(ty_[], ceb)) -> new_esEs16(xuu33000, xuu34000, ceb) 32.13/13.21 new_esEs30(xuu22, xuu17, app(app(ty_Either, ddd), dde)) -> new_esEs4(xuu22, xuu17, ddd, dde) 32.13/13.21 new_esEs29(xuu311000, xuu600, ty_@0) -> new_esEs9(xuu311000, xuu600) 32.13/13.21 new_esEs19(xuu3110001, xuu6001, app(ty_[], bcc)) -> new_esEs16(xuu3110001, xuu6001, bcc) 32.13/13.21 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_@0, de) -> new_ltEs18(xuu33000, xuu34000) 32.13/13.21 new_esEs24(xuu33001, xuu34001, app(app(ty_Either, cch), cda)) -> new_esEs4(xuu33001, xuu34001, cch, cda) 32.13/13.21 new_ltEs19(xuu33002, xuu34002, app(app(ty_Either, cbf), cbg)) -> new_ltEs6(xuu33002, xuu34002, cbf, cbg) 32.13/13.21 new_ltEs12(EQ, GT) -> True 32.13/13.21 new_esEs19(xuu3110001, xuu6001, app(ty_Ratio, bcb)) -> new_esEs15(xuu3110001, xuu6001, bcb) 32.13/13.21 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 32.13/13.21 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.13/13.21 new_esEs18(xuu3110002, xuu6002, app(app(ty_Either, baf), bag)) -> new_esEs4(xuu3110002, xuu6002, baf, bag) 32.13/13.21 new_lt20(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) 32.13/13.21 new_lt10(xuu33000, xuu34000, app(app(ty_Either, ee), ef)) -> new_lt5(xuu33000, xuu34000, ee, ef) 32.13/13.21 new_ltEs12(EQ, EQ) -> True 32.13/13.21 new_esEs30(xuu22, xuu17, app(ty_Maybe, ddh)) -> new_esEs6(xuu22, xuu17, ddh) 32.13/13.21 new_esEs24(xuu33001, xuu34001, ty_Float) -> new_esEs11(xuu33001, xuu34001) 32.13/13.21 new_compare30(xuu33000, xuu34000, ty_Int) -> new_compare12(xuu33000, xuu34000) 32.13/13.21 new_esEs23(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.13/13.21 new_esEs12(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) 32.13/13.21 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Double, eg) -> new_esEs14(xuu3110000, xuu6000) 32.13/13.21 new_esEs20(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.13/13.21 new_compare30(xuu33000, xuu34000, ty_Integer) -> new_compare7(xuu33000, xuu34000) 32.13/13.21 new_compare23(Nothing, Nothing, False, dc) -> LT 32.13/13.21 new_esEs18(xuu3110002, xuu6002, ty_@0) -> new_esEs9(xuu3110002, xuu6002) 32.13/13.21 new_esEs19(xuu3110001, xuu6001, app(app(ty_@2, bbc), bbd)) -> new_esEs7(xuu3110001, xuu6001, bbc, bbd) 32.13/13.21 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.13/13.21 new_primPlusNat0(xuu107, xuu600100) -> new_primPlusNat1(xuu107, Succ(xuu600100)) 32.13/13.21 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.13/13.21 new_ltEs6(Right(xuu33000), Left(xuu34000), dd, de) -> False 32.13/13.21 new_not(False) -> True 32.13/13.21 new_esEs21(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) 32.13/13.21 new_esEs21(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) 32.13/13.21 new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_@2, dbb), dbc), de) -> new_ltEs14(xuu33000, xuu34000, dbb, dbc) 32.13/13.21 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_Maybe, dcc)) -> new_ltEs13(xuu33000, xuu34000, dcc) 32.13/13.21 new_ltEs5(xuu3300, xuu3400, ty_Int) -> new_ltEs7(xuu3300, xuu3400) 32.13/13.21 new_compare28(xuu33000, xuu34000, cbb, cbc, cbd) -> new_compare26(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, cbb, cbc, cbd), cbb, cbc, cbd) 32.13/13.21 new_ltEs8(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), df, dg, dh) -> new_pePe(new_lt10(xuu33000, xuu34000, df), new_asAs(new_esEs25(xuu33000, xuu34000, df), new_pePe(new_lt9(xuu33001, xuu34001, dg), new_asAs(new_esEs24(xuu33001, xuu34001, dg), new_ltEs19(xuu33002, xuu34002, dh))))) 32.13/13.21 new_compare30(xuu33000, xuu34000, ty_Bool) -> new_compare9(xuu33000, xuu34000) 32.13/13.21 new_compare0(:(xuu33000, xuu33001), [], bf) -> GT 32.13/13.21 new_esEs8(LT, GT) -> False 32.13/13.21 new_esEs8(GT, LT) -> False 32.13/13.21 new_esEs29(xuu311000, xuu600, app(ty_Ratio, dea)) -> new_esEs15(xuu311000, xuu600, dea) 32.13/13.21 new_esEs19(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) 32.13/13.21 new_esEs25(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) 32.13/13.21 new_compare25(xuu33000, xuu34000, True) -> EQ 32.13/13.21 new_compare27(xuu33000, xuu34000, True, bd, be) -> EQ 32.13/13.21 new_esEs29(xuu311000, xuu600, app(app(ty_@2, bfa), bfb)) -> new_esEs7(xuu311000, xuu600, bfa, bfb) 32.13/13.21 new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.13/13.21 new_esEs18(xuu3110002, xuu6002, app(ty_Maybe, bbb)) -> new_esEs6(xuu3110002, xuu6002, bbb) 32.13/13.21 new_ltEs16(False, False) -> True 32.13/13.21 new_compare11(xuu33000, xuu34000, True, ee, ef) -> LT 32.13/13.21 new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Ratio, beh)) -> new_ltEs15(xuu33000, xuu34000, beh) 32.13/13.21 new_ltEs19(xuu33002, xuu34002, ty_Int) -> new_ltEs7(xuu33002, xuu34002) 32.13/13.21 new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.13/13.21 new_esEs29(xuu311000, xuu600, app(ty_Maybe, bg)) -> new_esEs6(xuu311000, xuu600, bg) 32.13/13.21 new_lt10(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) 32.13/13.21 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 32.13/13.21 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 32.13/13.21 new_primPlusNat1(Zero, Zero) -> Zero 32.13/13.21 new_lt20(xuu33000, xuu34000, app(app(ty_@2, cgf), cgg)) -> new_lt4(xuu33000, xuu34000, cgf, cgg) 32.13/13.21 new_lt9(xuu33001, xuu34001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt11(xuu33001, xuu34001, cdb, cdc, cdd) 32.13/13.21 new_ltEs11(xuu3300, xuu3400) -> new_fsEs(new_compare18(xuu3300, xuu3400)) 32.13/13.21 new_lt19(xuu33000, xuu34000) -> new_esEs8(new_compare32(xuu33000, xuu34000), LT) 32.13/13.21 new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.13/13.21 new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.13/13.21 new_ltEs20(xuu33001, xuu34001, ty_Int) -> new_ltEs7(xuu33001, xuu34001) 32.13/13.21 new_lt20(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) 32.13/13.21 new_esEs28(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.13/13.21 new_lt10(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) 32.13/13.21 new_esEs21(xuu3110001, xuu6001, app(ty_[], bgc)) -> new_esEs16(xuu3110001, xuu6001, bgc) 32.13/13.21 new_ltEs16(True, True) -> True 32.13/13.21 new_lt13(xuu33000, xuu34000) -> new_esEs8(new_compare7(xuu33000, xuu34000), LT) 32.13/13.21 new_esEs20(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.13/13.21 new_esEs26(xuu33000, xuu34000, app(app(ty_Either, cfg), cfh)) -> new_esEs4(xuu33000, xuu34000, cfg, cfh) 32.13/13.21 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Bool, de) -> new_ltEs16(xuu33000, xuu34000) 32.13/13.21 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 32.13/13.21 new_ltEs5(xuu3300, xuu3400, app(ty_Ratio, ed)) -> new_ltEs15(xuu3300, xuu3400, ed) 32.13/13.21 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.13/13.21 new_esEs25(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) 32.13/13.21 new_primMulNat0(Succ(xuu311000000), Succ(xuu600100)) -> new_primPlusNat0(new_primMulNat0(xuu311000000, Succ(xuu600100)), xuu600100) 32.13/13.21 new_ltEs12(EQ, LT) -> False 32.13/13.21 new_ltEs5(xuu3300, xuu3400, app(ty_[], bf)) -> new_ltEs4(xuu3300, xuu3400, bf) 32.13/13.21 new_lt6(xuu330, xuu340) -> new_esEs8(new_compare12(xuu330, xuu340), LT) 32.13/13.21 new_lt7(xuu33000, xuu34000) -> new_esEs8(new_compare13(xuu33000, xuu34000), LT) 32.13/13.21 new_primCmpNat0(Succ(xuu3300), Succ(xuu3400)) -> new_primCmpNat0(xuu3300, xuu3400) 32.13/13.21 new_ltEs19(xuu33002, xuu34002, app(ty_Ratio, ccg)) -> new_ltEs15(xuu33002, xuu34002, ccg) 32.13/13.21 new_esEs26(xuu33000, xuu34000, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs5(xuu33000, xuu34000, cga, cgb, cgc) 32.13/13.21 new_esEs30(xuu22, xuu17, ty_Char) -> new_esEs10(xuu22, xuu17) 32.13/13.21 new_esEs21(xuu3110001, xuu6001, app(app(ty_@2, bfc), bfd)) -> new_esEs7(xuu3110001, xuu6001, bfc, bfd) 32.13/13.21 new_esEs26(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) 32.13/13.21 new_esEs18(xuu3110002, xuu6002, ty_Char) -> new_esEs10(xuu3110002, xuu6002) 32.13/13.21 new_esEs24(xuu33001, xuu34001, ty_Integer) -> new_esEs17(xuu33001, xuu34001) 32.13/13.21 new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_[], da)) -> new_esEs16(xuu3110000, xuu6000, da) 32.13/13.21 new_compare12(xuu33, xuu34) -> new_primCmpInt(xuu33, xuu34) 32.13/13.21 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(app(ty_@3, dbg), dbh), dca)) -> new_ltEs8(xuu33000, xuu34000, dbg, dbh, dca) 32.13/13.21 new_esEs19(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) 32.13/13.21 new_esEs16(:(xuu3110000, xuu3110001), [], bhg) -> False 32.13/13.21 new_esEs16([], :(xuu6000, xuu6001), bhg) -> False 32.13/13.21 new_esEs23(xuu3110000, xuu6000, app(ty_[], cah)) -> new_esEs16(xuu3110000, xuu6000, cah) 32.13/13.21 new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, fb), fc), fd), eg) -> new_esEs5(xuu3110000, xuu6000, fb, fc, fd) 32.13/13.21 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 32.13/13.21 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 32.13/13.21 new_ltEs12(LT, EQ) -> True 32.13/13.21 new_ltEs20(xuu33001, xuu34001, app(ty_[], cfb)) -> new_ltEs4(xuu33001, xuu34001, cfb) 32.13/13.21 new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.13/13.21 new_compare30(xuu33000, xuu34000, app(app(ty_Either, cha), chb)) -> new_compare8(xuu33000, xuu34000, cha, chb) 32.13/13.21 new_ltEs20(xuu33001, xuu34001, app(ty_Ratio, cff)) -> new_ltEs15(xuu33001, xuu34001, cff) 32.13/13.21 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Float, de) -> new_ltEs11(xuu33000, xuu34000) 32.13/13.21 new_ltEs9(xuu3300, xuu3400) -> new_fsEs(new_compare19(xuu3300, xuu3400)) 32.13/13.21 new_esEs27(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) 32.13/13.21 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_@0) -> new_ltEs18(xuu33000, xuu34000) 32.13/13.21 new_primEqNat0(Zero, Zero) -> True 32.13/13.21 new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, gb), eg) -> new_esEs6(xuu3110000, xuu6000, gb) 32.13/13.21 new_esEs20(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.13/13.21 new_esEs29(xuu311000, xuu600, ty_Ordering) -> new_esEs8(xuu311000, xuu600) 32.13/13.21 new_lt20(xuu33000, xuu34000, app(app(ty_Either, cfg), cfh)) -> new_lt5(xuu33000, xuu34000, cfg, cfh) 32.13/13.21 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Float, eg) -> new_esEs11(xuu3110000, xuu6000) 32.13/13.21 new_lt10(xuu33000, xuu34000, app(app(ty_@2, bd), be)) -> new_lt4(xuu33000, xuu34000, bd, be) 32.13/13.21 new_esEs22(xuu3110000, xuu6000, app(ty_[], bhe)) -> new_esEs16(xuu3110000, xuu6000, bhe) 32.13/13.21 new_asAs(False, xuu139) -> False 32.13/13.21 new_ltEs19(xuu33002, xuu34002, app(ty_[], ccc)) -> new_ltEs4(xuu33002, xuu34002, ccc) 32.13/13.21 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.13/13.21 new_compare30(xuu33000, xuu34000, ty_Ordering) -> new_compare31(xuu33000, xuu34000) 32.13/13.21 new_lt20(xuu33000, xuu34000, app(ty_Maybe, cge)) -> new_lt17(xuu33000, xuu34000, cge) 32.13/13.21 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Double, de) -> new_ltEs9(xuu33000, xuu34000) 32.13/13.21 new_lt20(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) 32.13/13.21 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) 32.13/13.21 new_ltEs13(Nothing, Just(xuu34000), ea) -> True 32.13/13.21 new_esEs23(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.13/13.21 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_[], hd)) -> new_esEs16(xuu3110000, xuu6000, hd) 32.13/13.21 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Char, de) -> new_ltEs17(xuu33000, xuu34000) 32.13/13.21 new_ltEs6(Left(xuu33000), Right(xuu34000), dd, de) -> True 32.13/13.21 new_esEs8(EQ, GT) -> False 32.13/13.21 new_esEs8(GT, EQ) -> False 32.13/13.21 new_esEs11(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 32.13/13.21 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Integer) -> new_ltEs10(xuu33000, xuu34000) 32.13/13.21 new_ltEs16(False, True) -> True 32.13/13.21 new_lt10(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) 32.13/13.21 new_esEs29(xuu311000, xuu600, ty_Char) -> new_esEs10(xuu311000, xuu600) 32.13/13.21 new_esEs21(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) 32.13/13.21 new_esEs20(xuu3110000, xuu6000, app(app(ty_@2, bce), bcf)) -> new_esEs7(xuu3110000, xuu6000, bce, bcf) 32.13/13.21 32.13/13.21 The set Q consists of the following terms: 32.13/13.21 32.13/13.21 new_lt10(x0, x1, app(ty_[], x2)) 32.13/13.21 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.21 new_esEs8(EQ, EQ) 32.13/13.21 new_esEs6(Just(x0), Just(x1), ty_Double) 32.13/13.21 new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 32.13/13.21 new_esEs4(Left(x0), Left(x1), ty_Double, x2) 32.13/13.21 new_esEs19(x0, x1, app(ty_[], x2)) 32.13/13.21 new_ltEs13(Nothing, Just(x0), x1) 32.13/13.21 new_lt9(x0, x1, ty_Bool) 32.13/13.21 new_lt10(x0, x1, ty_@0) 32.13/13.21 new_esEs29(x0, x1, ty_@0) 32.13/13.21 new_ltEs20(x0, x1, ty_Int) 32.13/13.21 new_esEs30(x0, x1, ty_Bool) 32.13/13.21 new_lt20(x0, x1, ty_Integer) 32.13/13.21 new_ltEs11(x0, x1) 32.13/13.21 new_lt5(x0, x1, x2, x3) 32.13/13.21 new_ltEs7(x0, x1) 32.13/13.21 new_esEs26(x0, x1, app(ty_Maybe, x2)) 32.13/13.21 new_esEs24(x0, x1, ty_Float) 32.13/13.21 new_ltEs19(x0, x1, app(ty_[], x2)) 32.13/13.21 new_esEs6(Just(x0), Just(x1), ty_Ordering) 32.13/13.21 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 32.13/13.21 new_esEs6(Just(x0), Nothing, x1) 32.13/13.21 new_compare0(:(x0, x1), [], x2) 32.13/13.21 new_primPlusNat1(Zero, Zero) 32.13/13.21 new_pePe(True, x0) 32.13/13.21 new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) 32.13/13.21 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 32.13/13.21 new_esEs29(x0, x1, ty_Bool) 32.13/13.21 new_esEs6(Nothing, Nothing, x0) 32.13/13.21 new_ltEs20(x0, x1, ty_Char) 32.13/13.21 new_lt10(x0, x1, ty_Bool) 32.13/13.21 new_ltEs9(x0, x1) 32.13/13.21 new_lt9(x0, x1, ty_Integer) 32.13/13.21 new_ltEs19(x0, x1, ty_Double) 32.13/13.21 new_esEs12(x0, x1) 32.13/13.21 new_primEqInt(Pos(Zero), Pos(Zero)) 32.13/13.21 new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) 32.13/13.21 new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_lt13(x0, x1) 32.13/13.21 new_lt7(x0, x1) 32.13/13.21 new_esEs4(Left(x0), Left(x1), ty_Int, x2) 32.13/13.21 new_esEs26(x0, x1, ty_Double) 32.13/13.21 new_ltEs5(x0, x1, app(ty_Ratio, x2)) 32.13/13.21 new_fsEs(x0) 32.13/13.21 new_lt9(x0, x1, ty_@0) 32.13/13.21 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 32.13/13.21 new_lt9(x0, x1, app(ty_Ratio, x2)) 32.13/13.21 new_esEs16([], :(x0, x1), x2) 32.13/13.21 new_primEqNat0(Zero, Succ(x0)) 32.13/13.21 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 32.13/13.21 new_lt10(x0, x1, ty_Char) 32.13/13.21 new_primEqInt(Neg(Zero), Neg(Zero)) 32.13/13.21 new_compare16(x0, x1, True, x2, x3) 32.13/13.21 new_ltEs20(x0, x1, app(ty_[], x2)) 32.13/13.21 new_esEs23(x0, x1, ty_Bool) 32.13/13.21 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_esEs6(Just(x0), Just(x1), ty_Char) 32.13/13.21 new_esEs4(Left(x0), Left(x1), ty_Char, x2) 32.13/13.21 new_esEs29(x0, x1, ty_Char) 32.13/13.21 new_ltEs16(False, False) 32.13/13.21 new_esEs20(x0, x1, app(ty_Ratio, x2)) 32.13/13.21 new_ltEs19(x0, x1, ty_Int) 32.13/13.21 new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) 32.13/13.21 new_compare30(x0, x1, ty_Double) 32.13/13.21 new_lt19(x0, x1) 32.13/13.21 new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) 32.13/13.21 new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 32.13/13.21 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 32.13/13.21 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 32.13/13.21 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_ltEs12(GT, EQ) 32.13/13.21 new_compare29(x0, x1, x2) 32.13/13.21 new_ltEs12(EQ, GT) 32.13/13.21 new_esEs19(x0, x1, app(ty_Ratio, x2)) 32.13/13.21 new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 32.13/13.21 new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) 32.13/13.21 new_ltEs13(Just(x0), Nothing, x1) 32.13/13.21 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.21 new_esEs30(x0, x1, ty_Integer) 32.13/13.21 new_compare6(x0, x1, x2, x3) 32.13/13.21 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.21 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 32.13/13.21 new_primEqInt(Pos(Zero), Neg(Zero)) 32.13/13.21 new_primEqInt(Neg(Zero), Pos(Zero)) 32.13/13.21 new_compare14(x0, x1, True, x2, x3, x4) 32.13/13.21 new_ltEs20(x0, x1, ty_Ordering) 32.13/13.21 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 32.13/13.21 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 32.13/13.21 new_compare0([], :(x0, x1), x2) 32.13/13.21 new_compare16(x0, x1, False, x2, x3) 32.13/13.21 new_esEs19(x0, x1, ty_Float) 32.13/13.21 new_primCompAux0(x0, GT) 32.13/13.21 new_esEs29(x0, x1, ty_Int) 32.13/13.21 new_esEs20(x0, x1, app(ty_[], x2)) 32.13/13.21 new_compare210(x0, x1, False) 32.13/13.21 new_esEs18(x0, x1, app(ty_[], x2)) 32.13/13.21 new_esEs23(x0, x1, ty_Ordering) 32.13/13.21 new_pePe(False, x0) 32.13/13.21 new_esEs6(Just(x0), Just(x1), ty_Int) 32.13/13.21 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.21 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 32.13/13.21 new_lt20(x0, x1, app(ty_[], x2)) 32.13/13.21 new_lt20(x0, x1, app(ty_Ratio, x2)) 32.13/13.21 new_ltEs6(Left(x0), Left(x1), ty_Float, x2) 32.13/13.21 new_esEs25(x0, x1, ty_Integer) 32.13/13.21 new_esEs10(Char(x0), Char(x1)) 32.13/13.21 new_esEs23(x0, x1, ty_Integer) 32.13/13.21 new_esEs25(x0, x1, app(ty_[], x2)) 32.13/13.21 new_compare13(Char(x0), Char(x1)) 32.13/13.21 new_esEs30(x0, x1, app(ty_Maybe, x2)) 32.13/13.21 new_primEqNat0(Succ(x0), Succ(x1)) 32.13/13.21 new_primMulInt(Neg(x0), Neg(x1)) 32.13/13.21 new_compare30(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.21 new_ltEs13(Just(x0), Just(x1), ty_Float) 32.13/13.21 new_ltEs5(x0, x1, ty_Double) 32.13/13.21 new_esEs30(x0, x1, ty_Ordering) 32.13/13.21 new_esEs6(Just(x0), Just(x1), ty_@0) 32.13/13.21 new_esEs9(@0, @0) 32.13/13.21 new_esEs24(x0, x1, ty_Bool) 32.13/13.21 new_esEs4(Right(x0), Right(x1), x2, ty_Integer) 32.13/13.21 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.21 new_lt9(x0, x1, ty_Double) 32.13/13.21 new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 32.13/13.21 new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 32.13/13.21 new_esEs14(Double(x0, x1), Double(x2, x3)) 32.13/13.21 new_esEs4(Left(x0), Left(x1), ty_Bool, x2) 32.13/13.21 new_esEs6(Just(x0), Just(x1), ty_Bool) 32.13/13.21 new_esEs29(x0, x1, ty_Ordering) 32.13/13.21 new_lt10(x0, x1, ty_Float) 32.13/13.21 new_lt6(x0, x1) 32.13/13.21 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.21 new_ltEs5(x0, x1, ty_Ordering) 32.13/13.21 new_esEs30(x0, x1, ty_Double) 32.13/13.21 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.21 new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 32.13/13.21 new_ltEs19(x0, x1, ty_Char) 32.13/13.21 new_ltEs13(Just(x0), Just(x1), ty_Int) 32.13/13.21 new_esEs21(x0, x1, ty_Double) 32.13/13.21 new_lt10(x0, x1, ty_Ordering) 32.13/13.21 new_primPlusNat0(x0, x1) 32.13/13.21 new_compare23(Just(x0), Nothing, False, x1) 32.13/13.21 new_esEs26(x0, x1, ty_@0) 32.13/13.21 new_esEs23(x0, x1, ty_Double) 32.13/13.21 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 32.13/13.21 new_compare30(x0, x1, ty_Ordering) 32.13/13.21 new_compare23(x0, x1, True, x2) 32.13/13.21 new_primMulNat0(Succ(x0), Succ(x1)) 32.13/13.21 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) 32.13/13.21 new_primPlusNat1(Zero, Succ(x0)) 32.13/13.21 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.21 new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 32.13/13.21 new_lt10(x0, x1, ty_Int) 32.13/13.21 new_compare25(x0, x1, True) 32.13/13.21 new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) 32.13/13.21 new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 32.13/13.21 new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 32.13/13.21 new_lt9(x0, x1, app(ty_[], x2)) 32.13/13.21 new_esEs8(GT, GT) 32.13/13.21 new_ltEs19(x0, x1, ty_Bool) 32.13/13.21 new_esEs28(x0, x1, ty_Integer) 32.13/13.21 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 32.13/13.21 new_ltEs16(True, False) 32.13/13.21 new_ltEs16(False, True) 32.13/13.21 new_ltEs12(EQ, LT) 32.13/13.21 new_ltEs12(LT, EQ) 32.13/13.21 new_esEs18(x0, x1, ty_Integer) 32.13/13.21 new_esEs8(LT, EQ) 32.13/13.21 new_esEs8(EQ, LT) 32.13/13.21 new_ltEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 32.13/13.21 new_esEs18(x0, x1, ty_Float) 32.13/13.21 new_ltEs12(GT, GT) 32.13/13.21 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.21 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_compare30(x0, x1, ty_@0) 32.13/13.21 new_primCmpInt(Neg(Zero), Neg(Zero)) 32.13/13.21 new_esEs22(x0, x1, ty_Integer) 32.13/13.21 new_lt20(x0, x1, ty_@0) 32.13/13.21 new_esEs13(False, True) 32.13/13.21 new_esEs13(True, False) 32.13/13.21 new_esEs23(x0, x1, app(ty_Ratio, x2)) 32.13/13.21 new_lt10(x0, x1, ty_Integer) 32.13/13.21 new_esEs11(Float(x0, x1), Float(x2, x3)) 32.13/13.21 new_esEs24(x0, x1, app(ty_Ratio, x2)) 32.13/13.21 new_esEs8(LT, LT) 32.13/13.21 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 32.13/13.21 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.21 new_primCmpInt(Pos(Zero), Neg(Zero)) 32.13/13.21 new_primCmpInt(Neg(Zero), Pos(Zero)) 32.13/13.21 new_primMulInt(Pos(x0), Neg(x1)) 32.13/13.21 new_primMulInt(Neg(x0), Pos(x1)) 32.13/13.21 new_esEs20(x0, x1, ty_Char) 32.13/13.21 new_compare110(x0, x1, True) 32.13/13.21 new_ltEs6(Right(x0), Left(x1), x2, x3) 32.13/13.21 new_ltEs6(Left(x0), Right(x1), x2, x3) 32.13/13.21 new_primCompAux1(x0, x1, x2, x3) 32.13/13.21 new_esEs6(Just(x0), Just(x1), ty_Integer) 32.13/13.21 new_esEs18(x0, x1, ty_Int) 32.13/13.21 new_lt15(x0, x1) 32.13/13.21 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 32.13/13.21 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.21 new_compare23(Nothing, Nothing, False, x0) 32.13/13.21 new_esEs29(x0, x1, ty_Integer) 32.13/13.21 new_esEs24(x0, x1, app(ty_Maybe, x2)) 32.13/13.21 new_esEs16([], [], x0) 32.13/13.21 new_esEs4(Right(x0), Right(x1), x2, ty_@0) 32.13/13.21 new_primMulInt(Pos(x0), Pos(x1)) 32.13/13.21 new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 32.13/13.21 new_compare27(x0, x1, True, x2, x3) 32.13/13.21 new_esEs20(x0, x1, ty_Int) 32.13/13.21 new_ltEs20(x0, x1, ty_Double) 32.13/13.21 new_compare210(x0, x1, True) 32.13/13.21 new_compare10(x0, x1, False, x2) 32.13/13.21 new_esEs22(x0, x1, ty_Ordering) 32.13/13.21 new_esEs25(x0, x1, ty_@0) 32.13/13.21 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.21 new_esEs18(x0, x1, ty_Char) 32.13/13.21 new_ltEs12(LT, LT) 32.13/13.21 new_asAs(True, x0) 32.13/13.21 new_esEs29(x0, x1, app(ty_Ratio, x2)) 32.13/13.21 new_esEs23(x0, x1, app(ty_[], x2)) 32.13/13.21 new_ltEs6(Right(x0), Right(x1), x2, ty_Double) 32.13/13.21 new_ltEs6(Right(x0), Right(x1), x2, ty_@0) 32.13/13.21 new_compare24(x0, x1, False, x2, x3) 32.13/13.21 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_lt17(x0, x1, x2) 32.13/13.21 new_ltEs19(x0, x1, ty_Ordering) 32.13/13.21 new_ltEs5(x0, x1, app(ty_[], x2)) 32.13/13.21 new_esEs18(x0, x1, ty_Bool) 32.13/13.21 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.21 new_ltEs19(x0, x1, ty_Integer) 32.13/13.21 new_esEs23(x0, x1, ty_@0) 32.13/13.21 new_esEs20(x0, x1, ty_Float) 32.13/13.21 new_ltEs17(x0, x1) 32.13/13.21 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_primCmpNat0(Succ(x0), Succ(x1)) 32.13/13.21 new_compare30(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.21 new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_lt20(x0, x1, ty_Double) 32.13/13.21 new_compare26(x0, x1, True, x2, x3, x4) 32.13/13.21 new_esEs30(x0, x1, ty_@0) 32.13/13.21 new_ltEs20(x0, x1, ty_@0) 32.13/13.21 new_primMulNat0(Succ(x0), Zero) 32.13/13.21 new_primCmpNat0(Zero, Succ(x0)) 32.13/13.21 new_esEs16(:(x0, x1), :(x2, x3), x4) 32.13/13.21 new_compare0(:(x0, x1), :(x2, x3), x4) 32.13/13.21 new_ltEs15(x0, x1, x2) 32.13/13.21 new_esEs19(x0, x1, ty_Int) 32.13/13.21 new_lt9(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.21 new_compare30(x0, x1, app(ty_[], x2)) 32.13/13.21 new_ltEs10(x0, x1) 32.13/13.21 new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 32.13/13.21 new_esEs24(x0, x1, app(ty_[], x2)) 32.13/13.21 new_esEs20(x0, x1, ty_@0) 32.13/13.21 new_primCompAux0(x0, LT) 32.13/13.21 new_esEs6(Just(x0), Just(x1), ty_Float) 32.13/13.21 new_ltEs5(x0, x1, ty_Bool) 32.13/13.21 new_esEs4(Left(x0), Left(x1), ty_Float, x2) 32.13/13.21 new_compare7(Integer(x0), Integer(x1)) 32.13/13.21 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.21 new_ltEs13(Just(x0), Just(x1), ty_Bool) 32.13/13.21 new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_primMulNat0(Zero, Zero) 32.13/13.21 new_esEs22(x0, x1, ty_@0) 32.13/13.21 new_compare30(x0, x1, ty_Integer) 32.13/13.21 new_ltEs6(Left(x0), Left(x1), ty_Char, x2) 32.13/13.21 new_esEs4(Right(x0), Right(x1), x2, ty_Int) 32.13/13.21 new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.21 new_ltEs6(Left(x0), Left(x1), ty_Int, x2) 32.13/13.21 new_esEs17(Integer(x0), Integer(x1)) 32.13/13.21 new_ltEs5(x0, x1, ty_@0) 32.13/13.21 new_esEs19(x0, x1, ty_Ordering) 32.13/13.21 new_lt20(x0, x1, app(ty_Maybe, x2)) 32.13/13.21 new_lt12(x0, x1) 32.13/13.21 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 32.13/13.21 new_esEs24(x0, x1, ty_Double) 32.13/13.21 new_esEs18(x0, x1, ty_@0) 32.13/13.21 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_compare11(x0, x1, False, x2, x3) 32.13/13.21 new_lt9(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.21 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 32.13/13.21 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 32.13/13.21 new_compare10(x0, x1, True, x2) 32.13/13.21 new_esEs28(x0, x1, ty_Int) 32.13/13.21 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.21 new_esEs19(x0, x1, ty_Double) 32.13/13.21 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 32.13/13.21 new_esEs25(x0, x1, ty_Double) 32.13/13.21 new_esEs24(x0, x1, ty_Int) 32.13/13.21 new_lt4(x0, x1, x2, x3) 32.13/13.21 new_esEs21(x0, x1, ty_Bool) 32.13/13.21 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_esEs20(x0, x1, ty_Bool) 32.13/13.21 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 32.13/13.21 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.21 new_compare23(Just(x0), Just(x1), False, x2) 32.13/13.21 new_esEs19(x0, x1, ty_Char) 32.13/13.21 new_esEs4(Right(x0), Right(x1), x2, ty_Char) 32.13/13.21 new_esEs4(Right(x0), Right(x1), x2, ty_Double) 32.13/13.21 new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 32.13/13.21 new_ltEs13(Just(x0), Just(x1), ty_@0) 32.13/13.21 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.21 new_esEs24(x0, x1, ty_Ordering) 32.13/13.21 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_compare14(x0, x1, False, x2, x3, x4) 32.13/13.21 new_esEs30(x0, x1, app(ty_Ratio, x2)) 32.13/13.21 new_esEs29(x0, x1, app(ty_[], x2)) 32.13/13.21 new_esEs22(x0, x1, app(ty_Maybe, x2)) 32.13/13.21 new_lt11(x0, x1, x2, x3, x4) 32.13/13.21 new_not(True) 32.13/13.21 new_ltEs5(x0, x1, app(ty_Maybe, x2)) 32.13/13.21 new_compare17(x0, x1, False) 32.13/13.21 new_compare30(x0, x1, app(ty_Ratio, x2)) 32.13/13.21 new_esEs19(x0, x1, app(ty_Maybe, x2)) 32.13/13.21 new_ltEs13(Just(x0), Just(x1), ty_Char) 32.13/13.21 new_esEs23(x0, x1, app(ty_Maybe, x2)) 32.13/13.21 new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 32.13/13.21 new_esEs26(x0, x1, app(ty_[], x2)) 32.13/13.21 new_compare17(x0, x1, True) 32.13/13.21 new_ltEs6(Left(x0), Left(x1), ty_@0, x2) 32.13/13.21 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.21 new_esEs8(EQ, GT) 32.13/13.21 new_esEs8(GT, EQ) 32.13/13.21 new_esEs18(x0, x1, ty_Ordering) 32.13/13.21 new_esEs18(x0, x1, app(ty_Ratio, x2)) 32.13/13.21 new_esEs22(x0, x1, ty_Int) 32.13/13.21 new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 32.13/13.21 new_esEs24(x0, x1, ty_Char) 32.13/13.21 new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 32.13/13.21 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.21 new_ltEs6(Left(x0), Left(x1), ty_Double, x2) 32.13/13.21 new_esEs4(Left(x0), Left(x1), ty_Integer, x2) 32.13/13.21 new_lt9(x0, x1, app(ty_Maybe, x2)) 32.13/13.21 new_lt20(x0, x1, ty_Ordering) 32.13/13.21 new_esEs19(x0, x1, ty_@0) 32.13/13.21 new_ltEs13(Just(x0), Just(x1), ty_Integer) 32.13/13.21 new_esEs6(Nothing, Just(x0), x1) 32.13/13.21 new_esEs26(x0, x1, app(ty_Ratio, x2)) 32.13/13.21 new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_compare110(x0, x1, False) 32.13/13.21 new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) 32.13/13.21 new_esEs13(True, True) 32.13/13.21 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.21 new_esEs21(x0, x1, ty_@0) 32.13/13.21 new_ltEs18(x0, x1) 32.13/13.21 new_compare12(x0, x1) 32.13/13.21 new_compare30(x0, x1, ty_Bool) 32.13/13.21 new_esEs26(x0, x1, ty_Float) 32.13/13.21 new_compare27(x0, x1, False, x2, x3) 32.13/13.21 new_ltEs13(Nothing, Nothing, x0) 32.13/13.21 new_primPlusNat1(Succ(x0), Succ(x1)) 32.13/13.21 new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) 32.13/13.21 new_esEs22(x0, x1, ty_Bool) 32.13/13.21 new_ltEs19(x0, x1, ty_@0) 32.13/13.21 new_esEs21(x0, x1, ty_Float) 32.13/13.21 new_esEs21(x0, x1, app(ty_[], x2)) 32.13/13.21 new_compare11(x0, x1, True, x2, x3) 32.13/13.21 new_primEqNat0(Succ(x0), Zero) 32.13/13.21 new_primCompAux0(x0, EQ) 32.13/13.21 new_lt10(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.21 new_lt14(x0, x1) 32.13/13.21 new_ltEs19(x0, x1, ty_Float) 32.13/13.21 new_ltEs12(EQ, EQ) 32.13/13.21 new_compare28(x0, x1, x2, x3, x4) 32.13/13.21 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 32.13/13.21 new_esEs27(x0, x1, ty_Int) 32.13/13.21 new_lt8(x0, x1, x2) 32.13/13.21 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.21 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 32.13/13.21 new_esEs22(x0, x1, ty_Char) 32.13/13.21 new_compare25(x0, x1, False) 32.13/13.21 new_esEs21(x0, x1, app(ty_Ratio, x2)) 32.13/13.21 new_ltEs5(x0, x1, ty_Integer) 32.13/13.21 new_esEs25(x0, x1, ty_Ordering) 32.13/13.21 new_esEs4(Left(x0), Right(x1), x2, x3) 32.13/13.21 new_esEs4(Right(x0), Left(x1), x2, x3) 32.13/13.21 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 32.13/13.21 new_esEs20(x0, x1, ty_Integer) 32.13/13.21 new_esEs22(x0, x1, ty_Double) 32.13/13.21 new_lt10(x0, x1, app(ty_Ratio, x2)) 32.13/13.21 new_primCmpInt(Pos(Zero), Pos(Zero)) 32.13/13.21 new_lt10(x0, x1, app(ty_Maybe, x2)) 32.13/13.21 new_compare0([], [], x0) 32.13/13.21 new_ltEs20(x0, x1, ty_Integer) 32.13/13.21 new_esEs29(x0, x1, ty_Double) 32.13/13.21 new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 32.13/13.21 new_lt9(x0, x1, ty_Ordering) 32.13/13.21 new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 32.13/13.21 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 32.13/13.21 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 32.13/13.21 new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) 32.13/13.21 new_ltEs5(x0, x1, ty_Float) 32.13/13.21 new_ltEs13(Just(x0), Just(x1), ty_Double) 32.13/13.21 new_esEs22(x0, x1, app(ty_[], x2)) 32.13/13.21 new_compare30(x0, x1, ty_Char) 32.13/13.21 new_esEs4(Left(x0), Left(x1), ty_@0, x2) 32.13/13.21 new_esEs19(x0, x1, ty_Integer) 32.13/13.21 new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 32.13/13.21 new_esEs29(x0, x1, ty_Float) 32.13/13.21 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.21 new_esEs20(x0, x1, ty_Double) 32.13/13.21 new_sr(x0, x1) 32.13/13.21 new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 32.13/13.21 new_esEs30(x0, x1, ty_Float) 32.13/13.21 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 32.13/13.21 new_compare24(x0, x1, True, x2, x3) 32.13/13.21 new_esEs30(x0, x1, app(ty_[], x2)) 32.13/13.21 new_esEs21(x0, x1, ty_Ordering) 32.13/13.21 new_compare9(x0, x1) 32.13/13.21 new_esEs20(x0, x1, ty_Ordering) 32.13/13.21 new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 32.13/13.21 new_esEs21(x0, x1, ty_Int) 32.13/13.21 new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.21 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.21 new_lt9(x0, x1, ty_Float) 32.13/13.21 new_esEs29(x0, x1, app(ty_Maybe, x2)) 32.13/13.21 new_esEs8(LT, GT) 32.13/13.21 new_esEs8(GT, LT) 32.13/13.21 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 32.13/13.21 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.21 new_esEs19(x0, x1, ty_Bool) 32.13/13.21 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 32.13/13.21 new_esEs25(x0, x1, ty_Char) 32.13/13.21 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 32.13/13.21 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 32.13/13.21 new_ltEs5(x0, x1, ty_Int) 32.13/13.21 new_ltEs20(x0, x1, ty_Bool) 32.13/13.21 new_compare26(x0, x1, False, x2, x3, x4) 32.13/13.21 new_esEs21(x0, x1, ty_Char) 32.13/13.21 new_esEs22(x0, x1, ty_Float) 32.13/13.21 new_esEs26(x0, x1, ty_Char) 32.13/13.21 new_esEs24(x0, x1, ty_Integer) 32.13/13.21 new_esEs4(Right(x0), Right(x1), x2, ty_Bool) 32.13/13.21 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_lt9(x0, x1, ty_Char) 32.13/13.21 new_lt10(x0, x1, ty_Double) 32.13/13.21 new_esEs24(x0, x1, ty_@0) 32.13/13.21 new_compare23(Nothing, Just(x0), False, x1) 32.13/13.21 new_esEs26(x0, x1, ty_Int) 32.13/13.21 new_compare30(x0, x1, ty_Int) 32.13/13.21 new_compare8(x0, x1, x2, x3) 32.13/13.21 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 32.13/13.21 new_lt10(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.21 new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) 32.13/13.21 new_esEs21(x0, x1, app(ty_Maybe, x2)) 32.13/13.21 new_asAs(False, x0) 32.13/13.21 new_esEs16(:(x0, x1), [], x2) 32.13/13.21 new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 32.13/13.21 new_ltEs13(Just(x0), Just(x1), ty_Ordering) 32.13/13.21 new_esEs25(x0, x1, ty_Bool) 32.13/13.21 new_lt9(x0, x1, ty_Int) 32.13/13.21 new_lt18(x0, x1) 32.13/13.21 new_esEs23(x0, x1, ty_Int) 32.13/13.21 new_compare30(x0, x1, app(ty_Maybe, x2)) 32.13/13.21 new_primEqNat0(Zero, Zero) 32.13/13.21 new_esEs13(False, False) 32.13/13.21 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 32.13/13.21 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_primMulNat0(Zero, Succ(x0)) 32.13/13.21 new_ltEs5(x0, x1, ty_Char) 32.13/13.21 new_not(False) 32.13/13.21 new_lt20(x0, x1, ty_Float) 32.13/13.21 new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 32.13/13.21 new_esEs26(x0, x1, ty_Ordering) 32.13/13.21 new_ltEs16(True, True) 32.13/13.21 new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) 32.13/13.21 new_lt20(x0, x1, ty_Bool) 32.13/13.21 new_ltEs12(LT, GT) 32.13/13.21 new_ltEs12(GT, LT) 32.13/13.21 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.21 new_esEs25(x0, x1, ty_Int) 32.13/13.21 new_esEs30(x0, x1, ty_Char) 32.13/13.21 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 32.13/13.21 new_ltEs6(Right(x0), Right(x1), x2, ty_Float) 32.13/13.21 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 32.13/13.21 new_esEs22(x0, x1, app(ty_Ratio, x2)) 32.13/13.21 new_esEs26(x0, x1, ty_Bool) 32.13/13.21 new_esEs23(x0, x1, ty_Char) 32.13/13.21 new_esEs15(:%(x0, x1), :%(x2, x3), x4) 32.13/13.21 new_sr0(Integer(x0), Integer(x1)) 32.13/13.21 new_compare30(x0, x1, ty_Float) 32.13/13.21 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 32.13/13.21 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 32.13/13.21 new_esEs26(x0, x1, ty_Integer) 32.13/13.21 new_esEs25(x0, x1, app(ty_Ratio, x2)) 32.13/13.21 new_esEs25(x0, x1, app(ty_Maybe, x2)) 32.13/13.21 new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) 32.13/13.21 new_esEs20(x0, x1, app(ty_Maybe, x2)) 32.13/13.21 new_ltEs6(Right(x0), Right(x1), x2, ty_Char) 32.13/13.21 new_esEs23(x0, x1, ty_Float) 32.13/13.21 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 32.13/13.21 new_primPlusNat1(Succ(x0), Zero) 32.13/13.21 new_esEs30(x0, x1, ty_Int) 32.13/13.21 new_esEs18(x0, x1, app(ty_Maybe, x2)) 32.13/13.21 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 32.13/13.21 new_ltEs4(x0, x1, x2) 32.13/13.21 new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) 32.13/13.21 new_ltEs20(x0, x1, ty_Float) 32.13/13.21 new_esEs18(x0, x1, ty_Double) 32.13/13.21 new_lt20(x0, x1, ty_Int) 32.13/13.21 new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.13/13.21 new_esEs21(x0, x1, ty_Integer) 32.13/13.21 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.21 new_esEs27(x0, x1, ty_Integer) 32.13/13.21 new_primCmpNat0(Succ(x0), Zero) 32.13/13.21 new_lt16(x0, x1, x2) 32.13/13.21 new_compare31(x0, x1) 32.13/13.21 new_esEs4(Right(x0), Right(x1), x2, ty_Float) 32.13/13.21 new_esEs25(x0, x1, ty_Float) 32.13/13.21 new_ltEs6(Right(x0), Right(x1), x2, ty_Int) 32.13/13.21 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 32.13/13.21 new_compare32(@0, @0) 32.13/13.21 new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 32.13/13.21 new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 32.13/13.21 new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 32.13/13.21 new_primCmpNat0(Zero, Zero) 32.13/13.21 new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 32.13/13.21 new_lt20(x0, x1, ty_Char) 32.13/13.21 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 32.13/13.21 32.13/13.21 We have to consider all minimal (P,Q,R)-chains. 32.13/13.21 ---------------------------------------- 32.13/13.21 32.13/13.21 (28) TransformationProof (EQUIVALENT) 32.13/13.21 By rewriting [LPAR04] the rule new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(GT, LT), h, ba) at position [6] we obtained the following new rules [LPAR04]: 32.13/13.22 32.13/13.22 (new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba),new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba)) 32.13/13.22 32.13/13.22 32.13/13.22 ---------------------------------------- 32.13/13.22 32.13/13.22 (29) 32.13/13.22 Obligation: 32.13/13.22 Q DP problem: 32.13/13.22 The TRS P consists of the following rules: 32.13/13.22 32.13/13.22 new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu21, Just(xuu22), xuu23, bb, bc) 32.13/13.22 new_addToFM_C(Branch(Just(xuu600), xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Just(xuu600), new_esEs29(xuu311000, xuu600, h), h), LT), h, ba) 32.13/13.22 new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, bb, bc) -> new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs8(new_compare23(Just(xuu22), Just(xuu17), new_esEs30(xuu22, xuu17, bb), bb), GT), bb, bc) 32.13/13.22 new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu20, Just(xuu22), xuu23, bb, bc) 32.13/13.22 new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Nothing, False, h), GT), h, ba) 32.13/13.22 new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Just(xuu311000), xuu31101, h, ba) 32.13/13.22 new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) 32.13/13.22 32.13/13.22 The TRS R consists of the following rules: 32.13/13.22 32.13/13.22 new_lt20(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) 32.13/13.22 new_esEs20(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.13/13.22 new_compare30(xuu33000, xuu34000, app(app(app(ty_@3, chc), chd), che)) -> new_compare28(xuu33000, xuu34000, chc, chd, che) 32.13/13.22 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 32.13/13.22 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Float) -> new_ltEs11(xuu33000, xuu34000) 32.13/13.22 new_primCmpInt(Neg(Succ(xuu3300)), Pos(xuu340)) -> LT 32.13/13.22 new_compare8(xuu33000, xuu34000, ee, ef) -> new_compare24(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, ee, ef), ee, ef) 32.13/13.22 new_esEs23(xuu3110000, xuu6000, app(ty_Maybe, cba)) -> new_esEs6(xuu3110000, xuu6000, cba) 32.13/13.22 new_pePe(True, xuu165) -> True 32.13/13.22 new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.13/13.22 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.13/13.22 new_esEs30(xuu22, xuu17, ty_Ordering) -> new_esEs8(xuu22, xuu17) 32.13/13.22 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Float) -> new_ltEs11(xuu33000, xuu34000) 32.13/13.22 new_esEs17(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) 32.13/13.22 new_lt4(xuu33000, xuu34000, bd, be) -> new_esEs8(new_compare6(xuu33000, xuu34000, bd, be), LT) 32.13/13.22 new_esEs29(xuu311000, xuu600, ty_Int) -> new_esEs12(xuu311000, xuu600) 32.13/13.22 new_esEs30(xuu22, xuu17, ty_Bool) -> new_esEs13(xuu22, xuu17) 32.13/13.22 new_compare23(xuu330, xuu340, True, dc) -> EQ 32.13/13.22 new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Maybe, bee)) -> new_ltEs13(xuu33000, xuu34000, bee) 32.13/13.22 new_lt15(xuu33000, xuu34000) -> new_esEs8(new_compare31(xuu33000, xuu34000), LT) 32.13/13.22 new_lt10(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) 32.13/13.22 new_ltEs12(LT, LT) -> True 32.13/13.22 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.13/13.22 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(ty_@2, dcd), dce)) -> new_ltEs14(xuu33000, xuu34000, dcd, dce) 32.13/13.22 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Char) -> new_ltEs17(xuu33000, xuu34000) 32.13/13.22 new_esEs4(Left(xuu3110000), Right(xuu6000), gc, eg) -> False 32.13/13.22 new_esEs4(Right(xuu3110000), Left(xuu6000), gc, eg) -> False 32.13/13.22 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Int, de) -> new_ltEs7(xuu33000, xuu34000) 32.13/13.22 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 32.13/13.22 new_primCmpInt(Pos(Zero), Neg(Succ(xuu3400))) -> GT 32.13/13.22 new_esEs29(xuu311000, xuu600, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs5(xuu311000, xuu600, hf, hg, hh) 32.13/13.22 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_[], dcb)) -> new_ltEs4(xuu33000, xuu34000, dcb) 32.13/13.22 new_esEs15(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), dea) -> new_asAs(new_esEs28(xuu3110000, xuu6000, dea), new_esEs27(xuu3110001, xuu6001, dea)) 32.13/13.22 new_esEs24(xuu33001, xuu34001, ty_Ordering) -> new_esEs8(xuu33001, xuu34001) 32.13/13.22 new_ltEs14(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), eb, ec) -> new_pePe(new_lt20(xuu33000, xuu34000, eb), new_asAs(new_esEs26(xuu33000, xuu34000, eb), new_ltEs20(xuu33001, xuu34001, ec))) 32.13/13.22 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_Ratio, dcf)) -> new_ltEs15(xuu33000, xuu34000, dcf) 32.13/13.22 new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, bhb), bhc)) -> new_esEs4(xuu3110000, xuu6000, bhb, bhc) 32.13/13.22 new_compare0(:(xuu33000, xuu33001), :(xuu34000, xuu34001), bf) -> new_primCompAux1(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, bf), bf) 32.13/13.22 new_primCmpInt(Neg(Succ(xuu3300)), Neg(xuu340)) -> new_primCmpNat0(xuu340, Succ(xuu3300)) 32.13/13.22 new_lt9(xuu33001, xuu34001, app(ty_[], cde)) -> new_lt16(xuu33001, xuu34001, cde) 32.13/13.22 new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_Either, bdg), bdh)) -> new_ltEs6(xuu33000, xuu34000, bdg, bdh) 32.13/13.22 new_lt10(xuu33000, xuu34000, app(ty_Ratio, cbe)) -> new_lt8(xuu33000, xuu34000, cbe) 32.13/13.22 new_esEs28(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.13/13.22 new_esEs26(xuu33000, xuu34000, app(app(ty_@2, cgf), cgg)) -> new_esEs7(xuu33000, xuu34000, cgf, cgg) 32.13/13.22 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Char) -> new_ltEs17(xuu33000, xuu34000) 32.13/13.22 new_esEs23(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.13/13.22 new_ltEs20(xuu33001, xuu34001, ty_@0) -> new_ltEs18(xuu33001, xuu34001) 32.13/13.22 new_esEs5(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), hf, hg, hh) -> new_asAs(new_esEs20(xuu3110000, xuu6000, hf), new_asAs(new_esEs19(xuu3110001, xuu6001, hg), new_esEs18(xuu3110002, xuu6002, hh))) 32.13/13.22 new_esEs10(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) 32.13/13.22 new_ltEs7(xuu3300, xuu3400) -> new_fsEs(new_compare12(xuu3300, xuu3400)) 32.13/13.22 new_esEs18(xuu3110002, xuu6002, ty_Ordering) -> new_esEs8(xuu3110002, xuu6002) 32.13/13.22 new_compare25(xuu33000, xuu34000, False) -> new_compare17(xuu33000, xuu34000, new_ltEs16(xuu33000, xuu34000)) 32.13/13.22 new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_[], dah), de) -> new_ltEs4(xuu33000, xuu34000, dah) 32.13/13.22 new_esEs18(xuu3110002, xuu6002, ty_Bool) -> new_esEs13(xuu3110002, xuu6002) 32.13/13.22 new_primCompAux0(xuu182, GT) -> GT 32.13/13.22 new_lt9(xuu33001, xuu34001, ty_Bool) -> new_lt18(xuu33001, xuu34001) 32.13/13.22 new_esEs23(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.13/13.22 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Double) -> new_ltEs9(xuu33000, xuu34000) 32.13/13.22 new_compare210(xuu33000, xuu34000, False) -> new_compare110(xuu33000, xuu34000, new_ltEs12(xuu33000, xuu34000)) 32.13/13.22 new_esEs18(xuu3110002, xuu6002, app(ty_Ratio, bah)) -> new_esEs15(xuu3110002, xuu6002, bah) 32.13/13.22 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Integer, eg) -> new_esEs17(xuu3110000, xuu6000) 32.13/13.22 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False 32.13/13.22 new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False 32.13/13.22 new_esEs8(GT, GT) -> True 32.13/13.22 new_fsEs(xuu149) -> new_not(new_esEs8(xuu149, GT)) 32.13/13.22 new_esEs19(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) 32.13/13.22 new_lt12(xuu33000, xuu34000) -> new_esEs8(new_compare19(xuu33000, xuu34000), LT) 32.13/13.22 new_esEs24(xuu33001, xuu34001, app(ty_Ratio, cea)) -> new_esEs15(xuu33001, xuu34001, cea) 32.13/13.22 new_esEs20(xuu3110000, xuu6000, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs5(xuu3110000, xuu6000, bcg, bch, bda) 32.13/13.22 new_ltEs4(xuu3300, xuu3400, bf) -> new_fsEs(new_compare0(xuu3300, xuu3400, bf)) 32.13/13.22 new_esEs8(EQ, EQ) -> True 32.13/13.22 new_esEs24(xuu33001, xuu34001, ty_Bool) -> new_esEs13(xuu33001, xuu34001) 32.13/13.22 new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Ratio, dbd), de) -> new_ltEs15(xuu33000, xuu34000, dbd) 32.13/13.22 new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) 32.13/13.22 new_lt10(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) 32.13/13.22 new_lt10(xuu33000, xuu34000, app(ty_Maybe, cec)) -> new_lt17(xuu33000, xuu34000, cec) 32.13/13.22 new_ltEs20(xuu33001, xuu34001, ty_Integer) -> new_ltEs10(xuu33001, xuu34001) 32.13/13.22 new_primCompAux0(xuu182, LT) -> LT 32.13/13.22 new_not(True) -> False 32.13/13.22 new_ltEs19(xuu33002, xuu34002, ty_@0) -> new_ltEs18(xuu33002, xuu34002) 32.13/13.22 new_ltEs12(LT, GT) -> True 32.13/13.22 new_primCmpNat0(Zero, Zero) -> EQ 32.13/13.22 new_esEs18(xuu3110002, xuu6002, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs5(xuu3110002, xuu6002, bac, bad, bae) 32.13/13.22 new_compare6(xuu33000, xuu34000, bd, be) -> new_compare27(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, bd, be), bd, be) 32.13/13.22 new_compare16(xuu33000, xuu34000, False, bd, be) -> GT 32.13/13.22 new_ltEs19(xuu33002, xuu34002, ty_Integer) -> new_ltEs10(xuu33002, xuu34002) 32.13/13.22 new_esEs25(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) 32.13/13.22 new_compare14(xuu33000, xuu34000, True, cbb, cbc, cbd) -> LT 32.13/13.22 new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.13/13.22 new_esEs30(xuu22, xuu17, app(ty_Ratio, ddf)) -> new_esEs15(xuu22, xuu17, ddf) 32.13/13.22 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.13/13.22 new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_Either, dac), dad), de) -> new_ltEs6(xuu33000, xuu34000, dac, dad) 32.13/13.22 new_esEs19(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) 32.13/13.22 new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_[], bed)) -> new_ltEs4(xuu33000, xuu34000, bed) 32.13/13.22 new_primEqNat0(Succ(xuu31100000), Zero) -> False 32.13/13.22 new_primEqNat0(Zero, Succ(xuu60000)) -> False 32.13/13.22 new_ltEs5(xuu3300, xuu3400, app(app(ty_Either, dd), de)) -> new_ltEs6(xuu3300, xuu3400, dd, de) 32.13/13.22 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.13/13.22 new_lt20(xuu33000, xuu34000, app(ty_Ratio, cgh)) -> new_lt8(xuu33000, xuu34000, cgh) 32.13/13.22 new_esEs19(xuu3110001, xuu6001, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs5(xuu3110001, xuu6001, bbe, bbf, bbg) 32.13/13.22 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_@0, eg) -> new_esEs9(xuu3110000, xuu6000) 32.13/13.22 new_esEs29(xuu311000, xuu600, ty_Bool) -> new_esEs13(xuu311000, xuu600) 32.13/13.22 new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, dae), daf), dag), de) -> new_ltEs8(xuu33000, xuu34000, dae, daf, dag) 32.13/13.22 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_@0) -> new_ltEs18(xuu33000, xuu34000) 32.13/13.22 new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, bge), bgf)) -> new_esEs7(xuu3110000, xuu6000, bge, bgf) 32.13/13.22 new_esEs25(xuu33000, xuu34000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs5(xuu33000, xuu34000, cbb, cbc, cbd) 32.13/13.22 new_compare110(xuu33000, xuu34000, True) -> LT 32.13/13.22 new_lt9(xuu33001, xuu34001, app(app(ty_@2, cdg), cdh)) -> new_lt4(xuu33001, xuu34001, cdg, cdh) 32.13/13.22 new_ltEs5(xuu3300, xuu3400, ty_Ordering) -> new_ltEs12(xuu3300, xuu3400) 32.13/13.22 new_lt9(xuu33001, xuu34001, ty_Int) -> new_lt6(xuu33001, xuu34001) 32.13/13.22 new_esEs27(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) 32.13/13.22 new_esEs20(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.13/13.22 new_compare23(Just(xuu3300), Just(xuu3400), False, dc) -> new_compare10(xuu3300, xuu3400, new_ltEs5(xuu3300, xuu3400, dc), dc) 32.13/13.22 new_lt20(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) 32.13/13.22 new_compare30(xuu33000, xuu34000, app(ty_Ratio, dab)) -> new_compare15(xuu33000, xuu34000, dab) 32.13/13.22 new_lt20(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) 32.13/13.22 new_primCmpInt(Pos(Succ(xuu3300)), Neg(xuu340)) -> GT 32.13/13.22 new_ltEs10(xuu3300, xuu3400) -> new_fsEs(new_compare7(xuu3300, xuu3400)) 32.13/13.22 new_compare24(xuu33000, xuu34000, False, ee, ef) -> new_compare11(xuu33000, xuu34000, new_ltEs6(xuu33000, xuu34000, ee, ef), ee, ef) 32.13/13.22 new_lt5(xuu33000, xuu34000, ee, ef) -> new_esEs8(new_compare8(xuu33000, xuu34000, ee, ef), LT) 32.13/13.22 new_esEs20(xuu3110000, xuu6000, app(ty_Ratio, bdd)) -> new_esEs15(xuu3110000, xuu6000, bdd) 32.13/13.22 new_esEs24(xuu33001, xuu34001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs5(xuu33001, xuu34001, cdb, cdc, cdd) 32.13/13.22 new_esEs30(xuu22, xuu17, app(app(app(ty_@3, dda), ddb), ddc)) -> new_esEs5(xuu22, xuu17, dda, ddb, ddc) 32.13/13.22 new_esEs26(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) 32.13/13.22 new_primPlusNat1(Succ(xuu28200), Succ(xuu9700)) -> Succ(Succ(new_primPlusNat1(xuu28200, xuu9700))) 32.13/13.22 new_lt9(xuu33001, xuu34001, ty_Char) -> new_lt7(xuu33001, xuu34001) 32.13/13.22 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Double) -> new_ltEs9(xuu33000, xuu34000) 32.13/13.22 new_lt18(xuu33000, xuu34000) -> new_esEs8(new_compare9(xuu33000, xuu34000), LT) 32.13/13.22 new_primCmpNat0(Zero, Succ(xuu3400)) -> LT 32.13/13.22 new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Maybe, dba), de) -> new_ltEs13(xuu33000, xuu34000, dba) 32.13/13.22 new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Integer) -> new_compare7(new_sr0(xuu33000, xuu34001), new_sr0(xuu34000, xuu33001)) 32.13/13.22 new_esEs30(xuu22, xuu17, ty_Int) -> new_esEs12(xuu22, xuu17) 32.13/13.22 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Bool, eg) -> new_esEs13(xuu3110000, xuu6000) 32.13/13.22 new_esEs18(xuu3110002, xuu6002, ty_Int) -> new_esEs12(xuu3110002, xuu6002) 32.13/13.22 new_compare210(xuu33000, xuu34000, True) -> EQ 32.13/13.22 new_esEs24(xuu33001, xuu34001, ty_Int) -> new_esEs12(xuu33001, xuu34001) 32.13/13.22 new_lt9(xuu33001, xuu34001, app(ty_Ratio, cea)) -> new_lt8(xuu33001, xuu34001, cea) 32.13/13.22 new_esEs21(xuu3110001, xuu6001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs5(xuu3110001, xuu6001, bfe, bff, bfg) 32.13/13.22 new_primCmpNat0(Succ(xuu3300), Zero) -> GT 32.13/13.22 new_ltEs20(xuu33001, xuu34001, app(ty_Maybe, cfc)) -> new_ltEs13(xuu33001, xuu34001, cfc) 32.13/13.22 new_pePe(False, xuu165) -> xuu165 32.13/13.22 new_ltEs5(xuu3300, xuu3400, ty_Char) -> new_ltEs17(xuu3300, xuu3400) 32.13/13.22 new_esEs20(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.13/13.22 new_esEs23(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.13/13.22 new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.13/13.22 new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.13/13.22 new_ltEs20(xuu33001, xuu34001, ty_Float) -> new_ltEs11(xuu33001, xuu34001) 32.13/13.22 new_ltEs12(GT, GT) -> True 32.13/13.22 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Ordering, eg) -> new_esEs8(xuu3110000, xuu6000) 32.13/13.22 new_ltEs18(xuu3300, xuu3400) -> new_fsEs(new_compare32(xuu3300, xuu3400)) 32.13/13.22 new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Int) -> new_compare12(new_sr(xuu33000, xuu34001), new_sr(xuu34000, xuu33001)) 32.13/13.22 new_ltEs20(xuu33001, xuu34001, ty_Double) -> new_ltEs9(xuu33001, xuu34001) 32.13/13.22 new_ltEs19(xuu33002, xuu34002, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs8(xuu33002, xuu34002, cbh, cca, ccb) 32.13/13.22 new_esEs29(xuu311000, xuu600, ty_Integer) -> new_esEs17(xuu311000, xuu600) 32.13/13.22 new_esEs21(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) 32.13/13.22 new_ltEs12(GT, EQ) -> False 32.13/13.22 new_esEs24(xuu33001, xuu34001, ty_@0) -> new_esEs9(xuu33001, xuu34001) 32.13/13.22 new_esEs21(xuu3110001, xuu6001, app(app(ty_Either, bfh), bga)) -> new_esEs4(xuu3110001, xuu6001, bfh, bga) 32.13/13.22 new_esEs18(xuu3110002, xuu6002, ty_Float) -> new_esEs11(xuu3110002, xuu6002) 32.13/13.22 new_lt10(xuu33000, xuu34000, app(ty_[], ceb)) -> new_lt16(xuu33000, xuu34000, ceb) 32.13/13.22 new_compare27(xuu33000, xuu34000, False, bd, be) -> new_compare16(xuu33000, xuu34000, new_ltEs14(xuu33000, xuu34000, bd, be), bd, be) 32.13/13.22 new_esEs26(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) 32.13/13.22 new_compare7(Integer(xuu33000), Integer(xuu34000)) -> new_primCmpInt(xuu33000, xuu34000) 32.13/13.22 new_compare10(xuu132, xuu133, False, ced) -> GT 32.13/13.22 new_esEs30(xuu22, xuu17, ty_Float) -> new_esEs11(xuu22, xuu17) 32.13/13.22 new_esEs8(LT, EQ) -> False 32.13/13.22 new_esEs8(EQ, LT) -> False 32.13/13.22 new_compare17(xuu33000, xuu34000, True) -> LT 32.13/13.22 new_compare11(xuu33000, xuu34000, False, ee, ef) -> GT 32.13/13.22 new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, bhf)) -> new_esEs6(xuu3110000, xuu6000, bhf) 32.13/13.22 new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False 32.13/13.22 new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False 32.13/13.22 new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.13/13.22 new_esEs21(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) 32.13/13.22 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Ordering, de) -> new_ltEs12(xuu33000, xuu34000) 32.13/13.22 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Integer) -> new_ltEs10(xuu33000, xuu34000) 32.13/13.22 new_compare30(xuu33000, xuu34000, app(ty_Maybe, chg)) -> new_compare29(xuu33000, xuu34000, chg) 32.13/13.22 new_ltEs5(xuu3300, xuu3400, app(ty_Maybe, ea)) -> new_ltEs13(xuu3300, xuu3400, ea) 32.13/13.22 new_esEs26(xuu33000, xuu34000, app(ty_[], cgd)) -> new_esEs16(xuu33000, xuu34000, cgd) 32.13/13.22 new_ltEs17(xuu3300, xuu3400) -> new_fsEs(new_compare13(xuu3300, xuu3400)) 32.13/13.22 new_ltEs15(xuu3300, xuu3400, ed) -> new_fsEs(new_compare15(xuu3300, xuu3400, ed)) 32.13/13.22 new_ltEs19(xuu33002, xuu34002, app(app(ty_@2, cce), ccf)) -> new_ltEs14(xuu33002, xuu34002, cce, ccf) 32.13/13.22 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 32.13/13.22 new_esEs25(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) 32.13/13.22 new_esEs23(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.13/13.22 new_primCmpInt(Neg(Zero), Pos(Succ(xuu3400))) -> LT 32.13/13.22 new_compare13(Char(xuu33000), Char(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) 32.13/13.22 new_ltEs5(xuu3300, xuu3400, app(app(app(ty_@3, df), dg), dh)) -> new_ltEs8(xuu3300, xuu3400, df, dg, dh) 32.13/13.22 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Int, eg) -> new_esEs12(xuu3110000, xuu6000) 32.13/13.22 new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.13/13.22 new_ltEs20(xuu33001, xuu34001, ty_Char) -> new_ltEs17(xuu33001, xuu34001) 32.13/13.22 new_compare17(xuu33000, xuu34000, False) -> GT 32.13/13.22 new_lt9(xuu33001, xuu34001, ty_Integer) -> new_lt13(xuu33001, xuu34001) 32.13/13.22 new_primMulInt(Pos(xuu31100000), Pos(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) 32.13/13.22 new_compare30(xuu33000, xuu34000, ty_Float) -> new_compare18(xuu33000, xuu34000) 32.13/13.22 new_ltEs5(xuu3300, xuu3400, ty_Float) -> new_ltEs11(xuu3300, xuu3400) 32.13/13.22 new_ltEs5(xuu3300, xuu3400, app(app(ty_@2, eb), ec)) -> new_ltEs14(xuu3300, xuu3400, eb, ec) 32.13/13.22 new_esEs23(xuu3110000, xuu6000, app(app(ty_Either, cae), caf)) -> new_esEs4(xuu3110000, xuu6000, cae, caf) 32.13/13.22 new_esEs18(xuu3110002, xuu6002, app(ty_[], bba)) -> new_esEs16(xuu3110002, xuu6002, bba) 32.13/13.22 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Bool) -> new_ltEs16(xuu33000, xuu34000) 32.13/13.22 new_esEs25(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) 32.13/13.22 new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, ce), cf)) -> new_esEs4(xuu3110000, xuu6000, ce, cf) 32.13/13.22 new_primCompAux1(xuu33000, xuu34000, xuu176, bf) -> new_primCompAux0(xuu176, new_compare30(xuu33000, xuu34000, bf)) 32.13/13.22 new_lt9(xuu33001, xuu34001, ty_Double) -> new_lt12(xuu33001, xuu34001) 32.13/13.22 new_compare10(xuu132, xuu133, True, ced) -> LT 32.13/13.22 new_esEs24(xuu33001, xuu34001, app(ty_Maybe, cdf)) -> new_esEs6(xuu33001, xuu34001, cdf) 32.13/13.22 new_primMulNat0(Succ(xuu311000000), Zero) -> Zero 32.13/13.22 new_primMulNat0(Zero, Succ(xuu600100)) -> Zero 32.13/13.22 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) 32.13/13.22 new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, cb), cc), cd)) -> new_esEs5(xuu3110000, xuu6000, cb, cc, cd) 32.13/13.22 new_lt10(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) 32.13/13.22 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(ty_Either, dbe), dbf)) -> new_ltEs6(xuu33000, xuu34000, dbe, dbf) 32.13/13.22 new_esEs23(xuu3110000, xuu6000, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs5(xuu3110000, xuu6000, cab, cac, cad) 32.13/13.22 new_ltEs19(xuu33002, xuu34002, ty_Char) -> new_ltEs17(xuu33002, xuu34002) 32.13/13.22 new_lt17(xuu33000, xuu34000, cec) -> new_esEs8(new_compare29(xuu33000, xuu34000, cec), LT) 32.13/13.22 new_ltEs5(xuu3300, xuu3400, ty_Double) -> new_ltEs9(xuu3300, xuu3400) 32.13/13.22 new_lt20(xuu33000, xuu34000, app(app(app(ty_@3, cga), cgb), cgc)) -> new_lt11(xuu33000, xuu34000, cga, cgb, cgc) 32.13/13.22 new_esEs24(xuu33001, xuu34001, ty_Char) -> new_esEs10(xuu33001, xuu34001) 32.13/13.22 new_lt9(xuu33001, xuu34001, app(ty_Maybe, cdf)) -> new_lt17(xuu33001, xuu34001, cdf) 32.13/13.22 new_esEs18(xuu3110002, xuu6002, ty_Integer) -> new_esEs17(xuu3110002, xuu6002) 32.13/13.22 new_lt14(xuu33000, xuu34000) -> new_esEs8(new_compare18(xuu33000, xuu34000), LT) 32.13/13.22 new_ltEs5(xuu3300, xuu3400, ty_Bool) -> new_ltEs16(xuu3300, xuu3400) 32.13/13.22 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Integer, de) -> new_ltEs10(xuu33000, xuu34000) 32.13/13.22 new_esEs8(LT, LT) -> True 32.13/13.22 new_esEs29(xuu311000, xuu600, ty_Float) -> new_esEs11(xuu311000, xuu600) 32.13/13.22 new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, bhd)) -> new_esEs15(xuu3110000, xuu6000, bhd) 32.13/13.22 new_esEs26(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) 32.13/13.22 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.13/13.22 new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, bea), beb), bec)) -> new_ltEs8(xuu33000, xuu34000, bea, beb, bec) 32.13/13.22 new_primPlusNat1(Succ(xuu28200), Zero) -> Succ(xuu28200) 32.13/13.22 new_primPlusNat1(Zero, Succ(xuu9700)) -> Succ(xuu9700) 32.13/13.22 new_compare23(Just(xuu3300), Nothing, False, dc) -> GT 32.13/13.22 new_compare30(xuu33000, xuu34000, ty_Char) -> new_compare13(xuu33000, xuu34000) 32.13/13.22 new_ltEs19(xuu33002, xuu34002, ty_Double) -> new_ltEs9(xuu33002, xuu34002) 32.13/13.22 new_esEs19(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) 32.13/13.22 new_lt10(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) 32.13/13.22 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(app(ty_@3, gf), gg), gh)) -> new_esEs5(xuu3110000, xuu6000, gf, gg, gh) 32.13/13.22 new_esEs13(True, True) -> True 32.13/13.22 new_esEs30(xuu22, xuu17, ty_Integer) -> new_esEs17(xuu22, xuu17) 32.13/13.22 new_ltEs20(xuu33001, xuu34001, app(app(ty_@2, cfd), cfe)) -> new_ltEs14(xuu33001, xuu34001, cfd, cfe) 32.13/13.22 new_esEs23(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.13/13.22 new_esEs23(xuu3110000, xuu6000, app(ty_Ratio, cag)) -> new_esEs15(xuu3110000, xuu6000, cag) 32.13/13.22 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Char, eg) -> new_esEs10(xuu3110000, xuu6000) 32.13/13.22 new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_[], ga), eg) -> new_esEs16(xuu3110000, xuu6000, ga) 32.13/13.22 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.13/13.22 new_esEs16([], [], bhg) -> True 32.13/13.22 new_ltEs19(xuu33002, xuu34002, ty_Float) -> new_ltEs11(xuu33002, xuu34002) 32.13/13.22 new_esEs25(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) 32.13/13.22 new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, cg)) -> new_esEs15(xuu3110000, xuu6000, cg) 32.13/13.22 new_primMulInt(Neg(xuu31100000), Neg(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) 32.13/13.22 new_primCmpInt(Pos(Zero), Pos(Succ(xuu3400))) -> new_primCmpNat0(Zero, Succ(xuu3400)) 32.13/13.22 new_esEs29(xuu311000, xuu600, ty_Double) -> new_esEs14(xuu311000, xuu600) 32.13/13.22 new_esEs25(xuu33000, xuu34000, app(app(ty_@2, bd), be)) -> new_esEs7(xuu33000, xuu34000, bd, be) 32.13/13.22 new_ltEs20(xuu33001, xuu34001, ty_Bool) -> new_ltEs16(xuu33001, xuu34001) 32.13/13.22 new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, db)) -> new_esEs6(xuu3110000, xuu6000, db) 32.13/13.22 new_esEs6(Nothing, Just(xuu6000), bg) -> False 32.13/13.22 new_esEs6(Just(xuu3110000), Nothing, bg) -> False 32.13/13.22 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.13/13.22 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_Maybe, he)) -> new_esEs6(xuu3110000, xuu6000, he) 32.13/13.22 new_esEs6(Nothing, Nothing, bg) -> True 32.13/13.22 new_esEs14(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 32.13/13.22 new_esEs23(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.13/13.22 new_compare26(xuu33000, xuu34000, True, cbb, cbc, cbd) -> EQ 32.13/13.22 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_Ratio, hc)) -> new_esEs15(xuu3110000, xuu6000, hc) 32.13/13.22 new_compare26(xuu33000, xuu34000, False, cbb, cbc, cbd) -> new_compare14(xuu33000, xuu34000, new_ltEs8(xuu33000, xuu34000, cbb, cbc, cbd), cbb, cbc, cbd) 32.13/13.22 new_ltEs19(xuu33002, xuu34002, ty_Bool) -> new_ltEs16(xuu33002, xuu34002) 32.13/13.22 new_lt10(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) 32.13/13.22 new_primMulInt(Pos(xuu31100000), Neg(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) 32.13/13.22 new_primMulInt(Neg(xuu31100000), Pos(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) 32.13/13.22 new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.13/13.22 new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.13/13.22 new_compare30(xuu33000, xuu34000, app(app(ty_@2, chh), daa)) -> new_compare6(xuu33000, xuu34000, chh, daa) 32.13/13.22 new_esEs26(xuu33000, xuu34000, app(ty_Ratio, cgh)) -> new_esEs15(xuu33000, xuu34000, cgh) 32.13/13.22 new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, fh), eg) -> new_esEs15(xuu3110000, xuu6000, fh) 32.13/13.22 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.13/13.22 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Int) -> new_ltEs7(xuu33000, xuu34000) 32.13/13.22 new_ltEs19(xuu33002, xuu34002, ty_Ordering) -> new_ltEs12(xuu33002, xuu34002) 32.13/13.22 new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs5(xuu3110000, xuu6000, bgg, bgh, bha) 32.13/13.22 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(ty_@2, gd), ge)) -> new_esEs7(xuu3110000, xuu6000, gd, ge) 32.13/13.22 new_esEs21(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) 32.13/13.22 new_sr0(Integer(xuu330000), Integer(xuu340010)) -> Integer(new_primMulInt(xuu330000, xuu340010)) 32.13/13.22 new_esEs24(xuu33001, xuu34001, ty_Double) -> new_esEs14(xuu33001, xuu34001) 32.13/13.22 new_esEs25(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) 32.13/13.22 new_esEs13(False, False) -> True 32.13/13.22 new_esEs30(xuu22, xuu17, ty_Double) -> new_esEs14(xuu22, xuu17) 32.13/13.22 new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.13/13.22 new_compare31(xuu33000, xuu34000) -> new_compare210(xuu33000, xuu34000, new_esEs8(xuu33000, xuu34000)) 32.13/13.22 new_lt8(xuu33000, xuu34000, cbe) -> new_esEs8(new_compare15(xuu33000, xuu34000, cbe), LT) 32.13/13.22 new_esEs18(xuu3110002, xuu6002, ty_Double) -> new_esEs14(xuu3110002, xuu6002) 32.13/13.22 new_compare0([], :(xuu34000, xuu34001), bf) -> LT 32.13/13.22 new_asAs(True, xuu139) -> xuu139 32.13/13.22 new_esEs19(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) 32.13/13.22 new_esEs21(xuu3110001, xuu6001, app(ty_Maybe, bgd)) -> new_esEs6(xuu3110001, xuu6001, bgd) 32.13/13.22 new_lt10(xuu33000, xuu34000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_lt11(xuu33000, xuu34000, cbb, cbc, cbd) 32.13/13.22 new_lt16(xuu33000, xuu34000, ceb) -> new_esEs8(new_compare0(xuu33000, xuu34000, ceb), LT) 32.13/13.22 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.13/13.22 new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, ff), fg), eg) -> new_esEs4(xuu3110000, xuu6000, ff, fg) 32.13/13.22 new_esEs21(xuu3110001, xuu6001, app(ty_Ratio, bgb)) -> new_esEs15(xuu3110001, xuu6001, bgb) 32.13/13.22 new_esEs26(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) 32.13/13.22 new_ltEs16(True, False) -> False 32.13/13.22 new_compare16(xuu33000, xuu34000, True, bd, be) -> LT 32.13/13.22 new_esEs29(xuu311000, xuu600, app(ty_[], bhg)) -> new_esEs16(xuu311000, xuu600, bhg) 32.13/13.22 new_ltEs5(xuu3300, xuu3400, ty_@0) -> new_ltEs18(xuu3300, xuu3400) 32.13/13.22 new_lt9(xuu33001, xuu34001, app(app(ty_Either, cch), cda)) -> new_lt5(xuu33001, xuu34001, cch, cda) 32.13/13.22 new_esEs18(xuu3110002, xuu6002, app(app(ty_@2, baa), bab)) -> new_esEs7(xuu3110002, xuu6002, baa, bab) 32.13/13.22 new_compare24(xuu33000, xuu34000, True, ee, ef) -> EQ 32.13/13.22 new_esEs24(xuu33001, xuu34001, app(app(ty_@2, cdg), cdh)) -> new_esEs7(xuu33001, xuu34001, cdg, cdh) 32.13/13.22 new_esEs30(xuu22, xuu17, app(app(ty_@2, dcg), dch)) -> new_esEs7(xuu22, xuu17, dcg, dch) 32.13/13.22 new_primCmpInt(Pos(Succ(xuu3300)), Pos(xuu340)) -> new_primCmpNat0(Succ(xuu3300), xuu340) 32.13/13.22 new_lt9(xuu33001, xuu34001, ty_@0) -> new_lt19(xuu33001, xuu34001) 32.13/13.22 new_compare110(xuu33000, xuu34000, False) -> GT 32.13/13.22 new_compare9(xuu33000, xuu34000) -> new_compare25(xuu33000, xuu34000, new_esEs13(xuu33000, xuu34000)) 32.13/13.22 new_esEs25(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) 32.13/13.22 new_lt20(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) 32.13/13.22 new_esEs9(@0, @0) -> True 32.13/13.22 new_compare0([], [], bf) -> EQ 32.13/13.22 new_esEs19(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) 32.13/13.22 new_esEs20(xuu3110000, xuu6000, app(app(ty_Either, bdb), bdc)) -> new_esEs4(xuu3110000, xuu6000, bdb, bdc) 32.13/13.22 new_sr(xuu3110000, xuu6001) -> new_primMulInt(xuu3110000, xuu6001) 32.13/13.22 new_esEs19(xuu3110001, xuu6001, app(app(ty_Either, bbh), bca)) -> new_esEs4(xuu3110001, xuu6001, bbh, bca) 32.13/13.22 new_compare30(xuu33000, xuu34000, ty_@0) -> new_compare32(xuu33000, xuu34000) 32.13/13.22 new_primMulNat0(Zero, Zero) -> Zero 32.13/13.22 new_ltEs20(xuu33001, xuu34001, ty_Ordering) -> new_ltEs12(xuu33001, xuu34001) 32.13/13.22 new_lt9(xuu33001, xuu34001, ty_Ordering) -> new_lt15(xuu33001, xuu34001) 32.13/13.22 new_ltEs13(Nothing, Nothing, ea) -> True 32.13/13.22 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.13/13.22 new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_@2, bef), beg)) -> new_ltEs14(xuu33000, xuu34000, bef, beg) 32.13/13.22 new_ltEs13(Just(xuu33000), Nothing, ea) -> False 32.13/13.22 new_lt20(xuu33000, xuu34000, app(ty_[], cgd)) -> new_lt16(xuu33000, xuu34000, cgd) 32.13/13.22 new_esEs24(xuu33001, xuu34001, app(ty_[], cde)) -> new_esEs16(xuu33001, xuu34001, cde) 32.13/13.22 new_esEs30(xuu22, xuu17, app(ty_[], ddg)) -> new_esEs16(xuu22, xuu17, ddg) 32.13/13.22 new_esEs20(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.13/13.22 new_compare14(xuu33000, xuu34000, False, cbb, cbc, cbd) -> GT 32.13/13.22 new_esEs23(xuu3110000, xuu6000, app(app(ty_@2, bhh), caa)) -> new_esEs7(xuu3110000, xuu6000, bhh, caa) 32.13/13.22 new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.13/13.22 new_lt20(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) 32.13/13.22 new_esEs25(xuu33000, xuu34000, app(app(ty_Either, ee), ef)) -> new_esEs4(xuu33000, xuu34000, ee, ef) 32.13/13.22 new_ltEs19(xuu33002, xuu34002, app(ty_Maybe, ccd)) -> new_ltEs13(xuu33002, xuu34002, ccd) 32.13/13.22 new_esEs19(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) 32.13/13.22 new_esEs21(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) 32.13/13.22 new_ltEs20(xuu33001, xuu34001, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_ltEs8(xuu33001, xuu34001, ceg, ceh, cfa) 32.13/13.22 new_esEs26(xuu33000, xuu34000, app(ty_Maybe, cge)) -> new_esEs6(xuu33000, xuu34000, cge) 32.13/13.22 new_lt11(xuu33000, xuu34000, cbb, cbc, cbd) -> new_esEs8(new_compare28(xuu33000, xuu34000, cbb, cbc, cbd), LT) 32.13/13.22 new_ltEs5(xuu3300, xuu3400, ty_Integer) -> new_ltEs10(xuu3300, xuu3400) 32.13/13.22 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(ty_Either, ha), hb)) -> new_esEs4(xuu3110000, xuu6000, ha, hb) 32.13/13.22 new_compare30(xuu33000, xuu34000, ty_Double) -> new_compare19(xuu33000, xuu34000) 32.13/13.22 new_compare32(@0, @0) -> EQ 32.13/13.22 new_ltEs12(GT, LT) -> False 32.13/13.22 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Bool) -> new_ltEs16(xuu33000, xuu34000) 32.13/13.22 new_primCompAux0(xuu182, EQ) -> xuu182 32.13/13.22 new_esEs26(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) 32.13/13.22 new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, bh), ca)) -> new_esEs7(xuu3110000, xuu6000, bh, ca) 32.13/13.22 new_esEs20(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.13/13.22 new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.13/13.22 new_esEs29(xuu311000, xuu600, app(app(ty_Either, gc), eg)) -> new_esEs4(xuu311000, xuu600, gc, eg) 32.13/13.22 new_esEs7(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bfa, bfb) -> new_asAs(new_esEs22(xuu3110000, xuu6000, bfa), new_esEs21(xuu3110001, xuu6001, bfb)) 32.13/13.22 new_esEs30(xuu22, xuu17, ty_@0) -> new_esEs9(xuu22, xuu17) 32.13/13.22 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False 32.45/13.22 new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False 32.45/13.22 new_esEs25(xuu33000, xuu34000, app(ty_Maybe, cec)) -> new_esEs6(xuu33000, xuu34000, cec) 32.45/13.22 new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, eh), fa), eg) -> new_esEs7(xuu3110000, xuu6000, eh, fa) 32.45/13.22 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 32.45/13.22 new_esEs13(False, True) -> False 32.45/13.22 new_esEs13(True, False) -> False 32.45/13.22 new_esEs20(xuu3110000, xuu6000, app(ty_[], bde)) -> new_esEs16(xuu3110000, xuu6000, bde) 32.45/13.22 new_ltEs20(xuu33001, xuu34001, app(app(ty_Either, cee), cef)) -> new_ltEs6(xuu33001, xuu34001, cee, cef) 32.45/13.22 new_esEs26(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) 32.45/13.22 new_esEs20(xuu3110000, xuu6000, app(ty_Maybe, bdf)) -> new_esEs6(xuu3110000, xuu6000, bdf) 32.45/13.22 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.45/13.22 new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False 32.45/13.22 new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False 32.45/13.22 new_esEs26(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) 32.45/13.22 new_esEs19(xuu3110001, xuu6001, app(ty_Maybe, bcd)) -> new_esEs6(xuu3110001, xuu6001, bcd) 32.45/13.22 new_esEs25(xuu33000, xuu34000, app(ty_Ratio, cbe)) -> new_esEs15(xuu33000, xuu34000, cbe) 32.45/13.22 new_compare30(xuu33000, xuu34000, app(ty_[], chf)) -> new_compare0(xuu33000, xuu34000, chf) 32.45/13.22 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Int) -> new_ltEs7(xuu33000, xuu34000) 32.45/13.22 new_lt9(xuu33001, xuu34001, ty_Float) -> new_lt14(xuu33001, xuu34001) 32.45/13.22 new_primCmpInt(Neg(Zero), Neg(Succ(xuu3400))) -> new_primCmpNat0(Succ(xuu3400), Zero) 32.45/13.22 new_esEs16(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bhg) -> new_asAs(new_esEs23(xuu3110000, xuu6000, bhg), new_esEs16(xuu3110001, xuu6001, bhg)) 32.45/13.22 new_compare23(Nothing, Just(xuu3400), False, dc) -> LT 32.45/13.22 new_compare29(xuu33000, xuu34000, cec) -> new_compare23(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, cec), cec) 32.45/13.22 new_esEs21(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) 32.45/13.22 new_esEs25(xuu33000, xuu34000, app(ty_[], ceb)) -> new_esEs16(xuu33000, xuu34000, ceb) 32.45/13.22 new_esEs30(xuu22, xuu17, app(app(ty_Either, ddd), dde)) -> new_esEs4(xuu22, xuu17, ddd, dde) 32.45/13.22 new_esEs29(xuu311000, xuu600, ty_@0) -> new_esEs9(xuu311000, xuu600) 32.45/13.22 new_esEs19(xuu3110001, xuu6001, app(ty_[], bcc)) -> new_esEs16(xuu3110001, xuu6001, bcc) 32.45/13.22 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_@0, de) -> new_ltEs18(xuu33000, xuu34000) 32.45/13.22 new_esEs24(xuu33001, xuu34001, app(app(ty_Either, cch), cda)) -> new_esEs4(xuu33001, xuu34001, cch, cda) 32.45/13.22 new_ltEs19(xuu33002, xuu34002, app(app(ty_Either, cbf), cbg)) -> new_ltEs6(xuu33002, xuu34002, cbf, cbg) 32.45/13.22 new_ltEs12(EQ, GT) -> True 32.45/13.22 new_esEs19(xuu3110001, xuu6001, app(ty_Ratio, bcb)) -> new_esEs15(xuu3110001, xuu6001, bcb) 32.45/13.22 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 32.45/13.22 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.45/13.22 new_esEs18(xuu3110002, xuu6002, app(app(ty_Either, baf), bag)) -> new_esEs4(xuu3110002, xuu6002, baf, bag) 32.45/13.22 new_lt20(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) 32.45/13.22 new_lt10(xuu33000, xuu34000, app(app(ty_Either, ee), ef)) -> new_lt5(xuu33000, xuu34000, ee, ef) 32.45/13.22 new_ltEs12(EQ, EQ) -> True 32.45/13.22 new_esEs30(xuu22, xuu17, app(ty_Maybe, ddh)) -> new_esEs6(xuu22, xuu17, ddh) 32.45/13.22 new_esEs24(xuu33001, xuu34001, ty_Float) -> new_esEs11(xuu33001, xuu34001) 32.45/13.22 new_compare30(xuu33000, xuu34000, ty_Int) -> new_compare12(xuu33000, xuu34000) 32.45/13.22 new_esEs23(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.45/13.22 new_esEs12(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) 32.45/13.22 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Double, eg) -> new_esEs14(xuu3110000, xuu6000) 32.45/13.22 new_esEs20(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.45/13.22 new_compare30(xuu33000, xuu34000, ty_Integer) -> new_compare7(xuu33000, xuu34000) 32.45/13.22 new_compare23(Nothing, Nothing, False, dc) -> LT 32.45/13.22 new_esEs18(xuu3110002, xuu6002, ty_@0) -> new_esEs9(xuu3110002, xuu6002) 32.45/13.22 new_esEs19(xuu3110001, xuu6001, app(app(ty_@2, bbc), bbd)) -> new_esEs7(xuu3110001, xuu6001, bbc, bbd) 32.45/13.22 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.45/13.22 new_primPlusNat0(xuu107, xuu600100) -> new_primPlusNat1(xuu107, Succ(xuu600100)) 32.45/13.22 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.45/13.22 new_ltEs6(Right(xuu33000), Left(xuu34000), dd, de) -> False 32.45/13.22 new_not(False) -> True 32.45/13.22 new_esEs21(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) 32.45/13.22 new_esEs21(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) 32.45/13.22 new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_@2, dbb), dbc), de) -> new_ltEs14(xuu33000, xuu34000, dbb, dbc) 32.45/13.22 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_Maybe, dcc)) -> new_ltEs13(xuu33000, xuu34000, dcc) 32.45/13.22 new_ltEs5(xuu3300, xuu3400, ty_Int) -> new_ltEs7(xuu3300, xuu3400) 32.45/13.22 new_compare28(xuu33000, xuu34000, cbb, cbc, cbd) -> new_compare26(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, cbb, cbc, cbd), cbb, cbc, cbd) 32.45/13.22 new_ltEs8(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), df, dg, dh) -> new_pePe(new_lt10(xuu33000, xuu34000, df), new_asAs(new_esEs25(xuu33000, xuu34000, df), new_pePe(new_lt9(xuu33001, xuu34001, dg), new_asAs(new_esEs24(xuu33001, xuu34001, dg), new_ltEs19(xuu33002, xuu34002, dh))))) 32.45/13.22 new_compare30(xuu33000, xuu34000, ty_Bool) -> new_compare9(xuu33000, xuu34000) 32.45/13.22 new_compare0(:(xuu33000, xuu33001), [], bf) -> GT 32.45/13.22 new_esEs8(LT, GT) -> False 32.45/13.22 new_esEs8(GT, LT) -> False 32.45/13.22 new_esEs29(xuu311000, xuu600, app(ty_Ratio, dea)) -> new_esEs15(xuu311000, xuu600, dea) 32.45/13.22 new_esEs19(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) 32.45/13.22 new_esEs25(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) 32.45/13.22 new_compare25(xuu33000, xuu34000, True) -> EQ 32.45/13.22 new_compare27(xuu33000, xuu34000, True, bd, be) -> EQ 32.45/13.22 new_esEs29(xuu311000, xuu600, app(app(ty_@2, bfa), bfb)) -> new_esEs7(xuu311000, xuu600, bfa, bfb) 32.45/13.22 new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.45/13.22 new_esEs18(xuu3110002, xuu6002, app(ty_Maybe, bbb)) -> new_esEs6(xuu3110002, xuu6002, bbb) 32.45/13.22 new_ltEs16(False, False) -> True 32.45/13.22 new_compare11(xuu33000, xuu34000, True, ee, ef) -> LT 32.45/13.22 new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Ratio, beh)) -> new_ltEs15(xuu33000, xuu34000, beh) 32.45/13.22 new_ltEs19(xuu33002, xuu34002, ty_Int) -> new_ltEs7(xuu33002, xuu34002) 32.45/13.22 new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.45/13.22 new_esEs29(xuu311000, xuu600, app(ty_Maybe, bg)) -> new_esEs6(xuu311000, xuu600, bg) 32.45/13.22 new_lt10(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) 32.45/13.22 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 32.45/13.22 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 32.45/13.22 new_primPlusNat1(Zero, Zero) -> Zero 32.45/13.22 new_lt20(xuu33000, xuu34000, app(app(ty_@2, cgf), cgg)) -> new_lt4(xuu33000, xuu34000, cgf, cgg) 32.45/13.22 new_lt9(xuu33001, xuu34001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt11(xuu33001, xuu34001, cdb, cdc, cdd) 32.45/13.22 new_ltEs11(xuu3300, xuu3400) -> new_fsEs(new_compare18(xuu3300, xuu3400)) 32.45/13.22 new_lt19(xuu33000, xuu34000) -> new_esEs8(new_compare32(xuu33000, xuu34000), LT) 32.45/13.22 new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.45/13.22 new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.45/13.22 new_ltEs20(xuu33001, xuu34001, ty_Int) -> new_ltEs7(xuu33001, xuu34001) 32.45/13.22 new_lt20(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) 32.45/13.22 new_esEs28(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.45/13.22 new_lt10(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) 32.45/13.22 new_esEs21(xuu3110001, xuu6001, app(ty_[], bgc)) -> new_esEs16(xuu3110001, xuu6001, bgc) 32.45/13.22 new_ltEs16(True, True) -> True 32.45/13.22 new_lt13(xuu33000, xuu34000) -> new_esEs8(new_compare7(xuu33000, xuu34000), LT) 32.45/13.22 new_esEs20(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.45/13.22 new_esEs26(xuu33000, xuu34000, app(app(ty_Either, cfg), cfh)) -> new_esEs4(xuu33000, xuu34000, cfg, cfh) 32.45/13.22 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Bool, de) -> new_ltEs16(xuu33000, xuu34000) 32.45/13.22 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 32.45/13.22 new_ltEs5(xuu3300, xuu3400, app(ty_Ratio, ed)) -> new_ltEs15(xuu3300, xuu3400, ed) 32.45/13.22 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.45/13.22 new_esEs25(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) 32.45/13.22 new_primMulNat0(Succ(xuu311000000), Succ(xuu600100)) -> new_primPlusNat0(new_primMulNat0(xuu311000000, Succ(xuu600100)), xuu600100) 32.45/13.22 new_ltEs12(EQ, LT) -> False 32.45/13.22 new_ltEs5(xuu3300, xuu3400, app(ty_[], bf)) -> new_ltEs4(xuu3300, xuu3400, bf) 32.45/13.22 new_lt6(xuu330, xuu340) -> new_esEs8(new_compare12(xuu330, xuu340), LT) 32.45/13.22 new_lt7(xuu33000, xuu34000) -> new_esEs8(new_compare13(xuu33000, xuu34000), LT) 32.45/13.22 new_primCmpNat0(Succ(xuu3300), Succ(xuu3400)) -> new_primCmpNat0(xuu3300, xuu3400) 32.45/13.22 new_ltEs19(xuu33002, xuu34002, app(ty_Ratio, ccg)) -> new_ltEs15(xuu33002, xuu34002, ccg) 32.45/13.22 new_esEs26(xuu33000, xuu34000, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs5(xuu33000, xuu34000, cga, cgb, cgc) 32.45/13.22 new_esEs30(xuu22, xuu17, ty_Char) -> new_esEs10(xuu22, xuu17) 32.45/13.22 new_esEs21(xuu3110001, xuu6001, app(app(ty_@2, bfc), bfd)) -> new_esEs7(xuu3110001, xuu6001, bfc, bfd) 32.45/13.22 new_esEs26(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) 32.45/13.22 new_esEs18(xuu3110002, xuu6002, ty_Char) -> new_esEs10(xuu3110002, xuu6002) 32.45/13.22 new_esEs24(xuu33001, xuu34001, ty_Integer) -> new_esEs17(xuu33001, xuu34001) 32.45/13.22 new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_[], da)) -> new_esEs16(xuu3110000, xuu6000, da) 32.45/13.22 new_compare12(xuu33, xuu34) -> new_primCmpInt(xuu33, xuu34) 32.45/13.22 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(app(ty_@3, dbg), dbh), dca)) -> new_ltEs8(xuu33000, xuu34000, dbg, dbh, dca) 32.45/13.22 new_esEs19(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) 32.45/13.22 new_esEs16(:(xuu3110000, xuu3110001), [], bhg) -> False 32.45/13.22 new_esEs16([], :(xuu6000, xuu6001), bhg) -> False 32.45/13.22 new_esEs23(xuu3110000, xuu6000, app(ty_[], cah)) -> new_esEs16(xuu3110000, xuu6000, cah) 32.45/13.22 new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, fb), fc), fd), eg) -> new_esEs5(xuu3110000, xuu6000, fb, fc, fd) 32.45/13.22 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 32.45/13.22 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 32.45/13.22 new_ltEs12(LT, EQ) -> True 32.45/13.22 new_ltEs20(xuu33001, xuu34001, app(ty_[], cfb)) -> new_ltEs4(xuu33001, xuu34001, cfb) 32.45/13.22 new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.45/13.22 new_compare30(xuu33000, xuu34000, app(app(ty_Either, cha), chb)) -> new_compare8(xuu33000, xuu34000, cha, chb) 32.45/13.22 new_ltEs20(xuu33001, xuu34001, app(ty_Ratio, cff)) -> new_ltEs15(xuu33001, xuu34001, cff) 32.45/13.22 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Float, de) -> new_ltEs11(xuu33000, xuu34000) 32.45/13.22 new_ltEs9(xuu3300, xuu3400) -> new_fsEs(new_compare19(xuu3300, xuu3400)) 32.45/13.22 new_esEs27(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) 32.45/13.22 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_@0) -> new_ltEs18(xuu33000, xuu34000) 32.45/13.22 new_primEqNat0(Zero, Zero) -> True 32.45/13.22 new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, gb), eg) -> new_esEs6(xuu3110000, xuu6000, gb) 32.45/13.22 new_esEs20(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.45/13.22 new_esEs29(xuu311000, xuu600, ty_Ordering) -> new_esEs8(xuu311000, xuu600) 32.45/13.22 new_lt20(xuu33000, xuu34000, app(app(ty_Either, cfg), cfh)) -> new_lt5(xuu33000, xuu34000, cfg, cfh) 32.45/13.22 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Float, eg) -> new_esEs11(xuu3110000, xuu6000) 32.45/13.22 new_lt10(xuu33000, xuu34000, app(app(ty_@2, bd), be)) -> new_lt4(xuu33000, xuu34000, bd, be) 32.45/13.22 new_esEs22(xuu3110000, xuu6000, app(ty_[], bhe)) -> new_esEs16(xuu3110000, xuu6000, bhe) 32.45/13.22 new_asAs(False, xuu139) -> False 32.45/13.22 new_ltEs19(xuu33002, xuu34002, app(ty_[], ccc)) -> new_ltEs4(xuu33002, xuu34002, ccc) 32.45/13.22 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.45/13.22 new_compare30(xuu33000, xuu34000, ty_Ordering) -> new_compare31(xuu33000, xuu34000) 32.45/13.22 new_lt20(xuu33000, xuu34000, app(ty_Maybe, cge)) -> new_lt17(xuu33000, xuu34000, cge) 32.45/13.22 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Double, de) -> new_ltEs9(xuu33000, xuu34000) 32.45/13.22 new_lt20(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) 32.45/13.22 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) 32.45/13.22 new_ltEs13(Nothing, Just(xuu34000), ea) -> True 32.45/13.22 new_esEs23(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.45/13.22 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_[], hd)) -> new_esEs16(xuu3110000, xuu6000, hd) 32.45/13.22 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Char, de) -> new_ltEs17(xuu33000, xuu34000) 32.45/13.22 new_ltEs6(Left(xuu33000), Right(xuu34000), dd, de) -> True 32.45/13.22 new_esEs8(EQ, GT) -> False 32.45/13.22 new_esEs8(GT, EQ) -> False 32.45/13.22 new_esEs11(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 32.45/13.22 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Integer) -> new_ltEs10(xuu33000, xuu34000) 32.45/13.22 new_ltEs16(False, True) -> True 32.45/13.22 new_lt10(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) 32.45/13.22 new_esEs29(xuu311000, xuu600, ty_Char) -> new_esEs10(xuu311000, xuu600) 32.45/13.22 new_esEs21(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) 32.45/13.22 new_esEs20(xuu3110000, xuu6000, app(app(ty_@2, bce), bcf)) -> new_esEs7(xuu3110000, xuu6000, bce, bcf) 32.45/13.22 32.45/13.22 The set Q consists of the following terms: 32.45/13.22 32.45/13.22 new_lt10(x0, x1, app(ty_[], x2)) 32.45/13.22 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.22 new_esEs8(EQ, EQ) 32.45/13.22 new_esEs6(Just(x0), Just(x1), ty_Double) 32.45/13.22 new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 32.45/13.22 new_esEs4(Left(x0), Left(x1), ty_Double, x2) 32.45/13.22 new_esEs19(x0, x1, app(ty_[], x2)) 32.45/13.22 new_ltEs13(Nothing, Just(x0), x1) 32.45/13.22 new_lt9(x0, x1, ty_Bool) 32.45/13.22 new_lt10(x0, x1, ty_@0) 32.45/13.22 new_esEs29(x0, x1, ty_@0) 32.45/13.22 new_ltEs20(x0, x1, ty_Int) 32.45/13.22 new_esEs30(x0, x1, ty_Bool) 32.45/13.22 new_lt20(x0, x1, ty_Integer) 32.45/13.22 new_ltEs11(x0, x1) 32.45/13.22 new_lt5(x0, x1, x2, x3) 32.45/13.22 new_ltEs7(x0, x1) 32.45/13.22 new_esEs26(x0, x1, app(ty_Maybe, x2)) 32.45/13.22 new_esEs24(x0, x1, ty_Float) 32.45/13.22 new_ltEs19(x0, x1, app(ty_[], x2)) 32.45/13.22 new_esEs6(Just(x0), Just(x1), ty_Ordering) 32.45/13.22 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 32.45/13.22 new_esEs6(Just(x0), Nothing, x1) 32.45/13.22 new_compare0(:(x0, x1), [], x2) 32.45/13.22 new_primPlusNat1(Zero, Zero) 32.45/13.22 new_pePe(True, x0) 32.45/13.22 new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) 32.45/13.22 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 32.45/13.22 new_esEs29(x0, x1, ty_Bool) 32.45/13.22 new_esEs6(Nothing, Nothing, x0) 32.45/13.22 new_ltEs20(x0, x1, ty_Char) 32.45/13.22 new_lt10(x0, x1, ty_Bool) 32.45/13.22 new_ltEs9(x0, x1) 32.45/13.22 new_lt9(x0, x1, ty_Integer) 32.45/13.22 new_ltEs19(x0, x1, ty_Double) 32.45/13.22 new_esEs12(x0, x1) 32.45/13.22 new_primEqInt(Pos(Zero), Pos(Zero)) 32.45/13.22 new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) 32.45/13.22 new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.22 new_lt13(x0, x1) 32.45/13.22 new_lt7(x0, x1) 32.45/13.22 new_esEs4(Left(x0), Left(x1), ty_Int, x2) 32.45/13.22 new_esEs26(x0, x1, ty_Double) 32.45/13.22 new_ltEs5(x0, x1, app(ty_Ratio, x2)) 32.45/13.22 new_fsEs(x0) 32.45/13.22 new_lt9(x0, x1, ty_@0) 32.45/13.22 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 32.45/13.22 new_lt9(x0, x1, app(ty_Ratio, x2)) 32.45/13.22 new_esEs16([], :(x0, x1), x2) 32.45/13.22 new_primEqNat0(Zero, Succ(x0)) 32.45/13.22 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 32.45/13.22 new_lt10(x0, x1, ty_Char) 32.45/13.22 new_primEqInt(Neg(Zero), Neg(Zero)) 32.45/13.22 new_compare16(x0, x1, True, x2, x3) 32.45/13.22 new_ltEs20(x0, x1, app(ty_[], x2)) 32.45/13.22 new_esEs23(x0, x1, ty_Bool) 32.45/13.22 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 32.45/13.22 new_esEs6(Just(x0), Just(x1), ty_Char) 32.45/13.22 new_esEs4(Left(x0), Left(x1), ty_Char, x2) 32.45/13.22 new_esEs29(x0, x1, ty_Char) 32.45/13.22 new_ltEs16(False, False) 32.45/13.22 new_esEs20(x0, x1, app(ty_Ratio, x2)) 32.45/13.22 new_ltEs19(x0, x1, ty_Int) 32.45/13.22 new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) 32.45/13.22 new_compare30(x0, x1, ty_Double) 32.45/13.22 new_lt19(x0, x1) 32.45/13.22 new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) 32.45/13.22 new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 32.45/13.22 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 32.45/13.22 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 32.45/13.22 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.22 new_ltEs12(GT, EQ) 32.45/13.22 new_compare29(x0, x1, x2) 32.45/13.22 new_ltEs12(EQ, GT) 32.45/13.22 new_esEs19(x0, x1, app(ty_Ratio, x2)) 32.45/13.22 new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 32.45/13.22 new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) 32.45/13.22 new_ltEs13(Just(x0), Nothing, x1) 32.45/13.22 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.22 new_esEs30(x0, x1, ty_Integer) 32.45/13.22 new_compare6(x0, x1, x2, x3) 32.45/13.22 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.22 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.22 new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 32.45/13.22 new_primEqInt(Pos(Zero), Neg(Zero)) 32.45/13.22 new_primEqInt(Neg(Zero), Pos(Zero)) 32.45/13.22 new_compare14(x0, x1, True, x2, x3, x4) 32.45/13.22 new_ltEs20(x0, x1, ty_Ordering) 32.45/13.22 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 32.45/13.22 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 32.45/13.22 new_compare0([], :(x0, x1), x2) 32.45/13.22 new_compare16(x0, x1, False, x2, x3) 32.45/13.22 new_esEs19(x0, x1, ty_Float) 32.45/13.22 new_primCompAux0(x0, GT) 32.45/13.22 new_esEs29(x0, x1, ty_Int) 32.45/13.22 new_esEs20(x0, x1, app(ty_[], x2)) 32.45/13.22 new_compare210(x0, x1, False) 32.45/13.22 new_esEs18(x0, x1, app(ty_[], x2)) 32.45/13.22 new_esEs23(x0, x1, ty_Ordering) 32.45/13.22 new_pePe(False, x0) 32.45/13.22 new_esEs6(Just(x0), Just(x1), ty_Int) 32.45/13.22 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.22 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 32.45/13.22 new_lt20(x0, x1, app(ty_[], x2)) 32.45/13.22 new_lt20(x0, x1, app(ty_Ratio, x2)) 32.45/13.22 new_ltEs6(Left(x0), Left(x1), ty_Float, x2) 32.45/13.22 new_esEs25(x0, x1, ty_Integer) 32.45/13.22 new_esEs10(Char(x0), Char(x1)) 32.45/13.22 new_esEs23(x0, x1, ty_Integer) 32.45/13.22 new_esEs25(x0, x1, app(ty_[], x2)) 32.45/13.22 new_compare13(Char(x0), Char(x1)) 32.45/13.22 new_esEs30(x0, x1, app(ty_Maybe, x2)) 32.45/13.22 new_primEqNat0(Succ(x0), Succ(x1)) 32.45/13.22 new_primMulInt(Neg(x0), Neg(x1)) 32.45/13.22 new_compare30(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.22 new_ltEs13(Just(x0), Just(x1), ty_Float) 32.45/13.22 new_ltEs5(x0, x1, ty_Double) 32.45/13.22 new_esEs30(x0, x1, ty_Ordering) 32.45/13.22 new_esEs6(Just(x0), Just(x1), ty_@0) 32.45/13.22 new_esEs9(@0, @0) 32.45/13.22 new_esEs24(x0, x1, ty_Bool) 32.45/13.22 new_esEs4(Right(x0), Right(x1), x2, ty_Integer) 32.45/13.22 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.22 new_lt9(x0, x1, ty_Double) 32.45/13.22 new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 32.45/13.22 new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 32.45/13.22 new_esEs14(Double(x0, x1), Double(x2, x3)) 32.45/13.22 new_esEs4(Left(x0), Left(x1), ty_Bool, x2) 32.45/13.22 new_esEs6(Just(x0), Just(x1), ty_Bool) 32.45/13.22 new_esEs29(x0, x1, ty_Ordering) 32.45/13.22 new_lt10(x0, x1, ty_Float) 32.45/13.22 new_lt6(x0, x1) 32.45/13.22 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.22 new_ltEs5(x0, x1, ty_Ordering) 32.45/13.22 new_esEs30(x0, x1, ty_Double) 32.45/13.22 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.22 new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 32.45/13.22 new_ltEs19(x0, x1, ty_Char) 32.45/13.22 new_ltEs13(Just(x0), Just(x1), ty_Int) 32.45/13.22 new_esEs21(x0, x1, ty_Double) 32.45/13.22 new_lt10(x0, x1, ty_Ordering) 32.45/13.22 new_primPlusNat0(x0, x1) 32.45/13.22 new_compare23(Just(x0), Nothing, False, x1) 32.45/13.22 new_esEs26(x0, x1, ty_@0) 32.45/13.22 new_esEs23(x0, x1, ty_Double) 32.45/13.22 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 32.45/13.22 new_compare30(x0, x1, ty_Ordering) 32.45/13.22 new_compare23(x0, x1, True, x2) 32.45/13.22 new_primMulNat0(Succ(x0), Succ(x1)) 32.45/13.22 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.22 new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) 32.45/13.22 new_primPlusNat1(Zero, Succ(x0)) 32.45/13.22 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.22 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.22 new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 32.45/13.22 new_lt10(x0, x1, ty_Int) 32.45/13.22 new_compare25(x0, x1, True) 32.45/13.22 new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) 32.45/13.22 new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 32.45/13.22 new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 32.45/13.22 new_lt9(x0, x1, app(ty_[], x2)) 32.45/13.22 new_esEs8(GT, GT) 32.45/13.22 new_ltEs19(x0, x1, ty_Bool) 32.45/13.22 new_esEs28(x0, x1, ty_Integer) 32.45/13.22 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 32.45/13.22 new_ltEs16(True, False) 32.45/13.22 new_ltEs16(False, True) 32.45/13.22 new_ltEs12(EQ, LT) 32.45/13.22 new_ltEs12(LT, EQ) 32.45/13.22 new_esEs18(x0, x1, ty_Integer) 32.45/13.22 new_esEs8(LT, EQ) 32.45/13.22 new_esEs8(EQ, LT) 32.45/13.22 new_ltEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 32.45/13.22 new_esEs18(x0, x1, ty_Float) 32.45/13.22 new_ltEs12(GT, GT) 32.45/13.22 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.22 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.22 new_compare30(x0, x1, ty_@0) 32.45/13.22 new_primCmpInt(Neg(Zero), Neg(Zero)) 32.45/13.22 new_esEs22(x0, x1, ty_Integer) 32.45/13.22 new_lt20(x0, x1, ty_@0) 32.45/13.22 new_esEs13(False, True) 32.45/13.22 new_esEs13(True, False) 32.45/13.22 new_esEs23(x0, x1, app(ty_Ratio, x2)) 32.45/13.22 new_lt10(x0, x1, ty_Integer) 32.45/13.22 new_esEs11(Float(x0, x1), Float(x2, x3)) 32.45/13.22 new_esEs24(x0, x1, app(ty_Ratio, x2)) 32.45/13.22 new_esEs8(LT, LT) 32.45/13.22 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.22 new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 32.45/13.22 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.22 new_primCmpInt(Pos(Zero), Neg(Zero)) 32.45/13.22 new_primCmpInt(Neg(Zero), Pos(Zero)) 32.45/13.22 new_primMulInt(Pos(x0), Neg(x1)) 32.45/13.22 new_primMulInt(Neg(x0), Pos(x1)) 32.45/13.22 new_esEs20(x0, x1, ty_Char) 32.45/13.22 new_compare110(x0, x1, True) 32.45/13.22 new_ltEs6(Right(x0), Left(x1), x2, x3) 32.45/13.22 new_ltEs6(Left(x0), Right(x1), x2, x3) 32.45/13.22 new_primCompAux1(x0, x1, x2, x3) 32.45/13.22 new_esEs6(Just(x0), Just(x1), ty_Integer) 32.45/13.22 new_esEs18(x0, x1, ty_Int) 32.45/13.22 new_lt15(x0, x1) 32.45/13.22 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 32.45/13.22 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.22 new_compare23(Nothing, Nothing, False, x0) 32.45/13.22 new_esEs29(x0, x1, ty_Integer) 32.45/13.22 new_esEs24(x0, x1, app(ty_Maybe, x2)) 32.45/13.22 new_esEs16([], [], x0) 32.45/13.22 new_esEs4(Right(x0), Right(x1), x2, ty_@0) 32.45/13.22 new_primMulInt(Pos(x0), Pos(x1)) 32.45/13.22 new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 32.45/13.22 new_compare27(x0, x1, True, x2, x3) 32.45/13.22 new_esEs20(x0, x1, ty_Int) 32.45/13.22 new_ltEs20(x0, x1, ty_Double) 32.45/13.22 new_compare210(x0, x1, True) 32.45/13.22 new_compare10(x0, x1, False, x2) 32.45/13.22 new_esEs22(x0, x1, ty_Ordering) 32.45/13.22 new_esEs25(x0, x1, ty_@0) 32.45/13.22 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.22 new_esEs18(x0, x1, ty_Char) 32.45/13.22 new_ltEs12(LT, LT) 32.45/13.22 new_asAs(True, x0) 32.45/13.22 new_esEs29(x0, x1, app(ty_Ratio, x2)) 32.45/13.22 new_esEs23(x0, x1, app(ty_[], x2)) 32.45/13.22 new_ltEs6(Right(x0), Right(x1), x2, ty_Double) 32.45/13.22 new_ltEs6(Right(x0), Right(x1), x2, ty_@0) 32.45/13.22 new_compare24(x0, x1, False, x2, x3) 32.45/13.22 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.22 new_lt17(x0, x1, x2) 32.45/13.22 new_ltEs19(x0, x1, ty_Ordering) 32.45/13.22 new_ltEs5(x0, x1, app(ty_[], x2)) 32.45/13.22 new_esEs18(x0, x1, ty_Bool) 32.45/13.22 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.22 new_ltEs19(x0, x1, ty_Integer) 32.45/13.22 new_esEs23(x0, x1, ty_@0) 32.45/13.22 new_esEs20(x0, x1, ty_Float) 32.45/13.22 new_ltEs17(x0, x1) 32.45/13.22 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.22 new_primCmpNat0(Succ(x0), Succ(x1)) 32.45/13.22 new_compare30(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.22 new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.22 new_lt20(x0, x1, ty_Double) 32.45/13.22 new_compare26(x0, x1, True, x2, x3, x4) 32.45/13.22 new_esEs30(x0, x1, ty_@0) 32.45/13.22 new_ltEs20(x0, x1, ty_@0) 32.45/13.22 new_primMulNat0(Succ(x0), Zero) 32.45/13.22 new_primCmpNat0(Zero, Succ(x0)) 32.45/13.22 new_esEs16(:(x0, x1), :(x2, x3), x4) 32.45/13.22 new_compare0(:(x0, x1), :(x2, x3), x4) 32.45/13.22 new_ltEs15(x0, x1, x2) 32.45/13.22 new_esEs19(x0, x1, ty_Int) 32.45/13.22 new_lt9(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.22 new_compare30(x0, x1, app(ty_[], x2)) 32.45/13.22 new_ltEs10(x0, x1) 32.45/13.22 new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 32.45/13.22 new_esEs24(x0, x1, app(ty_[], x2)) 32.45/13.22 new_esEs20(x0, x1, ty_@0) 32.45/13.22 new_primCompAux0(x0, LT) 32.45/13.22 new_esEs6(Just(x0), Just(x1), ty_Float) 32.45/13.22 new_ltEs5(x0, x1, ty_Bool) 32.45/13.22 new_esEs4(Left(x0), Left(x1), ty_Float, x2) 32.45/13.22 new_compare7(Integer(x0), Integer(x1)) 32.45/13.22 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.22 new_ltEs13(Just(x0), Just(x1), ty_Bool) 32.45/13.22 new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 32.45/13.22 new_primMulNat0(Zero, Zero) 32.45/13.22 new_esEs22(x0, x1, ty_@0) 32.45/13.22 new_compare30(x0, x1, ty_Integer) 32.45/13.22 new_ltEs6(Left(x0), Left(x1), ty_Char, x2) 32.45/13.22 new_esEs4(Right(x0), Right(x1), x2, ty_Int) 32.45/13.22 new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.22 new_ltEs6(Left(x0), Left(x1), ty_Int, x2) 32.45/13.22 new_esEs17(Integer(x0), Integer(x1)) 32.45/13.22 new_ltEs5(x0, x1, ty_@0) 32.45/13.22 new_esEs19(x0, x1, ty_Ordering) 32.45/13.22 new_lt20(x0, x1, app(ty_Maybe, x2)) 32.45/13.22 new_lt12(x0, x1) 32.45/13.22 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 32.45/13.22 new_esEs24(x0, x1, ty_Double) 32.45/13.22 new_esEs18(x0, x1, ty_@0) 32.45/13.22 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.22 new_compare11(x0, x1, False, x2, x3) 32.45/13.22 new_lt9(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.22 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 32.45/13.22 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 32.45/13.22 new_compare10(x0, x1, True, x2) 32.45/13.22 new_esEs28(x0, x1, ty_Int) 32.45/13.22 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.22 new_esEs19(x0, x1, ty_Double) 32.45/13.22 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 32.45/13.22 new_esEs25(x0, x1, ty_Double) 32.45/13.22 new_esEs24(x0, x1, ty_Int) 32.45/13.22 new_lt4(x0, x1, x2, x3) 32.45/13.22 new_esEs21(x0, x1, ty_Bool) 32.45/13.22 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.22 new_esEs20(x0, x1, ty_Bool) 32.45/13.22 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 32.45/13.22 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.22 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.22 new_compare23(Just(x0), Just(x1), False, x2) 32.45/13.22 new_esEs19(x0, x1, ty_Char) 32.45/13.22 new_esEs4(Right(x0), Right(x1), x2, ty_Char) 32.45/13.22 new_esEs4(Right(x0), Right(x1), x2, ty_Double) 32.45/13.22 new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 32.45/13.22 new_ltEs13(Just(x0), Just(x1), ty_@0) 32.45/13.22 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.22 new_esEs24(x0, x1, ty_Ordering) 32.45/13.22 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.22 new_compare14(x0, x1, False, x2, x3, x4) 32.45/13.22 new_esEs30(x0, x1, app(ty_Ratio, x2)) 32.45/13.22 new_esEs29(x0, x1, app(ty_[], x2)) 32.45/13.22 new_esEs22(x0, x1, app(ty_Maybe, x2)) 32.45/13.22 new_lt11(x0, x1, x2, x3, x4) 32.45/13.22 new_not(True) 32.45/13.22 new_ltEs5(x0, x1, app(ty_Maybe, x2)) 32.45/13.22 new_compare17(x0, x1, False) 32.45/13.22 new_compare30(x0, x1, app(ty_Ratio, x2)) 32.45/13.22 new_esEs19(x0, x1, app(ty_Maybe, x2)) 32.45/13.22 new_ltEs13(Just(x0), Just(x1), ty_Char) 32.45/13.22 new_esEs23(x0, x1, app(ty_Maybe, x2)) 32.45/13.22 new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 32.45/13.22 new_esEs26(x0, x1, app(ty_[], x2)) 32.45/13.22 new_compare17(x0, x1, True) 32.45/13.22 new_ltEs6(Left(x0), Left(x1), ty_@0, x2) 32.45/13.22 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.22 new_esEs8(EQ, GT) 32.45/13.22 new_esEs8(GT, EQ) 32.45/13.22 new_esEs18(x0, x1, ty_Ordering) 32.45/13.22 new_esEs18(x0, x1, app(ty_Ratio, x2)) 32.45/13.22 new_esEs22(x0, x1, ty_Int) 32.45/13.22 new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 32.45/13.22 new_esEs24(x0, x1, ty_Char) 32.45/13.22 new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 32.45/13.22 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.22 new_ltEs6(Left(x0), Left(x1), ty_Double, x2) 32.45/13.22 new_esEs4(Left(x0), Left(x1), ty_Integer, x2) 32.45/13.22 new_lt9(x0, x1, app(ty_Maybe, x2)) 32.45/13.22 new_lt20(x0, x1, ty_Ordering) 32.45/13.22 new_esEs19(x0, x1, ty_@0) 32.45/13.22 new_ltEs13(Just(x0), Just(x1), ty_Integer) 32.45/13.22 new_esEs6(Nothing, Just(x0), x1) 32.45/13.22 new_esEs26(x0, x1, app(ty_Ratio, x2)) 32.45/13.22 new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.22 new_compare110(x0, x1, False) 32.45/13.22 new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) 32.45/13.22 new_esEs13(True, True) 32.45/13.22 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.22 new_esEs21(x0, x1, ty_@0) 32.45/13.22 new_ltEs18(x0, x1) 32.45/13.22 new_compare12(x0, x1) 32.45/13.22 new_compare30(x0, x1, ty_Bool) 32.45/13.22 new_esEs26(x0, x1, ty_Float) 32.45/13.22 new_compare27(x0, x1, False, x2, x3) 32.45/13.22 new_ltEs13(Nothing, Nothing, x0) 32.45/13.22 new_primPlusNat1(Succ(x0), Succ(x1)) 32.45/13.22 new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) 32.45/13.22 new_esEs22(x0, x1, ty_Bool) 32.45/13.22 new_ltEs19(x0, x1, ty_@0) 32.45/13.22 new_esEs21(x0, x1, ty_Float) 32.45/13.22 new_esEs21(x0, x1, app(ty_[], x2)) 32.45/13.22 new_compare11(x0, x1, True, x2, x3) 32.45/13.22 new_primEqNat0(Succ(x0), Zero) 32.45/13.22 new_primCompAux0(x0, EQ) 32.45/13.22 new_lt10(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.22 new_lt14(x0, x1) 32.45/13.22 new_ltEs19(x0, x1, ty_Float) 32.45/13.22 new_ltEs12(EQ, EQ) 32.45/13.22 new_compare28(x0, x1, x2, x3, x4) 32.45/13.22 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 32.45/13.22 new_esEs27(x0, x1, ty_Int) 32.45/13.22 new_lt8(x0, x1, x2) 32.45/13.22 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.22 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 32.45/13.22 new_esEs22(x0, x1, ty_Char) 32.45/13.22 new_compare25(x0, x1, False) 32.45/13.22 new_esEs21(x0, x1, app(ty_Ratio, x2)) 32.45/13.22 new_ltEs5(x0, x1, ty_Integer) 32.45/13.22 new_esEs25(x0, x1, ty_Ordering) 32.45/13.22 new_esEs4(Left(x0), Right(x1), x2, x3) 32.45/13.22 new_esEs4(Right(x0), Left(x1), x2, x3) 32.45/13.22 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 32.45/13.22 new_esEs20(x0, x1, ty_Integer) 32.45/13.22 new_esEs22(x0, x1, ty_Double) 32.45/13.22 new_lt10(x0, x1, app(ty_Ratio, x2)) 32.45/13.22 new_primCmpInt(Pos(Zero), Pos(Zero)) 32.45/13.22 new_lt10(x0, x1, app(ty_Maybe, x2)) 32.45/13.22 new_compare0([], [], x0) 32.45/13.22 new_ltEs20(x0, x1, ty_Integer) 32.45/13.22 new_esEs29(x0, x1, ty_Double) 32.45/13.22 new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 32.45/13.22 new_lt9(x0, x1, ty_Ordering) 32.45/13.22 new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 32.45/13.22 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 32.45/13.22 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 32.45/13.22 new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) 32.45/13.22 new_ltEs5(x0, x1, ty_Float) 32.45/13.22 new_ltEs13(Just(x0), Just(x1), ty_Double) 32.45/13.22 new_esEs22(x0, x1, app(ty_[], x2)) 32.45/13.22 new_compare30(x0, x1, ty_Char) 32.45/13.22 new_esEs4(Left(x0), Left(x1), ty_@0, x2) 32.45/13.22 new_esEs19(x0, x1, ty_Integer) 32.45/13.22 new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 32.45/13.22 new_esEs29(x0, x1, ty_Float) 32.45/13.22 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.22 new_esEs20(x0, x1, ty_Double) 32.45/13.22 new_sr(x0, x1) 32.45/13.22 new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 32.45/13.22 new_esEs30(x0, x1, ty_Float) 32.45/13.22 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 32.45/13.22 new_compare24(x0, x1, True, x2, x3) 32.45/13.22 new_esEs30(x0, x1, app(ty_[], x2)) 32.45/13.22 new_esEs21(x0, x1, ty_Ordering) 32.45/13.22 new_compare9(x0, x1) 32.45/13.22 new_esEs20(x0, x1, ty_Ordering) 32.45/13.22 new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 32.45/13.22 new_esEs21(x0, x1, ty_Int) 32.45/13.22 new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.22 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.22 new_lt9(x0, x1, ty_Float) 32.45/13.22 new_esEs29(x0, x1, app(ty_Maybe, x2)) 32.45/13.22 new_esEs8(LT, GT) 32.45/13.22 new_esEs8(GT, LT) 32.45/13.22 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 32.45/13.22 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.22 new_esEs19(x0, x1, ty_Bool) 32.45/13.22 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 32.45/13.22 new_esEs25(x0, x1, ty_Char) 32.45/13.22 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 32.45/13.22 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.22 new_ltEs5(x0, x1, ty_Int) 32.45/13.22 new_ltEs20(x0, x1, ty_Bool) 32.45/13.22 new_compare26(x0, x1, False, x2, x3, x4) 32.45/13.22 new_esEs21(x0, x1, ty_Char) 32.45/13.22 new_esEs22(x0, x1, ty_Float) 32.45/13.22 new_esEs26(x0, x1, ty_Char) 32.45/13.22 new_esEs24(x0, x1, ty_Integer) 32.45/13.22 new_esEs4(Right(x0), Right(x1), x2, ty_Bool) 32.45/13.22 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.22 new_lt9(x0, x1, ty_Char) 32.45/13.22 new_lt10(x0, x1, ty_Double) 32.45/13.22 new_esEs24(x0, x1, ty_@0) 32.45/13.22 new_compare23(Nothing, Just(x0), False, x1) 32.45/13.22 new_esEs26(x0, x1, ty_Int) 32.45/13.22 new_compare30(x0, x1, ty_Int) 32.45/13.22 new_compare8(x0, x1, x2, x3) 32.45/13.22 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 32.45/13.22 new_lt10(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.22 new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) 32.45/13.22 new_esEs21(x0, x1, app(ty_Maybe, x2)) 32.45/13.22 new_asAs(False, x0) 32.45/13.22 new_esEs16(:(x0, x1), [], x2) 32.45/13.22 new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 32.45/13.22 new_ltEs13(Just(x0), Just(x1), ty_Ordering) 32.45/13.22 new_esEs25(x0, x1, ty_Bool) 32.45/13.22 new_lt9(x0, x1, ty_Int) 32.45/13.22 new_lt18(x0, x1) 32.45/13.22 new_esEs23(x0, x1, ty_Int) 32.45/13.22 new_compare30(x0, x1, app(ty_Maybe, x2)) 32.45/13.22 new_primEqNat0(Zero, Zero) 32.45/13.22 new_esEs13(False, False) 32.45/13.22 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 32.45/13.22 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.22 new_primMulNat0(Zero, Succ(x0)) 32.45/13.22 new_ltEs5(x0, x1, ty_Char) 32.45/13.22 new_not(False) 32.45/13.22 new_lt20(x0, x1, ty_Float) 32.45/13.22 new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 32.45/13.22 new_esEs26(x0, x1, ty_Ordering) 32.45/13.22 new_ltEs16(True, True) 32.45/13.22 new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) 32.45/13.22 new_lt20(x0, x1, ty_Bool) 32.45/13.22 new_ltEs12(LT, GT) 32.45/13.22 new_ltEs12(GT, LT) 32.45/13.22 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.22 new_esEs25(x0, x1, ty_Int) 32.45/13.22 new_esEs30(x0, x1, ty_Char) 32.45/13.22 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 32.45/13.22 new_ltEs6(Right(x0), Right(x1), x2, ty_Float) 32.45/13.22 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 32.45/13.22 new_esEs22(x0, x1, app(ty_Ratio, x2)) 32.45/13.22 new_esEs26(x0, x1, ty_Bool) 32.45/13.22 new_esEs23(x0, x1, ty_Char) 32.45/13.22 new_esEs15(:%(x0, x1), :%(x2, x3), x4) 32.45/13.22 new_sr0(Integer(x0), Integer(x1)) 32.45/13.22 new_compare30(x0, x1, ty_Float) 32.45/13.22 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 32.45/13.22 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 32.45/13.22 new_esEs26(x0, x1, ty_Integer) 32.45/13.22 new_esEs25(x0, x1, app(ty_Ratio, x2)) 32.45/13.22 new_esEs25(x0, x1, app(ty_Maybe, x2)) 32.45/13.22 new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) 32.45/13.22 new_esEs20(x0, x1, app(ty_Maybe, x2)) 32.45/13.22 new_ltEs6(Right(x0), Right(x1), x2, ty_Char) 32.45/13.22 new_esEs23(x0, x1, ty_Float) 32.45/13.22 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 32.45/13.22 new_primPlusNat1(Succ(x0), Zero) 32.45/13.22 new_esEs30(x0, x1, ty_Int) 32.45/13.22 new_esEs18(x0, x1, app(ty_Maybe, x2)) 32.45/13.22 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 32.45/13.22 new_ltEs4(x0, x1, x2) 32.45/13.22 new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) 32.45/13.22 new_ltEs20(x0, x1, ty_Float) 32.45/13.22 new_esEs18(x0, x1, ty_Double) 32.45/13.22 new_lt20(x0, x1, ty_Int) 32.45/13.22 new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.22 new_esEs21(x0, x1, ty_Integer) 32.45/13.22 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.22 new_esEs27(x0, x1, ty_Integer) 32.45/13.22 new_primCmpNat0(Succ(x0), Zero) 32.45/13.22 new_lt16(x0, x1, x2) 32.45/13.22 new_compare31(x0, x1) 32.45/13.22 new_esEs4(Right(x0), Right(x1), x2, ty_Float) 32.45/13.22 new_esEs25(x0, x1, ty_Float) 32.45/13.22 new_ltEs6(Right(x0), Right(x1), x2, ty_Int) 32.45/13.22 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 32.45/13.22 new_compare32(@0, @0) 32.45/13.22 new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 32.45/13.22 new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 32.45/13.22 new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 32.45/13.22 new_primCmpNat0(Zero, Zero) 32.45/13.22 new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 32.45/13.22 new_lt20(x0, x1, ty_Char) 32.45/13.22 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.22 32.45/13.22 We have to consider all minimal (P,Q,R)-chains. 32.45/13.22 ---------------------------------------- 32.45/13.22 32.45/13.22 (30) TransformationProof (EQUIVALENT) 32.45/13.22 By rewriting [LPAR04] the rule new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Nothing, False, h), GT), h, ba) at position [6,0] we obtained the following new rules [LPAR04]: 32.45/13.22 32.45/13.22 (new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(GT, GT), h, ba),new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(GT, GT), h, ba)) 32.45/13.22 32.45/13.22 32.45/13.22 ---------------------------------------- 32.45/13.22 32.45/13.22 (31) 32.45/13.22 Obligation: 32.45/13.22 Q DP problem: 32.45/13.22 The TRS P consists of the following rules: 32.45/13.22 32.45/13.22 new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu21, Just(xuu22), xuu23, bb, bc) 32.45/13.22 new_addToFM_C(Branch(Just(xuu600), xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Just(xuu600), new_esEs29(xuu311000, xuu600, h), h), LT), h, ba) 32.45/13.22 new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, bb, bc) -> new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs8(new_compare23(Just(xuu22), Just(xuu17), new_esEs30(xuu22, xuu17, bb), bb), GT), bb, bc) 32.45/13.22 new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu20, Just(xuu22), xuu23, bb, bc) 32.45/13.22 new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Just(xuu311000), xuu31101, h, ba) 32.45/13.22 new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) 32.45/13.22 new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(GT, GT), h, ba) 32.45/13.22 32.45/13.22 The TRS R consists of the following rules: 32.45/13.22 32.45/13.22 new_lt20(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) 32.45/13.22 new_esEs20(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.45/13.22 new_compare30(xuu33000, xuu34000, app(app(app(ty_@3, chc), chd), che)) -> new_compare28(xuu33000, xuu34000, chc, chd, che) 32.45/13.22 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 32.45/13.22 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Float) -> new_ltEs11(xuu33000, xuu34000) 32.45/13.22 new_primCmpInt(Neg(Succ(xuu3300)), Pos(xuu340)) -> LT 32.45/13.22 new_compare8(xuu33000, xuu34000, ee, ef) -> new_compare24(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, ee, ef), ee, ef) 32.45/13.22 new_esEs23(xuu3110000, xuu6000, app(ty_Maybe, cba)) -> new_esEs6(xuu3110000, xuu6000, cba) 32.45/13.22 new_pePe(True, xuu165) -> True 32.45/13.22 new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.45/13.22 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.45/13.22 new_esEs30(xuu22, xuu17, ty_Ordering) -> new_esEs8(xuu22, xuu17) 32.45/13.22 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Float) -> new_ltEs11(xuu33000, xuu34000) 32.45/13.22 new_esEs17(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) 32.45/13.22 new_lt4(xuu33000, xuu34000, bd, be) -> new_esEs8(new_compare6(xuu33000, xuu34000, bd, be), LT) 32.45/13.22 new_esEs29(xuu311000, xuu600, ty_Int) -> new_esEs12(xuu311000, xuu600) 32.45/13.22 new_esEs30(xuu22, xuu17, ty_Bool) -> new_esEs13(xuu22, xuu17) 32.45/13.22 new_compare23(xuu330, xuu340, True, dc) -> EQ 32.45/13.22 new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Maybe, bee)) -> new_ltEs13(xuu33000, xuu34000, bee) 32.45/13.22 new_lt15(xuu33000, xuu34000) -> new_esEs8(new_compare31(xuu33000, xuu34000), LT) 32.45/13.22 new_lt10(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) 32.45/13.22 new_ltEs12(LT, LT) -> True 32.45/13.22 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.45/13.22 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(ty_@2, dcd), dce)) -> new_ltEs14(xuu33000, xuu34000, dcd, dce) 32.45/13.22 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Char) -> new_ltEs17(xuu33000, xuu34000) 32.45/13.22 new_esEs4(Left(xuu3110000), Right(xuu6000), gc, eg) -> False 32.45/13.22 new_esEs4(Right(xuu3110000), Left(xuu6000), gc, eg) -> False 32.45/13.22 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Int, de) -> new_ltEs7(xuu33000, xuu34000) 32.45/13.22 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 32.45/13.22 new_primCmpInt(Pos(Zero), Neg(Succ(xuu3400))) -> GT 32.45/13.22 new_esEs29(xuu311000, xuu600, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs5(xuu311000, xuu600, hf, hg, hh) 32.45/13.22 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_[], dcb)) -> new_ltEs4(xuu33000, xuu34000, dcb) 32.45/13.22 new_esEs15(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), dea) -> new_asAs(new_esEs28(xuu3110000, xuu6000, dea), new_esEs27(xuu3110001, xuu6001, dea)) 32.45/13.22 new_esEs24(xuu33001, xuu34001, ty_Ordering) -> new_esEs8(xuu33001, xuu34001) 32.45/13.22 new_ltEs14(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), eb, ec) -> new_pePe(new_lt20(xuu33000, xuu34000, eb), new_asAs(new_esEs26(xuu33000, xuu34000, eb), new_ltEs20(xuu33001, xuu34001, ec))) 32.45/13.22 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_Ratio, dcf)) -> new_ltEs15(xuu33000, xuu34000, dcf) 32.45/13.22 new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, bhb), bhc)) -> new_esEs4(xuu3110000, xuu6000, bhb, bhc) 32.45/13.22 new_compare0(:(xuu33000, xuu33001), :(xuu34000, xuu34001), bf) -> new_primCompAux1(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, bf), bf) 32.45/13.22 new_primCmpInt(Neg(Succ(xuu3300)), Neg(xuu340)) -> new_primCmpNat0(xuu340, Succ(xuu3300)) 32.45/13.22 new_lt9(xuu33001, xuu34001, app(ty_[], cde)) -> new_lt16(xuu33001, xuu34001, cde) 32.45/13.22 new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_Either, bdg), bdh)) -> new_ltEs6(xuu33000, xuu34000, bdg, bdh) 32.45/13.22 new_lt10(xuu33000, xuu34000, app(ty_Ratio, cbe)) -> new_lt8(xuu33000, xuu34000, cbe) 32.45/13.22 new_esEs28(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.45/13.22 new_esEs26(xuu33000, xuu34000, app(app(ty_@2, cgf), cgg)) -> new_esEs7(xuu33000, xuu34000, cgf, cgg) 32.45/13.22 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Char) -> new_ltEs17(xuu33000, xuu34000) 32.45/13.22 new_esEs23(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.45/13.22 new_ltEs20(xuu33001, xuu34001, ty_@0) -> new_ltEs18(xuu33001, xuu34001) 32.45/13.22 new_esEs5(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), hf, hg, hh) -> new_asAs(new_esEs20(xuu3110000, xuu6000, hf), new_asAs(new_esEs19(xuu3110001, xuu6001, hg), new_esEs18(xuu3110002, xuu6002, hh))) 32.45/13.22 new_esEs10(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) 32.45/13.22 new_ltEs7(xuu3300, xuu3400) -> new_fsEs(new_compare12(xuu3300, xuu3400)) 32.45/13.22 new_esEs18(xuu3110002, xuu6002, ty_Ordering) -> new_esEs8(xuu3110002, xuu6002) 32.45/13.22 new_compare25(xuu33000, xuu34000, False) -> new_compare17(xuu33000, xuu34000, new_ltEs16(xuu33000, xuu34000)) 32.45/13.22 new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_[], dah), de) -> new_ltEs4(xuu33000, xuu34000, dah) 32.45/13.22 new_esEs18(xuu3110002, xuu6002, ty_Bool) -> new_esEs13(xuu3110002, xuu6002) 32.45/13.22 new_primCompAux0(xuu182, GT) -> GT 32.45/13.22 new_lt9(xuu33001, xuu34001, ty_Bool) -> new_lt18(xuu33001, xuu34001) 32.45/13.22 new_esEs23(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.45/13.22 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Double) -> new_ltEs9(xuu33000, xuu34000) 32.45/13.22 new_compare210(xuu33000, xuu34000, False) -> new_compare110(xuu33000, xuu34000, new_ltEs12(xuu33000, xuu34000)) 32.45/13.22 new_esEs18(xuu3110002, xuu6002, app(ty_Ratio, bah)) -> new_esEs15(xuu3110002, xuu6002, bah) 32.45/13.22 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Integer, eg) -> new_esEs17(xuu3110000, xuu6000) 32.45/13.22 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False 32.45/13.22 new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False 32.45/13.22 new_esEs8(GT, GT) -> True 32.45/13.22 new_fsEs(xuu149) -> new_not(new_esEs8(xuu149, GT)) 32.45/13.22 new_esEs19(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) 32.45/13.22 new_lt12(xuu33000, xuu34000) -> new_esEs8(new_compare19(xuu33000, xuu34000), LT) 32.45/13.22 new_esEs24(xuu33001, xuu34001, app(ty_Ratio, cea)) -> new_esEs15(xuu33001, xuu34001, cea) 32.45/13.22 new_esEs20(xuu3110000, xuu6000, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs5(xuu3110000, xuu6000, bcg, bch, bda) 32.45/13.22 new_ltEs4(xuu3300, xuu3400, bf) -> new_fsEs(new_compare0(xuu3300, xuu3400, bf)) 32.45/13.22 new_esEs8(EQ, EQ) -> True 32.45/13.22 new_esEs24(xuu33001, xuu34001, ty_Bool) -> new_esEs13(xuu33001, xuu34001) 32.45/13.22 new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Ratio, dbd), de) -> new_ltEs15(xuu33000, xuu34000, dbd) 32.45/13.22 new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) 32.45/13.22 new_lt10(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) 32.45/13.22 new_lt10(xuu33000, xuu34000, app(ty_Maybe, cec)) -> new_lt17(xuu33000, xuu34000, cec) 32.45/13.22 new_ltEs20(xuu33001, xuu34001, ty_Integer) -> new_ltEs10(xuu33001, xuu34001) 32.45/13.22 new_primCompAux0(xuu182, LT) -> LT 32.45/13.22 new_not(True) -> False 32.45/13.22 new_ltEs19(xuu33002, xuu34002, ty_@0) -> new_ltEs18(xuu33002, xuu34002) 32.45/13.22 new_ltEs12(LT, GT) -> True 32.45/13.22 new_primCmpNat0(Zero, Zero) -> EQ 32.45/13.22 new_esEs18(xuu3110002, xuu6002, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs5(xuu3110002, xuu6002, bac, bad, bae) 32.45/13.22 new_compare6(xuu33000, xuu34000, bd, be) -> new_compare27(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, bd, be), bd, be) 32.45/13.22 new_compare16(xuu33000, xuu34000, False, bd, be) -> GT 32.45/13.22 new_ltEs19(xuu33002, xuu34002, ty_Integer) -> new_ltEs10(xuu33002, xuu34002) 32.45/13.22 new_esEs25(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) 32.45/13.22 new_compare14(xuu33000, xuu34000, True, cbb, cbc, cbd) -> LT 32.45/13.22 new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.45/13.22 new_esEs30(xuu22, xuu17, app(ty_Ratio, ddf)) -> new_esEs15(xuu22, xuu17, ddf) 32.45/13.22 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.45/13.22 new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_Either, dac), dad), de) -> new_ltEs6(xuu33000, xuu34000, dac, dad) 32.45/13.22 new_esEs19(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) 32.45/13.22 new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_[], bed)) -> new_ltEs4(xuu33000, xuu34000, bed) 32.45/13.22 new_primEqNat0(Succ(xuu31100000), Zero) -> False 32.45/13.22 new_primEqNat0(Zero, Succ(xuu60000)) -> False 32.45/13.22 new_ltEs5(xuu3300, xuu3400, app(app(ty_Either, dd), de)) -> new_ltEs6(xuu3300, xuu3400, dd, de) 32.45/13.22 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.45/13.22 new_lt20(xuu33000, xuu34000, app(ty_Ratio, cgh)) -> new_lt8(xuu33000, xuu34000, cgh) 32.45/13.22 new_esEs19(xuu3110001, xuu6001, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs5(xuu3110001, xuu6001, bbe, bbf, bbg) 32.45/13.22 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_@0, eg) -> new_esEs9(xuu3110000, xuu6000) 32.45/13.22 new_esEs29(xuu311000, xuu600, ty_Bool) -> new_esEs13(xuu311000, xuu600) 32.45/13.22 new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, dae), daf), dag), de) -> new_ltEs8(xuu33000, xuu34000, dae, daf, dag) 32.45/13.22 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_@0) -> new_ltEs18(xuu33000, xuu34000) 32.45/13.22 new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, bge), bgf)) -> new_esEs7(xuu3110000, xuu6000, bge, bgf) 32.45/13.22 new_esEs25(xuu33000, xuu34000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs5(xuu33000, xuu34000, cbb, cbc, cbd) 32.45/13.22 new_compare110(xuu33000, xuu34000, True) -> LT 32.45/13.22 new_lt9(xuu33001, xuu34001, app(app(ty_@2, cdg), cdh)) -> new_lt4(xuu33001, xuu34001, cdg, cdh) 32.45/13.22 new_ltEs5(xuu3300, xuu3400, ty_Ordering) -> new_ltEs12(xuu3300, xuu3400) 32.45/13.22 new_lt9(xuu33001, xuu34001, ty_Int) -> new_lt6(xuu33001, xuu34001) 32.45/13.22 new_esEs27(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) 32.45/13.22 new_esEs20(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.45/13.22 new_compare23(Just(xuu3300), Just(xuu3400), False, dc) -> new_compare10(xuu3300, xuu3400, new_ltEs5(xuu3300, xuu3400, dc), dc) 32.45/13.22 new_lt20(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) 32.45/13.22 new_compare30(xuu33000, xuu34000, app(ty_Ratio, dab)) -> new_compare15(xuu33000, xuu34000, dab) 32.45/13.22 new_lt20(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) 32.45/13.22 new_primCmpInt(Pos(Succ(xuu3300)), Neg(xuu340)) -> GT 32.45/13.22 new_ltEs10(xuu3300, xuu3400) -> new_fsEs(new_compare7(xuu3300, xuu3400)) 32.45/13.22 new_compare24(xuu33000, xuu34000, False, ee, ef) -> new_compare11(xuu33000, xuu34000, new_ltEs6(xuu33000, xuu34000, ee, ef), ee, ef) 32.45/13.22 new_lt5(xuu33000, xuu34000, ee, ef) -> new_esEs8(new_compare8(xuu33000, xuu34000, ee, ef), LT) 32.45/13.22 new_esEs20(xuu3110000, xuu6000, app(ty_Ratio, bdd)) -> new_esEs15(xuu3110000, xuu6000, bdd) 32.45/13.22 new_esEs24(xuu33001, xuu34001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs5(xuu33001, xuu34001, cdb, cdc, cdd) 32.45/13.22 new_esEs30(xuu22, xuu17, app(app(app(ty_@3, dda), ddb), ddc)) -> new_esEs5(xuu22, xuu17, dda, ddb, ddc) 32.45/13.22 new_esEs26(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) 32.45/13.22 new_primPlusNat1(Succ(xuu28200), Succ(xuu9700)) -> Succ(Succ(new_primPlusNat1(xuu28200, xuu9700))) 32.45/13.22 new_lt9(xuu33001, xuu34001, ty_Char) -> new_lt7(xuu33001, xuu34001) 32.45/13.22 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Double) -> new_ltEs9(xuu33000, xuu34000) 32.45/13.22 new_lt18(xuu33000, xuu34000) -> new_esEs8(new_compare9(xuu33000, xuu34000), LT) 32.45/13.22 new_primCmpNat0(Zero, Succ(xuu3400)) -> LT 32.45/13.22 new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Maybe, dba), de) -> new_ltEs13(xuu33000, xuu34000, dba) 32.45/13.22 new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Integer) -> new_compare7(new_sr0(xuu33000, xuu34001), new_sr0(xuu34000, xuu33001)) 32.45/13.22 new_esEs30(xuu22, xuu17, ty_Int) -> new_esEs12(xuu22, xuu17) 32.45/13.22 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Bool, eg) -> new_esEs13(xuu3110000, xuu6000) 32.45/13.22 new_esEs18(xuu3110002, xuu6002, ty_Int) -> new_esEs12(xuu3110002, xuu6002) 32.45/13.22 new_compare210(xuu33000, xuu34000, True) -> EQ 32.45/13.22 new_esEs24(xuu33001, xuu34001, ty_Int) -> new_esEs12(xuu33001, xuu34001) 32.45/13.22 new_lt9(xuu33001, xuu34001, app(ty_Ratio, cea)) -> new_lt8(xuu33001, xuu34001, cea) 32.45/13.22 new_esEs21(xuu3110001, xuu6001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs5(xuu3110001, xuu6001, bfe, bff, bfg) 32.45/13.22 new_primCmpNat0(Succ(xuu3300), Zero) -> GT 32.45/13.22 new_ltEs20(xuu33001, xuu34001, app(ty_Maybe, cfc)) -> new_ltEs13(xuu33001, xuu34001, cfc) 32.45/13.22 new_pePe(False, xuu165) -> xuu165 32.45/13.22 new_ltEs5(xuu3300, xuu3400, ty_Char) -> new_ltEs17(xuu3300, xuu3400) 32.45/13.22 new_esEs20(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.45/13.22 new_esEs23(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.45/13.22 new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.45/13.22 new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.45/13.22 new_ltEs20(xuu33001, xuu34001, ty_Float) -> new_ltEs11(xuu33001, xuu34001) 32.45/13.22 new_ltEs12(GT, GT) -> True 32.45/13.22 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Ordering, eg) -> new_esEs8(xuu3110000, xuu6000) 32.45/13.22 new_ltEs18(xuu3300, xuu3400) -> new_fsEs(new_compare32(xuu3300, xuu3400)) 32.45/13.22 new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Int) -> new_compare12(new_sr(xuu33000, xuu34001), new_sr(xuu34000, xuu33001)) 32.45/13.22 new_ltEs20(xuu33001, xuu34001, ty_Double) -> new_ltEs9(xuu33001, xuu34001) 32.45/13.22 new_ltEs19(xuu33002, xuu34002, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs8(xuu33002, xuu34002, cbh, cca, ccb) 32.45/13.22 new_esEs29(xuu311000, xuu600, ty_Integer) -> new_esEs17(xuu311000, xuu600) 32.45/13.22 new_esEs21(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) 32.45/13.22 new_ltEs12(GT, EQ) -> False 32.45/13.22 new_esEs24(xuu33001, xuu34001, ty_@0) -> new_esEs9(xuu33001, xuu34001) 32.45/13.22 new_esEs21(xuu3110001, xuu6001, app(app(ty_Either, bfh), bga)) -> new_esEs4(xuu3110001, xuu6001, bfh, bga) 32.45/13.22 new_esEs18(xuu3110002, xuu6002, ty_Float) -> new_esEs11(xuu3110002, xuu6002) 32.45/13.22 new_lt10(xuu33000, xuu34000, app(ty_[], ceb)) -> new_lt16(xuu33000, xuu34000, ceb) 32.45/13.22 new_compare27(xuu33000, xuu34000, False, bd, be) -> new_compare16(xuu33000, xuu34000, new_ltEs14(xuu33000, xuu34000, bd, be), bd, be) 32.45/13.22 new_esEs26(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) 32.45/13.22 new_compare7(Integer(xuu33000), Integer(xuu34000)) -> new_primCmpInt(xuu33000, xuu34000) 32.45/13.22 new_compare10(xuu132, xuu133, False, ced) -> GT 32.45/13.22 new_esEs30(xuu22, xuu17, ty_Float) -> new_esEs11(xuu22, xuu17) 32.45/13.22 new_esEs8(LT, EQ) -> False 32.45/13.22 new_esEs8(EQ, LT) -> False 32.45/13.22 new_compare17(xuu33000, xuu34000, True) -> LT 32.45/13.22 new_compare11(xuu33000, xuu34000, False, ee, ef) -> GT 32.45/13.22 new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, bhf)) -> new_esEs6(xuu3110000, xuu6000, bhf) 32.45/13.22 new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False 32.45/13.22 new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False 32.45/13.22 new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.45/13.22 new_esEs21(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) 32.45/13.22 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Ordering, de) -> new_ltEs12(xuu33000, xuu34000) 32.45/13.22 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Integer) -> new_ltEs10(xuu33000, xuu34000) 32.45/13.22 new_compare30(xuu33000, xuu34000, app(ty_Maybe, chg)) -> new_compare29(xuu33000, xuu34000, chg) 32.45/13.22 new_ltEs5(xuu3300, xuu3400, app(ty_Maybe, ea)) -> new_ltEs13(xuu3300, xuu3400, ea) 32.45/13.22 new_esEs26(xuu33000, xuu34000, app(ty_[], cgd)) -> new_esEs16(xuu33000, xuu34000, cgd) 32.45/13.22 new_ltEs17(xuu3300, xuu3400) -> new_fsEs(new_compare13(xuu3300, xuu3400)) 32.45/13.22 new_ltEs15(xuu3300, xuu3400, ed) -> new_fsEs(new_compare15(xuu3300, xuu3400, ed)) 32.45/13.22 new_ltEs19(xuu33002, xuu34002, app(app(ty_@2, cce), ccf)) -> new_ltEs14(xuu33002, xuu34002, cce, ccf) 32.45/13.22 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 32.45/13.22 new_esEs25(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) 32.45/13.22 new_esEs23(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.45/13.22 new_primCmpInt(Neg(Zero), Pos(Succ(xuu3400))) -> LT 32.45/13.22 new_compare13(Char(xuu33000), Char(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) 32.45/13.22 new_ltEs5(xuu3300, xuu3400, app(app(app(ty_@3, df), dg), dh)) -> new_ltEs8(xuu3300, xuu3400, df, dg, dh) 32.45/13.22 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Int, eg) -> new_esEs12(xuu3110000, xuu6000) 32.45/13.22 new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.45/13.22 new_ltEs20(xuu33001, xuu34001, ty_Char) -> new_ltEs17(xuu33001, xuu34001) 32.45/13.22 new_compare17(xuu33000, xuu34000, False) -> GT 32.45/13.22 new_lt9(xuu33001, xuu34001, ty_Integer) -> new_lt13(xuu33001, xuu34001) 32.45/13.22 new_primMulInt(Pos(xuu31100000), Pos(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) 32.45/13.22 new_compare30(xuu33000, xuu34000, ty_Float) -> new_compare18(xuu33000, xuu34000) 32.45/13.22 new_ltEs5(xuu3300, xuu3400, ty_Float) -> new_ltEs11(xuu3300, xuu3400) 32.45/13.22 new_ltEs5(xuu3300, xuu3400, app(app(ty_@2, eb), ec)) -> new_ltEs14(xuu3300, xuu3400, eb, ec) 32.45/13.22 new_esEs23(xuu3110000, xuu6000, app(app(ty_Either, cae), caf)) -> new_esEs4(xuu3110000, xuu6000, cae, caf) 32.45/13.22 new_esEs18(xuu3110002, xuu6002, app(ty_[], bba)) -> new_esEs16(xuu3110002, xuu6002, bba) 32.45/13.22 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Bool) -> new_ltEs16(xuu33000, xuu34000) 32.45/13.22 new_esEs25(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) 32.45/13.22 new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, ce), cf)) -> new_esEs4(xuu3110000, xuu6000, ce, cf) 32.45/13.22 new_primCompAux1(xuu33000, xuu34000, xuu176, bf) -> new_primCompAux0(xuu176, new_compare30(xuu33000, xuu34000, bf)) 32.45/13.22 new_lt9(xuu33001, xuu34001, ty_Double) -> new_lt12(xuu33001, xuu34001) 32.45/13.22 new_compare10(xuu132, xuu133, True, ced) -> LT 32.45/13.22 new_esEs24(xuu33001, xuu34001, app(ty_Maybe, cdf)) -> new_esEs6(xuu33001, xuu34001, cdf) 32.45/13.22 new_primMulNat0(Succ(xuu311000000), Zero) -> Zero 32.45/13.22 new_primMulNat0(Zero, Succ(xuu600100)) -> Zero 32.45/13.22 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) 32.45/13.22 new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, cb), cc), cd)) -> new_esEs5(xuu3110000, xuu6000, cb, cc, cd) 32.45/13.22 new_lt10(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) 32.45/13.22 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(ty_Either, dbe), dbf)) -> new_ltEs6(xuu33000, xuu34000, dbe, dbf) 32.45/13.22 new_esEs23(xuu3110000, xuu6000, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs5(xuu3110000, xuu6000, cab, cac, cad) 32.45/13.22 new_ltEs19(xuu33002, xuu34002, ty_Char) -> new_ltEs17(xuu33002, xuu34002) 32.45/13.22 new_lt17(xuu33000, xuu34000, cec) -> new_esEs8(new_compare29(xuu33000, xuu34000, cec), LT) 32.45/13.22 new_ltEs5(xuu3300, xuu3400, ty_Double) -> new_ltEs9(xuu3300, xuu3400) 32.45/13.22 new_lt20(xuu33000, xuu34000, app(app(app(ty_@3, cga), cgb), cgc)) -> new_lt11(xuu33000, xuu34000, cga, cgb, cgc) 32.45/13.22 new_esEs24(xuu33001, xuu34001, ty_Char) -> new_esEs10(xuu33001, xuu34001) 32.45/13.22 new_lt9(xuu33001, xuu34001, app(ty_Maybe, cdf)) -> new_lt17(xuu33001, xuu34001, cdf) 32.45/13.22 new_esEs18(xuu3110002, xuu6002, ty_Integer) -> new_esEs17(xuu3110002, xuu6002) 32.45/13.22 new_lt14(xuu33000, xuu34000) -> new_esEs8(new_compare18(xuu33000, xuu34000), LT) 32.45/13.22 new_ltEs5(xuu3300, xuu3400, ty_Bool) -> new_ltEs16(xuu3300, xuu3400) 32.45/13.22 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Integer, de) -> new_ltEs10(xuu33000, xuu34000) 32.45/13.22 new_esEs8(LT, LT) -> True 32.45/13.22 new_esEs29(xuu311000, xuu600, ty_Float) -> new_esEs11(xuu311000, xuu600) 32.45/13.22 new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, bhd)) -> new_esEs15(xuu3110000, xuu6000, bhd) 32.45/13.22 new_esEs26(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) 32.45/13.22 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.45/13.22 new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, bea), beb), bec)) -> new_ltEs8(xuu33000, xuu34000, bea, beb, bec) 32.45/13.22 new_primPlusNat1(Succ(xuu28200), Zero) -> Succ(xuu28200) 32.45/13.22 new_primPlusNat1(Zero, Succ(xuu9700)) -> Succ(xuu9700) 32.45/13.22 new_compare23(Just(xuu3300), Nothing, False, dc) -> GT 32.45/13.22 new_compare30(xuu33000, xuu34000, ty_Char) -> new_compare13(xuu33000, xuu34000) 32.45/13.22 new_ltEs19(xuu33002, xuu34002, ty_Double) -> new_ltEs9(xuu33002, xuu34002) 32.45/13.22 new_esEs19(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) 32.45/13.22 new_lt10(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) 32.45/13.22 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(app(ty_@3, gf), gg), gh)) -> new_esEs5(xuu3110000, xuu6000, gf, gg, gh) 32.45/13.22 new_esEs13(True, True) -> True 32.45/13.22 new_esEs30(xuu22, xuu17, ty_Integer) -> new_esEs17(xuu22, xuu17) 32.45/13.22 new_ltEs20(xuu33001, xuu34001, app(app(ty_@2, cfd), cfe)) -> new_ltEs14(xuu33001, xuu34001, cfd, cfe) 32.45/13.22 new_esEs23(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.45/13.22 new_esEs23(xuu3110000, xuu6000, app(ty_Ratio, cag)) -> new_esEs15(xuu3110000, xuu6000, cag) 32.45/13.22 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Char, eg) -> new_esEs10(xuu3110000, xuu6000) 32.45/13.22 new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_[], ga), eg) -> new_esEs16(xuu3110000, xuu6000, ga) 32.45/13.22 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.45/13.22 new_esEs16([], [], bhg) -> True 32.45/13.22 new_ltEs19(xuu33002, xuu34002, ty_Float) -> new_ltEs11(xuu33002, xuu34002) 32.45/13.22 new_esEs25(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) 32.45/13.22 new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, cg)) -> new_esEs15(xuu3110000, xuu6000, cg) 32.45/13.22 new_primMulInt(Neg(xuu31100000), Neg(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) 32.45/13.22 new_primCmpInt(Pos(Zero), Pos(Succ(xuu3400))) -> new_primCmpNat0(Zero, Succ(xuu3400)) 32.45/13.22 new_esEs29(xuu311000, xuu600, ty_Double) -> new_esEs14(xuu311000, xuu600) 32.45/13.22 new_esEs25(xuu33000, xuu34000, app(app(ty_@2, bd), be)) -> new_esEs7(xuu33000, xuu34000, bd, be) 32.45/13.22 new_ltEs20(xuu33001, xuu34001, ty_Bool) -> new_ltEs16(xuu33001, xuu34001) 32.45/13.22 new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, db)) -> new_esEs6(xuu3110000, xuu6000, db) 32.45/13.22 new_esEs6(Nothing, Just(xuu6000), bg) -> False 32.45/13.22 new_esEs6(Just(xuu3110000), Nothing, bg) -> False 32.45/13.22 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.45/13.22 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_Maybe, he)) -> new_esEs6(xuu3110000, xuu6000, he) 32.45/13.22 new_esEs6(Nothing, Nothing, bg) -> True 32.45/13.22 new_esEs14(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 32.45/13.22 new_esEs23(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.45/13.22 new_compare26(xuu33000, xuu34000, True, cbb, cbc, cbd) -> EQ 32.45/13.22 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_Ratio, hc)) -> new_esEs15(xuu3110000, xuu6000, hc) 32.45/13.22 new_compare26(xuu33000, xuu34000, False, cbb, cbc, cbd) -> new_compare14(xuu33000, xuu34000, new_ltEs8(xuu33000, xuu34000, cbb, cbc, cbd), cbb, cbc, cbd) 32.45/13.22 new_ltEs19(xuu33002, xuu34002, ty_Bool) -> new_ltEs16(xuu33002, xuu34002) 32.45/13.22 new_lt10(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) 32.45/13.22 new_primMulInt(Pos(xuu31100000), Neg(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) 32.45/13.22 new_primMulInt(Neg(xuu31100000), Pos(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) 32.45/13.22 new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.45/13.22 new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.45/13.22 new_compare30(xuu33000, xuu34000, app(app(ty_@2, chh), daa)) -> new_compare6(xuu33000, xuu34000, chh, daa) 32.45/13.22 new_esEs26(xuu33000, xuu34000, app(ty_Ratio, cgh)) -> new_esEs15(xuu33000, xuu34000, cgh) 32.45/13.22 new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, fh), eg) -> new_esEs15(xuu3110000, xuu6000, fh) 32.45/13.22 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.45/13.22 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Int) -> new_ltEs7(xuu33000, xuu34000) 32.45/13.22 new_ltEs19(xuu33002, xuu34002, ty_Ordering) -> new_ltEs12(xuu33002, xuu34002) 32.45/13.22 new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs5(xuu3110000, xuu6000, bgg, bgh, bha) 32.45/13.22 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(ty_@2, gd), ge)) -> new_esEs7(xuu3110000, xuu6000, gd, ge) 32.45/13.22 new_esEs21(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) 32.45/13.22 new_sr0(Integer(xuu330000), Integer(xuu340010)) -> Integer(new_primMulInt(xuu330000, xuu340010)) 32.45/13.22 new_esEs24(xuu33001, xuu34001, ty_Double) -> new_esEs14(xuu33001, xuu34001) 32.45/13.22 new_esEs25(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) 32.45/13.22 new_esEs13(False, False) -> True 32.45/13.22 new_esEs30(xuu22, xuu17, ty_Double) -> new_esEs14(xuu22, xuu17) 32.45/13.22 new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.45/13.22 new_compare31(xuu33000, xuu34000) -> new_compare210(xuu33000, xuu34000, new_esEs8(xuu33000, xuu34000)) 32.45/13.22 new_lt8(xuu33000, xuu34000, cbe) -> new_esEs8(new_compare15(xuu33000, xuu34000, cbe), LT) 32.45/13.22 new_esEs18(xuu3110002, xuu6002, ty_Double) -> new_esEs14(xuu3110002, xuu6002) 32.45/13.22 new_compare0([], :(xuu34000, xuu34001), bf) -> LT 32.45/13.22 new_asAs(True, xuu139) -> xuu139 32.45/13.22 new_esEs19(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) 32.45/13.22 new_esEs21(xuu3110001, xuu6001, app(ty_Maybe, bgd)) -> new_esEs6(xuu3110001, xuu6001, bgd) 32.45/13.22 new_lt10(xuu33000, xuu34000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_lt11(xuu33000, xuu34000, cbb, cbc, cbd) 32.45/13.22 new_lt16(xuu33000, xuu34000, ceb) -> new_esEs8(new_compare0(xuu33000, xuu34000, ceb), LT) 32.45/13.22 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.45/13.22 new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, ff), fg), eg) -> new_esEs4(xuu3110000, xuu6000, ff, fg) 32.45/13.22 new_esEs21(xuu3110001, xuu6001, app(ty_Ratio, bgb)) -> new_esEs15(xuu3110001, xuu6001, bgb) 32.45/13.22 new_esEs26(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) 32.45/13.22 new_ltEs16(True, False) -> False 32.45/13.22 new_compare16(xuu33000, xuu34000, True, bd, be) -> LT 32.45/13.22 new_esEs29(xuu311000, xuu600, app(ty_[], bhg)) -> new_esEs16(xuu311000, xuu600, bhg) 32.45/13.22 new_ltEs5(xuu3300, xuu3400, ty_@0) -> new_ltEs18(xuu3300, xuu3400) 32.45/13.22 new_lt9(xuu33001, xuu34001, app(app(ty_Either, cch), cda)) -> new_lt5(xuu33001, xuu34001, cch, cda) 32.45/13.22 new_esEs18(xuu3110002, xuu6002, app(app(ty_@2, baa), bab)) -> new_esEs7(xuu3110002, xuu6002, baa, bab) 32.45/13.22 new_compare24(xuu33000, xuu34000, True, ee, ef) -> EQ 32.45/13.22 new_esEs24(xuu33001, xuu34001, app(app(ty_@2, cdg), cdh)) -> new_esEs7(xuu33001, xuu34001, cdg, cdh) 32.45/13.22 new_esEs30(xuu22, xuu17, app(app(ty_@2, dcg), dch)) -> new_esEs7(xuu22, xuu17, dcg, dch) 32.45/13.22 new_primCmpInt(Pos(Succ(xuu3300)), Pos(xuu340)) -> new_primCmpNat0(Succ(xuu3300), xuu340) 32.45/13.22 new_lt9(xuu33001, xuu34001, ty_@0) -> new_lt19(xuu33001, xuu34001) 32.45/13.22 new_compare110(xuu33000, xuu34000, False) -> GT 32.45/13.22 new_compare9(xuu33000, xuu34000) -> new_compare25(xuu33000, xuu34000, new_esEs13(xuu33000, xuu34000)) 32.45/13.22 new_esEs25(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) 32.45/13.22 new_lt20(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) 32.45/13.22 new_esEs9(@0, @0) -> True 32.45/13.22 new_compare0([], [], bf) -> EQ 32.45/13.22 new_esEs19(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) 32.45/13.22 new_esEs20(xuu3110000, xuu6000, app(app(ty_Either, bdb), bdc)) -> new_esEs4(xuu3110000, xuu6000, bdb, bdc) 32.45/13.22 new_sr(xuu3110000, xuu6001) -> new_primMulInt(xuu3110000, xuu6001) 32.45/13.22 new_esEs19(xuu3110001, xuu6001, app(app(ty_Either, bbh), bca)) -> new_esEs4(xuu3110001, xuu6001, bbh, bca) 32.45/13.22 new_compare30(xuu33000, xuu34000, ty_@0) -> new_compare32(xuu33000, xuu34000) 32.45/13.22 new_primMulNat0(Zero, Zero) -> Zero 32.45/13.22 new_ltEs20(xuu33001, xuu34001, ty_Ordering) -> new_ltEs12(xuu33001, xuu34001) 32.45/13.22 new_lt9(xuu33001, xuu34001, ty_Ordering) -> new_lt15(xuu33001, xuu34001) 32.45/13.22 new_ltEs13(Nothing, Nothing, ea) -> True 32.45/13.22 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.45/13.22 new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_@2, bef), beg)) -> new_ltEs14(xuu33000, xuu34000, bef, beg) 32.45/13.22 new_ltEs13(Just(xuu33000), Nothing, ea) -> False 32.45/13.22 new_lt20(xuu33000, xuu34000, app(ty_[], cgd)) -> new_lt16(xuu33000, xuu34000, cgd) 32.45/13.22 new_esEs24(xuu33001, xuu34001, app(ty_[], cde)) -> new_esEs16(xuu33001, xuu34001, cde) 32.45/13.22 new_esEs30(xuu22, xuu17, app(ty_[], ddg)) -> new_esEs16(xuu22, xuu17, ddg) 32.45/13.22 new_esEs20(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.45/13.22 new_compare14(xuu33000, xuu34000, False, cbb, cbc, cbd) -> GT 32.45/13.22 new_esEs23(xuu3110000, xuu6000, app(app(ty_@2, bhh), caa)) -> new_esEs7(xuu3110000, xuu6000, bhh, caa) 32.45/13.22 new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.45/13.22 new_lt20(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) 32.45/13.22 new_esEs25(xuu33000, xuu34000, app(app(ty_Either, ee), ef)) -> new_esEs4(xuu33000, xuu34000, ee, ef) 32.45/13.22 new_ltEs19(xuu33002, xuu34002, app(ty_Maybe, ccd)) -> new_ltEs13(xuu33002, xuu34002, ccd) 32.45/13.22 new_esEs19(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) 32.45/13.22 new_esEs21(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) 32.45/13.22 new_ltEs20(xuu33001, xuu34001, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_ltEs8(xuu33001, xuu34001, ceg, ceh, cfa) 32.45/13.22 new_esEs26(xuu33000, xuu34000, app(ty_Maybe, cge)) -> new_esEs6(xuu33000, xuu34000, cge) 32.45/13.22 new_lt11(xuu33000, xuu34000, cbb, cbc, cbd) -> new_esEs8(new_compare28(xuu33000, xuu34000, cbb, cbc, cbd), LT) 32.45/13.22 new_ltEs5(xuu3300, xuu3400, ty_Integer) -> new_ltEs10(xuu3300, xuu3400) 32.45/13.22 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(ty_Either, ha), hb)) -> new_esEs4(xuu3110000, xuu6000, ha, hb) 32.45/13.22 new_compare30(xuu33000, xuu34000, ty_Double) -> new_compare19(xuu33000, xuu34000) 32.45/13.22 new_compare32(@0, @0) -> EQ 32.45/13.22 new_ltEs12(GT, LT) -> False 32.45/13.22 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Bool) -> new_ltEs16(xuu33000, xuu34000) 32.45/13.22 new_primCompAux0(xuu182, EQ) -> xuu182 32.45/13.22 new_esEs26(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) 32.45/13.22 new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, bh), ca)) -> new_esEs7(xuu3110000, xuu6000, bh, ca) 32.45/13.22 new_esEs20(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.45/13.22 new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.45/13.22 new_esEs29(xuu311000, xuu600, app(app(ty_Either, gc), eg)) -> new_esEs4(xuu311000, xuu600, gc, eg) 32.45/13.22 new_esEs7(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bfa, bfb) -> new_asAs(new_esEs22(xuu3110000, xuu6000, bfa), new_esEs21(xuu3110001, xuu6001, bfb)) 32.45/13.22 new_esEs30(xuu22, xuu17, ty_@0) -> new_esEs9(xuu22, xuu17) 32.45/13.22 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False 32.45/13.22 new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False 32.45/13.22 new_esEs25(xuu33000, xuu34000, app(ty_Maybe, cec)) -> new_esEs6(xuu33000, xuu34000, cec) 32.45/13.22 new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, eh), fa), eg) -> new_esEs7(xuu3110000, xuu6000, eh, fa) 32.45/13.22 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 32.45/13.22 new_esEs13(False, True) -> False 32.45/13.22 new_esEs13(True, False) -> False 32.45/13.22 new_esEs20(xuu3110000, xuu6000, app(ty_[], bde)) -> new_esEs16(xuu3110000, xuu6000, bde) 32.45/13.22 new_ltEs20(xuu33001, xuu34001, app(app(ty_Either, cee), cef)) -> new_ltEs6(xuu33001, xuu34001, cee, cef) 32.45/13.22 new_esEs26(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) 32.45/13.22 new_esEs20(xuu3110000, xuu6000, app(ty_Maybe, bdf)) -> new_esEs6(xuu3110000, xuu6000, bdf) 32.45/13.22 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.45/13.22 new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False 32.45/13.22 new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False 32.45/13.22 new_esEs26(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) 32.45/13.22 new_esEs19(xuu3110001, xuu6001, app(ty_Maybe, bcd)) -> new_esEs6(xuu3110001, xuu6001, bcd) 32.45/13.22 new_esEs25(xuu33000, xuu34000, app(ty_Ratio, cbe)) -> new_esEs15(xuu33000, xuu34000, cbe) 32.45/13.22 new_compare30(xuu33000, xuu34000, app(ty_[], chf)) -> new_compare0(xuu33000, xuu34000, chf) 32.45/13.22 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Int) -> new_ltEs7(xuu33000, xuu34000) 32.45/13.22 new_lt9(xuu33001, xuu34001, ty_Float) -> new_lt14(xuu33001, xuu34001) 32.45/13.22 new_primCmpInt(Neg(Zero), Neg(Succ(xuu3400))) -> new_primCmpNat0(Succ(xuu3400), Zero) 32.45/13.22 new_esEs16(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bhg) -> new_asAs(new_esEs23(xuu3110000, xuu6000, bhg), new_esEs16(xuu3110001, xuu6001, bhg)) 32.45/13.22 new_compare23(Nothing, Just(xuu3400), False, dc) -> LT 32.45/13.22 new_compare29(xuu33000, xuu34000, cec) -> new_compare23(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, cec), cec) 32.45/13.22 new_esEs21(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) 32.45/13.22 new_esEs25(xuu33000, xuu34000, app(ty_[], ceb)) -> new_esEs16(xuu33000, xuu34000, ceb) 32.45/13.22 new_esEs30(xuu22, xuu17, app(app(ty_Either, ddd), dde)) -> new_esEs4(xuu22, xuu17, ddd, dde) 32.45/13.22 new_esEs29(xuu311000, xuu600, ty_@0) -> new_esEs9(xuu311000, xuu600) 32.45/13.22 new_esEs19(xuu3110001, xuu6001, app(ty_[], bcc)) -> new_esEs16(xuu3110001, xuu6001, bcc) 32.45/13.22 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_@0, de) -> new_ltEs18(xuu33000, xuu34000) 32.45/13.22 new_esEs24(xuu33001, xuu34001, app(app(ty_Either, cch), cda)) -> new_esEs4(xuu33001, xuu34001, cch, cda) 32.45/13.22 new_ltEs19(xuu33002, xuu34002, app(app(ty_Either, cbf), cbg)) -> new_ltEs6(xuu33002, xuu34002, cbf, cbg) 32.45/13.22 new_ltEs12(EQ, GT) -> True 32.45/13.22 new_esEs19(xuu3110001, xuu6001, app(ty_Ratio, bcb)) -> new_esEs15(xuu3110001, xuu6001, bcb) 32.45/13.22 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 32.45/13.22 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.45/13.22 new_esEs18(xuu3110002, xuu6002, app(app(ty_Either, baf), bag)) -> new_esEs4(xuu3110002, xuu6002, baf, bag) 32.45/13.22 new_lt20(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) 32.45/13.22 new_lt10(xuu33000, xuu34000, app(app(ty_Either, ee), ef)) -> new_lt5(xuu33000, xuu34000, ee, ef) 32.45/13.22 new_ltEs12(EQ, EQ) -> True 32.45/13.22 new_esEs30(xuu22, xuu17, app(ty_Maybe, ddh)) -> new_esEs6(xuu22, xuu17, ddh) 32.45/13.22 new_esEs24(xuu33001, xuu34001, ty_Float) -> new_esEs11(xuu33001, xuu34001) 32.45/13.22 new_compare30(xuu33000, xuu34000, ty_Int) -> new_compare12(xuu33000, xuu34000) 32.45/13.22 new_esEs23(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.45/13.22 new_esEs12(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) 32.45/13.22 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Double, eg) -> new_esEs14(xuu3110000, xuu6000) 32.45/13.22 new_esEs20(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.45/13.22 new_compare30(xuu33000, xuu34000, ty_Integer) -> new_compare7(xuu33000, xuu34000) 32.45/13.22 new_compare23(Nothing, Nothing, False, dc) -> LT 32.45/13.22 new_esEs18(xuu3110002, xuu6002, ty_@0) -> new_esEs9(xuu3110002, xuu6002) 32.45/13.22 new_esEs19(xuu3110001, xuu6001, app(app(ty_@2, bbc), bbd)) -> new_esEs7(xuu3110001, xuu6001, bbc, bbd) 32.45/13.22 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.45/13.22 new_primPlusNat0(xuu107, xuu600100) -> new_primPlusNat1(xuu107, Succ(xuu600100)) 32.45/13.22 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.45/13.22 new_ltEs6(Right(xuu33000), Left(xuu34000), dd, de) -> False 32.45/13.22 new_not(False) -> True 32.45/13.22 new_esEs21(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) 32.45/13.22 new_esEs21(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) 32.45/13.22 new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_@2, dbb), dbc), de) -> new_ltEs14(xuu33000, xuu34000, dbb, dbc) 32.45/13.22 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_Maybe, dcc)) -> new_ltEs13(xuu33000, xuu34000, dcc) 32.45/13.22 new_ltEs5(xuu3300, xuu3400, ty_Int) -> new_ltEs7(xuu3300, xuu3400) 32.45/13.22 new_compare28(xuu33000, xuu34000, cbb, cbc, cbd) -> new_compare26(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, cbb, cbc, cbd), cbb, cbc, cbd) 32.45/13.22 new_ltEs8(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), df, dg, dh) -> new_pePe(new_lt10(xuu33000, xuu34000, df), new_asAs(new_esEs25(xuu33000, xuu34000, df), new_pePe(new_lt9(xuu33001, xuu34001, dg), new_asAs(new_esEs24(xuu33001, xuu34001, dg), new_ltEs19(xuu33002, xuu34002, dh))))) 32.45/13.22 new_compare30(xuu33000, xuu34000, ty_Bool) -> new_compare9(xuu33000, xuu34000) 32.45/13.22 new_compare0(:(xuu33000, xuu33001), [], bf) -> GT 32.45/13.22 new_esEs8(LT, GT) -> False 32.45/13.22 new_esEs8(GT, LT) -> False 32.45/13.22 new_esEs29(xuu311000, xuu600, app(ty_Ratio, dea)) -> new_esEs15(xuu311000, xuu600, dea) 32.45/13.22 new_esEs19(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) 32.45/13.22 new_esEs25(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) 32.45/13.22 new_compare25(xuu33000, xuu34000, True) -> EQ 32.45/13.22 new_compare27(xuu33000, xuu34000, True, bd, be) -> EQ 32.45/13.22 new_esEs29(xuu311000, xuu600, app(app(ty_@2, bfa), bfb)) -> new_esEs7(xuu311000, xuu600, bfa, bfb) 32.45/13.22 new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.45/13.22 new_esEs18(xuu3110002, xuu6002, app(ty_Maybe, bbb)) -> new_esEs6(xuu3110002, xuu6002, bbb) 32.45/13.22 new_ltEs16(False, False) -> True 32.45/13.22 new_compare11(xuu33000, xuu34000, True, ee, ef) -> LT 32.45/13.22 new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Ratio, beh)) -> new_ltEs15(xuu33000, xuu34000, beh) 32.45/13.22 new_ltEs19(xuu33002, xuu34002, ty_Int) -> new_ltEs7(xuu33002, xuu34002) 32.45/13.22 new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.45/13.22 new_esEs29(xuu311000, xuu600, app(ty_Maybe, bg)) -> new_esEs6(xuu311000, xuu600, bg) 32.45/13.22 new_lt10(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) 32.45/13.22 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 32.45/13.22 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 32.45/13.22 new_primPlusNat1(Zero, Zero) -> Zero 32.45/13.22 new_lt20(xuu33000, xuu34000, app(app(ty_@2, cgf), cgg)) -> new_lt4(xuu33000, xuu34000, cgf, cgg) 32.45/13.22 new_lt9(xuu33001, xuu34001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt11(xuu33001, xuu34001, cdb, cdc, cdd) 32.45/13.22 new_ltEs11(xuu3300, xuu3400) -> new_fsEs(new_compare18(xuu3300, xuu3400)) 32.45/13.22 new_lt19(xuu33000, xuu34000) -> new_esEs8(new_compare32(xuu33000, xuu34000), LT) 32.45/13.22 new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.45/13.22 new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.45/13.22 new_ltEs20(xuu33001, xuu34001, ty_Int) -> new_ltEs7(xuu33001, xuu34001) 32.45/13.22 new_lt20(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) 32.45/13.22 new_esEs28(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.45/13.22 new_lt10(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) 32.45/13.22 new_esEs21(xuu3110001, xuu6001, app(ty_[], bgc)) -> new_esEs16(xuu3110001, xuu6001, bgc) 32.45/13.22 new_ltEs16(True, True) -> True 32.45/13.22 new_lt13(xuu33000, xuu34000) -> new_esEs8(new_compare7(xuu33000, xuu34000), LT) 32.45/13.22 new_esEs20(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.45/13.22 new_esEs26(xuu33000, xuu34000, app(app(ty_Either, cfg), cfh)) -> new_esEs4(xuu33000, xuu34000, cfg, cfh) 32.45/13.22 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Bool, de) -> new_ltEs16(xuu33000, xuu34000) 32.45/13.22 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 32.45/13.22 new_ltEs5(xuu3300, xuu3400, app(ty_Ratio, ed)) -> new_ltEs15(xuu3300, xuu3400, ed) 32.45/13.22 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.45/13.22 new_esEs25(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) 32.45/13.22 new_primMulNat0(Succ(xuu311000000), Succ(xuu600100)) -> new_primPlusNat0(new_primMulNat0(xuu311000000, Succ(xuu600100)), xuu600100) 32.45/13.22 new_ltEs12(EQ, LT) -> False 32.45/13.22 new_ltEs5(xuu3300, xuu3400, app(ty_[], bf)) -> new_ltEs4(xuu3300, xuu3400, bf) 32.45/13.22 new_lt6(xuu330, xuu340) -> new_esEs8(new_compare12(xuu330, xuu340), LT) 32.45/13.22 new_lt7(xuu33000, xuu34000) -> new_esEs8(new_compare13(xuu33000, xuu34000), LT) 32.45/13.22 new_primCmpNat0(Succ(xuu3300), Succ(xuu3400)) -> new_primCmpNat0(xuu3300, xuu3400) 32.45/13.22 new_ltEs19(xuu33002, xuu34002, app(ty_Ratio, ccg)) -> new_ltEs15(xuu33002, xuu34002, ccg) 32.45/13.22 new_esEs26(xuu33000, xuu34000, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs5(xuu33000, xuu34000, cga, cgb, cgc) 32.45/13.22 new_esEs30(xuu22, xuu17, ty_Char) -> new_esEs10(xuu22, xuu17) 32.45/13.22 new_esEs21(xuu3110001, xuu6001, app(app(ty_@2, bfc), bfd)) -> new_esEs7(xuu3110001, xuu6001, bfc, bfd) 32.45/13.22 new_esEs26(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) 32.45/13.22 new_esEs18(xuu3110002, xuu6002, ty_Char) -> new_esEs10(xuu3110002, xuu6002) 32.45/13.22 new_esEs24(xuu33001, xuu34001, ty_Integer) -> new_esEs17(xuu33001, xuu34001) 32.45/13.22 new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_[], da)) -> new_esEs16(xuu3110000, xuu6000, da) 32.45/13.22 new_compare12(xuu33, xuu34) -> new_primCmpInt(xuu33, xuu34) 32.45/13.22 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(app(ty_@3, dbg), dbh), dca)) -> new_ltEs8(xuu33000, xuu34000, dbg, dbh, dca) 32.45/13.22 new_esEs19(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) 32.45/13.22 new_esEs16(:(xuu3110000, xuu3110001), [], bhg) -> False 32.45/13.22 new_esEs16([], :(xuu6000, xuu6001), bhg) -> False 32.45/13.22 new_esEs23(xuu3110000, xuu6000, app(ty_[], cah)) -> new_esEs16(xuu3110000, xuu6000, cah) 32.45/13.22 new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, fb), fc), fd), eg) -> new_esEs5(xuu3110000, xuu6000, fb, fc, fd) 32.45/13.22 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 32.45/13.22 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 32.45/13.22 new_ltEs12(LT, EQ) -> True 32.45/13.22 new_ltEs20(xuu33001, xuu34001, app(ty_[], cfb)) -> new_ltEs4(xuu33001, xuu34001, cfb) 32.45/13.22 new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.45/13.22 new_compare30(xuu33000, xuu34000, app(app(ty_Either, cha), chb)) -> new_compare8(xuu33000, xuu34000, cha, chb) 32.45/13.22 new_ltEs20(xuu33001, xuu34001, app(ty_Ratio, cff)) -> new_ltEs15(xuu33001, xuu34001, cff) 32.45/13.22 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Float, de) -> new_ltEs11(xuu33000, xuu34000) 32.45/13.22 new_ltEs9(xuu3300, xuu3400) -> new_fsEs(new_compare19(xuu3300, xuu3400)) 32.45/13.22 new_esEs27(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) 32.45/13.22 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_@0) -> new_ltEs18(xuu33000, xuu34000) 32.45/13.22 new_primEqNat0(Zero, Zero) -> True 32.45/13.22 new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, gb), eg) -> new_esEs6(xuu3110000, xuu6000, gb) 32.45/13.22 new_esEs20(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.45/13.22 new_esEs29(xuu311000, xuu600, ty_Ordering) -> new_esEs8(xuu311000, xuu600) 32.45/13.22 new_lt20(xuu33000, xuu34000, app(app(ty_Either, cfg), cfh)) -> new_lt5(xuu33000, xuu34000, cfg, cfh) 32.45/13.22 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Float, eg) -> new_esEs11(xuu3110000, xuu6000) 32.45/13.22 new_lt10(xuu33000, xuu34000, app(app(ty_@2, bd), be)) -> new_lt4(xuu33000, xuu34000, bd, be) 32.45/13.22 new_esEs22(xuu3110000, xuu6000, app(ty_[], bhe)) -> new_esEs16(xuu3110000, xuu6000, bhe) 32.45/13.22 new_asAs(False, xuu139) -> False 32.45/13.22 new_ltEs19(xuu33002, xuu34002, app(ty_[], ccc)) -> new_ltEs4(xuu33002, xuu34002, ccc) 32.45/13.22 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.45/13.22 new_compare30(xuu33000, xuu34000, ty_Ordering) -> new_compare31(xuu33000, xuu34000) 32.45/13.22 new_lt20(xuu33000, xuu34000, app(ty_Maybe, cge)) -> new_lt17(xuu33000, xuu34000, cge) 32.45/13.22 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Double, de) -> new_ltEs9(xuu33000, xuu34000) 32.45/13.22 new_lt20(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) 32.45/13.22 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) 32.45/13.22 new_ltEs13(Nothing, Just(xuu34000), ea) -> True 32.45/13.22 new_esEs23(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.45/13.22 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_[], hd)) -> new_esEs16(xuu3110000, xuu6000, hd) 32.45/13.22 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Char, de) -> new_ltEs17(xuu33000, xuu34000) 32.45/13.22 new_ltEs6(Left(xuu33000), Right(xuu34000), dd, de) -> True 32.45/13.22 new_esEs8(EQ, GT) -> False 32.45/13.22 new_esEs8(GT, EQ) -> False 32.45/13.22 new_esEs11(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 32.45/13.22 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Integer) -> new_ltEs10(xuu33000, xuu34000) 32.45/13.22 new_ltEs16(False, True) -> True 32.45/13.22 new_lt10(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) 32.45/13.22 new_esEs29(xuu311000, xuu600, ty_Char) -> new_esEs10(xuu311000, xuu600) 32.45/13.22 new_esEs21(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) 32.45/13.22 new_esEs20(xuu3110000, xuu6000, app(app(ty_@2, bce), bcf)) -> new_esEs7(xuu3110000, xuu6000, bce, bcf) 32.45/13.22 32.45/13.22 The set Q consists of the following terms: 32.45/13.22 32.45/13.22 new_lt10(x0, x1, app(ty_[], x2)) 32.45/13.22 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.22 new_esEs8(EQ, EQ) 32.45/13.22 new_esEs6(Just(x0), Just(x1), ty_Double) 32.45/13.22 new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 32.45/13.22 new_esEs4(Left(x0), Left(x1), ty_Double, x2) 32.45/13.22 new_esEs19(x0, x1, app(ty_[], x2)) 32.45/13.22 new_ltEs13(Nothing, Just(x0), x1) 32.45/13.22 new_lt9(x0, x1, ty_Bool) 32.45/13.22 new_lt10(x0, x1, ty_@0) 32.45/13.22 new_esEs29(x0, x1, ty_@0) 32.45/13.22 new_ltEs20(x0, x1, ty_Int) 32.45/13.22 new_esEs30(x0, x1, ty_Bool) 32.45/13.22 new_lt20(x0, x1, ty_Integer) 32.45/13.22 new_ltEs11(x0, x1) 32.45/13.22 new_lt5(x0, x1, x2, x3) 32.45/13.22 new_ltEs7(x0, x1) 32.45/13.22 new_esEs26(x0, x1, app(ty_Maybe, x2)) 32.45/13.22 new_esEs24(x0, x1, ty_Float) 32.45/13.22 new_ltEs19(x0, x1, app(ty_[], x2)) 32.45/13.22 new_esEs6(Just(x0), Just(x1), ty_Ordering) 32.45/13.22 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 32.45/13.22 new_esEs6(Just(x0), Nothing, x1) 32.45/13.22 new_compare0(:(x0, x1), [], x2) 32.45/13.22 new_primPlusNat1(Zero, Zero) 32.45/13.22 new_pePe(True, x0) 32.45/13.22 new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) 32.45/13.22 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 32.45/13.22 new_esEs29(x0, x1, ty_Bool) 32.45/13.22 new_esEs6(Nothing, Nothing, x0) 32.45/13.22 new_ltEs20(x0, x1, ty_Char) 32.45/13.22 new_lt10(x0, x1, ty_Bool) 32.45/13.22 new_ltEs9(x0, x1) 32.45/13.22 new_lt9(x0, x1, ty_Integer) 32.45/13.22 new_ltEs19(x0, x1, ty_Double) 32.45/13.22 new_esEs12(x0, x1) 32.45/13.22 new_primEqInt(Pos(Zero), Pos(Zero)) 32.45/13.22 new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) 32.45/13.22 new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.22 new_lt13(x0, x1) 32.45/13.22 new_lt7(x0, x1) 32.45/13.22 new_esEs4(Left(x0), Left(x1), ty_Int, x2) 32.45/13.22 new_esEs26(x0, x1, ty_Double) 32.45/13.22 new_ltEs5(x0, x1, app(ty_Ratio, x2)) 32.45/13.22 new_fsEs(x0) 32.45/13.22 new_lt9(x0, x1, ty_@0) 32.45/13.22 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 32.45/13.22 new_lt9(x0, x1, app(ty_Ratio, x2)) 32.45/13.22 new_esEs16([], :(x0, x1), x2) 32.45/13.22 new_primEqNat0(Zero, Succ(x0)) 32.45/13.22 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 32.45/13.22 new_lt10(x0, x1, ty_Char) 32.45/13.22 new_primEqInt(Neg(Zero), Neg(Zero)) 32.45/13.22 new_compare16(x0, x1, True, x2, x3) 32.45/13.22 new_ltEs20(x0, x1, app(ty_[], x2)) 32.45/13.22 new_esEs23(x0, x1, ty_Bool) 32.45/13.22 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 32.45/13.22 new_esEs6(Just(x0), Just(x1), ty_Char) 32.45/13.22 new_esEs4(Left(x0), Left(x1), ty_Char, x2) 32.45/13.22 new_esEs29(x0, x1, ty_Char) 32.45/13.22 new_ltEs16(False, False) 32.45/13.22 new_esEs20(x0, x1, app(ty_Ratio, x2)) 32.45/13.22 new_ltEs19(x0, x1, ty_Int) 32.45/13.22 new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) 32.45/13.22 new_compare30(x0, x1, ty_Double) 32.45/13.22 new_lt19(x0, x1) 32.45/13.22 new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) 32.45/13.22 new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 32.45/13.22 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 32.45/13.22 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 32.45/13.22 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.22 new_ltEs12(GT, EQ) 32.45/13.22 new_compare29(x0, x1, x2) 32.45/13.22 new_ltEs12(EQ, GT) 32.45/13.22 new_esEs19(x0, x1, app(ty_Ratio, x2)) 32.45/13.22 new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 32.45/13.22 new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) 32.45/13.22 new_ltEs13(Just(x0), Nothing, x1) 32.45/13.22 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.22 new_esEs30(x0, x1, ty_Integer) 32.45/13.22 new_compare6(x0, x1, x2, x3) 32.45/13.22 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.22 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.22 new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 32.45/13.22 new_primEqInt(Pos(Zero), Neg(Zero)) 32.45/13.22 new_primEqInt(Neg(Zero), Pos(Zero)) 32.45/13.22 new_compare14(x0, x1, True, x2, x3, x4) 32.45/13.22 new_ltEs20(x0, x1, ty_Ordering) 32.45/13.22 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 32.45/13.22 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 32.45/13.22 new_compare0([], :(x0, x1), x2) 32.45/13.22 new_compare16(x0, x1, False, x2, x3) 32.45/13.22 new_esEs19(x0, x1, ty_Float) 32.45/13.22 new_primCompAux0(x0, GT) 32.45/13.22 new_esEs29(x0, x1, ty_Int) 32.45/13.22 new_esEs20(x0, x1, app(ty_[], x2)) 32.45/13.22 new_compare210(x0, x1, False) 32.45/13.22 new_esEs18(x0, x1, app(ty_[], x2)) 32.45/13.22 new_esEs23(x0, x1, ty_Ordering) 32.45/13.22 new_pePe(False, x0) 32.45/13.22 new_esEs6(Just(x0), Just(x1), ty_Int) 32.45/13.22 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.22 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 32.45/13.22 new_lt20(x0, x1, app(ty_[], x2)) 32.45/13.22 new_lt20(x0, x1, app(ty_Ratio, x2)) 32.45/13.22 new_ltEs6(Left(x0), Left(x1), ty_Float, x2) 32.45/13.22 new_esEs25(x0, x1, ty_Integer) 32.45/13.22 new_esEs10(Char(x0), Char(x1)) 32.45/13.22 new_esEs23(x0, x1, ty_Integer) 32.45/13.22 new_esEs25(x0, x1, app(ty_[], x2)) 32.45/13.22 new_compare13(Char(x0), Char(x1)) 32.45/13.22 new_esEs30(x0, x1, app(ty_Maybe, x2)) 32.45/13.22 new_primEqNat0(Succ(x0), Succ(x1)) 32.45/13.22 new_primMulInt(Neg(x0), Neg(x1)) 32.45/13.22 new_compare30(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.22 new_ltEs13(Just(x0), Just(x1), ty_Float) 32.45/13.22 new_ltEs5(x0, x1, ty_Double) 32.45/13.22 new_esEs30(x0, x1, ty_Ordering) 32.45/13.22 new_esEs6(Just(x0), Just(x1), ty_@0) 32.45/13.22 new_esEs9(@0, @0) 32.45/13.22 new_esEs24(x0, x1, ty_Bool) 32.45/13.22 new_esEs4(Right(x0), Right(x1), x2, ty_Integer) 32.45/13.22 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.22 new_lt9(x0, x1, ty_Double) 32.45/13.22 new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 32.45/13.22 new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 32.45/13.22 new_esEs14(Double(x0, x1), Double(x2, x3)) 32.45/13.22 new_esEs4(Left(x0), Left(x1), ty_Bool, x2) 32.45/13.22 new_esEs6(Just(x0), Just(x1), ty_Bool) 32.45/13.22 new_esEs29(x0, x1, ty_Ordering) 32.45/13.22 new_lt10(x0, x1, ty_Float) 32.45/13.22 new_lt6(x0, x1) 32.45/13.22 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.22 new_ltEs5(x0, x1, ty_Ordering) 32.45/13.22 new_esEs30(x0, x1, ty_Double) 32.45/13.22 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.22 new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 32.45/13.22 new_ltEs19(x0, x1, ty_Char) 32.45/13.22 new_ltEs13(Just(x0), Just(x1), ty_Int) 32.45/13.22 new_esEs21(x0, x1, ty_Double) 32.45/13.22 new_lt10(x0, x1, ty_Ordering) 32.45/13.22 new_primPlusNat0(x0, x1) 32.45/13.22 new_compare23(Just(x0), Nothing, False, x1) 32.45/13.22 new_esEs26(x0, x1, ty_@0) 32.45/13.22 new_esEs23(x0, x1, ty_Double) 32.45/13.22 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 32.45/13.22 new_compare30(x0, x1, ty_Ordering) 32.45/13.22 new_compare23(x0, x1, True, x2) 32.45/13.22 new_primMulNat0(Succ(x0), Succ(x1)) 32.45/13.22 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.22 new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) 32.45/13.22 new_primPlusNat1(Zero, Succ(x0)) 32.45/13.22 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.22 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.22 new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 32.45/13.22 new_lt10(x0, x1, ty_Int) 32.45/13.22 new_compare25(x0, x1, True) 32.45/13.22 new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) 32.45/13.22 new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 32.45/13.22 new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 32.45/13.22 new_lt9(x0, x1, app(ty_[], x2)) 32.45/13.22 new_esEs8(GT, GT) 32.45/13.22 new_ltEs19(x0, x1, ty_Bool) 32.45/13.22 new_esEs28(x0, x1, ty_Integer) 32.45/13.22 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 32.45/13.22 new_ltEs16(True, False) 32.45/13.22 new_ltEs16(False, True) 32.45/13.22 new_ltEs12(EQ, LT) 32.45/13.22 new_ltEs12(LT, EQ) 32.45/13.22 new_esEs18(x0, x1, ty_Integer) 32.45/13.22 new_esEs8(LT, EQ) 32.45/13.22 new_esEs8(EQ, LT) 32.45/13.22 new_ltEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 32.45/13.22 new_esEs18(x0, x1, ty_Float) 32.45/13.22 new_ltEs12(GT, GT) 32.45/13.22 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.22 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.22 new_compare30(x0, x1, ty_@0) 32.45/13.22 new_primCmpInt(Neg(Zero), Neg(Zero)) 32.45/13.22 new_esEs22(x0, x1, ty_Integer) 32.45/13.22 new_lt20(x0, x1, ty_@0) 32.45/13.22 new_esEs13(False, True) 32.45/13.22 new_esEs13(True, False) 32.45/13.22 new_esEs23(x0, x1, app(ty_Ratio, x2)) 32.45/13.22 new_lt10(x0, x1, ty_Integer) 32.45/13.22 new_esEs11(Float(x0, x1), Float(x2, x3)) 32.45/13.22 new_esEs24(x0, x1, app(ty_Ratio, x2)) 32.45/13.22 new_esEs8(LT, LT) 32.45/13.22 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.22 new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 32.45/13.22 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.22 new_primCmpInt(Pos(Zero), Neg(Zero)) 32.45/13.22 new_primCmpInt(Neg(Zero), Pos(Zero)) 32.45/13.22 new_primMulInt(Pos(x0), Neg(x1)) 32.45/13.22 new_primMulInt(Neg(x0), Pos(x1)) 32.45/13.22 new_esEs20(x0, x1, ty_Char) 32.45/13.22 new_compare110(x0, x1, True) 32.45/13.22 new_ltEs6(Right(x0), Left(x1), x2, x3) 32.45/13.22 new_ltEs6(Left(x0), Right(x1), x2, x3) 32.45/13.22 new_primCompAux1(x0, x1, x2, x3) 32.45/13.22 new_esEs6(Just(x0), Just(x1), ty_Integer) 32.45/13.22 new_esEs18(x0, x1, ty_Int) 32.45/13.22 new_lt15(x0, x1) 32.45/13.22 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 32.45/13.22 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.22 new_compare23(Nothing, Nothing, False, x0) 32.45/13.22 new_esEs29(x0, x1, ty_Integer) 32.45/13.22 new_esEs24(x0, x1, app(ty_Maybe, x2)) 32.45/13.22 new_esEs16([], [], x0) 32.45/13.22 new_esEs4(Right(x0), Right(x1), x2, ty_@0) 32.45/13.22 new_primMulInt(Pos(x0), Pos(x1)) 32.45/13.22 new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 32.45/13.22 new_compare27(x0, x1, True, x2, x3) 32.45/13.22 new_esEs20(x0, x1, ty_Int) 32.45/13.22 new_ltEs20(x0, x1, ty_Double) 32.45/13.22 new_compare210(x0, x1, True) 32.45/13.22 new_compare10(x0, x1, False, x2) 32.45/13.22 new_esEs22(x0, x1, ty_Ordering) 32.45/13.22 new_esEs25(x0, x1, ty_@0) 32.45/13.22 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.22 new_esEs18(x0, x1, ty_Char) 32.45/13.22 new_ltEs12(LT, LT) 32.45/13.22 new_asAs(True, x0) 32.45/13.22 new_esEs29(x0, x1, app(ty_Ratio, x2)) 32.45/13.22 new_esEs23(x0, x1, app(ty_[], x2)) 32.45/13.22 new_ltEs6(Right(x0), Right(x1), x2, ty_Double) 32.45/13.22 new_ltEs6(Right(x0), Right(x1), x2, ty_@0) 32.45/13.22 new_compare24(x0, x1, False, x2, x3) 32.45/13.22 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.22 new_lt17(x0, x1, x2) 32.45/13.22 new_ltEs19(x0, x1, ty_Ordering) 32.45/13.22 new_ltEs5(x0, x1, app(ty_[], x2)) 32.45/13.22 new_esEs18(x0, x1, ty_Bool) 32.45/13.22 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.22 new_ltEs19(x0, x1, ty_Integer) 32.45/13.22 new_esEs23(x0, x1, ty_@0) 32.45/13.22 new_esEs20(x0, x1, ty_Float) 32.45/13.22 new_ltEs17(x0, x1) 32.45/13.22 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.22 new_primCmpNat0(Succ(x0), Succ(x1)) 32.45/13.22 new_compare30(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.22 new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.22 new_lt20(x0, x1, ty_Double) 32.45/13.22 new_compare26(x0, x1, True, x2, x3, x4) 32.45/13.22 new_esEs30(x0, x1, ty_@0) 32.45/13.22 new_ltEs20(x0, x1, ty_@0) 32.45/13.22 new_primMulNat0(Succ(x0), Zero) 32.45/13.22 new_primCmpNat0(Zero, Succ(x0)) 32.45/13.22 new_esEs16(:(x0, x1), :(x2, x3), x4) 32.45/13.22 new_compare0(:(x0, x1), :(x2, x3), x4) 32.45/13.22 new_ltEs15(x0, x1, x2) 32.45/13.22 new_esEs19(x0, x1, ty_Int) 32.45/13.22 new_lt9(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.22 new_compare30(x0, x1, app(ty_[], x2)) 32.45/13.22 new_ltEs10(x0, x1) 32.45/13.22 new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 32.45/13.22 new_esEs24(x0, x1, app(ty_[], x2)) 32.45/13.22 new_esEs20(x0, x1, ty_@0) 32.45/13.22 new_primCompAux0(x0, LT) 32.45/13.22 new_esEs6(Just(x0), Just(x1), ty_Float) 32.45/13.22 new_ltEs5(x0, x1, ty_Bool) 32.45/13.22 new_esEs4(Left(x0), Left(x1), ty_Float, x2) 32.45/13.22 new_compare7(Integer(x0), Integer(x1)) 32.45/13.22 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.22 new_ltEs13(Just(x0), Just(x1), ty_Bool) 32.45/13.22 new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 32.45/13.22 new_primMulNat0(Zero, Zero) 32.45/13.22 new_esEs22(x0, x1, ty_@0) 32.45/13.22 new_compare30(x0, x1, ty_Integer) 32.45/13.22 new_ltEs6(Left(x0), Left(x1), ty_Char, x2) 32.45/13.22 new_esEs4(Right(x0), Right(x1), x2, ty_Int) 32.45/13.22 new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.22 new_ltEs6(Left(x0), Left(x1), ty_Int, x2) 32.45/13.22 new_esEs17(Integer(x0), Integer(x1)) 32.45/13.22 new_ltEs5(x0, x1, ty_@0) 32.45/13.22 new_esEs19(x0, x1, ty_Ordering) 32.45/13.22 new_lt20(x0, x1, app(ty_Maybe, x2)) 32.45/13.22 new_lt12(x0, x1) 32.45/13.22 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 32.45/13.22 new_esEs24(x0, x1, ty_Double) 32.45/13.22 new_esEs18(x0, x1, ty_@0) 32.45/13.22 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.22 new_compare11(x0, x1, False, x2, x3) 32.45/13.22 new_lt9(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.22 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 32.45/13.22 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 32.45/13.22 new_compare10(x0, x1, True, x2) 32.45/13.22 new_esEs28(x0, x1, ty_Int) 32.45/13.22 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.22 new_esEs19(x0, x1, ty_Double) 32.45/13.22 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 32.45/13.22 new_esEs25(x0, x1, ty_Double) 32.45/13.22 new_esEs24(x0, x1, ty_Int) 32.45/13.22 new_lt4(x0, x1, x2, x3) 32.45/13.22 new_esEs21(x0, x1, ty_Bool) 32.45/13.22 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.22 new_esEs20(x0, x1, ty_Bool) 32.45/13.22 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 32.45/13.22 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.22 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.22 new_compare23(Just(x0), Just(x1), False, x2) 32.45/13.22 new_esEs19(x0, x1, ty_Char) 32.45/13.22 new_esEs4(Right(x0), Right(x1), x2, ty_Char) 32.45/13.22 new_esEs4(Right(x0), Right(x1), x2, ty_Double) 32.45/13.22 new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 32.45/13.22 new_ltEs13(Just(x0), Just(x1), ty_@0) 32.45/13.22 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.22 new_esEs24(x0, x1, ty_Ordering) 32.45/13.22 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.22 new_compare14(x0, x1, False, x2, x3, x4) 32.45/13.22 new_esEs30(x0, x1, app(ty_Ratio, x2)) 32.45/13.22 new_esEs29(x0, x1, app(ty_[], x2)) 32.45/13.22 new_esEs22(x0, x1, app(ty_Maybe, x2)) 32.45/13.22 new_lt11(x0, x1, x2, x3, x4) 32.45/13.22 new_not(True) 32.45/13.22 new_ltEs5(x0, x1, app(ty_Maybe, x2)) 32.45/13.22 new_compare17(x0, x1, False) 32.45/13.22 new_compare30(x0, x1, app(ty_Ratio, x2)) 32.45/13.22 new_esEs19(x0, x1, app(ty_Maybe, x2)) 32.45/13.22 new_ltEs13(Just(x0), Just(x1), ty_Char) 32.45/13.22 new_esEs23(x0, x1, app(ty_Maybe, x2)) 32.45/13.22 new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 32.45/13.22 new_esEs26(x0, x1, app(ty_[], x2)) 32.45/13.22 new_compare17(x0, x1, True) 32.45/13.22 new_ltEs6(Left(x0), Left(x1), ty_@0, x2) 32.45/13.22 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.22 new_esEs8(EQ, GT) 32.45/13.22 new_esEs8(GT, EQ) 32.45/13.22 new_esEs18(x0, x1, ty_Ordering) 32.45/13.22 new_esEs18(x0, x1, app(ty_Ratio, x2)) 32.45/13.22 new_esEs22(x0, x1, ty_Int) 32.45/13.22 new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 32.45/13.22 new_esEs24(x0, x1, ty_Char) 32.45/13.22 new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 32.45/13.22 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.22 new_ltEs6(Left(x0), Left(x1), ty_Double, x2) 32.45/13.22 new_esEs4(Left(x0), Left(x1), ty_Integer, x2) 32.45/13.22 new_lt9(x0, x1, app(ty_Maybe, x2)) 32.45/13.22 new_lt20(x0, x1, ty_Ordering) 32.45/13.22 new_esEs19(x0, x1, ty_@0) 32.45/13.22 new_ltEs13(Just(x0), Just(x1), ty_Integer) 32.45/13.22 new_esEs6(Nothing, Just(x0), x1) 32.45/13.22 new_esEs26(x0, x1, app(ty_Ratio, x2)) 32.45/13.22 new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.22 new_compare110(x0, x1, False) 32.45/13.22 new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) 32.45/13.22 new_esEs13(True, True) 32.45/13.22 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.22 new_esEs21(x0, x1, ty_@0) 32.45/13.22 new_ltEs18(x0, x1) 32.45/13.22 new_compare12(x0, x1) 32.45/13.22 new_compare30(x0, x1, ty_Bool) 32.45/13.22 new_esEs26(x0, x1, ty_Float) 32.45/13.22 new_compare27(x0, x1, False, x2, x3) 32.45/13.22 new_ltEs13(Nothing, Nothing, x0) 32.45/13.22 new_primPlusNat1(Succ(x0), Succ(x1)) 32.45/13.22 new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) 32.45/13.22 new_esEs22(x0, x1, ty_Bool) 32.45/13.22 new_ltEs19(x0, x1, ty_@0) 32.45/13.22 new_esEs21(x0, x1, ty_Float) 32.45/13.22 new_esEs21(x0, x1, app(ty_[], x2)) 32.45/13.22 new_compare11(x0, x1, True, x2, x3) 32.45/13.22 new_primEqNat0(Succ(x0), Zero) 32.45/13.22 new_primCompAux0(x0, EQ) 32.45/13.22 new_lt10(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.22 new_lt14(x0, x1) 32.45/13.22 new_ltEs19(x0, x1, ty_Float) 32.45/13.23 new_ltEs12(EQ, EQ) 32.45/13.23 new_compare28(x0, x1, x2, x3, x4) 32.45/13.23 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 32.45/13.23 new_esEs27(x0, x1, ty_Int) 32.45/13.23 new_lt8(x0, x1, x2) 32.45/13.23 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.23 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 32.45/13.23 new_esEs22(x0, x1, ty_Char) 32.45/13.23 new_compare25(x0, x1, False) 32.45/13.23 new_esEs21(x0, x1, app(ty_Ratio, x2)) 32.45/13.23 new_ltEs5(x0, x1, ty_Integer) 32.45/13.23 new_esEs25(x0, x1, ty_Ordering) 32.45/13.23 new_esEs4(Left(x0), Right(x1), x2, x3) 32.45/13.23 new_esEs4(Right(x0), Left(x1), x2, x3) 32.45/13.23 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 32.45/13.23 new_esEs20(x0, x1, ty_Integer) 32.45/13.23 new_esEs22(x0, x1, ty_Double) 32.45/13.23 new_lt10(x0, x1, app(ty_Ratio, x2)) 32.45/13.23 new_primCmpInt(Pos(Zero), Pos(Zero)) 32.45/13.23 new_lt10(x0, x1, app(ty_Maybe, x2)) 32.45/13.23 new_compare0([], [], x0) 32.45/13.23 new_ltEs20(x0, x1, ty_Integer) 32.45/13.23 new_esEs29(x0, x1, ty_Double) 32.45/13.23 new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 32.45/13.23 new_lt9(x0, x1, ty_Ordering) 32.45/13.23 new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 32.45/13.23 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 32.45/13.23 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 32.45/13.23 new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) 32.45/13.23 new_ltEs5(x0, x1, ty_Float) 32.45/13.23 new_ltEs13(Just(x0), Just(x1), ty_Double) 32.45/13.23 new_esEs22(x0, x1, app(ty_[], x2)) 32.45/13.23 new_compare30(x0, x1, ty_Char) 32.45/13.23 new_esEs4(Left(x0), Left(x1), ty_@0, x2) 32.45/13.23 new_esEs19(x0, x1, ty_Integer) 32.45/13.23 new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 32.45/13.23 new_esEs29(x0, x1, ty_Float) 32.45/13.23 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.23 new_esEs20(x0, x1, ty_Double) 32.45/13.23 new_sr(x0, x1) 32.45/13.23 new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 32.45/13.23 new_esEs30(x0, x1, ty_Float) 32.45/13.23 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 32.45/13.23 new_compare24(x0, x1, True, x2, x3) 32.45/13.23 new_esEs30(x0, x1, app(ty_[], x2)) 32.45/13.23 new_esEs21(x0, x1, ty_Ordering) 32.45/13.23 new_compare9(x0, x1) 32.45/13.23 new_esEs20(x0, x1, ty_Ordering) 32.45/13.23 new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 32.45/13.23 new_esEs21(x0, x1, ty_Int) 32.45/13.23 new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.23 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.23 new_lt9(x0, x1, ty_Float) 32.45/13.23 new_esEs29(x0, x1, app(ty_Maybe, x2)) 32.45/13.23 new_esEs8(LT, GT) 32.45/13.23 new_esEs8(GT, LT) 32.45/13.23 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 32.45/13.23 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.23 new_esEs19(x0, x1, ty_Bool) 32.45/13.23 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 32.45/13.23 new_esEs25(x0, x1, ty_Char) 32.45/13.23 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 32.45/13.23 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.23 new_ltEs5(x0, x1, ty_Int) 32.45/13.23 new_ltEs20(x0, x1, ty_Bool) 32.45/13.23 new_compare26(x0, x1, False, x2, x3, x4) 32.45/13.23 new_esEs21(x0, x1, ty_Char) 32.45/13.23 new_esEs22(x0, x1, ty_Float) 32.45/13.23 new_esEs26(x0, x1, ty_Char) 32.45/13.23 new_esEs24(x0, x1, ty_Integer) 32.45/13.23 new_esEs4(Right(x0), Right(x1), x2, ty_Bool) 32.45/13.23 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.23 new_lt9(x0, x1, ty_Char) 32.45/13.23 new_lt10(x0, x1, ty_Double) 32.45/13.23 new_esEs24(x0, x1, ty_@0) 32.45/13.23 new_compare23(Nothing, Just(x0), False, x1) 32.45/13.23 new_esEs26(x0, x1, ty_Int) 32.45/13.23 new_compare30(x0, x1, ty_Int) 32.45/13.23 new_compare8(x0, x1, x2, x3) 32.45/13.23 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 32.45/13.23 new_lt10(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.23 new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) 32.45/13.23 new_esEs21(x0, x1, app(ty_Maybe, x2)) 32.45/13.23 new_asAs(False, x0) 32.45/13.23 new_esEs16(:(x0, x1), [], x2) 32.45/13.23 new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 32.45/13.23 new_ltEs13(Just(x0), Just(x1), ty_Ordering) 32.45/13.23 new_esEs25(x0, x1, ty_Bool) 32.45/13.23 new_lt9(x0, x1, ty_Int) 32.45/13.23 new_lt18(x0, x1) 32.45/13.23 new_esEs23(x0, x1, ty_Int) 32.45/13.23 new_compare30(x0, x1, app(ty_Maybe, x2)) 32.45/13.23 new_primEqNat0(Zero, Zero) 32.45/13.23 new_esEs13(False, False) 32.45/13.23 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 32.45/13.23 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.23 new_primMulNat0(Zero, Succ(x0)) 32.45/13.23 new_ltEs5(x0, x1, ty_Char) 32.45/13.23 new_not(False) 32.45/13.23 new_lt20(x0, x1, ty_Float) 32.45/13.23 new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 32.45/13.23 new_esEs26(x0, x1, ty_Ordering) 32.45/13.23 new_ltEs16(True, True) 32.45/13.23 new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) 32.45/13.23 new_lt20(x0, x1, ty_Bool) 32.45/13.23 new_ltEs12(LT, GT) 32.45/13.23 new_ltEs12(GT, LT) 32.45/13.23 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.23 new_esEs25(x0, x1, ty_Int) 32.45/13.23 new_esEs30(x0, x1, ty_Char) 32.45/13.23 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 32.45/13.23 new_ltEs6(Right(x0), Right(x1), x2, ty_Float) 32.45/13.23 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 32.45/13.23 new_esEs22(x0, x1, app(ty_Ratio, x2)) 32.45/13.23 new_esEs26(x0, x1, ty_Bool) 32.45/13.23 new_esEs23(x0, x1, ty_Char) 32.45/13.23 new_esEs15(:%(x0, x1), :%(x2, x3), x4) 32.45/13.23 new_sr0(Integer(x0), Integer(x1)) 32.45/13.23 new_compare30(x0, x1, ty_Float) 32.45/13.23 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 32.45/13.23 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 32.45/13.23 new_esEs26(x0, x1, ty_Integer) 32.45/13.23 new_esEs25(x0, x1, app(ty_Ratio, x2)) 32.45/13.23 new_esEs25(x0, x1, app(ty_Maybe, x2)) 32.45/13.23 new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) 32.45/13.23 new_esEs20(x0, x1, app(ty_Maybe, x2)) 32.45/13.23 new_ltEs6(Right(x0), Right(x1), x2, ty_Char) 32.45/13.23 new_esEs23(x0, x1, ty_Float) 32.45/13.23 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 32.45/13.23 new_primPlusNat1(Succ(x0), Zero) 32.45/13.23 new_esEs30(x0, x1, ty_Int) 32.45/13.23 new_esEs18(x0, x1, app(ty_Maybe, x2)) 32.45/13.23 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 32.45/13.23 new_ltEs4(x0, x1, x2) 32.45/13.23 new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) 32.45/13.23 new_ltEs20(x0, x1, ty_Float) 32.45/13.23 new_esEs18(x0, x1, ty_Double) 32.45/13.23 new_lt20(x0, x1, ty_Int) 32.45/13.23 new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.23 new_esEs21(x0, x1, ty_Integer) 32.45/13.23 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.23 new_esEs27(x0, x1, ty_Integer) 32.45/13.23 new_primCmpNat0(Succ(x0), Zero) 32.45/13.23 new_lt16(x0, x1, x2) 32.45/13.23 new_compare31(x0, x1) 32.45/13.23 new_esEs4(Right(x0), Right(x1), x2, ty_Float) 32.45/13.23 new_esEs25(x0, x1, ty_Float) 32.45/13.23 new_ltEs6(Right(x0), Right(x1), x2, ty_Int) 32.45/13.23 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 32.45/13.23 new_compare32(@0, @0) 32.45/13.23 new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 32.45/13.23 new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 32.45/13.23 new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 32.45/13.23 new_primCmpNat0(Zero, Zero) 32.45/13.23 new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 32.45/13.23 new_lt20(x0, x1, ty_Char) 32.45/13.23 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.23 32.45/13.23 We have to consider all minimal (P,Q,R)-chains. 32.45/13.23 ---------------------------------------- 32.45/13.23 32.45/13.23 (32) TransformationProof (EQUIVALENT) 32.45/13.23 By rewriting [LPAR04] the rule new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(GT, GT), h, ba) at position [6] we obtained the following new rules [LPAR04]: 32.45/13.23 32.45/13.23 (new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba),new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba)) 32.45/13.23 32.45/13.23 32.45/13.23 ---------------------------------------- 32.45/13.23 32.45/13.23 (33) 32.45/13.23 Obligation: 32.45/13.23 Q DP problem: 32.45/13.23 The TRS P consists of the following rules: 32.45/13.23 32.45/13.23 new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu21, Just(xuu22), xuu23, bb, bc) 32.45/13.23 new_addToFM_C(Branch(Just(xuu600), xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Just(xuu600), new_esEs29(xuu311000, xuu600, h), h), LT), h, ba) 32.45/13.23 new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, bb, bc) -> new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs8(new_compare23(Just(xuu22), Just(xuu17), new_esEs30(xuu22, xuu17, bb), bb), GT), bb, bc) 32.45/13.23 new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu20, Just(xuu22), xuu23, bb, bc) 32.45/13.23 new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Just(xuu311000), xuu31101, h, ba) 32.45/13.23 new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) 32.45/13.23 new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) 32.45/13.23 32.45/13.23 The TRS R consists of the following rules: 32.45/13.23 32.45/13.23 new_lt20(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) 32.45/13.23 new_esEs20(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.45/13.23 new_compare30(xuu33000, xuu34000, app(app(app(ty_@3, chc), chd), che)) -> new_compare28(xuu33000, xuu34000, chc, chd, che) 32.45/13.23 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 32.45/13.23 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Float) -> new_ltEs11(xuu33000, xuu34000) 32.45/13.23 new_primCmpInt(Neg(Succ(xuu3300)), Pos(xuu340)) -> LT 32.45/13.23 new_compare8(xuu33000, xuu34000, ee, ef) -> new_compare24(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, ee, ef), ee, ef) 32.45/13.23 new_esEs23(xuu3110000, xuu6000, app(ty_Maybe, cba)) -> new_esEs6(xuu3110000, xuu6000, cba) 32.45/13.23 new_pePe(True, xuu165) -> True 32.45/13.23 new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.45/13.23 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.45/13.23 new_esEs30(xuu22, xuu17, ty_Ordering) -> new_esEs8(xuu22, xuu17) 32.45/13.23 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Float) -> new_ltEs11(xuu33000, xuu34000) 32.45/13.23 new_esEs17(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) 32.45/13.23 new_lt4(xuu33000, xuu34000, bd, be) -> new_esEs8(new_compare6(xuu33000, xuu34000, bd, be), LT) 32.45/13.23 new_esEs29(xuu311000, xuu600, ty_Int) -> new_esEs12(xuu311000, xuu600) 32.45/13.23 new_esEs30(xuu22, xuu17, ty_Bool) -> new_esEs13(xuu22, xuu17) 32.45/13.23 new_compare23(xuu330, xuu340, True, dc) -> EQ 32.45/13.23 new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Maybe, bee)) -> new_ltEs13(xuu33000, xuu34000, bee) 32.45/13.23 new_lt15(xuu33000, xuu34000) -> new_esEs8(new_compare31(xuu33000, xuu34000), LT) 32.45/13.23 new_lt10(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) 32.45/13.23 new_ltEs12(LT, LT) -> True 32.45/13.23 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.45/13.23 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(ty_@2, dcd), dce)) -> new_ltEs14(xuu33000, xuu34000, dcd, dce) 32.45/13.23 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Char) -> new_ltEs17(xuu33000, xuu34000) 32.45/13.23 new_esEs4(Left(xuu3110000), Right(xuu6000), gc, eg) -> False 32.45/13.23 new_esEs4(Right(xuu3110000), Left(xuu6000), gc, eg) -> False 32.45/13.23 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Int, de) -> new_ltEs7(xuu33000, xuu34000) 32.45/13.23 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 32.45/13.23 new_primCmpInt(Pos(Zero), Neg(Succ(xuu3400))) -> GT 32.45/13.23 new_esEs29(xuu311000, xuu600, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs5(xuu311000, xuu600, hf, hg, hh) 32.45/13.23 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_[], dcb)) -> new_ltEs4(xuu33000, xuu34000, dcb) 32.45/13.23 new_esEs15(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), dea) -> new_asAs(new_esEs28(xuu3110000, xuu6000, dea), new_esEs27(xuu3110001, xuu6001, dea)) 32.45/13.23 new_esEs24(xuu33001, xuu34001, ty_Ordering) -> new_esEs8(xuu33001, xuu34001) 32.45/13.23 new_ltEs14(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), eb, ec) -> new_pePe(new_lt20(xuu33000, xuu34000, eb), new_asAs(new_esEs26(xuu33000, xuu34000, eb), new_ltEs20(xuu33001, xuu34001, ec))) 32.45/13.23 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_Ratio, dcf)) -> new_ltEs15(xuu33000, xuu34000, dcf) 32.45/13.23 new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, bhb), bhc)) -> new_esEs4(xuu3110000, xuu6000, bhb, bhc) 32.45/13.23 new_compare0(:(xuu33000, xuu33001), :(xuu34000, xuu34001), bf) -> new_primCompAux1(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, bf), bf) 32.45/13.23 new_primCmpInt(Neg(Succ(xuu3300)), Neg(xuu340)) -> new_primCmpNat0(xuu340, Succ(xuu3300)) 32.45/13.23 new_lt9(xuu33001, xuu34001, app(ty_[], cde)) -> new_lt16(xuu33001, xuu34001, cde) 32.45/13.23 new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_Either, bdg), bdh)) -> new_ltEs6(xuu33000, xuu34000, bdg, bdh) 32.45/13.23 new_lt10(xuu33000, xuu34000, app(ty_Ratio, cbe)) -> new_lt8(xuu33000, xuu34000, cbe) 32.45/13.23 new_esEs28(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.45/13.23 new_esEs26(xuu33000, xuu34000, app(app(ty_@2, cgf), cgg)) -> new_esEs7(xuu33000, xuu34000, cgf, cgg) 32.45/13.23 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Char) -> new_ltEs17(xuu33000, xuu34000) 32.45/13.23 new_esEs23(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.45/13.23 new_ltEs20(xuu33001, xuu34001, ty_@0) -> new_ltEs18(xuu33001, xuu34001) 32.45/13.23 new_esEs5(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), hf, hg, hh) -> new_asAs(new_esEs20(xuu3110000, xuu6000, hf), new_asAs(new_esEs19(xuu3110001, xuu6001, hg), new_esEs18(xuu3110002, xuu6002, hh))) 32.45/13.23 new_esEs10(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) 32.45/13.23 new_ltEs7(xuu3300, xuu3400) -> new_fsEs(new_compare12(xuu3300, xuu3400)) 32.45/13.23 new_esEs18(xuu3110002, xuu6002, ty_Ordering) -> new_esEs8(xuu3110002, xuu6002) 32.45/13.23 new_compare25(xuu33000, xuu34000, False) -> new_compare17(xuu33000, xuu34000, new_ltEs16(xuu33000, xuu34000)) 32.45/13.23 new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_[], dah), de) -> new_ltEs4(xuu33000, xuu34000, dah) 32.45/13.23 new_esEs18(xuu3110002, xuu6002, ty_Bool) -> new_esEs13(xuu3110002, xuu6002) 32.45/13.23 new_primCompAux0(xuu182, GT) -> GT 32.45/13.23 new_lt9(xuu33001, xuu34001, ty_Bool) -> new_lt18(xuu33001, xuu34001) 32.45/13.23 new_esEs23(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.45/13.23 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Double) -> new_ltEs9(xuu33000, xuu34000) 32.45/13.23 new_compare210(xuu33000, xuu34000, False) -> new_compare110(xuu33000, xuu34000, new_ltEs12(xuu33000, xuu34000)) 32.45/13.23 new_esEs18(xuu3110002, xuu6002, app(ty_Ratio, bah)) -> new_esEs15(xuu3110002, xuu6002, bah) 32.45/13.23 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Integer, eg) -> new_esEs17(xuu3110000, xuu6000) 32.45/13.23 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False 32.45/13.23 new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False 32.45/13.23 new_esEs8(GT, GT) -> True 32.45/13.23 new_fsEs(xuu149) -> new_not(new_esEs8(xuu149, GT)) 32.45/13.23 new_esEs19(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) 32.45/13.23 new_lt12(xuu33000, xuu34000) -> new_esEs8(new_compare19(xuu33000, xuu34000), LT) 32.45/13.23 new_esEs24(xuu33001, xuu34001, app(ty_Ratio, cea)) -> new_esEs15(xuu33001, xuu34001, cea) 32.45/13.23 new_esEs20(xuu3110000, xuu6000, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs5(xuu3110000, xuu6000, bcg, bch, bda) 32.45/13.23 new_ltEs4(xuu3300, xuu3400, bf) -> new_fsEs(new_compare0(xuu3300, xuu3400, bf)) 32.45/13.23 new_esEs8(EQ, EQ) -> True 32.45/13.23 new_esEs24(xuu33001, xuu34001, ty_Bool) -> new_esEs13(xuu33001, xuu34001) 32.45/13.23 new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Ratio, dbd), de) -> new_ltEs15(xuu33000, xuu34000, dbd) 32.45/13.23 new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) 32.45/13.23 new_lt10(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) 32.45/13.23 new_lt10(xuu33000, xuu34000, app(ty_Maybe, cec)) -> new_lt17(xuu33000, xuu34000, cec) 32.45/13.23 new_ltEs20(xuu33001, xuu34001, ty_Integer) -> new_ltEs10(xuu33001, xuu34001) 32.45/13.23 new_primCompAux0(xuu182, LT) -> LT 32.45/13.23 new_not(True) -> False 32.45/13.23 new_ltEs19(xuu33002, xuu34002, ty_@0) -> new_ltEs18(xuu33002, xuu34002) 32.45/13.23 new_ltEs12(LT, GT) -> True 32.45/13.23 new_primCmpNat0(Zero, Zero) -> EQ 32.45/13.23 new_esEs18(xuu3110002, xuu6002, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs5(xuu3110002, xuu6002, bac, bad, bae) 32.45/13.23 new_compare6(xuu33000, xuu34000, bd, be) -> new_compare27(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, bd, be), bd, be) 32.45/13.23 new_compare16(xuu33000, xuu34000, False, bd, be) -> GT 32.45/13.23 new_ltEs19(xuu33002, xuu34002, ty_Integer) -> new_ltEs10(xuu33002, xuu34002) 32.45/13.23 new_esEs25(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) 32.45/13.23 new_compare14(xuu33000, xuu34000, True, cbb, cbc, cbd) -> LT 32.45/13.23 new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.45/13.23 new_esEs30(xuu22, xuu17, app(ty_Ratio, ddf)) -> new_esEs15(xuu22, xuu17, ddf) 32.45/13.23 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.45/13.23 new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_Either, dac), dad), de) -> new_ltEs6(xuu33000, xuu34000, dac, dad) 32.45/13.23 new_esEs19(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) 32.45/13.23 new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_[], bed)) -> new_ltEs4(xuu33000, xuu34000, bed) 32.45/13.23 new_primEqNat0(Succ(xuu31100000), Zero) -> False 32.45/13.23 new_primEqNat0(Zero, Succ(xuu60000)) -> False 32.45/13.23 new_ltEs5(xuu3300, xuu3400, app(app(ty_Either, dd), de)) -> new_ltEs6(xuu3300, xuu3400, dd, de) 32.45/13.23 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.45/13.23 new_lt20(xuu33000, xuu34000, app(ty_Ratio, cgh)) -> new_lt8(xuu33000, xuu34000, cgh) 32.45/13.23 new_esEs19(xuu3110001, xuu6001, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs5(xuu3110001, xuu6001, bbe, bbf, bbg) 32.45/13.23 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_@0, eg) -> new_esEs9(xuu3110000, xuu6000) 32.45/13.23 new_esEs29(xuu311000, xuu600, ty_Bool) -> new_esEs13(xuu311000, xuu600) 32.45/13.23 new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, dae), daf), dag), de) -> new_ltEs8(xuu33000, xuu34000, dae, daf, dag) 32.45/13.23 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_@0) -> new_ltEs18(xuu33000, xuu34000) 32.45/13.23 new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, bge), bgf)) -> new_esEs7(xuu3110000, xuu6000, bge, bgf) 32.45/13.23 new_esEs25(xuu33000, xuu34000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs5(xuu33000, xuu34000, cbb, cbc, cbd) 32.45/13.23 new_compare110(xuu33000, xuu34000, True) -> LT 32.45/13.23 new_lt9(xuu33001, xuu34001, app(app(ty_@2, cdg), cdh)) -> new_lt4(xuu33001, xuu34001, cdg, cdh) 32.45/13.23 new_ltEs5(xuu3300, xuu3400, ty_Ordering) -> new_ltEs12(xuu3300, xuu3400) 32.45/13.23 new_lt9(xuu33001, xuu34001, ty_Int) -> new_lt6(xuu33001, xuu34001) 32.45/13.23 new_esEs27(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) 32.45/13.23 new_esEs20(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.45/13.23 new_compare23(Just(xuu3300), Just(xuu3400), False, dc) -> new_compare10(xuu3300, xuu3400, new_ltEs5(xuu3300, xuu3400, dc), dc) 32.45/13.23 new_lt20(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) 32.45/13.23 new_compare30(xuu33000, xuu34000, app(ty_Ratio, dab)) -> new_compare15(xuu33000, xuu34000, dab) 32.45/13.23 new_lt20(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) 32.45/13.23 new_primCmpInt(Pos(Succ(xuu3300)), Neg(xuu340)) -> GT 32.45/13.23 new_ltEs10(xuu3300, xuu3400) -> new_fsEs(new_compare7(xuu3300, xuu3400)) 32.45/13.23 new_compare24(xuu33000, xuu34000, False, ee, ef) -> new_compare11(xuu33000, xuu34000, new_ltEs6(xuu33000, xuu34000, ee, ef), ee, ef) 32.45/13.23 new_lt5(xuu33000, xuu34000, ee, ef) -> new_esEs8(new_compare8(xuu33000, xuu34000, ee, ef), LT) 32.45/13.23 new_esEs20(xuu3110000, xuu6000, app(ty_Ratio, bdd)) -> new_esEs15(xuu3110000, xuu6000, bdd) 32.45/13.23 new_esEs24(xuu33001, xuu34001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs5(xuu33001, xuu34001, cdb, cdc, cdd) 32.45/13.23 new_esEs30(xuu22, xuu17, app(app(app(ty_@3, dda), ddb), ddc)) -> new_esEs5(xuu22, xuu17, dda, ddb, ddc) 32.45/13.23 new_esEs26(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) 32.45/13.23 new_primPlusNat1(Succ(xuu28200), Succ(xuu9700)) -> Succ(Succ(new_primPlusNat1(xuu28200, xuu9700))) 32.45/13.23 new_lt9(xuu33001, xuu34001, ty_Char) -> new_lt7(xuu33001, xuu34001) 32.45/13.23 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Double) -> new_ltEs9(xuu33000, xuu34000) 32.45/13.23 new_lt18(xuu33000, xuu34000) -> new_esEs8(new_compare9(xuu33000, xuu34000), LT) 32.45/13.23 new_primCmpNat0(Zero, Succ(xuu3400)) -> LT 32.45/13.23 new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Maybe, dba), de) -> new_ltEs13(xuu33000, xuu34000, dba) 32.45/13.23 new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Integer) -> new_compare7(new_sr0(xuu33000, xuu34001), new_sr0(xuu34000, xuu33001)) 32.45/13.23 new_esEs30(xuu22, xuu17, ty_Int) -> new_esEs12(xuu22, xuu17) 32.45/13.23 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Bool, eg) -> new_esEs13(xuu3110000, xuu6000) 32.45/13.23 new_esEs18(xuu3110002, xuu6002, ty_Int) -> new_esEs12(xuu3110002, xuu6002) 32.45/13.23 new_compare210(xuu33000, xuu34000, True) -> EQ 32.45/13.23 new_esEs24(xuu33001, xuu34001, ty_Int) -> new_esEs12(xuu33001, xuu34001) 32.45/13.23 new_lt9(xuu33001, xuu34001, app(ty_Ratio, cea)) -> new_lt8(xuu33001, xuu34001, cea) 32.45/13.23 new_esEs21(xuu3110001, xuu6001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs5(xuu3110001, xuu6001, bfe, bff, bfg) 32.45/13.23 new_primCmpNat0(Succ(xuu3300), Zero) -> GT 32.45/13.23 new_ltEs20(xuu33001, xuu34001, app(ty_Maybe, cfc)) -> new_ltEs13(xuu33001, xuu34001, cfc) 32.45/13.23 new_pePe(False, xuu165) -> xuu165 32.45/13.23 new_ltEs5(xuu3300, xuu3400, ty_Char) -> new_ltEs17(xuu3300, xuu3400) 32.45/13.23 new_esEs20(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.45/13.23 new_esEs23(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.45/13.23 new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.45/13.23 new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.45/13.23 new_ltEs20(xuu33001, xuu34001, ty_Float) -> new_ltEs11(xuu33001, xuu34001) 32.45/13.23 new_ltEs12(GT, GT) -> True 32.45/13.23 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Ordering, eg) -> new_esEs8(xuu3110000, xuu6000) 32.45/13.23 new_ltEs18(xuu3300, xuu3400) -> new_fsEs(new_compare32(xuu3300, xuu3400)) 32.45/13.23 new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Int) -> new_compare12(new_sr(xuu33000, xuu34001), new_sr(xuu34000, xuu33001)) 32.45/13.23 new_ltEs20(xuu33001, xuu34001, ty_Double) -> new_ltEs9(xuu33001, xuu34001) 32.45/13.23 new_ltEs19(xuu33002, xuu34002, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs8(xuu33002, xuu34002, cbh, cca, ccb) 32.45/13.23 new_esEs29(xuu311000, xuu600, ty_Integer) -> new_esEs17(xuu311000, xuu600) 32.45/13.23 new_esEs21(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) 32.45/13.23 new_ltEs12(GT, EQ) -> False 32.45/13.23 new_esEs24(xuu33001, xuu34001, ty_@0) -> new_esEs9(xuu33001, xuu34001) 32.45/13.23 new_esEs21(xuu3110001, xuu6001, app(app(ty_Either, bfh), bga)) -> new_esEs4(xuu3110001, xuu6001, bfh, bga) 32.45/13.23 new_esEs18(xuu3110002, xuu6002, ty_Float) -> new_esEs11(xuu3110002, xuu6002) 32.45/13.23 new_lt10(xuu33000, xuu34000, app(ty_[], ceb)) -> new_lt16(xuu33000, xuu34000, ceb) 32.45/13.23 new_compare27(xuu33000, xuu34000, False, bd, be) -> new_compare16(xuu33000, xuu34000, new_ltEs14(xuu33000, xuu34000, bd, be), bd, be) 32.45/13.23 new_esEs26(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) 32.45/13.23 new_compare7(Integer(xuu33000), Integer(xuu34000)) -> new_primCmpInt(xuu33000, xuu34000) 32.45/13.23 new_compare10(xuu132, xuu133, False, ced) -> GT 32.45/13.23 new_esEs30(xuu22, xuu17, ty_Float) -> new_esEs11(xuu22, xuu17) 32.45/13.23 new_esEs8(LT, EQ) -> False 32.45/13.23 new_esEs8(EQ, LT) -> False 32.45/13.23 new_compare17(xuu33000, xuu34000, True) -> LT 32.45/13.23 new_compare11(xuu33000, xuu34000, False, ee, ef) -> GT 32.45/13.23 new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, bhf)) -> new_esEs6(xuu3110000, xuu6000, bhf) 32.45/13.23 new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False 32.45/13.23 new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False 32.45/13.23 new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.45/13.23 new_esEs21(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) 32.45/13.23 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Ordering, de) -> new_ltEs12(xuu33000, xuu34000) 32.45/13.23 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Integer) -> new_ltEs10(xuu33000, xuu34000) 32.45/13.23 new_compare30(xuu33000, xuu34000, app(ty_Maybe, chg)) -> new_compare29(xuu33000, xuu34000, chg) 32.45/13.23 new_ltEs5(xuu3300, xuu3400, app(ty_Maybe, ea)) -> new_ltEs13(xuu3300, xuu3400, ea) 32.45/13.23 new_esEs26(xuu33000, xuu34000, app(ty_[], cgd)) -> new_esEs16(xuu33000, xuu34000, cgd) 32.45/13.23 new_ltEs17(xuu3300, xuu3400) -> new_fsEs(new_compare13(xuu3300, xuu3400)) 32.45/13.23 new_ltEs15(xuu3300, xuu3400, ed) -> new_fsEs(new_compare15(xuu3300, xuu3400, ed)) 32.45/13.23 new_ltEs19(xuu33002, xuu34002, app(app(ty_@2, cce), ccf)) -> new_ltEs14(xuu33002, xuu34002, cce, ccf) 32.45/13.23 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 32.45/13.23 new_esEs25(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) 32.45/13.23 new_esEs23(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.45/13.23 new_primCmpInt(Neg(Zero), Pos(Succ(xuu3400))) -> LT 32.45/13.23 new_compare13(Char(xuu33000), Char(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) 32.45/13.23 new_ltEs5(xuu3300, xuu3400, app(app(app(ty_@3, df), dg), dh)) -> new_ltEs8(xuu3300, xuu3400, df, dg, dh) 32.45/13.23 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Int, eg) -> new_esEs12(xuu3110000, xuu6000) 32.45/13.23 new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.45/13.23 new_ltEs20(xuu33001, xuu34001, ty_Char) -> new_ltEs17(xuu33001, xuu34001) 32.45/13.23 new_compare17(xuu33000, xuu34000, False) -> GT 32.45/13.23 new_lt9(xuu33001, xuu34001, ty_Integer) -> new_lt13(xuu33001, xuu34001) 32.45/13.23 new_primMulInt(Pos(xuu31100000), Pos(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) 32.45/13.23 new_compare30(xuu33000, xuu34000, ty_Float) -> new_compare18(xuu33000, xuu34000) 32.45/13.23 new_ltEs5(xuu3300, xuu3400, ty_Float) -> new_ltEs11(xuu3300, xuu3400) 32.45/13.23 new_ltEs5(xuu3300, xuu3400, app(app(ty_@2, eb), ec)) -> new_ltEs14(xuu3300, xuu3400, eb, ec) 32.45/13.23 new_esEs23(xuu3110000, xuu6000, app(app(ty_Either, cae), caf)) -> new_esEs4(xuu3110000, xuu6000, cae, caf) 32.45/13.23 new_esEs18(xuu3110002, xuu6002, app(ty_[], bba)) -> new_esEs16(xuu3110002, xuu6002, bba) 32.45/13.23 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Bool) -> new_ltEs16(xuu33000, xuu34000) 32.45/13.23 new_esEs25(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) 32.45/13.23 new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, ce), cf)) -> new_esEs4(xuu3110000, xuu6000, ce, cf) 32.45/13.23 new_primCompAux1(xuu33000, xuu34000, xuu176, bf) -> new_primCompAux0(xuu176, new_compare30(xuu33000, xuu34000, bf)) 32.45/13.23 new_lt9(xuu33001, xuu34001, ty_Double) -> new_lt12(xuu33001, xuu34001) 32.45/13.23 new_compare10(xuu132, xuu133, True, ced) -> LT 32.45/13.23 new_esEs24(xuu33001, xuu34001, app(ty_Maybe, cdf)) -> new_esEs6(xuu33001, xuu34001, cdf) 32.45/13.23 new_primMulNat0(Succ(xuu311000000), Zero) -> Zero 32.45/13.23 new_primMulNat0(Zero, Succ(xuu600100)) -> Zero 32.45/13.23 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) 32.45/13.23 new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, cb), cc), cd)) -> new_esEs5(xuu3110000, xuu6000, cb, cc, cd) 32.45/13.23 new_lt10(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) 32.45/13.23 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(ty_Either, dbe), dbf)) -> new_ltEs6(xuu33000, xuu34000, dbe, dbf) 32.45/13.23 new_esEs23(xuu3110000, xuu6000, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs5(xuu3110000, xuu6000, cab, cac, cad) 32.45/13.23 new_ltEs19(xuu33002, xuu34002, ty_Char) -> new_ltEs17(xuu33002, xuu34002) 32.45/13.23 new_lt17(xuu33000, xuu34000, cec) -> new_esEs8(new_compare29(xuu33000, xuu34000, cec), LT) 32.45/13.23 new_ltEs5(xuu3300, xuu3400, ty_Double) -> new_ltEs9(xuu3300, xuu3400) 32.45/13.23 new_lt20(xuu33000, xuu34000, app(app(app(ty_@3, cga), cgb), cgc)) -> new_lt11(xuu33000, xuu34000, cga, cgb, cgc) 32.45/13.23 new_esEs24(xuu33001, xuu34001, ty_Char) -> new_esEs10(xuu33001, xuu34001) 32.45/13.23 new_lt9(xuu33001, xuu34001, app(ty_Maybe, cdf)) -> new_lt17(xuu33001, xuu34001, cdf) 32.45/13.23 new_esEs18(xuu3110002, xuu6002, ty_Integer) -> new_esEs17(xuu3110002, xuu6002) 32.45/13.23 new_lt14(xuu33000, xuu34000) -> new_esEs8(new_compare18(xuu33000, xuu34000), LT) 32.45/13.23 new_ltEs5(xuu3300, xuu3400, ty_Bool) -> new_ltEs16(xuu3300, xuu3400) 32.45/13.23 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Integer, de) -> new_ltEs10(xuu33000, xuu34000) 32.45/13.23 new_esEs8(LT, LT) -> True 32.45/13.23 new_esEs29(xuu311000, xuu600, ty_Float) -> new_esEs11(xuu311000, xuu600) 32.45/13.23 new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, bhd)) -> new_esEs15(xuu3110000, xuu6000, bhd) 32.45/13.23 new_esEs26(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) 32.45/13.23 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.45/13.23 new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, bea), beb), bec)) -> new_ltEs8(xuu33000, xuu34000, bea, beb, bec) 32.45/13.23 new_primPlusNat1(Succ(xuu28200), Zero) -> Succ(xuu28200) 32.45/13.23 new_primPlusNat1(Zero, Succ(xuu9700)) -> Succ(xuu9700) 32.45/13.23 new_compare23(Just(xuu3300), Nothing, False, dc) -> GT 32.45/13.23 new_compare30(xuu33000, xuu34000, ty_Char) -> new_compare13(xuu33000, xuu34000) 32.45/13.23 new_ltEs19(xuu33002, xuu34002, ty_Double) -> new_ltEs9(xuu33002, xuu34002) 32.45/13.23 new_esEs19(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) 32.45/13.23 new_lt10(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) 32.45/13.23 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(app(ty_@3, gf), gg), gh)) -> new_esEs5(xuu3110000, xuu6000, gf, gg, gh) 32.45/13.23 new_esEs13(True, True) -> True 32.45/13.23 new_esEs30(xuu22, xuu17, ty_Integer) -> new_esEs17(xuu22, xuu17) 32.45/13.23 new_ltEs20(xuu33001, xuu34001, app(app(ty_@2, cfd), cfe)) -> new_ltEs14(xuu33001, xuu34001, cfd, cfe) 32.45/13.23 new_esEs23(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.45/13.23 new_esEs23(xuu3110000, xuu6000, app(ty_Ratio, cag)) -> new_esEs15(xuu3110000, xuu6000, cag) 32.45/13.23 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Char, eg) -> new_esEs10(xuu3110000, xuu6000) 32.45/13.23 new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_[], ga), eg) -> new_esEs16(xuu3110000, xuu6000, ga) 32.45/13.23 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.45/13.23 new_esEs16([], [], bhg) -> True 32.45/13.23 new_ltEs19(xuu33002, xuu34002, ty_Float) -> new_ltEs11(xuu33002, xuu34002) 32.45/13.23 new_esEs25(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) 32.45/13.23 new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, cg)) -> new_esEs15(xuu3110000, xuu6000, cg) 32.45/13.23 new_primMulInt(Neg(xuu31100000), Neg(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) 32.45/13.23 new_primCmpInt(Pos(Zero), Pos(Succ(xuu3400))) -> new_primCmpNat0(Zero, Succ(xuu3400)) 32.45/13.23 new_esEs29(xuu311000, xuu600, ty_Double) -> new_esEs14(xuu311000, xuu600) 32.45/13.23 new_esEs25(xuu33000, xuu34000, app(app(ty_@2, bd), be)) -> new_esEs7(xuu33000, xuu34000, bd, be) 32.45/13.23 new_ltEs20(xuu33001, xuu34001, ty_Bool) -> new_ltEs16(xuu33001, xuu34001) 32.45/13.23 new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, db)) -> new_esEs6(xuu3110000, xuu6000, db) 32.45/13.23 new_esEs6(Nothing, Just(xuu6000), bg) -> False 32.45/13.23 new_esEs6(Just(xuu3110000), Nothing, bg) -> False 32.45/13.23 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.45/13.23 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_Maybe, he)) -> new_esEs6(xuu3110000, xuu6000, he) 32.45/13.23 new_esEs6(Nothing, Nothing, bg) -> True 32.45/13.23 new_esEs14(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 32.45/13.23 new_esEs23(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.45/13.23 new_compare26(xuu33000, xuu34000, True, cbb, cbc, cbd) -> EQ 32.45/13.23 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_Ratio, hc)) -> new_esEs15(xuu3110000, xuu6000, hc) 32.45/13.23 new_compare26(xuu33000, xuu34000, False, cbb, cbc, cbd) -> new_compare14(xuu33000, xuu34000, new_ltEs8(xuu33000, xuu34000, cbb, cbc, cbd), cbb, cbc, cbd) 32.45/13.23 new_ltEs19(xuu33002, xuu34002, ty_Bool) -> new_ltEs16(xuu33002, xuu34002) 32.45/13.23 new_lt10(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) 32.45/13.23 new_primMulInt(Pos(xuu31100000), Neg(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) 32.45/13.23 new_primMulInt(Neg(xuu31100000), Pos(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) 32.45/13.23 new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.45/13.23 new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.45/13.23 new_compare30(xuu33000, xuu34000, app(app(ty_@2, chh), daa)) -> new_compare6(xuu33000, xuu34000, chh, daa) 32.45/13.23 new_esEs26(xuu33000, xuu34000, app(ty_Ratio, cgh)) -> new_esEs15(xuu33000, xuu34000, cgh) 32.45/13.23 new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, fh), eg) -> new_esEs15(xuu3110000, xuu6000, fh) 32.45/13.23 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.45/13.23 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Int) -> new_ltEs7(xuu33000, xuu34000) 32.45/13.23 new_ltEs19(xuu33002, xuu34002, ty_Ordering) -> new_ltEs12(xuu33002, xuu34002) 32.45/13.23 new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs5(xuu3110000, xuu6000, bgg, bgh, bha) 32.45/13.23 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(ty_@2, gd), ge)) -> new_esEs7(xuu3110000, xuu6000, gd, ge) 32.45/13.23 new_esEs21(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) 32.45/13.23 new_sr0(Integer(xuu330000), Integer(xuu340010)) -> Integer(new_primMulInt(xuu330000, xuu340010)) 32.45/13.23 new_esEs24(xuu33001, xuu34001, ty_Double) -> new_esEs14(xuu33001, xuu34001) 32.45/13.23 new_esEs25(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) 32.45/13.23 new_esEs13(False, False) -> True 32.45/13.23 new_esEs30(xuu22, xuu17, ty_Double) -> new_esEs14(xuu22, xuu17) 32.45/13.23 new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.45/13.23 new_compare31(xuu33000, xuu34000) -> new_compare210(xuu33000, xuu34000, new_esEs8(xuu33000, xuu34000)) 32.45/13.23 new_lt8(xuu33000, xuu34000, cbe) -> new_esEs8(new_compare15(xuu33000, xuu34000, cbe), LT) 32.45/13.23 new_esEs18(xuu3110002, xuu6002, ty_Double) -> new_esEs14(xuu3110002, xuu6002) 32.45/13.23 new_compare0([], :(xuu34000, xuu34001), bf) -> LT 32.45/13.23 new_asAs(True, xuu139) -> xuu139 32.45/13.23 new_esEs19(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) 32.45/13.23 new_esEs21(xuu3110001, xuu6001, app(ty_Maybe, bgd)) -> new_esEs6(xuu3110001, xuu6001, bgd) 32.45/13.23 new_lt10(xuu33000, xuu34000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_lt11(xuu33000, xuu34000, cbb, cbc, cbd) 32.45/13.23 new_lt16(xuu33000, xuu34000, ceb) -> new_esEs8(new_compare0(xuu33000, xuu34000, ceb), LT) 32.45/13.23 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.45/13.23 new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, ff), fg), eg) -> new_esEs4(xuu3110000, xuu6000, ff, fg) 32.45/13.23 new_esEs21(xuu3110001, xuu6001, app(ty_Ratio, bgb)) -> new_esEs15(xuu3110001, xuu6001, bgb) 32.45/13.23 new_esEs26(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) 32.45/13.23 new_ltEs16(True, False) -> False 32.45/13.23 new_compare16(xuu33000, xuu34000, True, bd, be) -> LT 32.45/13.23 new_esEs29(xuu311000, xuu600, app(ty_[], bhg)) -> new_esEs16(xuu311000, xuu600, bhg) 32.45/13.23 new_ltEs5(xuu3300, xuu3400, ty_@0) -> new_ltEs18(xuu3300, xuu3400) 32.45/13.23 new_lt9(xuu33001, xuu34001, app(app(ty_Either, cch), cda)) -> new_lt5(xuu33001, xuu34001, cch, cda) 32.45/13.23 new_esEs18(xuu3110002, xuu6002, app(app(ty_@2, baa), bab)) -> new_esEs7(xuu3110002, xuu6002, baa, bab) 32.45/13.23 new_compare24(xuu33000, xuu34000, True, ee, ef) -> EQ 32.45/13.23 new_esEs24(xuu33001, xuu34001, app(app(ty_@2, cdg), cdh)) -> new_esEs7(xuu33001, xuu34001, cdg, cdh) 32.45/13.23 new_esEs30(xuu22, xuu17, app(app(ty_@2, dcg), dch)) -> new_esEs7(xuu22, xuu17, dcg, dch) 32.45/13.23 new_primCmpInt(Pos(Succ(xuu3300)), Pos(xuu340)) -> new_primCmpNat0(Succ(xuu3300), xuu340) 32.45/13.23 new_lt9(xuu33001, xuu34001, ty_@0) -> new_lt19(xuu33001, xuu34001) 32.45/13.23 new_compare110(xuu33000, xuu34000, False) -> GT 32.45/13.23 new_compare9(xuu33000, xuu34000) -> new_compare25(xuu33000, xuu34000, new_esEs13(xuu33000, xuu34000)) 32.45/13.23 new_esEs25(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) 32.45/13.23 new_lt20(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) 32.45/13.23 new_esEs9(@0, @0) -> True 32.45/13.23 new_compare0([], [], bf) -> EQ 32.45/13.23 new_esEs19(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) 32.45/13.23 new_esEs20(xuu3110000, xuu6000, app(app(ty_Either, bdb), bdc)) -> new_esEs4(xuu3110000, xuu6000, bdb, bdc) 32.45/13.23 new_sr(xuu3110000, xuu6001) -> new_primMulInt(xuu3110000, xuu6001) 32.45/13.23 new_esEs19(xuu3110001, xuu6001, app(app(ty_Either, bbh), bca)) -> new_esEs4(xuu3110001, xuu6001, bbh, bca) 32.45/13.23 new_compare30(xuu33000, xuu34000, ty_@0) -> new_compare32(xuu33000, xuu34000) 32.45/13.23 new_primMulNat0(Zero, Zero) -> Zero 32.45/13.23 new_ltEs20(xuu33001, xuu34001, ty_Ordering) -> new_ltEs12(xuu33001, xuu34001) 32.45/13.23 new_lt9(xuu33001, xuu34001, ty_Ordering) -> new_lt15(xuu33001, xuu34001) 32.45/13.23 new_ltEs13(Nothing, Nothing, ea) -> True 32.45/13.23 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.45/13.23 new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_@2, bef), beg)) -> new_ltEs14(xuu33000, xuu34000, bef, beg) 32.45/13.23 new_ltEs13(Just(xuu33000), Nothing, ea) -> False 32.45/13.23 new_lt20(xuu33000, xuu34000, app(ty_[], cgd)) -> new_lt16(xuu33000, xuu34000, cgd) 32.45/13.23 new_esEs24(xuu33001, xuu34001, app(ty_[], cde)) -> new_esEs16(xuu33001, xuu34001, cde) 32.45/13.23 new_esEs30(xuu22, xuu17, app(ty_[], ddg)) -> new_esEs16(xuu22, xuu17, ddg) 32.45/13.23 new_esEs20(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.45/13.23 new_compare14(xuu33000, xuu34000, False, cbb, cbc, cbd) -> GT 32.45/13.23 new_esEs23(xuu3110000, xuu6000, app(app(ty_@2, bhh), caa)) -> new_esEs7(xuu3110000, xuu6000, bhh, caa) 32.45/13.23 new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.45/13.23 new_lt20(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) 32.45/13.23 new_esEs25(xuu33000, xuu34000, app(app(ty_Either, ee), ef)) -> new_esEs4(xuu33000, xuu34000, ee, ef) 32.45/13.23 new_ltEs19(xuu33002, xuu34002, app(ty_Maybe, ccd)) -> new_ltEs13(xuu33002, xuu34002, ccd) 32.45/13.23 new_esEs19(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) 32.45/13.23 new_esEs21(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) 32.45/13.23 new_ltEs20(xuu33001, xuu34001, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_ltEs8(xuu33001, xuu34001, ceg, ceh, cfa) 32.45/13.23 new_esEs26(xuu33000, xuu34000, app(ty_Maybe, cge)) -> new_esEs6(xuu33000, xuu34000, cge) 32.45/13.23 new_lt11(xuu33000, xuu34000, cbb, cbc, cbd) -> new_esEs8(new_compare28(xuu33000, xuu34000, cbb, cbc, cbd), LT) 32.45/13.23 new_ltEs5(xuu3300, xuu3400, ty_Integer) -> new_ltEs10(xuu3300, xuu3400) 32.45/13.23 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(ty_Either, ha), hb)) -> new_esEs4(xuu3110000, xuu6000, ha, hb) 32.45/13.23 new_compare30(xuu33000, xuu34000, ty_Double) -> new_compare19(xuu33000, xuu34000) 32.45/13.23 new_compare32(@0, @0) -> EQ 32.45/13.23 new_ltEs12(GT, LT) -> False 32.45/13.23 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Bool) -> new_ltEs16(xuu33000, xuu34000) 32.45/13.23 new_primCompAux0(xuu182, EQ) -> xuu182 32.45/13.23 new_esEs26(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) 32.45/13.23 new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, bh), ca)) -> new_esEs7(xuu3110000, xuu6000, bh, ca) 32.45/13.23 new_esEs20(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.45/13.23 new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.45/13.23 new_esEs29(xuu311000, xuu600, app(app(ty_Either, gc), eg)) -> new_esEs4(xuu311000, xuu600, gc, eg) 32.45/13.23 new_esEs7(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bfa, bfb) -> new_asAs(new_esEs22(xuu3110000, xuu6000, bfa), new_esEs21(xuu3110001, xuu6001, bfb)) 32.45/13.23 new_esEs30(xuu22, xuu17, ty_@0) -> new_esEs9(xuu22, xuu17) 32.45/13.23 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False 32.45/13.23 new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False 32.45/13.23 new_esEs25(xuu33000, xuu34000, app(ty_Maybe, cec)) -> new_esEs6(xuu33000, xuu34000, cec) 32.45/13.23 new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, eh), fa), eg) -> new_esEs7(xuu3110000, xuu6000, eh, fa) 32.45/13.23 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 32.45/13.23 new_esEs13(False, True) -> False 32.45/13.23 new_esEs13(True, False) -> False 32.45/13.23 new_esEs20(xuu3110000, xuu6000, app(ty_[], bde)) -> new_esEs16(xuu3110000, xuu6000, bde) 32.45/13.23 new_ltEs20(xuu33001, xuu34001, app(app(ty_Either, cee), cef)) -> new_ltEs6(xuu33001, xuu34001, cee, cef) 32.45/13.23 new_esEs26(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) 32.45/13.23 new_esEs20(xuu3110000, xuu6000, app(ty_Maybe, bdf)) -> new_esEs6(xuu3110000, xuu6000, bdf) 32.45/13.23 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.45/13.23 new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False 32.45/13.23 new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False 32.45/13.23 new_esEs26(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) 32.45/13.23 new_esEs19(xuu3110001, xuu6001, app(ty_Maybe, bcd)) -> new_esEs6(xuu3110001, xuu6001, bcd) 32.45/13.23 new_esEs25(xuu33000, xuu34000, app(ty_Ratio, cbe)) -> new_esEs15(xuu33000, xuu34000, cbe) 32.45/13.23 new_compare30(xuu33000, xuu34000, app(ty_[], chf)) -> new_compare0(xuu33000, xuu34000, chf) 32.45/13.23 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Int) -> new_ltEs7(xuu33000, xuu34000) 32.45/13.23 new_lt9(xuu33001, xuu34001, ty_Float) -> new_lt14(xuu33001, xuu34001) 32.45/13.23 new_primCmpInt(Neg(Zero), Neg(Succ(xuu3400))) -> new_primCmpNat0(Succ(xuu3400), Zero) 32.45/13.23 new_esEs16(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bhg) -> new_asAs(new_esEs23(xuu3110000, xuu6000, bhg), new_esEs16(xuu3110001, xuu6001, bhg)) 32.45/13.23 new_compare23(Nothing, Just(xuu3400), False, dc) -> LT 32.45/13.23 new_compare29(xuu33000, xuu34000, cec) -> new_compare23(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, cec), cec) 32.45/13.23 new_esEs21(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) 32.45/13.23 new_esEs25(xuu33000, xuu34000, app(ty_[], ceb)) -> new_esEs16(xuu33000, xuu34000, ceb) 32.45/13.23 new_esEs30(xuu22, xuu17, app(app(ty_Either, ddd), dde)) -> new_esEs4(xuu22, xuu17, ddd, dde) 32.45/13.23 new_esEs29(xuu311000, xuu600, ty_@0) -> new_esEs9(xuu311000, xuu600) 32.45/13.23 new_esEs19(xuu3110001, xuu6001, app(ty_[], bcc)) -> new_esEs16(xuu3110001, xuu6001, bcc) 32.45/13.23 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_@0, de) -> new_ltEs18(xuu33000, xuu34000) 32.45/13.23 new_esEs24(xuu33001, xuu34001, app(app(ty_Either, cch), cda)) -> new_esEs4(xuu33001, xuu34001, cch, cda) 32.45/13.23 new_ltEs19(xuu33002, xuu34002, app(app(ty_Either, cbf), cbg)) -> new_ltEs6(xuu33002, xuu34002, cbf, cbg) 32.45/13.23 new_ltEs12(EQ, GT) -> True 32.45/13.23 new_esEs19(xuu3110001, xuu6001, app(ty_Ratio, bcb)) -> new_esEs15(xuu3110001, xuu6001, bcb) 32.45/13.23 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 32.45/13.23 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.45/13.23 new_esEs18(xuu3110002, xuu6002, app(app(ty_Either, baf), bag)) -> new_esEs4(xuu3110002, xuu6002, baf, bag) 32.45/13.23 new_lt20(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) 32.45/13.23 new_lt10(xuu33000, xuu34000, app(app(ty_Either, ee), ef)) -> new_lt5(xuu33000, xuu34000, ee, ef) 32.45/13.23 new_ltEs12(EQ, EQ) -> True 32.45/13.23 new_esEs30(xuu22, xuu17, app(ty_Maybe, ddh)) -> new_esEs6(xuu22, xuu17, ddh) 32.45/13.23 new_esEs24(xuu33001, xuu34001, ty_Float) -> new_esEs11(xuu33001, xuu34001) 32.45/13.23 new_compare30(xuu33000, xuu34000, ty_Int) -> new_compare12(xuu33000, xuu34000) 32.45/13.23 new_esEs23(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.45/13.23 new_esEs12(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) 32.45/13.23 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Double, eg) -> new_esEs14(xuu3110000, xuu6000) 32.45/13.23 new_esEs20(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.45/13.23 new_compare30(xuu33000, xuu34000, ty_Integer) -> new_compare7(xuu33000, xuu34000) 32.45/13.23 new_compare23(Nothing, Nothing, False, dc) -> LT 32.45/13.23 new_esEs18(xuu3110002, xuu6002, ty_@0) -> new_esEs9(xuu3110002, xuu6002) 32.45/13.23 new_esEs19(xuu3110001, xuu6001, app(app(ty_@2, bbc), bbd)) -> new_esEs7(xuu3110001, xuu6001, bbc, bbd) 32.45/13.23 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.45/13.23 new_primPlusNat0(xuu107, xuu600100) -> new_primPlusNat1(xuu107, Succ(xuu600100)) 32.45/13.23 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.45/13.23 new_ltEs6(Right(xuu33000), Left(xuu34000), dd, de) -> False 32.45/13.23 new_not(False) -> True 32.45/13.23 new_esEs21(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) 32.45/13.23 new_esEs21(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) 32.45/13.23 new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_@2, dbb), dbc), de) -> new_ltEs14(xuu33000, xuu34000, dbb, dbc) 32.45/13.23 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_Maybe, dcc)) -> new_ltEs13(xuu33000, xuu34000, dcc) 32.45/13.23 new_ltEs5(xuu3300, xuu3400, ty_Int) -> new_ltEs7(xuu3300, xuu3400) 32.45/13.23 new_compare28(xuu33000, xuu34000, cbb, cbc, cbd) -> new_compare26(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, cbb, cbc, cbd), cbb, cbc, cbd) 32.45/13.23 new_ltEs8(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), df, dg, dh) -> new_pePe(new_lt10(xuu33000, xuu34000, df), new_asAs(new_esEs25(xuu33000, xuu34000, df), new_pePe(new_lt9(xuu33001, xuu34001, dg), new_asAs(new_esEs24(xuu33001, xuu34001, dg), new_ltEs19(xuu33002, xuu34002, dh))))) 32.45/13.23 new_compare30(xuu33000, xuu34000, ty_Bool) -> new_compare9(xuu33000, xuu34000) 32.45/13.23 new_compare0(:(xuu33000, xuu33001), [], bf) -> GT 32.45/13.23 new_esEs8(LT, GT) -> False 32.45/13.23 new_esEs8(GT, LT) -> False 32.45/13.23 new_esEs29(xuu311000, xuu600, app(ty_Ratio, dea)) -> new_esEs15(xuu311000, xuu600, dea) 32.45/13.23 new_esEs19(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) 32.45/13.23 new_esEs25(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) 32.45/13.23 new_compare25(xuu33000, xuu34000, True) -> EQ 32.45/13.23 new_compare27(xuu33000, xuu34000, True, bd, be) -> EQ 32.45/13.23 new_esEs29(xuu311000, xuu600, app(app(ty_@2, bfa), bfb)) -> new_esEs7(xuu311000, xuu600, bfa, bfb) 32.45/13.23 new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.45/13.23 new_esEs18(xuu3110002, xuu6002, app(ty_Maybe, bbb)) -> new_esEs6(xuu3110002, xuu6002, bbb) 32.45/13.23 new_ltEs16(False, False) -> True 32.45/13.23 new_compare11(xuu33000, xuu34000, True, ee, ef) -> LT 32.45/13.23 new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Ratio, beh)) -> new_ltEs15(xuu33000, xuu34000, beh) 32.45/13.23 new_ltEs19(xuu33002, xuu34002, ty_Int) -> new_ltEs7(xuu33002, xuu34002) 32.45/13.23 new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.45/13.23 new_esEs29(xuu311000, xuu600, app(ty_Maybe, bg)) -> new_esEs6(xuu311000, xuu600, bg) 32.45/13.23 new_lt10(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) 32.45/13.23 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 32.45/13.23 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 32.45/13.23 new_primPlusNat1(Zero, Zero) -> Zero 32.45/13.23 new_lt20(xuu33000, xuu34000, app(app(ty_@2, cgf), cgg)) -> new_lt4(xuu33000, xuu34000, cgf, cgg) 32.45/13.23 new_lt9(xuu33001, xuu34001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt11(xuu33001, xuu34001, cdb, cdc, cdd) 32.45/13.23 new_ltEs11(xuu3300, xuu3400) -> new_fsEs(new_compare18(xuu3300, xuu3400)) 32.45/13.23 new_lt19(xuu33000, xuu34000) -> new_esEs8(new_compare32(xuu33000, xuu34000), LT) 32.45/13.23 new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.45/13.23 new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.45/13.23 new_ltEs20(xuu33001, xuu34001, ty_Int) -> new_ltEs7(xuu33001, xuu34001) 32.45/13.23 new_lt20(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) 32.45/13.23 new_esEs28(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.45/13.23 new_lt10(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) 32.45/13.23 new_esEs21(xuu3110001, xuu6001, app(ty_[], bgc)) -> new_esEs16(xuu3110001, xuu6001, bgc) 32.45/13.23 new_ltEs16(True, True) -> True 32.45/13.23 new_lt13(xuu33000, xuu34000) -> new_esEs8(new_compare7(xuu33000, xuu34000), LT) 32.45/13.23 new_esEs20(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.45/13.23 new_esEs26(xuu33000, xuu34000, app(app(ty_Either, cfg), cfh)) -> new_esEs4(xuu33000, xuu34000, cfg, cfh) 32.45/13.23 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Bool, de) -> new_ltEs16(xuu33000, xuu34000) 32.45/13.23 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 32.45/13.23 new_ltEs5(xuu3300, xuu3400, app(ty_Ratio, ed)) -> new_ltEs15(xuu3300, xuu3400, ed) 32.45/13.23 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.45/13.23 new_esEs25(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) 32.45/13.23 new_primMulNat0(Succ(xuu311000000), Succ(xuu600100)) -> new_primPlusNat0(new_primMulNat0(xuu311000000, Succ(xuu600100)), xuu600100) 32.45/13.23 new_ltEs12(EQ, LT) -> False 32.45/13.23 new_ltEs5(xuu3300, xuu3400, app(ty_[], bf)) -> new_ltEs4(xuu3300, xuu3400, bf) 32.45/13.23 new_lt6(xuu330, xuu340) -> new_esEs8(new_compare12(xuu330, xuu340), LT) 32.45/13.23 new_lt7(xuu33000, xuu34000) -> new_esEs8(new_compare13(xuu33000, xuu34000), LT) 32.45/13.23 new_primCmpNat0(Succ(xuu3300), Succ(xuu3400)) -> new_primCmpNat0(xuu3300, xuu3400) 32.45/13.23 new_ltEs19(xuu33002, xuu34002, app(ty_Ratio, ccg)) -> new_ltEs15(xuu33002, xuu34002, ccg) 32.45/13.23 new_esEs26(xuu33000, xuu34000, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs5(xuu33000, xuu34000, cga, cgb, cgc) 32.45/13.23 new_esEs30(xuu22, xuu17, ty_Char) -> new_esEs10(xuu22, xuu17) 32.45/13.23 new_esEs21(xuu3110001, xuu6001, app(app(ty_@2, bfc), bfd)) -> new_esEs7(xuu3110001, xuu6001, bfc, bfd) 32.45/13.23 new_esEs26(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) 32.45/13.23 new_esEs18(xuu3110002, xuu6002, ty_Char) -> new_esEs10(xuu3110002, xuu6002) 32.45/13.23 new_esEs24(xuu33001, xuu34001, ty_Integer) -> new_esEs17(xuu33001, xuu34001) 32.45/13.23 new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_[], da)) -> new_esEs16(xuu3110000, xuu6000, da) 32.45/13.23 new_compare12(xuu33, xuu34) -> new_primCmpInt(xuu33, xuu34) 32.45/13.23 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(app(ty_@3, dbg), dbh), dca)) -> new_ltEs8(xuu33000, xuu34000, dbg, dbh, dca) 32.45/13.23 new_esEs19(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) 32.45/13.23 new_esEs16(:(xuu3110000, xuu3110001), [], bhg) -> False 32.45/13.23 new_esEs16([], :(xuu6000, xuu6001), bhg) -> False 32.45/13.23 new_esEs23(xuu3110000, xuu6000, app(ty_[], cah)) -> new_esEs16(xuu3110000, xuu6000, cah) 32.45/13.23 new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, fb), fc), fd), eg) -> new_esEs5(xuu3110000, xuu6000, fb, fc, fd) 32.45/13.23 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 32.45/13.23 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 32.45/13.23 new_ltEs12(LT, EQ) -> True 32.45/13.23 new_ltEs20(xuu33001, xuu34001, app(ty_[], cfb)) -> new_ltEs4(xuu33001, xuu34001, cfb) 32.45/13.23 new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.45/13.23 new_compare30(xuu33000, xuu34000, app(app(ty_Either, cha), chb)) -> new_compare8(xuu33000, xuu34000, cha, chb) 32.45/13.23 new_ltEs20(xuu33001, xuu34001, app(ty_Ratio, cff)) -> new_ltEs15(xuu33001, xuu34001, cff) 32.45/13.23 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Float, de) -> new_ltEs11(xuu33000, xuu34000) 32.45/13.23 new_ltEs9(xuu3300, xuu3400) -> new_fsEs(new_compare19(xuu3300, xuu3400)) 32.45/13.23 new_esEs27(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) 32.45/13.23 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_@0) -> new_ltEs18(xuu33000, xuu34000) 32.45/13.23 new_primEqNat0(Zero, Zero) -> True 32.45/13.23 new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, gb), eg) -> new_esEs6(xuu3110000, xuu6000, gb) 32.45/13.23 new_esEs20(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.45/13.23 new_esEs29(xuu311000, xuu600, ty_Ordering) -> new_esEs8(xuu311000, xuu600) 32.45/13.23 new_lt20(xuu33000, xuu34000, app(app(ty_Either, cfg), cfh)) -> new_lt5(xuu33000, xuu34000, cfg, cfh) 32.45/13.23 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Float, eg) -> new_esEs11(xuu3110000, xuu6000) 32.45/13.23 new_lt10(xuu33000, xuu34000, app(app(ty_@2, bd), be)) -> new_lt4(xuu33000, xuu34000, bd, be) 32.45/13.23 new_esEs22(xuu3110000, xuu6000, app(ty_[], bhe)) -> new_esEs16(xuu3110000, xuu6000, bhe) 32.45/13.23 new_asAs(False, xuu139) -> False 32.45/13.23 new_ltEs19(xuu33002, xuu34002, app(ty_[], ccc)) -> new_ltEs4(xuu33002, xuu34002, ccc) 32.45/13.23 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.45/13.23 new_compare30(xuu33000, xuu34000, ty_Ordering) -> new_compare31(xuu33000, xuu34000) 32.45/13.23 new_lt20(xuu33000, xuu34000, app(ty_Maybe, cge)) -> new_lt17(xuu33000, xuu34000, cge) 32.45/13.23 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Double, de) -> new_ltEs9(xuu33000, xuu34000) 32.45/13.23 new_lt20(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) 32.45/13.23 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) 32.45/13.23 new_ltEs13(Nothing, Just(xuu34000), ea) -> True 32.45/13.23 new_esEs23(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.45/13.23 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_[], hd)) -> new_esEs16(xuu3110000, xuu6000, hd) 32.45/13.23 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Char, de) -> new_ltEs17(xuu33000, xuu34000) 32.45/13.23 new_ltEs6(Left(xuu33000), Right(xuu34000), dd, de) -> True 32.45/13.23 new_esEs8(EQ, GT) -> False 32.45/13.23 new_esEs8(GT, EQ) -> False 32.45/13.23 new_esEs11(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 32.45/13.23 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Integer) -> new_ltEs10(xuu33000, xuu34000) 32.45/13.23 new_ltEs16(False, True) -> True 32.45/13.23 new_lt10(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) 32.45/13.23 new_esEs29(xuu311000, xuu600, ty_Char) -> new_esEs10(xuu311000, xuu600) 32.45/13.23 new_esEs21(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) 32.45/13.23 new_esEs20(xuu3110000, xuu6000, app(app(ty_@2, bce), bcf)) -> new_esEs7(xuu3110000, xuu6000, bce, bcf) 32.45/13.23 32.45/13.23 The set Q consists of the following terms: 32.45/13.23 32.45/13.23 new_lt10(x0, x1, app(ty_[], x2)) 32.45/13.23 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.23 new_esEs8(EQ, EQ) 32.45/13.23 new_esEs6(Just(x0), Just(x1), ty_Double) 32.45/13.23 new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 32.45/13.23 new_esEs4(Left(x0), Left(x1), ty_Double, x2) 32.45/13.23 new_esEs19(x0, x1, app(ty_[], x2)) 32.45/13.23 new_ltEs13(Nothing, Just(x0), x1) 32.45/13.23 new_lt9(x0, x1, ty_Bool) 32.45/13.23 new_lt10(x0, x1, ty_@0) 32.45/13.23 new_esEs29(x0, x1, ty_@0) 32.45/13.23 new_ltEs20(x0, x1, ty_Int) 32.45/13.23 new_esEs30(x0, x1, ty_Bool) 32.45/13.23 new_lt20(x0, x1, ty_Integer) 32.45/13.23 new_ltEs11(x0, x1) 32.45/13.23 new_lt5(x0, x1, x2, x3) 32.45/13.23 new_ltEs7(x0, x1) 32.45/13.23 new_esEs26(x0, x1, app(ty_Maybe, x2)) 32.45/13.23 new_esEs24(x0, x1, ty_Float) 32.45/13.23 new_ltEs19(x0, x1, app(ty_[], x2)) 32.45/13.23 new_esEs6(Just(x0), Just(x1), ty_Ordering) 32.45/13.23 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 32.45/13.23 new_esEs6(Just(x0), Nothing, x1) 32.45/13.23 new_compare0(:(x0, x1), [], x2) 32.45/13.23 new_primPlusNat1(Zero, Zero) 32.45/13.23 new_pePe(True, x0) 32.45/13.23 new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) 32.45/13.23 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 32.45/13.23 new_esEs29(x0, x1, ty_Bool) 32.45/13.23 new_esEs6(Nothing, Nothing, x0) 32.45/13.23 new_ltEs20(x0, x1, ty_Char) 32.45/13.23 new_lt10(x0, x1, ty_Bool) 32.45/13.23 new_ltEs9(x0, x1) 32.45/13.23 new_lt9(x0, x1, ty_Integer) 32.45/13.23 new_ltEs19(x0, x1, ty_Double) 32.45/13.23 new_esEs12(x0, x1) 32.45/13.23 new_primEqInt(Pos(Zero), Pos(Zero)) 32.45/13.23 new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) 32.45/13.23 new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.23 new_lt13(x0, x1) 32.45/13.23 new_lt7(x0, x1) 32.45/13.23 new_esEs4(Left(x0), Left(x1), ty_Int, x2) 32.45/13.23 new_esEs26(x0, x1, ty_Double) 32.45/13.23 new_ltEs5(x0, x1, app(ty_Ratio, x2)) 32.45/13.23 new_fsEs(x0) 32.45/13.23 new_lt9(x0, x1, ty_@0) 32.45/13.23 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 32.45/13.23 new_lt9(x0, x1, app(ty_Ratio, x2)) 32.45/13.23 new_esEs16([], :(x0, x1), x2) 32.45/13.23 new_primEqNat0(Zero, Succ(x0)) 32.45/13.23 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 32.45/13.23 new_lt10(x0, x1, ty_Char) 32.45/13.23 new_primEqInt(Neg(Zero), Neg(Zero)) 32.45/13.23 new_compare16(x0, x1, True, x2, x3) 32.45/13.23 new_ltEs20(x0, x1, app(ty_[], x2)) 32.45/13.23 new_esEs23(x0, x1, ty_Bool) 32.45/13.23 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 32.45/13.23 new_esEs6(Just(x0), Just(x1), ty_Char) 32.45/13.23 new_esEs4(Left(x0), Left(x1), ty_Char, x2) 32.45/13.23 new_esEs29(x0, x1, ty_Char) 32.45/13.23 new_ltEs16(False, False) 32.45/13.23 new_esEs20(x0, x1, app(ty_Ratio, x2)) 32.45/13.23 new_ltEs19(x0, x1, ty_Int) 32.45/13.23 new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) 32.45/13.23 new_compare30(x0, x1, ty_Double) 32.45/13.23 new_lt19(x0, x1) 32.45/13.23 new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) 32.45/13.23 new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 32.45/13.23 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 32.45/13.23 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 32.45/13.23 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.23 new_ltEs12(GT, EQ) 32.45/13.23 new_compare29(x0, x1, x2) 32.45/13.23 new_ltEs12(EQ, GT) 32.45/13.23 new_esEs19(x0, x1, app(ty_Ratio, x2)) 32.45/13.23 new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 32.45/13.23 new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) 32.45/13.23 new_ltEs13(Just(x0), Nothing, x1) 32.45/13.23 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.23 new_esEs30(x0, x1, ty_Integer) 32.45/13.23 new_compare6(x0, x1, x2, x3) 32.45/13.23 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.23 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.23 new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 32.45/13.23 new_primEqInt(Pos(Zero), Neg(Zero)) 32.45/13.23 new_primEqInt(Neg(Zero), Pos(Zero)) 32.45/13.23 new_compare14(x0, x1, True, x2, x3, x4) 32.45/13.23 new_ltEs20(x0, x1, ty_Ordering) 32.45/13.23 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 32.45/13.23 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 32.45/13.23 new_compare0([], :(x0, x1), x2) 32.45/13.23 new_compare16(x0, x1, False, x2, x3) 32.45/13.23 new_esEs19(x0, x1, ty_Float) 32.45/13.23 new_primCompAux0(x0, GT) 32.45/13.23 new_esEs29(x0, x1, ty_Int) 32.45/13.23 new_esEs20(x0, x1, app(ty_[], x2)) 32.45/13.23 new_compare210(x0, x1, False) 32.45/13.23 new_esEs18(x0, x1, app(ty_[], x2)) 32.45/13.23 new_esEs23(x0, x1, ty_Ordering) 32.45/13.23 new_pePe(False, x0) 32.45/13.23 new_esEs6(Just(x0), Just(x1), ty_Int) 32.45/13.23 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.23 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 32.45/13.23 new_lt20(x0, x1, app(ty_[], x2)) 32.45/13.23 new_lt20(x0, x1, app(ty_Ratio, x2)) 32.45/13.23 new_ltEs6(Left(x0), Left(x1), ty_Float, x2) 32.45/13.23 new_esEs25(x0, x1, ty_Integer) 32.45/13.23 new_esEs10(Char(x0), Char(x1)) 32.45/13.23 new_esEs23(x0, x1, ty_Integer) 32.45/13.23 new_esEs25(x0, x1, app(ty_[], x2)) 32.45/13.23 new_compare13(Char(x0), Char(x1)) 32.45/13.23 new_esEs30(x0, x1, app(ty_Maybe, x2)) 32.45/13.23 new_primEqNat0(Succ(x0), Succ(x1)) 32.45/13.23 new_primMulInt(Neg(x0), Neg(x1)) 32.45/13.23 new_compare30(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.23 new_ltEs13(Just(x0), Just(x1), ty_Float) 32.45/13.23 new_ltEs5(x0, x1, ty_Double) 32.45/13.23 new_esEs30(x0, x1, ty_Ordering) 32.45/13.23 new_esEs6(Just(x0), Just(x1), ty_@0) 32.45/13.23 new_esEs9(@0, @0) 32.45/13.23 new_esEs24(x0, x1, ty_Bool) 32.45/13.23 new_esEs4(Right(x0), Right(x1), x2, ty_Integer) 32.45/13.23 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.23 new_lt9(x0, x1, ty_Double) 32.45/13.23 new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 32.45/13.23 new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 32.45/13.23 new_esEs14(Double(x0, x1), Double(x2, x3)) 32.45/13.23 new_esEs4(Left(x0), Left(x1), ty_Bool, x2) 32.45/13.23 new_esEs6(Just(x0), Just(x1), ty_Bool) 32.45/13.23 new_esEs29(x0, x1, ty_Ordering) 32.45/13.23 new_lt10(x0, x1, ty_Float) 32.45/13.23 new_lt6(x0, x1) 32.45/13.23 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.23 new_ltEs5(x0, x1, ty_Ordering) 32.45/13.23 new_esEs30(x0, x1, ty_Double) 32.45/13.23 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.23 new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 32.45/13.23 new_ltEs19(x0, x1, ty_Char) 32.45/13.23 new_ltEs13(Just(x0), Just(x1), ty_Int) 32.45/13.23 new_esEs21(x0, x1, ty_Double) 32.45/13.23 new_lt10(x0, x1, ty_Ordering) 32.45/13.23 new_primPlusNat0(x0, x1) 32.45/13.23 new_compare23(Just(x0), Nothing, False, x1) 32.45/13.23 new_esEs26(x0, x1, ty_@0) 32.45/13.23 new_esEs23(x0, x1, ty_Double) 32.45/13.23 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 32.45/13.23 new_compare30(x0, x1, ty_Ordering) 32.45/13.23 new_compare23(x0, x1, True, x2) 32.45/13.23 new_primMulNat0(Succ(x0), Succ(x1)) 32.45/13.23 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.23 new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) 32.45/13.23 new_primPlusNat1(Zero, Succ(x0)) 32.45/13.23 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.23 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.23 new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 32.45/13.23 new_lt10(x0, x1, ty_Int) 32.45/13.23 new_compare25(x0, x1, True) 32.45/13.23 new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) 32.45/13.23 new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 32.45/13.23 new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 32.45/13.23 new_lt9(x0, x1, app(ty_[], x2)) 32.45/13.23 new_esEs8(GT, GT) 32.45/13.23 new_ltEs19(x0, x1, ty_Bool) 32.45/13.23 new_esEs28(x0, x1, ty_Integer) 32.45/13.23 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 32.45/13.23 new_ltEs16(True, False) 32.45/13.23 new_ltEs16(False, True) 32.45/13.23 new_ltEs12(EQ, LT) 32.45/13.23 new_ltEs12(LT, EQ) 32.45/13.23 new_esEs18(x0, x1, ty_Integer) 32.45/13.23 new_esEs8(LT, EQ) 32.45/13.23 new_esEs8(EQ, LT) 32.45/13.23 new_ltEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 32.45/13.23 new_esEs18(x0, x1, ty_Float) 32.45/13.23 new_ltEs12(GT, GT) 32.45/13.23 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.23 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.23 new_compare30(x0, x1, ty_@0) 32.45/13.23 new_primCmpInt(Neg(Zero), Neg(Zero)) 32.45/13.23 new_esEs22(x0, x1, ty_Integer) 32.45/13.23 new_lt20(x0, x1, ty_@0) 32.45/13.23 new_esEs13(False, True) 32.45/13.23 new_esEs13(True, False) 32.45/13.23 new_esEs23(x0, x1, app(ty_Ratio, x2)) 32.45/13.23 new_lt10(x0, x1, ty_Integer) 32.45/13.23 new_esEs11(Float(x0, x1), Float(x2, x3)) 32.45/13.23 new_esEs24(x0, x1, app(ty_Ratio, x2)) 32.45/13.23 new_esEs8(LT, LT) 32.45/13.23 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.23 new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 32.45/13.23 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.23 new_primCmpInt(Pos(Zero), Neg(Zero)) 32.45/13.23 new_primCmpInt(Neg(Zero), Pos(Zero)) 32.45/13.23 new_primMulInt(Pos(x0), Neg(x1)) 32.45/13.23 new_primMulInt(Neg(x0), Pos(x1)) 32.45/13.23 new_esEs20(x0, x1, ty_Char) 32.45/13.23 new_compare110(x0, x1, True) 32.45/13.23 new_ltEs6(Right(x0), Left(x1), x2, x3) 32.45/13.23 new_ltEs6(Left(x0), Right(x1), x2, x3) 32.45/13.23 new_primCompAux1(x0, x1, x2, x3) 32.45/13.23 new_esEs6(Just(x0), Just(x1), ty_Integer) 32.45/13.23 new_esEs18(x0, x1, ty_Int) 32.45/13.23 new_lt15(x0, x1) 32.45/13.23 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 32.45/13.23 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.23 new_compare23(Nothing, Nothing, False, x0) 32.45/13.23 new_esEs29(x0, x1, ty_Integer) 32.45/13.23 new_esEs24(x0, x1, app(ty_Maybe, x2)) 32.45/13.23 new_esEs16([], [], x0) 32.45/13.23 new_esEs4(Right(x0), Right(x1), x2, ty_@0) 32.45/13.23 new_primMulInt(Pos(x0), Pos(x1)) 32.45/13.23 new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 32.45/13.23 new_compare27(x0, x1, True, x2, x3) 32.45/13.23 new_esEs20(x0, x1, ty_Int) 32.45/13.23 new_ltEs20(x0, x1, ty_Double) 32.45/13.23 new_compare210(x0, x1, True) 32.45/13.23 new_compare10(x0, x1, False, x2) 32.45/13.23 new_esEs22(x0, x1, ty_Ordering) 32.45/13.23 new_esEs25(x0, x1, ty_@0) 32.45/13.23 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.23 new_esEs18(x0, x1, ty_Char) 32.45/13.23 new_ltEs12(LT, LT) 32.45/13.23 new_asAs(True, x0) 32.45/13.23 new_esEs29(x0, x1, app(ty_Ratio, x2)) 32.45/13.23 new_esEs23(x0, x1, app(ty_[], x2)) 32.45/13.23 new_ltEs6(Right(x0), Right(x1), x2, ty_Double) 32.45/13.23 new_ltEs6(Right(x0), Right(x1), x2, ty_@0) 32.45/13.23 new_compare24(x0, x1, False, x2, x3) 32.45/13.23 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.23 new_lt17(x0, x1, x2) 32.45/13.23 new_ltEs19(x0, x1, ty_Ordering) 32.45/13.23 new_ltEs5(x0, x1, app(ty_[], x2)) 32.45/13.23 new_esEs18(x0, x1, ty_Bool) 32.45/13.23 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.23 new_ltEs19(x0, x1, ty_Integer) 32.45/13.23 new_esEs23(x0, x1, ty_@0) 32.45/13.23 new_esEs20(x0, x1, ty_Float) 32.45/13.23 new_ltEs17(x0, x1) 32.45/13.23 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.23 new_primCmpNat0(Succ(x0), Succ(x1)) 32.45/13.23 new_compare30(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.23 new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.23 new_lt20(x0, x1, ty_Double) 32.45/13.23 new_compare26(x0, x1, True, x2, x3, x4) 32.45/13.23 new_esEs30(x0, x1, ty_@0) 32.45/13.23 new_ltEs20(x0, x1, ty_@0) 32.45/13.23 new_primMulNat0(Succ(x0), Zero) 32.45/13.23 new_primCmpNat0(Zero, Succ(x0)) 32.45/13.23 new_esEs16(:(x0, x1), :(x2, x3), x4) 32.45/13.23 new_compare0(:(x0, x1), :(x2, x3), x4) 32.45/13.23 new_ltEs15(x0, x1, x2) 32.45/13.23 new_esEs19(x0, x1, ty_Int) 32.45/13.23 new_lt9(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.23 new_compare30(x0, x1, app(ty_[], x2)) 32.45/13.23 new_ltEs10(x0, x1) 32.45/13.23 new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 32.45/13.23 new_esEs24(x0, x1, app(ty_[], x2)) 32.45/13.23 new_esEs20(x0, x1, ty_@0) 32.45/13.23 new_primCompAux0(x0, LT) 32.45/13.23 new_esEs6(Just(x0), Just(x1), ty_Float) 32.45/13.23 new_ltEs5(x0, x1, ty_Bool) 32.45/13.23 new_esEs4(Left(x0), Left(x1), ty_Float, x2) 32.45/13.23 new_compare7(Integer(x0), Integer(x1)) 32.45/13.23 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.23 new_ltEs13(Just(x0), Just(x1), ty_Bool) 32.45/13.23 new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 32.45/13.23 new_primMulNat0(Zero, Zero) 32.45/13.23 new_esEs22(x0, x1, ty_@0) 32.45/13.23 new_compare30(x0, x1, ty_Integer) 32.45/13.23 new_ltEs6(Left(x0), Left(x1), ty_Char, x2) 32.45/13.23 new_esEs4(Right(x0), Right(x1), x2, ty_Int) 32.45/13.23 new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.23 new_ltEs6(Left(x0), Left(x1), ty_Int, x2) 32.45/13.23 new_esEs17(Integer(x0), Integer(x1)) 32.45/13.23 new_ltEs5(x0, x1, ty_@0) 32.45/13.23 new_esEs19(x0, x1, ty_Ordering) 32.45/13.23 new_lt20(x0, x1, app(ty_Maybe, x2)) 32.45/13.23 new_lt12(x0, x1) 32.45/13.23 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 32.45/13.23 new_esEs24(x0, x1, ty_Double) 32.45/13.23 new_esEs18(x0, x1, ty_@0) 32.45/13.23 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.23 new_compare11(x0, x1, False, x2, x3) 32.45/13.23 new_lt9(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.23 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 32.45/13.23 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 32.45/13.23 new_compare10(x0, x1, True, x2) 32.45/13.23 new_esEs28(x0, x1, ty_Int) 32.45/13.23 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.23 new_esEs19(x0, x1, ty_Double) 32.45/13.23 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 32.45/13.23 new_esEs25(x0, x1, ty_Double) 32.45/13.23 new_esEs24(x0, x1, ty_Int) 32.45/13.23 new_lt4(x0, x1, x2, x3) 32.45/13.23 new_esEs21(x0, x1, ty_Bool) 32.45/13.23 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.23 new_esEs20(x0, x1, ty_Bool) 32.45/13.23 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 32.45/13.23 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.23 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.23 new_compare23(Just(x0), Just(x1), False, x2) 32.45/13.23 new_esEs19(x0, x1, ty_Char) 32.45/13.23 new_esEs4(Right(x0), Right(x1), x2, ty_Char) 32.45/13.23 new_esEs4(Right(x0), Right(x1), x2, ty_Double) 32.45/13.23 new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 32.45/13.23 new_ltEs13(Just(x0), Just(x1), ty_@0) 32.45/13.23 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.23 new_esEs24(x0, x1, ty_Ordering) 32.45/13.23 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.23 new_compare14(x0, x1, False, x2, x3, x4) 32.45/13.23 new_esEs30(x0, x1, app(ty_Ratio, x2)) 32.45/13.23 new_esEs29(x0, x1, app(ty_[], x2)) 32.45/13.23 new_esEs22(x0, x1, app(ty_Maybe, x2)) 32.45/13.23 new_lt11(x0, x1, x2, x3, x4) 32.45/13.23 new_not(True) 32.45/13.23 new_ltEs5(x0, x1, app(ty_Maybe, x2)) 32.45/13.23 new_compare17(x0, x1, False) 32.45/13.23 new_compare30(x0, x1, app(ty_Ratio, x2)) 32.45/13.23 new_esEs19(x0, x1, app(ty_Maybe, x2)) 32.45/13.23 new_ltEs13(Just(x0), Just(x1), ty_Char) 32.45/13.23 new_esEs23(x0, x1, app(ty_Maybe, x2)) 32.45/13.23 new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 32.45/13.23 new_esEs26(x0, x1, app(ty_[], x2)) 32.45/13.23 new_compare17(x0, x1, True) 32.45/13.23 new_ltEs6(Left(x0), Left(x1), ty_@0, x2) 32.45/13.23 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.23 new_esEs8(EQ, GT) 32.45/13.23 new_esEs8(GT, EQ) 32.45/13.23 new_esEs18(x0, x1, ty_Ordering) 32.45/13.23 new_esEs18(x0, x1, app(ty_Ratio, x2)) 32.45/13.23 new_esEs22(x0, x1, ty_Int) 32.45/13.23 new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 32.45/13.23 new_esEs24(x0, x1, ty_Char) 32.45/13.23 new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 32.45/13.23 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.23 new_ltEs6(Left(x0), Left(x1), ty_Double, x2) 32.45/13.23 new_esEs4(Left(x0), Left(x1), ty_Integer, x2) 32.45/13.23 new_lt9(x0, x1, app(ty_Maybe, x2)) 32.45/13.23 new_lt20(x0, x1, ty_Ordering) 32.45/13.23 new_esEs19(x0, x1, ty_@0) 32.45/13.23 new_ltEs13(Just(x0), Just(x1), ty_Integer) 32.45/13.23 new_esEs6(Nothing, Just(x0), x1) 32.45/13.23 new_esEs26(x0, x1, app(ty_Ratio, x2)) 32.45/13.23 new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.23 new_compare110(x0, x1, False) 32.45/13.23 new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) 32.45/13.23 new_esEs13(True, True) 32.45/13.23 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.23 new_esEs21(x0, x1, ty_@0) 32.45/13.23 new_ltEs18(x0, x1) 32.45/13.23 new_compare12(x0, x1) 32.45/13.23 new_compare30(x0, x1, ty_Bool) 32.45/13.23 new_esEs26(x0, x1, ty_Float) 32.45/13.23 new_compare27(x0, x1, False, x2, x3) 32.45/13.23 new_ltEs13(Nothing, Nothing, x0) 32.45/13.23 new_primPlusNat1(Succ(x0), Succ(x1)) 32.45/13.23 new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) 32.45/13.23 new_esEs22(x0, x1, ty_Bool) 32.45/13.23 new_ltEs19(x0, x1, ty_@0) 32.45/13.23 new_esEs21(x0, x1, ty_Float) 32.45/13.23 new_esEs21(x0, x1, app(ty_[], x2)) 32.45/13.23 new_compare11(x0, x1, True, x2, x3) 32.45/13.23 new_primEqNat0(Succ(x0), Zero) 32.45/13.23 new_primCompAux0(x0, EQ) 32.45/13.23 new_lt10(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.23 new_lt14(x0, x1) 32.45/13.23 new_ltEs19(x0, x1, ty_Float) 32.45/13.23 new_ltEs12(EQ, EQ) 32.45/13.23 new_compare28(x0, x1, x2, x3, x4) 32.45/13.23 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 32.45/13.23 new_esEs27(x0, x1, ty_Int) 32.45/13.23 new_lt8(x0, x1, x2) 32.45/13.23 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.23 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 32.45/13.23 new_esEs22(x0, x1, ty_Char) 32.45/13.23 new_compare25(x0, x1, False) 32.45/13.23 new_esEs21(x0, x1, app(ty_Ratio, x2)) 32.45/13.23 new_ltEs5(x0, x1, ty_Integer) 32.45/13.23 new_esEs25(x0, x1, ty_Ordering) 32.45/13.23 new_esEs4(Left(x0), Right(x1), x2, x3) 32.45/13.23 new_esEs4(Right(x0), Left(x1), x2, x3) 32.45/13.23 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 32.45/13.23 new_esEs20(x0, x1, ty_Integer) 32.45/13.23 new_esEs22(x0, x1, ty_Double) 32.45/13.23 new_lt10(x0, x1, app(ty_Ratio, x2)) 32.45/13.23 new_primCmpInt(Pos(Zero), Pos(Zero)) 32.45/13.23 new_lt10(x0, x1, app(ty_Maybe, x2)) 32.45/13.23 new_compare0([], [], x0) 32.45/13.23 new_ltEs20(x0, x1, ty_Integer) 32.45/13.23 new_esEs29(x0, x1, ty_Double) 32.45/13.23 new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 32.45/13.23 new_lt9(x0, x1, ty_Ordering) 32.45/13.23 new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 32.45/13.23 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 32.45/13.23 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 32.45/13.23 new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) 32.45/13.23 new_ltEs5(x0, x1, ty_Float) 32.45/13.23 new_ltEs13(Just(x0), Just(x1), ty_Double) 32.45/13.23 new_esEs22(x0, x1, app(ty_[], x2)) 32.45/13.23 new_compare30(x0, x1, ty_Char) 32.45/13.23 new_esEs4(Left(x0), Left(x1), ty_@0, x2) 32.45/13.23 new_esEs19(x0, x1, ty_Integer) 32.45/13.23 new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 32.45/13.23 new_esEs29(x0, x1, ty_Float) 32.45/13.23 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.23 new_esEs20(x0, x1, ty_Double) 32.45/13.23 new_sr(x0, x1) 32.45/13.23 new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 32.45/13.23 new_esEs30(x0, x1, ty_Float) 32.45/13.23 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 32.45/13.23 new_compare24(x0, x1, True, x2, x3) 32.45/13.23 new_esEs30(x0, x1, app(ty_[], x2)) 32.45/13.23 new_esEs21(x0, x1, ty_Ordering) 32.45/13.23 new_compare9(x0, x1) 32.45/13.23 new_esEs20(x0, x1, ty_Ordering) 32.45/13.23 new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 32.45/13.23 new_esEs21(x0, x1, ty_Int) 32.45/13.23 new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.23 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.23 new_lt9(x0, x1, ty_Float) 32.45/13.23 new_esEs29(x0, x1, app(ty_Maybe, x2)) 32.45/13.23 new_esEs8(LT, GT) 32.45/13.23 new_esEs8(GT, LT) 32.45/13.23 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 32.45/13.23 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.23 new_esEs19(x0, x1, ty_Bool) 32.45/13.23 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 32.45/13.23 new_esEs25(x0, x1, ty_Char) 32.45/13.23 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 32.45/13.23 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.23 new_ltEs5(x0, x1, ty_Int) 32.45/13.23 new_ltEs20(x0, x1, ty_Bool) 32.45/13.23 new_compare26(x0, x1, False, x2, x3, x4) 32.45/13.23 new_esEs21(x0, x1, ty_Char) 32.45/13.23 new_esEs22(x0, x1, ty_Float) 32.45/13.23 new_esEs26(x0, x1, ty_Char) 32.45/13.23 new_esEs24(x0, x1, ty_Integer) 32.45/13.23 new_esEs4(Right(x0), Right(x1), x2, ty_Bool) 32.45/13.23 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.23 new_lt9(x0, x1, ty_Char) 32.45/13.23 new_lt10(x0, x1, ty_Double) 32.45/13.23 new_esEs24(x0, x1, ty_@0) 32.45/13.23 new_compare23(Nothing, Just(x0), False, x1) 32.45/13.23 new_esEs26(x0, x1, ty_Int) 32.45/13.23 new_compare30(x0, x1, ty_Int) 32.45/13.23 new_compare8(x0, x1, x2, x3) 32.45/13.23 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 32.45/13.23 new_lt10(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.23 new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) 32.45/13.23 new_esEs21(x0, x1, app(ty_Maybe, x2)) 32.45/13.23 new_asAs(False, x0) 32.45/13.23 new_esEs16(:(x0, x1), [], x2) 32.45/13.23 new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 32.45/13.23 new_ltEs13(Just(x0), Just(x1), ty_Ordering) 32.45/13.23 new_esEs25(x0, x1, ty_Bool) 32.45/13.23 new_lt9(x0, x1, ty_Int) 32.45/13.23 new_lt18(x0, x1) 32.45/13.23 new_esEs23(x0, x1, ty_Int) 32.45/13.23 new_compare30(x0, x1, app(ty_Maybe, x2)) 32.45/13.23 new_primEqNat0(Zero, Zero) 32.45/13.23 new_esEs13(False, False) 32.45/13.23 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 32.45/13.23 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.23 new_primMulNat0(Zero, Succ(x0)) 32.45/13.23 new_ltEs5(x0, x1, ty_Char) 32.45/13.23 new_not(False) 32.45/13.23 new_lt20(x0, x1, ty_Float) 32.45/13.23 new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 32.45/13.23 new_esEs26(x0, x1, ty_Ordering) 32.45/13.23 new_ltEs16(True, True) 32.45/13.23 new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) 32.45/13.23 new_lt20(x0, x1, ty_Bool) 32.45/13.23 new_ltEs12(LT, GT) 32.45/13.23 new_ltEs12(GT, LT) 32.45/13.23 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.23 new_esEs25(x0, x1, ty_Int) 32.45/13.23 new_esEs30(x0, x1, ty_Char) 32.45/13.23 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 32.45/13.23 new_ltEs6(Right(x0), Right(x1), x2, ty_Float) 32.45/13.23 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 32.45/13.23 new_esEs22(x0, x1, app(ty_Ratio, x2)) 32.45/13.23 new_esEs26(x0, x1, ty_Bool) 32.45/13.23 new_esEs23(x0, x1, ty_Char) 32.45/13.23 new_esEs15(:%(x0, x1), :%(x2, x3), x4) 32.45/13.23 new_sr0(Integer(x0), Integer(x1)) 32.45/13.23 new_compare30(x0, x1, ty_Float) 32.45/13.23 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 32.45/13.23 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 32.45/13.23 new_esEs26(x0, x1, ty_Integer) 32.45/13.23 new_esEs25(x0, x1, app(ty_Ratio, x2)) 32.45/13.23 new_esEs25(x0, x1, app(ty_Maybe, x2)) 32.45/13.23 new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) 32.45/13.23 new_esEs20(x0, x1, app(ty_Maybe, x2)) 32.45/13.23 new_ltEs6(Right(x0), Right(x1), x2, ty_Char) 32.45/13.23 new_esEs23(x0, x1, ty_Float) 32.45/13.23 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 32.45/13.23 new_primPlusNat1(Succ(x0), Zero) 32.45/13.23 new_esEs30(x0, x1, ty_Int) 32.45/13.23 new_esEs18(x0, x1, app(ty_Maybe, x2)) 32.45/13.23 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 32.45/13.23 new_ltEs4(x0, x1, x2) 32.45/13.23 new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) 32.45/13.23 new_ltEs20(x0, x1, ty_Float) 32.45/13.23 new_esEs18(x0, x1, ty_Double) 32.45/13.23 new_lt20(x0, x1, ty_Int) 32.45/13.23 new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.23 new_esEs21(x0, x1, ty_Integer) 32.45/13.23 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.23 new_esEs27(x0, x1, ty_Integer) 32.45/13.23 new_primCmpNat0(Succ(x0), Zero) 32.45/13.23 new_lt16(x0, x1, x2) 32.45/13.23 new_compare31(x0, x1) 32.45/13.23 new_esEs4(Right(x0), Right(x1), x2, ty_Float) 32.45/13.23 new_esEs25(x0, x1, ty_Float) 32.45/13.23 new_ltEs6(Right(x0), Right(x1), x2, ty_Int) 32.45/13.23 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 32.45/13.23 new_compare32(@0, @0) 32.45/13.23 new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 32.45/13.23 new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 32.45/13.23 new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 32.45/13.23 new_primCmpNat0(Zero, Zero) 32.45/13.23 new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 32.45/13.23 new_lt20(x0, x1, ty_Char) 32.45/13.23 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.23 32.45/13.23 We have to consider all minimal (P,Q,R)-chains. 32.45/13.23 ---------------------------------------- 32.45/13.23 32.45/13.23 (34) QDPSizeChangeProof (EQUIVALENT) 32.45/13.23 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. 32.45/13.23 32.45/13.23 From the DPs we obtained the following set of size-change graphs: 32.45/13.23 *new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, bb, bc) -> new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs8(new_compare23(Just(xuu22), Just(xuu17), new_esEs30(xuu22, xuu17, bb), bb), GT), bb, bc) 32.45/13.23 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 9 >= 9, 10 >= 10 32.45/13.23 32.45/13.23 32.45/13.23 *new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu20, Just(xuu22), xuu23, bb, bc) 32.45/13.23 The graph contains the following edges 4 >= 1, 7 >= 3, 9 >= 4, 10 >= 5 32.45/13.23 32.45/13.23 32.45/13.23 *new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) 32.45/13.23 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9 32.45/13.23 32.45/13.23 32.45/13.23 *new_addToFM_C(Branch(Just(xuu600), xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Just(xuu600), new_esEs29(xuu311000, xuu600, h), h), LT), h, ba) 32.45/13.23 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 7, 4 >= 9, 5 >= 10 32.45/13.23 32.45/13.23 32.45/13.23 *new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) 32.45/13.23 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 2 > 5, 3 >= 6, 4 >= 8, 5 >= 9 32.45/13.23 32.45/13.23 32.45/13.23 *new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu21, Just(xuu22), xuu23, bb, bc) 32.45/13.23 The graph contains the following edges 5 >= 1, 7 >= 3, 9 >= 4, 10 >= 5 32.45/13.23 32.45/13.23 32.45/13.23 *new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Just(xuu311000), xuu31101, h, ba) 32.45/13.23 The graph contains the following edges 4 >= 1, 6 >= 3, 8 >= 4, 9 >= 5 32.45/13.23 32.45/13.23 32.45/13.23 ---------------------------------------- 32.45/13.23 32.45/13.23 (35) 32.45/13.23 YES 32.45/13.23 32.45/13.23 ---------------------------------------- 32.45/13.23 32.45/13.23 (36) 32.45/13.23 Obligation: 32.45/13.23 Q DP problem: 32.45/13.23 The TRS P consists of the following rules: 32.45/13.23 32.45/13.23 new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Nothing, xuu31101, h, ba) -> new_addToFM_C1(xuu61, xuu62, xuu63, xuu64, xuu31101, new_esEs8(new_compare23(Nothing, Nothing, True, h), GT), h, ba) 32.45/13.23 new_addToFM_C1(xuu61, xuu62, xuu63, xuu64, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Nothing, xuu31101, h, ba) 32.45/13.23 new_addToFM_C(Branch(Just(xuu600), xuu61, xuu62, xuu63, xuu64), Nothing, xuu31101, h, ba) -> new_addToFM_C2(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, new_esEs8(new_compare23(Nothing, Just(xuu600), False, h), LT), h, ba) 32.45/13.23 new_addToFM_C2(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, True, h, ba) -> new_addToFM_C(xuu63, Nothing, xuu31101, h, ba) 32.45/13.23 new_addToFM_C2(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, False, h, ba) -> new_addToFM_C10(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, new_esEs8(new_compare23(Nothing, Just(xuu600), False, h), GT), h, ba) 32.45/13.23 new_addToFM_C10(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Nothing, xuu31101, h, ba) 32.45/13.23 32.45/13.23 The TRS R consists of the following rules: 32.45/13.23 32.45/13.23 new_lt20(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) 32.45/13.23 new_esEs20(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.45/13.23 new_compare30(xuu33000, xuu34000, app(app(app(ty_@3, chc), chd), che)) -> new_compare28(xuu33000, xuu34000, chc, chd, che) 32.45/13.23 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 32.45/13.23 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Float) -> new_ltEs11(xuu33000, xuu34000) 32.45/13.23 new_primCmpInt(Neg(Succ(xuu3300)), Pos(xuu340)) -> LT 32.45/13.23 new_compare8(xuu33000, xuu34000, ee, ef) -> new_compare24(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, ee, ef), ee, ef) 32.45/13.23 new_esEs23(xuu3110000, xuu6000, app(ty_Maybe, cba)) -> new_esEs6(xuu3110000, xuu6000, cba) 32.45/13.23 new_pePe(True, xuu165) -> True 32.45/13.23 new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.45/13.23 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.45/13.23 new_esEs30(xuu22, xuu17, ty_Ordering) -> new_esEs8(xuu22, xuu17) 32.45/13.23 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Float) -> new_ltEs11(xuu33000, xuu34000) 32.45/13.23 new_esEs17(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) 32.45/13.23 new_lt4(xuu33000, xuu34000, bd, be) -> new_esEs8(new_compare6(xuu33000, xuu34000, bd, be), LT) 32.45/13.23 new_esEs29(xuu311000, xuu600, ty_Int) -> new_esEs12(xuu311000, xuu600) 32.45/13.23 new_esEs30(xuu22, xuu17, ty_Bool) -> new_esEs13(xuu22, xuu17) 32.45/13.23 new_compare23(xuu330, xuu340, True, dc) -> EQ 32.45/13.23 new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Maybe, bee)) -> new_ltEs13(xuu33000, xuu34000, bee) 32.45/13.23 new_lt15(xuu33000, xuu34000) -> new_esEs8(new_compare31(xuu33000, xuu34000), LT) 32.45/13.23 new_lt10(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) 32.45/13.23 new_ltEs12(LT, LT) -> True 32.45/13.23 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.45/13.23 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(ty_@2, dcd), dce)) -> new_ltEs14(xuu33000, xuu34000, dcd, dce) 32.45/13.23 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Char) -> new_ltEs17(xuu33000, xuu34000) 32.45/13.23 new_esEs4(Left(xuu3110000), Right(xuu6000), gc, eg) -> False 32.45/13.23 new_esEs4(Right(xuu3110000), Left(xuu6000), gc, eg) -> False 32.45/13.23 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Int, de) -> new_ltEs7(xuu33000, xuu34000) 32.45/13.23 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 32.45/13.23 new_primCmpInt(Pos(Zero), Neg(Succ(xuu3400))) -> GT 32.45/13.23 new_esEs29(xuu311000, xuu600, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs5(xuu311000, xuu600, hf, hg, hh) 32.45/13.23 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_[], dcb)) -> new_ltEs4(xuu33000, xuu34000, dcb) 32.45/13.23 new_esEs15(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), dea) -> new_asAs(new_esEs28(xuu3110000, xuu6000, dea), new_esEs27(xuu3110001, xuu6001, dea)) 32.45/13.23 new_esEs24(xuu33001, xuu34001, ty_Ordering) -> new_esEs8(xuu33001, xuu34001) 32.45/13.23 new_ltEs14(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), eb, ec) -> new_pePe(new_lt20(xuu33000, xuu34000, eb), new_asAs(new_esEs26(xuu33000, xuu34000, eb), new_ltEs20(xuu33001, xuu34001, ec))) 32.45/13.23 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_Ratio, dcf)) -> new_ltEs15(xuu33000, xuu34000, dcf) 32.45/13.23 new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, bhb), bhc)) -> new_esEs4(xuu3110000, xuu6000, bhb, bhc) 32.45/13.23 new_compare0(:(xuu33000, xuu33001), :(xuu34000, xuu34001), bf) -> new_primCompAux1(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, bf), bf) 32.45/13.23 new_primCmpInt(Neg(Succ(xuu3300)), Neg(xuu340)) -> new_primCmpNat0(xuu340, Succ(xuu3300)) 32.45/13.23 new_lt9(xuu33001, xuu34001, app(ty_[], cde)) -> new_lt16(xuu33001, xuu34001, cde) 32.45/13.23 new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_Either, bdg), bdh)) -> new_ltEs6(xuu33000, xuu34000, bdg, bdh) 32.45/13.23 new_lt10(xuu33000, xuu34000, app(ty_Ratio, cbe)) -> new_lt8(xuu33000, xuu34000, cbe) 32.45/13.23 new_esEs28(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.45/13.23 new_esEs26(xuu33000, xuu34000, app(app(ty_@2, cgf), cgg)) -> new_esEs7(xuu33000, xuu34000, cgf, cgg) 32.45/13.23 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Char) -> new_ltEs17(xuu33000, xuu34000) 32.45/13.23 new_esEs23(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.45/13.23 new_ltEs20(xuu33001, xuu34001, ty_@0) -> new_ltEs18(xuu33001, xuu34001) 32.45/13.23 new_esEs5(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), hf, hg, hh) -> new_asAs(new_esEs20(xuu3110000, xuu6000, hf), new_asAs(new_esEs19(xuu3110001, xuu6001, hg), new_esEs18(xuu3110002, xuu6002, hh))) 32.45/13.23 new_esEs10(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) 32.45/13.23 new_ltEs7(xuu3300, xuu3400) -> new_fsEs(new_compare12(xuu3300, xuu3400)) 32.45/13.23 new_esEs18(xuu3110002, xuu6002, ty_Ordering) -> new_esEs8(xuu3110002, xuu6002) 32.45/13.23 new_compare25(xuu33000, xuu34000, False) -> new_compare17(xuu33000, xuu34000, new_ltEs16(xuu33000, xuu34000)) 32.45/13.23 new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_[], dah), de) -> new_ltEs4(xuu33000, xuu34000, dah) 32.45/13.23 new_esEs18(xuu3110002, xuu6002, ty_Bool) -> new_esEs13(xuu3110002, xuu6002) 32.45/13.23 new_primCompAux0(xuu182, GT) -> GT 32.45/13.23 new_lt9(xuu33001, xuu34001, ty_Bool) -> new_lt18(xuu33001, xuu34001) 32.45/13.23 new_esEs23(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.45/13.23 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Double) -> new_ltEs9(xuu33000, xuu34000) 32.45/13.23 new_compare210(xuu33000, xuu34000, False) -> new_compare110(xuu33000, xuu34000, new_ltEs12(xuu33000, xuu34000)) 32.45/13.23 new_esEs18(xuu3110002, xuu6002, app(ty_Ratio, bah)) -> new_esEs15(xuu3110002, xuu6002, bah) 32.45/13.23 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Integer, eg) -> new_esEs17(xuu3110000, xuu6000) 32.45/13.23 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False 32.45/13.23 new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False 32.45/13.23 new_esEs8(GT, GT) -> True 32.45/13.23 new_fsEs(xuu149) -> new_not(new_esEs8(xuu149, GT)) 32.45/13.23 new_esEs19(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) 32.45/13.23 new_lt12(xuu33000, xuu34000) -> new_esEs8(new_compare19(xuu33000, xuu34000), LT) 32.45/13.23 new_esEs24(xuu33001, xuu34001, app(ty_Ratio, cea)) -> new_esEs15(xuu33001, xuu34001, cea) 32.45/13.23 new_esEs20(xuu3110000, xuu6000, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs5(xuu3110000, xuu6000, bcg, bch, bda) 32.45/13.23 new_ltEs4(xuu3300, xuu3400, bf) -> new_fsEs(new_compare0(xuu3300, xuu3400, bf)) 32.45/13.23 new_esEs8(EQ, EQ) -> True 32.45/13.23 new_esEs24(xuu33001, xuu34001, ty_Bool) -> new_esEs13(xuu33001, xuu34001) 32.45/13.23 new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Ratio, dbd), de) -> new_ltEs15(xuu33000, xuu34000, dbd) 32.45/13.23 new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) 32.45/13.23 new_lt10(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) 32.45/13.23 new_lt10(xuu33000, xuu34000, app(ty_Maybe, cec)) -> new_lt17(xuu33000, xuu34000, cec) 32.45/13.23 new_ltEs20(xuu33001, xuu34001, ty_Integer) -> new_ltEs10(xuu33001, xuu34001) 32.45/13.23 new_primCompAux0(xuu182, LT) -> LT 32.45/13.23 new_not(True) -> False 32.45/13.23 new_ltEs19(xuu33002, xuu34002, ty_@0) -> new_ltEs18(xuu33002, xuu34002) 32.45/13.23 new_ltEs12(LT, GT) -> True 32.45/13.23 new_primCmpNat0(Zero, Zero) -> EQ 32.45/13.23 new_esEs18(xuu3110002, xuu6002, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs5(xuu3110002, xuu6002, bac, bad, bae) 32.45/13.23 new_compare6(xuu33000, xuu34000, bd, be) -> new_compare27(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, bd, be), bd, be) 32.45/13.23 new_compare16(xuu33000, xuu34000, False, bd, be) -> GT 32.45/13.23 new_ltEs19(xuu33002, xuu34002, ty_Integer) -> new_ltEs10(xuu33002, xuu34002) 32.45/13.23 new_esEs25(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) 32.45/13.23 new_compare14(xuu33000, xuu34000, True, cbb, cbc, cbd) -> LT 32.45/13.23 new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.45/13.23 new_esEs30(xuu22, xuu17, app(ty_Ratio, ddf)) -> new_esEs15(xuu22, xuu17, ddf) 32.45/13.23 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.45/13.23 new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_Either, dac), dad), de) -> new_ltEs6(xuu33000, xuu34000, dac, dad) 32.45/13.23 new_esEs19(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) 32.45/13.23 new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_[], bed)) -> new_ltEs4(xuu33000, xuu34000, bed) 32.45/13.23 new_primEqNat0(Succ(xuu31100000), Zero) -> False 32.45/13.23 new_primEqNat0(Zero, Succ(xuu60000)) -> False 32.45/13.23 new_ltEs5(xuu3300, xuu3400, app(app(ty_Either, dd), de)) -> new_ltEs6(xuu3300, xuu3400, dd, de) 32.45/13.23 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.45/13.23 new_lt20(xuu33000, xuu34000, app(ty_Ratio, cgh)) -> new_lt8(xuu33000, xuu34000, cgh) 32.45/13.23 new_esEs19(xuu3110001, xuu6001, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs5(xuu3110001, xuu6001, bbe, bbf, bbg) 32.45/13.23 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_@0, eg) -> new_esEs9(xuu3110000, xuu6000) 32.45/13.23 new_esEs29(xuu311000, xuu600, ty_Bool) -> new_esEs13(xuu311000, xuu600) 32.45/13.23 new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, dae), daf), dag), de) -> new_ltEs8(xuu33000, xuu34000, dae, daf, dag) 32.45/13.23 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_@0) -> new_ltEs18(xuu33000, xuu34000) 32.45/13.23 new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, bge), bgf)) -> new_esEs7(xuu3110000, xuu6000, bge, bgf) 32.45/13.23 new_esEs25(xuu33000, xuu34000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs5(xuu33000, xuu34000, cbb, cbc, cbd) 32.45/13.23 new_compare110(xuu33000, xuu34000, True) -> LT 32.45/13.23 new_lt9(xuu33001, xuu34001, app(app(ty_@2, cdg), cdh)) -> new_lt4(xuu33001, xuu34001, cdg, cdh) 32.45/13.23 new_ltEs5(xuu3300, xuu3400, ty_Ordering) -> new_ltEs12(xuu3300, xuu3400) 32.45/13.23 new_lt9(xuu33001, xuu34001, ty_Int) -> new_lt6(xuu33001, xuu34001) 32.45/13.23 new_esEs27(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) 32.45/13.23 new_esEs20(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.45/13.23 new_compare23(Just(xuu3300), Just(xuu3400), False, dc) -> new_compare10(xuu3300, xuu3400, new_ltEs5(xuu3300, xuu3400, dc), dc) 32.45/13.23 new_lt20(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) 32.45/13.23 new_compare30(xuu33000, xuu34000, app(ty_Ratio, dab)) -> new_compare15(xuu33000, xuu34000, dab) 32.45/13.23 new_lt20(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) 32.45/13.23 new_primCmpInt(Pos(Succ(xuu3300)), Neg(xuu340)) -> GT 32.45/13.23 new_ltEs10(xuu3300, xuu3400) -> new_fsEs(new_compare7(xuu3300, xuu3400)) 32.45/13.23 new_compare24(xuu33000, xuu34000, False, ee, ef) -> new_compare11(xuu33000, xuu34000, new_ltEs6(xuu33000, xuu34000, ee, ef), ee, ef) 32.45/13.23 new_lt5(xuu33000, xuu34000, ee, ef) -> new_esEs8(new_compare8(xuu33000, xuu34000, ee, ef), LT) 32.45/13.23 new_esEs20(xuu3110000, xuu6000, app(ty_Ratio, bdd)) -> new_esEs15(xuu3110000, xuu6000, bdd) 32.45/13.23 new_esEs24(xuu33001, xuu34001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs5(xuu33001, xuu34001, cdb, cdc, cdd) 32.45/13.23 new_esEs30(xuu22, xuu17, app(app(app(ty_@3, dda), ddb), ddc)) -> new_esEs5(xuu22, xuu17, dda, ddb, ddc) 32.45/13.23 new_esEs26(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) 32.45/13.23 new_primPlusNat1(Succ(xuu28200), Succ(xuu9700)) -> Succ(Succ(new_primPlusNat1(xuu28200, xuu9700))) 32.45/13.23 new_lt9(xuu33001, xuu34001, ty_Char) -> new_lt7(xuu33001, xuu34001) 32.45/13.23 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Double) -> new_ltEs9(xuu33000, xuu34000) 32.45/13.23 new_lt18(xuu33000, xuu34000) -> new_esEs8(new_compare9(xuu33000, xuu34000), LT) 32.45/13.23 new_primCmpNat0(Zero, Succ(xuu3400)) -> LT 32.45/13.23 new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Maybe, dba), de) -> new_ltEs13(xuu33000, xuu34000, dba) 32.45/13.23 new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Integer) -> new_compare7(new_sr0(xuu33000, xuu34001), new_sr0(xuu34000, xuu33001)) 32.45/13.23 new_esEs30(xuu22, xuu17, ty_Int) -> new_esEs12(xuu22, xuu17) 32.45/13.23 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Bool, eg) -> new_esEs13(xuu3110000, xuu6000) 32.45/13.23 new_esEs18(xuu3110002, xuu6002, ty_Int) -> new_esEs12(xuu3110002, xuu6002) 32.45/13.23 new_compare210(xuu33000, xuu34000, True) -> EQ 32.45/13.23 new_esEs24(xuu33001, xuu34001, ty_Int) -> new_esEs12(xuu33001, xuu34001) 32.45/13.23 new_lt9(xuu33001, xuu34001, app(ty_Ratio, cea)) -> new_lt8(xuu33001, xuu34001, cea) 32.45/13.23 new_esEs21(xuu3110001, xuu6001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs5(xuu3110001, xuu6001, bfe, bff, bfg) 32.45/13.23 new_primCmpNat0(Succ(xuu3300), Zero) -> GT 32.45/13.23 new_ltEs20(xuu33001, xuu34001, app(ty_Maybe, cfc)) -> new_ltEs13(xuu33001, xuu34001, cfc) 32.45/13.23 new_pePe(False, xuu165) -> xuu165 32.45/13.23 new_ltEs5(xuu3300, xuu3400, ty_Char) -> new_ltEs17(xuu3300, xuu3400) 32.45/13.23 new_esEs20(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.45/13.23 new_esEs23(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.45/13.23 new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.45/13.23 new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.45/13.23 new_ltEs20(xuu33001, xuu34001, ty_Float) -> new_ltEs11(xuu33001, xuu34001) 32.45/13.23 new_ltEs12(GT, GT) -> True 32.45/13.23 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Ordering, eg) -> new_esEs8(xuu3110000, xuu6000) 32.45/13.23 new_ltEs18(xuu3300, xuu3400) -> new_fsEs(new_compare32(xuu3300, xuu3400)) 32.45/13.23 new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Int) -> new_compare12(new_sr(xuu33000, xuu34001), new_sr(xuu34000, xuu33001)) 32.45/13.23 new_ltEs20(xuu33001, xuu34001, ty_Double) -> new_ltEs9(xuu33001, xuu34001) 32.45/13.23 new_ltEs19(xuu33002, xuu34002, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs8(xuu33002, xuu34002, cbh, cca, ccb) 32.45/13.23 new_esEs29(xuu311000, xuu600, ty_Integer) -> new_esEs17(xuu311000, xuu600) 32.45/13.23 new_esEs21(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) 32.45/13.23 new_ltEs12(GT, EQ) -> False 32.45/13.23 new_esEs24(xuu33001, xuu34001, ty_@0) -> new_esEs9(xuu33001, xuu34001) 32.45/13.23 new_esEs21(xuu3110001, xuu6001, app(app(ty_Either, bfh), bga)) -> new_esEs4(xuu3110001, xuu6001, bfh, bga) 32.45/13.23 new_esEs18(xuu3110002, xuu6002, ty_Float) -> new_esEs11(xuu3110002, xuu6002) 32.45/13.23 new_lt10(xuu33000, xuu34000, app(ty_[], ceb)) -> new_lt16(xuu33000, xuu34000, ceb) 32.45/13.23 new_compare27(xuu33000, xuu34000, False, bd, be) -> new_compare16(xuu33000, xuu34000, new_ltEs14(xuu33000, xuu34000, bd, be), bd, be) 32.45/13.23 new_esEs26(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) 32.45/13.23 new_compare7(Integer(xuu33000), Integer(xuu34000)) -> new_primCmpInt(xuu33000, xuu34000) 32.45/13.23 new_compare10(xuu132, xuu133, False, ced) -> GT 32.45/13.23 new_esEs30(xuu22, xuu17, ty_Float) -> new_esEs11(xuu22, xuu17) 32.45/13.23 new_esEs8(LT, EQ) -> False 32.45/13.23 new_esEs8(EQ, LT) -> False 32.45/13.23 new_compare17(xuu33000, xuu34000, True) -> LT 32.45/13.23 new_compare11(xuu33000, xuu34000, False, ee, ef) -> GT 32.45/13.23 new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, bhf)) -> new_esEs6(xuu3110000, xuu6000, bhf) 32.45/13.23 new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False 32.45/13.23 new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False 32.45/13.23 new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.45/13.23 new_esEs21(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) 32.45/13.23 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Ordering, de) -> new_ltEs12(xuu33000, xuu34000) 32.45/13.23 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Integer) -> new_ltEs10(xuu33000, xuu34000) 32.45/13.23 new_compare30(xuu33000, xuu34000, app(ty_Maybe, chg)) -> new_compare29(xuu33000, xuu34000, chg) 32.45/13.23 new_ltEs5(xuu3300, xuu3400, app(ty_Maybe, ea)) -> new_ltEs13(xuu3300, xuu3400, ea) 32.45/13.23 new_esEs26(xuu33000, xuu34000, app(ty_[], cgd)) -> new_esEs16(xuu33000, xuu34000, cgd) 32.45/13.23 new_ltEs17(xuu3300, xuu3400) -> new_fsEs(new_compare13(xuu3300, xuu3400)) 32.45/13.23 new_ltEs15(xuu3300, xuu3400, ed) -> new_fsEs(new_compare15(xuu3300, xuu3400, ed)) 32.45/13.23 new_ltEs19(xuu33002, xuu34002, app(app(ty_@2, cce), ccf)) -> new_ltEs14(xuu33002, xuu34002, cce, ccf) 32.45/13.23 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 32.45/13.23 new_esEs25(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) 32.45/13.23 new_esEs23(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.45/13.23 new_primCmpInt(Neg(Zero), Pos(Succ(xuu3400))) -> LT 32.45/13.23 new_compare13(Char(xuu33000), Char(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) 32.45/13.23 new_ltEs5(xuu3300, xuu3400, app(app(app(ty_@3, df), dg), dh)) -> new_ltEs8(xuu3300, xuu3400, df, dg, dh) 32.45/13.23 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Int, eg) -> new_esEs12(xuu3110000, xuu6000) 32.45/13.23 new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.45/13.23 new_ltEs20(xuu33001, xuu34001, ty_Char) -> new_ltEs17(xuu33001, xuu34001) 32.45/13.23 new_compare17(xuu33000, xuu34000, False) -> GT 32.45/13.23 new_lt9(xuu33001, xuu34001, ty_Integer) -> new_lt13(xuu33001, xuu34001) 32.45/13.23 new_primMulInt(Pos(xuu31100000), Pos(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) 32.45/13.23 new_compare30(xuu33000, xuu34000, ty_Float) -> new_compare18(xuu33000, xuu34000) 32.45/13.23 new_ltEs5(xuu3300, xuu3400, ty_Float) -> new_ltEs11(xuu3300, xuu3400) 32.45/13.23 new_ltEs5(xuu3300, xuu3400, app(app(ty_@2, eb), ec)) -> new_ltEs14(xuu3300, xuu3400, eb, ec) 32.45/13.23 new_esEs23(xuu3110000, xuu6000, app(app(ty_Either, cae), caf)) -> new_esEs4(xuu3110000, xuu6000, cae, caf) 32.45/13.23 new_esEs18(xuu3110002, xuu6002, app(ty_[], bba)) -> new_esEs16(xuu3110002, xuu6002, bba) 32.45/13.23 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Bool) -> new_ltEs16(xuu33000, xuu34000) 32.45/13.23 new_esEs25(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) 32.45/13.23 new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, ce), cf)) -> new_esEs4(xuu3110000, xuu6000, ce, cf) 32.45/13.23 new_primCompAux1(xuu33000, xuu34000, xuu176, bf) -> new_primCompAux0(xuu176, new_compare30(xuu33000, xuu34000, bf)) 32.45/13.23 new_lt9(xuu33001, xuu34001, ty_Double) -> new_lt12(xuu33001, xuu34001) 32.45/13.23 new_compare10(xuu132, xuu133, True, ced) -> LT 32.45/13.23 new_esEs24(xuu33001, xuu34001, app(ty_Maybe, cdf)) -> new_esEs6(xuu33001, xuu34001, cdf) 32.45/13.23 new_primMulNat0(Succ(xuu311000000), Zero) -> Zero 32.45/13.23 new_primMulNat0(Zero, Succ(xuu600100)) -> Zero 32.45/13.23 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) 32.45/13.23 new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, cb), cc), cd)) -> new_esEs5(xuu3110000, xuu6000, cb, cc, cd) 32.45/13.23 new_lt10(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) 32.45/13.23 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(ty_Either, dbe), dbf)) -> new_ltEs6(xuu33000, xuu34000, dbe, dbf) 32.45/13.23 new_esEs23(xuu3110000, xuu6000, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs5(xuu3110000, xuu6000, cab, cac, cad) 32.45/13.23 new_ltEs19(xuu33002, xuu34002, ty_Char) -> new_ltEs17(xuu33002, xuu34002) 32.45/13.23 new_lt17(xuu33000, xuu34000, cec) -> new_esEs8(new_compare29(xuu33000, xuu34000, cec), LT) 32.45/13.23 new_ltEs5(xuu3300, xuu3400, ty_Double) -> new_ltEs9(xuu3300, xuu3400) 32.45/13.23 new_lt20(xuu33000, xuu34000, app(app(app(ty_@3, cga), cgb), cgc)) -> new_lt11(xuu33000, xuu34000, cga, cgb, cgc) 32.45/13.23 new_esEs24(xuu33001, xuu34001, ty_Char) -> new_esEs10(xuu33001, xuu34001) 32.45/13.23 new_lt9(xuu33001, xuu34001, app(ty_Maybe, cdf)) -> new_lt17(xuu33001, xuu34001, cdf) 32.45/13.23 new_esEs18(xuu3110002, xuu6002, ty_Integer) -> new_esEs17(xuu3110002, xuu6002) 32.45/13.23 new_lt14(xuu33000, xuu34000) -> new_esEs8(new_compare18(xuu33000, xuu34000), LT) 32.45/13.23 new_ltEs5(xuu3300, xuu3400, ty_Bool) -> new_ltEs16(xuu3300, xuu3400) 32.45/13.23 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Integer, de) -> new_ltEs10(xuu33000, xuu34000) 32.45/13.23 new_esEs8(LT, LT) -> True 32.45/13.23 new_esEs29(xuu311000, xuu600, ty_Float) -> new_esEs11(xuu311000, xuu600) 32.45/13.23 new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, bhd)) -> new_esEs15(xuu3110000, xuu6000, bhd) 32.45/13.23 new_esEs26(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) 32.45/13.23 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.45/13.23 new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, bea), beb), bec)) -> new_ltEs8(xuu33000, xuu34000, bea, beb, bec) 32.45/13.23 new_primPlusNat1(Succ(xuu28200), Zero) -> Succ(xuu28200) 32.45/13.23 new_primPlusNat1(Zero, Succ(xuu9700)) -> Succ(xuu9700) 32.45/13.23 new_compare23(Just(xuu3300), Nothing, False, dc) -> GT 32.45/13.23 new_compare30(xuu33000, xuu34000, ty_Char) -> new_compare13(xuu33000, xuu34000) 32.45/13.23 new_ltEs19(xuu33002, xuu34002, ty_Double) -> new_ltEs9(xuu33002, xuu34002) 32.45/13.23 new_esEs19(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) 32.45/13.23 new_lt10(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) 32.45/13.23 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(app(ty_@3, gf), gg), gh)) -> new_esEs5(xuu3110000, xuu6000, gf, gg, gh) 32.45/13.23 new_esEs13(True, True) -> True 32.45/13.23 new_esEs30(xuu22, xuu17, ty_Integer) -> new_esEs17(xuu22, xuu17) 32.45/13.23 new_ltEs20(xuu33001, xuu34001, app(app(ty_@2, cfd), cfe)) -> new_ltEs14(xuu33001, xuu34001, cfd, cfe) 32.45/13.23 new_esEs23(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.45/13.23 new_esEs23(xuu3110000, xuu6000, app(ty_Ratio, cag)) -> new_esEs15(xuu3110000, xuu6000, cag) 32.45/13.23 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Char, eg) -> new_esEs10(xuu3110000, xuu6000) 32.45/13.23 new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_[], ga), eg) -> new_esEs16(xuu3110000, xuu6000, ga) 32.45/13.23 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.45/13.23 new_esEs16([], [], bhg) -> True 32.45/13.23 new_ltEs19(xuu33002, xuu34002, ty_Float) -> new_ltEs11(xuu33002, xuu34002) 32.45/13.23 new_esEs25(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) 32.45/13.23 new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, cg)) -> new_esEs15(xuu3110000, xuu6000, cg) 32.45/13.23 new_primMulInt(Neg(xuu31100000), Neg(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) 32.45/13.23 new_primCmpInt(Pos(Zero), Pos(Succ(xuu3400))) -> new_primCmpNat0(Zero, Succ(xuu3400)) 32.45/13.23 new_esEs29(xuu311000, xuu600, ty_Double) -> new_esEs14(xuu311000, xuu600) 32.45/13.23 new_esEs25(xuu33000, xuu34000, app(app(ty_@2, bd), be)) -> new_esEs7(xuu33000, xuu34000, bd, be) 32.45/13.23 new_ltEs20(xuu33001, xuu34001, ty_Bool) -> new_ltEs16(xuu33001, xuu34001) 32.45/13.23 new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, db)) -> new_esEs6(xuu3110000, xuu6000, db) 32.45/13.23 new_esEs6(Nothing, Just(xuu6000), bg) -> False 32.45/13.23 new_esEs6(Just(xuu3110000), Nothing, bg) -> False 32.45/13.23 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.45/13.23 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_Maybe, he)) -> new_esEs6(xuu3110000, xuu6000, he) 32.45/13.23 new_esEs6(Nothing, Nothing, bg) -> True 32.45/13.23 new_esEs14(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 32.45/13.23 new_esEs23(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.45/13.23 new_compare26(xuu33000, xuu34000, True, cbb, cbc, cbd) -> EQ 32.45/13.23 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_Ratio, hc)) -> new_esEs15(xuu3110000, xuu6000, hc) 32.45/13.23 new_compare26(xuu33000, xuu34000, False, cbb, cbc, cbd) -> new_compare14(xuu33000, xuu34000, new_ltEs8(xuu33000, xuu34000, cbb, cbc, cbd), cbb, cbc, cbd) 32.45/13.23 new_ltEs19(xuu33002, xuu34002, ty_Bool) -> new_ltEs16(xuu33002, xuu34002) 32.45/13.23 new_lt10(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) 32.45/13.23 new_primMulInt(Pos(xuu31100000), Neg(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) 32.45/13.23 new_primMulInt(Neg(xuu31100000), Pos(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) 32.45/13.23 new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.45/13.23 new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.45/13.23 new_compare30(xuu33000, xuu34000, app(app(ty_@2, chh), daa)) -> new_compare6(xuu33000, xuu34000, chh, daa) 32.45/13.23 new_esEs26(xuu33000, xuu34000, app(ty_Ratio, cgh)) -> new_esEs15(xuu33000, xuu34000, cgh) 32.45/13.23 new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, fh), eg) -> new_esEs15(xuu3110000, xuu6000, fh) 32.45/13.23 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.45/13.23 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Int) -> new_ltEs7(xuu33000, xuu34000) 32.45/13.23 new_ltEs19(xuu33002, xuu34002, ty_Ordering) -> new_ltEs12(xuu33002, xuu34002) 32.45/13.23 new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs5(xuu3110000, xuu6000, bgg, bgh, bha) 32.45/13.23 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(ty_@2, gd), ge)) -> new_esEs7(xuu3110000, xuu6000, gd, ge) 32.45/13.23 new_esEs21(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) 32.45/13.23 new_sr0(Integer(xuu330000), Integer(xuu340010)) -> Integer(new_primMulInt(xuu330000, xuu340010)) 32.45/13.23 new_esEs24(xuu33001, xuu34001, ty_Double) -> new_esEs14(xuu33001, xuu34001) 32.45/13.23 new_esEs25(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) 32.45/13.23 new_esEs13(False, False) -> True 32.45/13.23 new_esEs30(xuu22, xuu17, ty_Double) -> new_esEs14(xuu22, xuu17) 32.45/13.23 new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.45/13.23 new_compare31(xuu33000, xuu34000) -> new_compare210(xuu33000, xuu34000, new_esEs8(xuu33000, xuu34000)) 32.45/13.23 new_lt8(xuu33000, xuu34000, cbe) -> new_esEs8(new_compare15(xuu33000, xuu34000, cbe), LT) 32.45/13.23 new_esEs18(xuu3110002, xuu6002, ty_Double) -> new_esEs14(xuu3110002, xuu6002) 32.45/13.23 new_compare0([], :(xuu34000, xuu34001), bf) -> LT 32.45/13.23 new_asAs(True, xuu139) -> xuu139 32.45/13.23 new_esEs19(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) 32.45/13.23 new_esEs21(xuu3110001, xuu6001, app(ty_Maybe, bgd)) -> new_esEs6(xuu3110001, xuu6001, bgd) 32.45/13.23 new_lt10(xuu33000, xuu34000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_lt11(xuu33000, xuu34000, cbb, cbc, cbd) 32.45/13.23 new_lt16(xuu33000, xuu34000, ceb) -> new_esEs8(new_compare0(xuu33000, xuu34000, ceb), LT) 32.45/13.23 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.45/13.23 new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, ff), fg), eg) -> new_esEs4(xuu3110000, xuu6000, ff, fg) 32.45/13.23 new_esEs21(xuu3110001, xuu6001, app(ty_Ratio, bgb)) -> new_esEs15(xuu3110001, xuu6001, bgb) 32.45/13.23 new_esEs26(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) 32.45/13.23 new_ltEs16(True, False) -> False 32.45/13.23 new_compare16(xuu33000, xuu34000, True, bd, be) -> LT 32.45/13.23 new_esEs29(xuu311000, xuu600, app(ty_[], bhg)) -> new_esEs16(xuu311000, xuu600, bhg) 32.45/13.23 new_ltEs5(xuu3300, xuu3400, ty_@0) -> new_ltEs18(xuu3300, xuu3400) 32.45/13.23 new_lt9(xuu33001, xuu34001, app(app(ty_Either, cch), cda)) -> new_lt5(xuu33001, xuu34001, cch, cda) 32.45/13.23 new_esEs18(xuu3110002, xuu6002, app(app(ty_@2, baa), bab)) -> new_esEs7(xuu3110002, xuu6002, baa, bab) 32.45/13.23 new_compare24(xuu33000, xuu34000, True, ee, ef) -> EQ 32.45/13.23 new_esEs24(xuu33001, xuu34001, app(app(ty_@2, cdg), cdh)) -> new_esEs7(xuu33001, xuu34001, cdg, cdh) 32.45/13.23 new_esEs30(xuu22, xuu17, app(app(ty_@2, dcg), dch)) -> new_esEs7(xuu22, xuu17, dcg, dch) 32.45/13.23 new_primCmpInt(Pos(Succ(xuu3300)), Pos(xuu340)) -> new_primCmpNat0(Succ(xuu3300), xuu340) 32.45/13.23 new_lt9(xuu33001, xuu34001, ty_@0) -> new_lt19(xuu33001, xuu34001) 32.45/13.23 new_compare110(xuu33000, xuu34000, False) -> GT 32.45/13.23 new_compare9(xuu33000, xuu34000) -> new_compare25(xuu33000, xuu34000, new_esEs13(xuu33000, xuu34000)) 32.45/13.23 new_esEs25(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) 32.45/13.23 new_lt20(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) 32.45/13.23 new_esEs9(@0, @0) -> True 32.45/13.23 new_compare0([], [], bf) -> EQ 32.45/13.23 new_esEs19(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) 32.45/13.23 new_esEs20(xuu3110000, xuu6000, app(app(ty_Either, bdb), bdc)) -> new_esEs4(xuu3110000, xuu6000, bdb, bdc) 32.45/13.23 new_sr(xuu3110000, xuu6001) -> new_primMulInt(xuu3110000, xuu6001) 32.45/13.23 new_esEs19(xuu3110001, xuu6001, app(app(ty_Either, bbh), bca)) -> new_esEs4(xuu3110001, xuu6001, bbh, bca) 32.45/13.23 new_compare30(xuu33000, xuu34000, ty_@0) -> new_compare32(xuu33000, xuu34000) 32.45/13.23 new_primMulNat0(Zero, Zero) -> Zero 32.45/13.23 new_ltEs20(xuu33001, xuu34001, ty_Ordering) -> new_ltEs12(xuu33001, xuu34001) 32.45/13.23 new_lt9(xuu33001, xuu34001, ty_Ordering) -> new_lt15(xuu33001, xuu34001) 32.45/13.23 new_ltEs13(Nothing, Nothing, ea) -> True 32.45/13.23 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.45/13.23 new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_@2, bef), beg)) -> new_ltEs14(xuu33000, xuu34000, bef, beg) 32.45/13.23 new_ltEs13(Just(xuu33000), Nothing, ea) -> False 32.45/13.23 new_lt20(xuu33000, xuu34000, app(ty_[], cgd)) -> new_lt16(xuu33000, xuu34000, cgd) 32.45/13.23 new_esEs24(xuu33001, xuu34001, app(ty_[], cde)) -> new_esEs16(xuu33001, xuu34001, cde) 32.45/13.23 new_esEs30(xuu22, xuu17, app(ty_[], ddg)) -> new_esEs16(xuu22, xuu17, ddg) 32.45/13.23 new_esEs20(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.45/13.23 new_compare14(xuu33000, xuu34000, False, cbb, cbc, cbd) -> GT 32.45/13.23 new_esEs23(xuu3110000, xuu6000, app(app(ty_@2, bhh), caa)) -> new_esEs7(xuu3110000, xuu6000, bhh, caa) 32.45/13.23 new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.45/13.23 new_lt20(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) 32.45/13.23 new_esEs25(xuu33000, xuu34000, app(app(ty_Either, ee), ef)) -> new_esEs4(xuu33000, xuu34000, ee, ef) 32.45/13.23 new_ltEs19(xuu33002, xuu34002, app(ty_Maybe, ccd)) -> new_ltEs13(xuu33002, xuu34002, ccd) 32.45/13.23 new_esEs19(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) 32.45/13.23 new_esEs21(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) 32.45/13.23 new_ltEs20(xuu33001, xuu34001, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_ltEs8(xuu33001, xuu34001, ceg, ceh, cfa) 32.45/13.23 new_esEs26(xuu33000, xuu34000, app(ty_Maybe, cge)) -> new_esEs6(xuu33000, xuu34000, cge) 32.45/13.23 new_lt11(xuu33000, xuu34000, cbb, cbc, cbd) -> new_esEs8(new_compare28(xuu33000, xuu34000, cbb, cbc, cbd), LT) 32.45/13.23 new_ltEs5(xuu3300, xuu3400, ty_Integer) -> new_ltEs10(xuu3300, xuu3400) 32.45/13.23 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(ty_Either, ha), hb)) -> new_esEs4(xuu3110000, xuu6000, ha, hb) 32.45/13.23 new_compare30(xuu33000, xuu34000, ty_Double) -> new_compare19(xuu33000, xuu34000) 32.45/13.23 new_compare32(@0, @0) -> EQ 32.45/13.23 new_ltEs12(GT, LT) -> False 32.45/13.23 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Bool) -> new_ltEs16(xuu33000, xuu34000) 32.45/13.23 new_primCompAux0(xuu182, EQ) -> xuu182 32.45/13.23 new_esEs26(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) 32.45/13.23 new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, bh), ca)) -> new_esEs7(xuu3110000, xuu6000, bh, ca) 32.45/13.23 new_esEs20(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.45/13.23 new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.45/13.23 new_esEs29(xuu311000, xuu600, app(app(ty_Either, gc), eg)) -> new_esEs4(xuu311000, xuu600, gc, eg) 32.45/13.23 new_esEs7(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bfa, bfb) -> new_asAs(new_esEs22(xuu3110000, xuu6000, bfa), new_esEs21(xuu3110001, xuu6001, bfb)) 32.45/13.23 new_esEs30(xuu22, xuu17, ty_@0) -> new_esEs9(xuu22, xuu17) 32.45/13.23 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False 32.45/13.23 new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False 32.45/13.23 new_esEs25(xuu33000, xuu34000, app(ty_Maybe, cec)) -> new_esEs6(xuu33000, xuu34000, cec) 32.45/13.23 new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, eh), fa), eg) -> new_esEs7(xuu3110000, xuu6000, eh, fa) 32.45/13.23 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 32.45/13.23 new_esEs13(False, True) -> False 32.45/13.23 new_esEs13(True, False) -> False 32.45/13.23 new_esEs20(xuu3110000, xuu6000, app(ty_[], bde)) -> new_esEs16(xuu3110000, xuu6000, bde) 32.45/13.23 new_ltEs20(xuu33001, xuu34001, app(app(ty_Either, cee), cef)) -> new_ltEs6(xuu33001, xuu34001, cee, cef) 32.45/13.23 new_esEs26(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) 32.45/13.23 new_esEs20(xuu3110000, xuu6000, app(ty_Maybe, bdf)) -> new_esEs6(xuu3110000, xuu6000, bdf) 32.45/13.23 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.45/13.23 new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False 32.45/13.23 new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False 32.45/13.23 new_esEs26(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) 32.45/13.23 new_esEs19(xuu3110001, xuu6001, app(ty_Maybe, bcd)) -> new_esEs6(xuu3110001, xuu6001, bcd) 32.45/13.23 new_esEs25(xuu33000, xuu34000, app(ty_Ratio, cbe)) -> new_esEs15(xuu33000, xuu34000, cbe) 32.45/13.23 new_compare30(xuu33000, xuu34000, app(ty_[], chf)) -> new_compare0(xuu33000, xuu34000, chf) 32.45/13.23 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Int) -> new_ltEs7(xuu33000, xuu34000) 32.45/13.23 new_lt9(xuu33001, xuu34001, ty_Float) -> new_lt14(xuu33001, xuu34001) 32.45/13.23 new_primCmpInt(Neg(Zero), Neg(Succ(xuu3400))) -> new_primCmpNat0(Succ(xuu3400), Zero) 32.45/13.23 new_esEs16(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bhg) -> new_asAs(new_esEs23(xuu3110000, xuu6000, bhg), new_esEs16(xuu3110001, xuu6001, bhg)) 32.45/13.23 new_compare23(Nothing, Just(xuu3400), False, dc) -> LT 32.45/13.23 new_compare29(xuu33000, xuu34000, cec) -> new_compare23(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, cec), cec) 32.45/13.23 new_esEs21(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) 32.45/13.23 new_esEs25(xuu33000, xuu34000, app(ty_[], ceb)) -> new_esEs16(xuu33000, xuu34000, ceb) 32.45/13.23 new_esEs30(xuu22, xuu17, app(app(ty_Either, ddd), dde)) -> new_esEs4(xuu22, xuu17, ddd, dde) 32.45/13.23 new_esEs29(xuu311000, xuu600, ty_@0) -> new_esEs9(xuu311000, xuu600) 32.45/13.23 new_esEs19(xuu3110001, xuu6001, app(ty_[], bcc)) -> new_esEs16(xuu3110001, xuu6001, bcc) 32.45/13.23 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_@0, de) -> new_ltEs18(xuu33000, xuu34000) 32.45/13.23 new_esEs24(xuu33001, xuu34001, app(app(ty_Either, cch), cda)) -> new_esEs4(xuu33001, xuu34001, cch, cda) 32.45/13.23 new_ltEs19(xuu33002, xuu34002, app(app(ty_Either, cbf), cbg)) -> new_ltEs6(xuu33002, xuu34002, cbf, cbg) 32.45/13.23 new_ltEs12(EQ, GT) -> True 32.45/13.23 new_esEs19(xuu3110001, xuu6001, app(ty_Ratio, bcb)) -> new_esEs15(xuu3110001, xuu6001, bcb) 32.45/13.23 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 32.45/13.23 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.45/13.23 new_esEs18(xuu3110002, xuu6002, app(app(ty_Either, baf), bag)) -> new_esEs4(xuu3110002, xuu6002, baf, bag) 32.45/13.23 new_lt20(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) 32.45/13.23 new_lt10(xuu33000, xuu34000, app(app(ty_Either, ee), ef)) -> new_lt5(xuu33000, xuu34000, ee, ef) 32.45/13.23 new_ltEs12(EQ, EQ) -> True 32.45/13.23 new_esEs30(xuu22, xuu17, app(ty_Maybe, ddh)) -> new_esEs6(xuu22, xuu17, ddh) 32.45/13.23 new_esEs24(xuu33001, xuu34001, ty_Float) -> new_esEs11(xuu33001, xuu34001) 32.45/13.23 new_compare30(xuu33000, xuu34000, ty_Int) -> new_compare12(xuu33000, xuu34000) 32.45/13.23 new_esEs23(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.45/13.23 new_esEs12(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) 32.45/13.23 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Double, eg) -> new_esEs14(xuu3110000, xuu6000) 32.45/13.23 new_esEs20(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.45/13.23 new_compare30(xuu33000, xuu34000, ty_Integer) -> new_compare7(xuu33000, xuu34000) 32.45/13.23 new_compare23(Nothing, Nothing, False, dc) -> LT 32.45/13.23 new_esEs18(xuu3110002, xuu6002, ty_@0) -> new_esEs9(xuu3110002, xuu6002) 32.45/13.23 new_esEs19(xuu3110001, xuu6001, app(app(ty_@2, bbc), bbd)) -> new_esEs7(xuu3110001, xuu6001, bbc, bbd) 32.45/13.23 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.45/13.23 new_primPlusNat0(xuu107, xuu600100) -> new_primPlusNat1(xuu107, Succ(xuu600100)) 32.45/13.23 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.45/13.23 new_ltEs6(Right(xuu33000), Left(xuu34000), dd, de) -> False 32.45/13.23 new_not(False) -> True 32.45/13.23 new_esEs21(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) 32.45/13.23 new_esEs21(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) 32.45/13.23 new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_@2, dbb), dbc), de) -> new_ltEs14(xuu33000, xuu34000, dbb, dbc) 32.45/13.23 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_Maybe, dcc)) -> new_ltEs13(xuu33000, xuu34000, dcc) 32.45/13.23 new_ltEs5(xuu3300, xuu3400, ty_Int) -> new_ltEs7(xuu3300, xuu3400) 32.45/13.23 new_compare28(xuu33000, xuu34000, cbb, cbc, cbd) -> new_compare26(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, cbb, cbc, cbd), cbb, cbc, cbd) 32.45/13.23 new_ltEs8(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), df, dg, dh) -> new_pePe(new_lt10(xuu33000, xuu34000, df), new_asAs(new_esEs25(xuu33000, xuu34000, df), new_pePe(new_lt9(xuu33001, xuu34001, dg), new_asAs(new_esEs24(xuu33001, xuu34001, dg), new_ltEs19(xuu33002, xuu34002, dh))))) 32.45/13.23 new_compare30(xuu33000, xuu34000, ty_Bool) -> new_compare9(xuu33000, xuu34000) 32.45/13.23 new_compare0(:(xuu33000, xuu33001), [], bf) -> GT 32.45/13.23 new_esEs8(LT, GT) -> False 32.45/13.23 new_esEs8(GT, LT) -> False 32.45/13.23 new_esEs29(xuu311000, xuu600, app(ty_Ratio, dea)) -> new_esEs15(xuu311000, xuu600, dea) 32.45/13.23 new_esEs19(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) 32.45/13.23 new_esEs25(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) 32.45/13.23 new_compare25(xuu33000, xuu34000, True) -> EQ 32.45/13.23 new_compare27(xuu33000, xuu34000, True, bd, be) -> EQ 32.45/13.23 new_esEs29(xuu311000, xuu600, app(app(ty_@2, bfa), bfb)) -> new_esEs7(xuu311000, xuu600, bfa, bfb) 32.45/13.23 new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.45/13.23 new_esEs18(xuu3110002, xuu6002, app(ty_Maybe, bbb)) -> new_esEs6(xuu3110002, xuu6002, bbb) 32.45/13.23 new_ltEs16(False, False) -> True 32.45/13.23 new_compare11(xuu33000, xuu34000, True, ee, ef) -> LT 32.45/13.23 new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Ratio, beh)) -> new_ltEs15(xuu33000, xuu34000, beh) 32.45/13.23 new_ltEs19(xuu33002, xuu34002, ty_Int) -> new_ltEs7(xuu33002, xuu34002) 32.45/13.23 new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.45/13.23 new_esEs29(xuu311000, xuu600, app(ty_Maybe, bg)) -> new_esEs6(xuu311000, xuu600, bg) 32.45/13.23 new_lt10(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) 32.45/13.23 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 32.45/13.23 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 32.45/13.23 new_primPlusNat1(Zero, Zero) -> Zero 32.45/13.23 new_lt20(xuu33000, xuu34000, app(app(ty_@2, cgf), cgg)) -> new_lt4(xuu33000, xuu34000, cgf, cgg) 32.45/13.23 new_lt9(xuu33001, xuu34001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt11(xuu33001, xuu34001, cdb, cdc, cdd) 32.45/13.23 new_ltEs11(xuu3300, xuu3400) -> new_fsEs(new_compare18(xuu3300, xuu3400)) 32.45/13.23 new_lt19(xuu33000, xuu34000) -> new_esEs8(new_compare32(xuu33000, xuu34000), LT) 32.45/13.23 new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.45/13.23 new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.45/13.23 new_ltEs20(xuu33001, xuu34001, ty_Int) -> new_ltEs7(xuu33001, xuu34001) 32.45/13.23 new_lt20(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) 32.45/13.23 new_esEs28(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.45/13.23 new_lt10(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) 32.45/13.23 new_esEs21(xuu3110001, xuu6001, app(ty_[], bgc)) -> new_esEs16(xuu3110001, xuu6001, bgc) 32.45/13.23 new_ltEs16(True, True) -> True 32.45/13.23 new_lt13(xuu33000, xuu34000) -> new_esEs8(new_compare7(xuu33000, xuu34000), LT) 32.45/13.23 new_esEs20(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.45/13.23 new_esEs26(xuu33000, xuu34000, app(app(ty_Either, cfg), cfh)) -> new_esEs4(xuu33000, xuu34000, cfg, cfh) 32.45/13.23 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Bool, de) -> new_ltEs16(xuu33000, xuu34000) 32.45/13.23 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 32.45/13.23 new_ltEs5(xuu3300, xuu3400, app(ty_Ratio, ed)) -> new_ltEs15(xuu3300, xuu3400, ed) 32.45/13.23 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.45/13.23 new_esEs25(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) 32.45/13.23 new_primMulNat0(Succ(xuu311000000), Succ(xuu600100)) -> new_primPlusNat0(new_primMulNat0(xuu311000000, Succ(xuu600100)), xuu600100) 32.45/13.23 new_ltEs12(EQ, LT) -> False 32.45/13.23 new_ltEs5(xuu3300, xuu3400, app(ty_[], bf)) -> new_ltEs4(xuu3300, xuu3400, bf) 32.45/13.23 new_lt6(xuu330, xuu340) -> new_esEs8(new_compare12(xuu330, xuu340), LT) 32.45/13.23 new_lt7(xuu33000, xuu34000) -> new_esEs8(new_compare13(xuu33000, xuu34000), LT) 32.45/13.23 new_primCmpNat0(Succ(xuu3300), Succ(xuu3400)) -> new_primCmpNat0(xuu3300, xuu3400) 32.45/13.23 new_ltEs19(xuu33002, xuu34002, app(ty_Ratio, ccg)) -> new_ltEs15(xuu33002, xuu34002, ccg) 32.45/13.23 new_esEs26(xuu33000, xuu34000, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs5(xuu33000, xuu34000, cga, cgb, cgc) 32.45/13.23 new_esEs30(xuu22, xuu17, ty_Char) -> new_esEs10(xuu22, xuu17) 32.45/13.23 new_esEs21(xuu3110001, xuu6001, app(app(ty_@2, bfc), bfd)) -> new_esEs7(xuu3110001, xuu6001, bfc, bfd) 32.45/13.23 new_esEs26(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) 32.45/13.23 new_esEs18(xuu3110002, xuu6002, ty_Char) -> new_esEs10(xuu3110002, xuu6002) 32.45/13.23 new_esEs24(xuu33001, xuu34001, ty_Integer) -> new_esEs17(xuu33001, xuu34001) 32.45/13.23 new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_[], da)) -> new_esEs16(xuu3110000, xuu6000, da) 32.45/13.23 new_compare12(xuu33, xuu34) -> new_primCmpInt(xuu33, xuu34) 32.45/13.23 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(app(ty_@3, dbg), dbh), dca)) -> new_ltEs8(xuu33000, xuu34000, dbg, dbh, dca) 32.45/13.23 new_esEs19(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) 32.45/13.23 new_esEs16(:(xuu3110000, xuu3110001), [], bhg) -> False 32.45/13.23 new_esEs16([], :(xuu6000, xuu6001), bhg) -> False 32.45/13.23 new_esEs23(xuu3110000, xuu6000, app(ty_[], cah)) -> new_esEs16(xuu3110000, xuu6000, cah) 32.45/13.23 new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, fb), fc), fd), eg) -> new_esEs5(xuu3110000, xuu6000, fb, fc, fd) 32.45/13.23 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 32.45/13.23 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 32.45/13.23 new_ltEs12(LT, EQ) -> True 32.45/13.23 new_ltEs20(xuu33001, xuu34001, app(ty_[], cfb)) -> new_ltEs4(xuu33001, xuu34001, cfb) 32.45/13.23 new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.45/13.23 new_compare30(xuu33000, xuu34000, app(app(ty_Either, cha), chb)) -> new_compare8(xuu33000, xuu34000, cha, chb) 32.45/13.23 new_ltEs20(xuu33001, xuu34001, app(ty_Ratio, cff)) -> new_ltEs15(xuu33001, xuu34001, cff) 32.45/13.23 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Float, de) -> new_ltEs11(xuu33000, xuu34000) 32.45/13.23 new_ltEs9(xuu3300, xuu3400) -> new_fsEs(new_compare19(xuu3300, xuu3400)) 32.45/13.23 new_esEs27(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) 32.45/13.23 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_@0) -> new_ltEs18(xuu33000, xuu34000) 32.45/13.23 new_primEqNat0(Zero, Zero) -> True 32.45/13.23 new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, gb), eg) -> new_esEs6(xuu3110000, xuu6000, gb) 32.45/13.23 new_esEs20(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.45/13.23 new_esEs29(xuu311000, xuu600, ty_Ordering) -> new_esEs8(xuu311000, xuu600) 32.45/13.23 new_lt20(xuu33000, xuu34000, app(app(ty_Either, cfg), cfh)) -> new_lt5(xuu33000, xuu34000, cfg, cfh) 32.45/13.23 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Float, eg) -> new_esEs11(xuu3110000, xuu6000) 32.45/13.23 new_lt10(xuu33000, xuu34000, app(app(ty_@2, bd), be)) -> new_lt4(xuu33000, xuu34000, bd, be) 32.45/13.23 new_esEs22(xuu3110000, xuu6000, app(ty_[], bhe)) -> new_esEs16(xuu3110000, xuu6000, bhe) 32.45/13.23 new_asAs(False, xuu139) -> False 32.45/13.23 new_ltEs19(xuu33002, xuu34002, app(ty_[], ccc)) -> new_ltEs4(xuu33002, xuu34002, ccc) 32.45/13.23 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.45/13.23 new_compare30(xuu33000, xuu34000, ty_Ordering) -> new_compare31(xuu33000, xuu34000) 32.45/13.23 new_lt20(xuu33000, xuu34000, app(ty_Maybe, cge)) -> new_lt17(xuu33000, xuu34000, cge) 32.45/13.23 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Double, de) -> new_ltEs9(xuu33000, xuu34000) 32.45/13.23 new_lt20(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) 32.45/13.23 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) 32.45/13.23 new_ltEs13(Nothing, Just(xuu34000), ea) -> True 32.45/13.23 new_esEs23(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.45/13.23 new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_[], hd)) -> new_esEs16(xuu3110000, xuu6000, hd) 32.45/13.23 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Char, de) -> new_ltEs17(xuu33000, xuu34000) 32.45/13.23 new_ltEs6(Left(xuu33000), Right(xuu34000), dd, de) -> True 32.45/13.23 new_esEs8(EQ, GT) -> False 32.45/13.23 new_esEs8(GT, EQ) -> False 32.45/13.23 new_esEs11(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 32.45/13.23 new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Integer) -> new_ltEs10(xuu33000, xuu34000) 32.45/13.23 new_ltEs16(False, True) -> True 32.45/13.23 new_lt10(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) 32.45/13.23 new_esEs29(xuu311000, xuu600, ty_Char) -> new_esEs10(xuu311000, xuu600) 32.45/13.23 new_esEs21(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) 32.45/13.23 new_esEs20(xuu3110000, xuu6000, app(app(ty_@2, bce), bcf)) -> new_esEs7(xuu3110000, xuu6000, bce, bcf) 32.45/13.23 32.45/13.23 The set Q consists of the following terms: 32.45/13.23 32.45/13.23 new_lt10(x0, x1, app(ty_[], x2)) 32.45/13.23 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.23 new_esEs8(EQ, EQ) 32.45/13.23 new_esEs6(Just(x0), Just(x1), ty_Double) 32.45/13.23 new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 32.45/13.23 new_esEs4(Left(x0), Left(x1), ty_Double, x2) 32.45/13.23 new_esEs19(x0, x1, app(ty_[], x2)) 32.45/13.23 new_ltEs13(Nothing, Just(x0), x1) 32.45/13.23 new_lt9(x0, x1, ty_Bool) 32.45/13.23 new_lt10(x0, x1, ty_@0) 32.45/13.23 new_esEs29(x0, x1, ty_@0) 32.45/13.23 new_ltEs20(x0, x1, ty_Int) 32.45/13.23 new_esEs30(x0, x1, ty_Bool) 32.45/13.23 new_lt20(x0, x1, ty_Integer) 32.45/13.23 new_ltEs11(x0, x1) 32.45/13.23 new_lt5(x0, x1, x2, x3) 32.45/13.23 new_ltEs7(x0, x1) 32.45/13.23 new_esEs26(x0, x1, app(ty_Maybe, x2)) 32.45/13.23 new_esEs24(x0, x1, ty_Float) 32.45/13.23 new_ltEs19(x0, x1, app(ty_[], x2)) 32.45/13.23 new_esEs6(Just(x0), Just(x1), ty_Ordering) 32.45/13.23 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 32.45/13.23 new_esEs6(Just(x0), Nothing, x1) 32.45/13.23 new_compare0(:(x0, x1), [], x2) 32.45/13.23 new_primPlusNat1(Zero, Zero) 32.45/13.23 new_pePe(True, x0) 32.45/13.23 new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) 32.45/13.23 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 32.45/13.23 new_esEs29(x0, x1, ty_Bool) 32.45/13.23 new_esEs6(Nothing, Nothing, x0) 32.45/13.23 new_ltEs20(x0, x1, ty_Char) 32.45/13.23 new_lt10(x0, x1, ty_Bool) 32.45/13.23 new_ltEs9(x0, x1) 32.45/13.23 new_lt9(x0, x1, ty_Integer) 32.45/13.23 new_ltEs19(x0, x1, ty_Double) 32.45/13.23 new_esEs12(x0, x1) 32.45/13.23 new_primEqInt(Pos(Zero), Pos(Zero)) 32.45/13.23 new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) 32.45/13.23 new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.23 new_lt13(x0, x1) 32.45/13.23 new_lt7(x0, x1) 32.45/13.23 new_esEs4(Left(x0), Left(x1), ty_Int, x2) 32.45/13.23 new_esEs26(x0, x1, ty_Double) 32.45/13.23 new_ltEs5(x0, x1, app(ty_Ratio, x2)) 32.45/13.23 new_fsEs(x0) 32.45/13.23 new_lt9(x0, x1, ty_@0) 32.45/13.23 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 32.45/13.23 new_lt9(x0, x1, app(ty_Ratio, x2)) 32.45/13.23 new_esEs16([], :(x0, x1), x2) 32.45/13.23 new_primEqNat0(Zero, Succ(x0)) 32.45/13.23 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 32.45/13.23 new_lt10(x0, x1, ty_Char) 32.45/13.23 new_primEqInt(Neg(Zero), Neg(Zero)) 32.45/13.23 new_compare16(x0, x1, True, x2, x3) 32.45/13.23 new_ltEs20(x0, x1, app(ty_[], x2)) 32.45/13.23 new_esEs23(x0, x1, ty_Bool) 32.45/13.23 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 32.45/13.23 new_esEs6(Just(x0), Just(x1), ty_Char) 32.45/13.23 new_esEs4(Left(x0), Left(x1), ty_Char, x2) 32.45/13.23 new_esEs29(x0, x1, ty_Char) 32.45/13.23 new_ltEs16(False, False) 32.45/13.23 new_esEs20(x0, x1, app(ty_Ratio, x2)) 32.45/13.23 new_ltEs19(x0, x1, ty_Int) 32.45/13.23 new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) 32.45/13.23 new_compare30(x0, x1, ty_Double) 32.45/13.23 new_lt19(x0, x1) 32.45/13.23 new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) 32.45/13.23 new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 32.45/13.23 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 32.45/13.23 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 32.45/13.23 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.23 new_ltEs12(GT, EQ) 32.45/13.23 new_compare29(x0, x1, x2) 32.45/13.23 new_ltEs12(EQ, GT) 32.45/13.23 new_esEs19(x0, x1, app(ty_Ratio, x2)) 32.45/13.23 new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 32.45/13.23 new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) 32.45/13.23 new_ltEs13(Just(x0), Nothing, x1) 32.45/13.23 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.23 new_esEs30(x0, x1, ty_Integer) 32.45/13.23 new_compare6(x0, x1, x2, x3) 32.45/13.23 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.23 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.23 new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 32.45/13.23 new_primEqInt(Pos(Zero), Neg(Zero)) 32.45/13.23 new_primEqInt(Neg(Zero), Pos(Zero)) 32.45/13.23 new_compare14(x0, x1, True, x2, x3, x4) 32.45/13.23 new_ltEs20(x0, x1, ty_Ordering) 32.45/13.23 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 32.45/13.23 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 32.45/13.23 new_compare0([], :(x0, x1), x2) 32.45/13.23 new_compare16(x0, x1, False, x2, x3) 32.45/13.23 new_esEs19(x0, x1, ty_Float) 32.45/13.23 new_primCompAux0(x0, GT) 32.45/13.23 new_esEs29(x0, x1, ty_Int) 32.45/13.23 new_esEs20(x0, x1, app(ty_[], x2)) 32.45/13.23 new_compare210(x0, x1, False) 32.45/13.23 new_esEs18(x0, x1, app(ty_[], x2)) 32.45/13.23 new_esEs23(x0, x1, ty_Ordering) 32.45/13.23 new_pePe(False, x0) 32.45/13.23 new_esEs6(Just(x0), Just(x1), ty_Int) 32.45/13.23 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.23 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 32.45/13.23 new_lt20(x0, x1, app(ty_[], x2)) 32.45/13.23 new_lt20(x0, x1, app(ty_Ratio, x2)) 32.45/13.23 new_ltEs6(Left(x0), Left(x1), ty_Float, x2) 32.45/13.23 new_esEs25(x0, x1, ty_Integer) 32.45/13.23 new_esEs10(Char(x0), Char(x1)) 32.45/13.23 new_esEs23(x0, x1, ty_Integer) 32.45/13.23 new_esEs25(x0, x1, app(ty_[], x2)) 32.45/13.23 new_compare13(Char(x0), Char(x1)) 32.45/13.23 new_esEs30(x0, x1, app(ty_Maybe, x2)) 32.45/13.23 new_primEqNat0(Succ(x0), Succ(x1)) 32.45/13.23 new_primMulInt(Neg(x0), Neg(x1)) 32.45/13.23 new_compare30(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.23 new_ltEs13(Just(x0), Just(x1), ty_Float) 32.45/13.23 new_ltEs5(x0, x1, ty_Double) 32.45/13.23 new_esEs30(x0, x1, ty_Ordering) 32.45/13.23 new_esEs6(Just(x0), Just(x1), ty_@0) 32.45/13.23 new_esEs9(@0, @0) 32.45/13.23 new_esEs24(x0, x1, ty_Bool) 32.45/13.23 new_esEs4(Right(x0), Right(x1), x2, ty_Integer) 32.45/13.23 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.23 new_lt9(x0, x1, ty_Double) 32.45/13.24 new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 32.45/13.24 new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 32.45/13.24 new_esEs14(Double(x0, x1), Double(x2, x3)) 32.45/13.24 new_esEs4(Left(x0), Left(x1), ty_Bool, x2) 32.45/13.24 new_esEs6(Just(x0), Just(x1), ty_Bool) 32.45/13.24 new_esEs29(x0, x1, ty_Ordering) 32.45/13.24 new_lt10(x0, x1, ty_Float) 32.45/13.24 new_lt6(x0, x1) 32.45/13.24 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.24 new_ltEs5(x0, x1, ty_Ordering) 32.45/13.24 new_esEs30(x0, x1, ty_Double) 32.45/13.24 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.24 new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 32.45/13.24 new_ltEs19(x0, x1, ty_Char) 32.45/13.24 new_ltEs13(Just(x0), Just(x1), ty_Int) 32.45/13.24 new_esEs21(x0, x1, ty_Double) 32.45/13.24 new_lt10(x0, x1, ty_Ordering) 32.45/13.24 new_primPlusNat0(x0, x1) 32.45/13.24 new_compare23(Just(x0), Nothing, False, x1) 32.45/13.24 new_esEs26(x0, x1, ty_@0) 32.45/13.24 new_esEs23(x0, x1, ty_Double) 32.45/13.24 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 32.45/13.24 new_compare30(x0, x1, ty_Ordering) 32.45/13.24 new_compare23(x0, x1, True, x2) 32.45/13.24 new_primMulNat0(Succ(x0), Succ(x1)) 32.45/13.24 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.24 new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) 32.45/13.24 new_primPlusNat1(Zero, Succ(x0)) 32.45/13.24 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.24 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.24 new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 32.45/13.24 new_lt10(x0, x1, ty_Int) 32.45/13.24 new_compare25(x0, x1, True) 32.45/13.24 new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) 32.45/13.24 new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 32.45/13.24 new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 32.45/13.24 new_lt9(x0, x1, app(ty_[], x2)) 32.45/13.24 new_esEs8(GT, GT) 32.45/13.24 new_ltEs19(x0, x1, ty_Bool) 32.45/13.24 new_esEs28(x0, x1, ty_Integer) 32.45/13.24 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 32.45/13.24 new_ltEs16(True, False) 32.45/13.24 new_ltEs16(False, True) 32.45/13.24 new_ltEs12(EQ, LT) 32.45/13.24 new_ltEs12(LT, EQ) 32.45/13.24 new_esEs18(x0, x1, ty_Integer) 32.45/13.24 new_esEs8(LT, EQ) 32.45/13.24 new_esEs8(EQ, LT) 32.45/13.24 new_ltEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 32.45/13.24 new_esEs18(x0, x1, ty_Float) 32.45/13.24 new_ltEs12(GT, GT) 32.45/13.24 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.24 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.24 new_compare30(x0, x1, ty_@0) 32.45/13.24 new_primCmpInt(Neg(Zero), Neg(Zero)) 32.45/13.24 new_esEs22(x0, x1, ty_Integer) 32.45/13.24 new_lt20(x0, x1, ty_@0) 32.45/13.24 new_esEs13(False, True) 32.45/13.24 new_esEs13(True, False) 32.45/13.24 new_esEs23(x0, x1, app(ty_Ratio, x2)) 32.45/13.24 new_lt10(x0, x1, ty_Integer) 32.45/13.24 new_esEs11(Float(x0, x1), Float(x2, x3)) 32.45/13.24 new_esEs24(x0, x1, app(ty_Ratio, x2)) 32.45/13.24 new_esEs8(LT, LT) 32.45/13.24 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.24 new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 32.45/13.24 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.24 new_primCmpInt(Pos(Zero), Neg(Zero)) 32.45/13.24 new_primCmpInt(Neg(Zero), Pos(Zero)) 32.45/13.24 new_primMulInt(Pos(x0), Neg(x1)) 32.45/13.24 new_primMulInt(Neg(x0), Pos(x1)) 32.45/13.24 new_esEs20(x0, x1, ty_Char) 32.45/13.24 new_compare110(x0, x1, True) 32.45/13.24 new_ltEs6(Right(x0), Left(x1), x2, x3) 32.45/13.24 new_ltEs6(Left(x0), Right(x1), x2, x3) 32.45/13.24 new_primCompAux1(x0, x1, x2, x3) 32.45/13.24 new_esEs6(Just(x0), Just(x1), ty_Integer) 32.45/13.24 new_esEs18(x0, x1, ty_Int) 32.45/13.24 new_lt15(x0, x1) 32.45/13.24 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 32.45/13.24 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.24 new_compare23(Nothing, Nothing, False, x0) 32.45/13.24 new_esEs29(x0, x1, ty_Integer) 32.45/13.24 new_esEs24(x0, x1, app(ty_Maybe, x2)) 32.45/13.24 new_esEs16([], [], x0) 32.45/13.24 new_esEs4(Right(x0), Right(x1), x2, ty_@0) 32.45/13.24 new_primMulInt(Pos(x0), Pos(x1)) 32.45/13.24 new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 32.45/13.24 new_compare27(x0, x1, True, x2, x3) 32.45/13.24 new_esEs20(x0, x1, ty_Int) 32.45/13.24 new_ltEs20(x0, x1, ty_Double) 32.45/13.24 new_compare210(x0, x1, True) 32.45/13.24 new_compare10(x0, x1, False, x2) 32.45/13.24 new_esEs22(x0, x1, ty_Ordering) 32.45/13.24 new_esEs25(x0, x1, ty_@0) 32.45/13.24 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.24 new_esEs18(x0, x1, ty_Char) 32.45/13.24 new_ltEs12(LT, LT) 32.45/13.24 new_asAs(True, x0) 32.45/13.24 new_esEs29(x0, x1, app(ty_Ratio, x2)) 32.45/13.24 new_esEs23(x0, x1, app(ty_[], x2)) 32.45/13.24 new_ltEs6(Right(x0), Right(x1), x2, ty_Double) 32.45/13.24 new_ltEs6(Right(x0), Right(x1), x2, ty_@0) 32.45/13.24 new_compare24(x0, x1, False, x2, x3) 32.45/13.24 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.24 new_lt17(x0, x1, x2) 32.45/13.24 new_ltEs19(x0, x1, ty_Ordering) 32.45/13.24 new_ltEs5(x0, x1, app(ty_[], x2)) 32.45/13.24 new_esEs18(x0, x1, ty_Bool) 32.45/13.24 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.24 new_ltEs19(x0, x1, ty_Integer) 32.45/13.24 new_esEs23(x0, x1, ty_@0) 32.45/13.24 new_esEs20(x0, x1, ty_Float) 32.45/13.24 new_ltEs17(x0, x1) 32.45/13.24 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.24 new_primCmpNat0(Succ(x0), Succ(x1)) 32.45/13.24 new_compare30(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.24 new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.24 new_lt20(x0, x1, ty_Double) 32.45/13.24 new_compare26(x0, x1, True, x2, x3, x4) 32.45/13.24 new_esEs30(x0, x1, ty_@0) 32.45/13.24 new_ltEs20(x0, x1, ty_@0) 32.45/13.24 new_primMulNat0(Succ(x0), Zero) 32.45/13.24 new_primCmpNat0(Zero, Succ(x0)) 32.45/13.24 new_esEs16(:(x0, x1), :(x2, x3), x4) 32.45/13.24 new_compare0(:(x0, x1), :(x2, x3), x4) 32.45/13.24 new_ltEs15(x0, x1, x2) 32.45/13.24 new_esEs19(x0, x1, ty_Int) 32.45/13.24 new_lt9(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.24 new_compare30(x0, x1, app(ty_[], x2)) 32.45/13.24 new_ltEs10(x0, x1) 32.45/13.24 new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 32.45/13.24 new_esEs24(x0, x1, app(ty_[], x2)) 32.45/13.24 new_esEs20(x0, x1, ty_@0) 32.45/13.24 new_primCompAux0(x0, LT) 32.45/13.24 new_esEs6(Just(x0), Just(x1), ty_Float) 32.45/13.24 new_ltEs5(x0, x1, ty_Bool) 32.45/13.24 new_esEs4(Left(x0), Left(x1), ty_Float, x2) 32.45/13.24 new_compare7(Integer(x0), Integer(x1)) 32.45/13.24 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.24 new_ltEs13(Just(x0), Just(x1), ty_Bool) 32.45/13.24 new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 32.45/13.24 new_primMulNat0(Zero, Zero) 32.45/13.24 new_esEs22(x0, x1, ty_@0) 32.45/13.24 new_compare30(x0, x1, ty_Integer) 32.45/13.24 new_ltEs6(Left(x0), Left(x1), ty_Char, x2) 32.45/13.24 new_esEs4(Right(x0), Right(x1), x2, ty_Int) 32.45/13.24 new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.24 new_ltEs6(Left(x0), Left(x1), ty_Int, x2) 32.45/13.24 new_esEs17(Integer(x0), Integer(x1)) 32.45/13.24 new_ltEs5(x0, x1, ty_@0) 32.45/13.24 new_esEs19(x0, x1, ty_Ordering) 32.45/13.24 new_lt20(x0, x1, app(ty_Maybe, x2)) 32.45/13.24 new_lt12(x0, x1) 32.45/13.24 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 32.45/13.24 new_esEs24(x0, x1, ty_Double) 32.45/13.24 new_esEs18(x0, x1, ty_@0) 32.45/13.24 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.24 new_compare11(x0, x1, False, x2, x3) 32.45/13.24 new_lt9(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.24 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 32.45/13.24 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 32.45/13.24 new_compare10(x0, x1, True, x2) 32.45/13.24 new_esEs28(x0, x1, ty_Int) 32.45/13.24 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.24 new_esEs19(x0, x1, ty_Double) 32.45/13.24 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 32.45/13.24 new_esEs25(x0, x1, ty_Double) 32.45/13.24 new_esEs24(x0, x1, ty_Int) 32.45/13.24 new_lt4(x0, x1, x2, x3) 32.45/13.24 new_esEs21(x0, x1, ty_Bool) 32.45/13.24 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.24 new_esEs20(x0, x1, ty_Bool) 32.45/13.24 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 32.45/13.24 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.24 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.24 new_compare23(Just(x0), Just(x1), False, x2) 32.45/13.24 new_esEs19(x0, x1, ty_Char) 32.45/13.24 new_esEs4(Right(x0), Right(x1), x2, ty_Char) 32.45/13.24 new_esEs4(Right(x0), Right(x1), x2, ty_Double) 32.45/13.24 new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 32.45/13.24 new_ltEs13(Just(x0), Just(x1), ty_@0) 32.45/13.24 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.24 new_esEs24(x0, x1, ty_Ordering) 32.45/13.24 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.24 new_compare14(x0, x1, False, x2, x3, x4) 32.45/13.24 new_esEs30(x0, x1, app(ty_Ratio, x2)) 32.45/13.24 new_esEs29(x0, x1, app(ty_[], x2)) 32.45/13.24 new_esEs22(x0, x1, app(ty_Maybe, x2)) 32.45/13.24 new_lt11(x0, x1, x2, x3, x4) 32.45/13.24 new_not(True) 32.45/13.24 new_ltEs5(x0, x1, app(ty_Maybe, x2)) 32.45/13.24 new_compare17(x0, x1, False) 32.45/13.24 new_compare30(x0, x1, app(ty_Ratio, x2)) 32.45/13.24 new_esEs19(x0, x1, app(ty_Maybe, x2)) 32.45/13.24 new_ltEs13(Just(x0), Just(x1), ty_Char) 32.45/13.24 new_esEs23(x0, x1, app(ty_Maybe, x2)) 32.45/13.24 new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 32.45/13.24 new_esEs26(x0, x1, app(ty_[], x2)) 32.45/13.24 new_compare17(x0, x1, True) 32.45/13.24 new_ltEs6(Left(x0), Left(x1), ty_@0, x2) 32.45/13.24 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.24 new_esEs8(EQ, GT) 32.45/13.24 new_esEs8(GT, EQ) 32.45/13.24 new_esEs18(x0, x1, ty_Ordering) 32.45/13.24 new_esEs18(x0, x1, app(ty_Ratio, x2)) 32.45/13.24 new_esEs22(x0, x1, ty_Int) 32.45/13.24 new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 32.45/13.24 new_esEs24(x0, x1, ty_Char) 32.45/13.24 new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 32.45/13.24 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.24 new_ltEs6(Left(x0), Left(x1), ty_Double, x2) 32.45/13.24 new_esEs4(Left(x0), Left(x1), ty_Integer, x2) 32.45/13.24 new_lt9(x0, x1, app(ty_Maybe, x2)) 32.45/13.24 new_lt20(x0, x1, ty_Ordering) 32.45/13.24 new_esEs19(x0, x1, ty_@0) 32.45/13.24 new_ltEs13(Just(x0), Just(x1), ty_Integer) 32.45/13.24 new_esEs6(Nothing, Just(x0), x1) 32.45/13.24 new_esEs26(x0, x1, app(ty_Ratio, x2)) 32.45/13.24 new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.24 new_compare110(x0, x1, False) 32.45/13.24 new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) 32.45/13.24 new_esEs13(True, True) 32.45/13.24 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.24 new_esEs21(x0, x1, ty_@0) 32.45/13.24 new_ltEs18(x0, x1) 32.45/13.24 new_compare12(x0, x1) 32.45/13.24 new_compare30(x0, x1, ty_Bool) 32.45/13.24 new_esEs26(x0, x1, ty_Float) 32.45/13.24 new_compare27(x0, x1, False, x2, x3) 32.45/13.24 new_ltEs13(Nothing, Nothing, x0) 32.45/13.24 new_primPlusNat1(Succ(x0), Succ(x1)) 32.45/13.24 new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) 32.45/13.24 new_esEs22(x0, x1, ty_Bool) 32.45/13.24 new_ltEs19(x0, x1, ty_@0) 32.45/13.24 new_esEs21(x0, x1, ty_Float) 32.45/13.24 new_esEs21(x0, x1, app(ty_[], x2)) 32.45/13.24 new_compare11(x0, x1, True, x2, x3) 32.45/13.24 new_primEqNat0(Succ(x0), Zero) 32.45/13.24 new_primCompAux0(x0, EQ) 32.45/13.24 new_lt10(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.24 new_lt14(x0, x1) 32.45/13.24 new_ltEs19(x0, x1, ty_Float) 32.45/13.24 new_ltEs12(EQ, EQ) 32.45/13.24 new_compare28(x0, x1, x2, x3, x4) 32.45/13.24 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 32.45/13.24 new_esEs27(x0, x1, ty_Int) 32.45/13.24 new_lt8(x0, x1, x2) 32.45/13.24 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.24 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 32.45/13.24 new_esEs22(x0, x1, ty_Char) 32.45/13.24 new_compare25(x0, x1, False) 32.45/13.24 new_esEs21(x0, x1, app(ty_Ratio, x2)) 32.45/13.24 new_ltEs5(x0, x1, ty_Integer) 32.45/13.24 new_esEs25(x0, x1, ty_Ordering) 32.45/13.24 new_esEs4(Left(x0), Right(x1), x2, x3) 32.45/13.24 new_esEs4(Right(x0), Left(x1), x2, x3) 32.45/13.24 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 32.45/13.24 new_esEs20(x0, x1, ty_Integer) 32.45/13.24 new_esEs22(x0, x1, ty_Double) 32.45/13.24 new_lt10(x0, x1, app(ty_Ratio, x2)) 32.45/13.24 new_primCmpInt(Pos(Zero), Pos(Zero)) 32.45/13.24 new_lt10(x0, x1, app(ty_Maybe, x2)) 32.45/13.24 new_compare0([], [], x0) 32.45/13.24 new_ltEs20(x0, x1, ty_Integer) 32.45/13.24 new_esEs29(x0, x1, ty_Double) 32.45/13.24 new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 32.45/13.24 new_lt9(x0, x1, ty_Ordering) 32.45/13.24 new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 32.45/13.24 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 32.45/13.24 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 32.45/13.24 new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) 32.45/13.24 new_ltEs5(x0, x1, ty_Float) 32.45/13.24 new_ltEs13(Just(x0), Just(x1), ty_Double) 32.45/13.24 new_esEs22(x0, x1, app(ty_[], x2)) 32.45/13.24 new_compare30(x0, x1, ty_Char) 32.45/13.24 new_esEs4(Left(x0), Left(x1), ty_@0, x2) 32.45/13.24 new_esEs19(x0, x1, ty_Integer) 32.45/13.24 new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 32.45/13.24 new_esEs29(x0, x1, ty_Float) 32.45/13.24 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.24 new_esEs20(x0, x1, ty_Double) 32.45/13.24 new_sr(x0, x1) 32.45/13.24 new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 32.45/13.24 new_esEs30(x0, x1, ty_Float) 32.45/13.24 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 32.45/13.24 new_compare24(x0, x1, True, x2, x3) 32.45/13.24 new_esEs30(x0, x1, app(ty_[], x2)) 32.45/13.24 new_esEs21(x0, x1, ty_Ordering) 32.45/13.24 new_compare9(x0, x1) 32.45/13.24 new_esEs20(x0, x1, ty_Ordering) 32.45/13.24 new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 32.45/13.24 new_esEs21(x0, x1, ty_Int) 32.45/13.24 new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.24 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.24 new_lt9(x0, x1, ty_Float) 32.45/13.24 new_esEs29(x0, x1, app(ty_Maybe, x2)) 32.45/13.24 new_esEs8(LT, GT) 32.45/13.24 new_esEs8(GT, LT) 32.45/13.24 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 32.45/13.24 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.24 new_esEs19(x0, x1, ty_Bool) 32.45/13.24 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 32.45/13.24 new_esEs25(x0, x1, ty_Char) 32.45/13.24 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 32.45/13.24 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.24 new_ltEs5(x0, x1, ty_Int) 32.45/13.24 new_ltEs20(x0, x1, ty_Bool) 32.45/13.24 new_compare26(x0, x1, False, x2, x3, x4) 32.45/13.24 new_esEs21(x0, x1, ty_Char) 32.45/13.24 new_esEs22(x0, x1, ty_Float) 32.45/13.24 new_esEs26(x0, x1, ty_Char) 32.45/13.24 new_esEs24(x0, x1, ty_Integer) 32.45/13.24 new_esEs4(Right(x0), Right(x1), x2, ty_Bool) 32.45/13.24 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.24 new_lt9(x0, x1, ty_Char) 32.45/13.24 new_lt10(x0, x1, ty_Double) 32.45/13.24 new_esEs24(x0, x1, ty_@0) 32.45/13.24 new_compare23(Nothing, Just(x0), False, x1) 32.45/13.24 new_esEs26(x0, x1, ty_Int) 32.45/13.24 new_compare30(x0, x1, ty_Int) 32.45/13.24 new_compare8(x0, x1, x2, x3) 32.45/13.24 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 32.45/13.24 new_lt10(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.24 new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) 32.45/13.24 new_esEs21(x0, x1, app(ty_Maybe, x2)) 32.45/13.24 new_asAs(False, x0) 32.45/13.24 new_esEs16(:(x0, x1), [], x2) 32.45/13.24 new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 32.45/13.24 new_ltEs13(Just(x0), Just(x1), ty_Ordering) 32.45/13.24 new_esEs25(x0, x1, ty_Bool) 32.45/13.24 new_lt9(x0, x1, ty_Int) 32.45/13.24 new_lt18(x0, x1) 32.45/13.24 new_esEs23(x0, x1, ty_Int) 32.45/13.24 new_compare30(x0, x1, app(ty_Maybe, x2)) 32.45/13.24 new_primEqNat0(Zero, Zero) 32.45/13.24 new_esEs13(False, False) 32.45/13.24 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 32.45/13.24 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.24 new_primMulNat0(Zero, Succ(x0)) 32.45/13.24 new_ltEs5(x0, x1, ty_Char) 32.45/13.24 new_not(False) 32.45/13.24 new_lt20(x0, x1, ty_Float) 32.45/13.24 new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 32.45/13.24 new_esEs26(x0, x1, ty_Ordering) 32.45/13.24 new_ltEs16(True, True) 32.45/13.24 new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) 32.45/13.24 new_lt20(x0, x1, ty_Bool) 32.45/13.24 new_ltEs12(LT, GT) 32.45/13.24 new_ltEs12(GT, LT) 32.45/13.24 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.24 new_esEs25(x0, x1, ty_Int) 32.45/13.24 new_esEs30(x0, x1, ty_Char) 32.45/13.24 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 32.45/13.24 new_ltEs6(Right(x0), Right(x1), x2, ty_Float) 32.45/13.24 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 32.45/13.24 new_esEs22(x0, x1, app(ty_Ratio, x2)) 32.45/13.24 new_esEs26(x0, x1, ty_Bool) 32.45/13.24 new_esEs23(x0, x1, ty_Char) 32.45/13.24 new_esEs15(:%(x0, x1), :%(x2, x3), x4) 32.45/13.24 new_sr0(Integer(x0), Integer(x1)) 32.45/13.24 new_compare30(x0, x1, ty_Float) 32.45/13.24 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 32.45/13.24 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 32.45/13.24 new_esEs26(x0, x1, ty_Integer) 32.45/13.24 new_esEs25(x0, x1, app(ty_Ratio, x2)) 32.45/13.24 new_esEs25(x0, x1, app(ty_Maybe, x2)) 32.45/13.24 new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) 32.45/13.24 new_esEs20(x0, x1, app(ty_Maybe, x2)) 32.45/13.24 new_ltEs6(Right(x0), Right(x1), x2, ty_Char) 32.45/13.24 new_esEs23(x0, x1, ty_Float) 32.45/13.24 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 32.45/13.24 new_primPlusNat1(Succ(x0), Zero) 32.45/13.24 new_esEs30(x0, x1, ty_Int) 32.45/13.24 new_esEs18(x0, x1, app(ty_Maybe, x2)) 32.45/13.24 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 32.45/13.24 new_ltEs4(x0, x1, x2) 32.45/13.24 new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) 32.45/13.24 new_ltEs20(x0, x1, ty_Float) 32.45/13.24 new_esEs18(x0, x1, ty_Double) 32.45/13.24 new_lt20(x0, x1, ty_Int) 32.45/13.24 new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.24 new_esEs21(x0, x1, ty_Integer) 32.45/13.24 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.24 new_esEs27(x0, x1, ty_Integer) 32.45/13.24 new_primCmpNat0(Succ(x0), Zero) 32.45/13.24 new_lt16(x0, x1, x2) 32.45/13.24 new_compare31(x0, x1) 32.45/13.24 new_esEs4(Right(x0), Right(x1), x2, ty_Float) 32.45/13.24 new_esEs25(x0, x1, ty_Float) 32.45/13.24 new_ltEs6(Right(x0), Right(x1), x2, ty_Int) 32.45/13.24 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 32.45/13.24 new_compare32(@0, @0) 32.45/13.24 new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 32.45/13.24 new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 32.45/13.24 new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 32.45/13.24 new_primCmpNat0(Zero, Zero) 32.45/13.24 new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 32.45/13.24 new_lt20(x0, x1, ty_Char) 32.45/13.24 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.24 32.45/13.24 We have to consider all minimal (P,Q,R)-chains. 32.45/13.24 ---------------------------------------- 32.45/13.24 32.45/13.24 (37) QDPSizeChangeProof (EQUIVALENT) 32.45/13.24 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. 32.45/13.24 32.45/13.24 From the DPs we obtained the following set of size-change graphs: 32.45/13.24 *new_addToFM_C1(xuu61, xuu62, xuu63, xuu64, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Nothing, xuu31101, h, ba) 32.45/13.24 The graph contains the following edges 4 >= 1, 5 >= 3, 7 >= 4, 8 >= 5 32.45/13.24 32.45/13.24 32.45/13.24 *new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Nothing, xuu31101, h, ba) -> new_addToFM_C1(xuu61, xuu62, xuu63, xuu64, xuu31101, new_esEs8(new_compare23(Nothing, Nothing, True, h), GT), h, ba) 32.45/13.24 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 3 >= 5, 4 >= 7, 5 >= 8 32.45/13.24 32.45/13.24 32.45/13.24 *new_addToFM_C(Branch(Just(xuu600), xuu61, xuu62, xuu63, xuu64), Nothing, xuu31101, h, ba) -> new_addToFM_C2(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, new_esEs8(new_compare23(Nothing, Just(xuu600), False, h), LT), h, ba) 32.45/13.24 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 3 >= 6, 4 >= 8, 5 >= 9 32.45/13.24 32.45/13.24 32.45/13.24 *new_addToFM_C2(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, False, h, ba) -> new_addToFM_C10(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, new_esEs8(new_compare23(Nothing, Just(xuu600), False, h), GT), h, ba) 32.45/13.24 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9 32.45/13.24 32.45/13.24 32.45/13.24 *new_addToFM_C2(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, True, h, ba) -> new_addToFM_C(xuu63, Nothing, xuu31101, h, ba) 32.45/13.24 The graph contains the following edges 4 >= 1, 6 >= 3, 8 >= 4, 9 >= 5 32.45/13.24 32.45/13.24 32.45/13.24 *new_addToFM_C10(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Nothing, xuu31101, h, ba) 32.45/13.24 The graph contains the following edges 5 >= 1, 6 >= 3, 8 >= 4, 9 >= 5 32.45/13.24 32.45/13.24 32.45/13.24 ---------------------------------------- 32.45/13.24 32.45/13.24 (38) 32.45/13.24 YES 32.45/13.24 32.45/13.24 ---------------------------------------- 32.45/13.24 32.45/13.24 (39) 32.45/13.24 Obligation: 32.45/13.24 Q DP problem: 32.45/13.24 The TRS P consists of the following rules: 32.45/13.24 32.45/13.24 new_foldl(xuu6, :(xuu3110, xuu3111), h, ba) -> new_foldl(new_addListToFM_CAdd(xuu6, xuu3110, h, ba), xuu3111, h, ba) 32.45/13.24 32.45/13.24 The TRS R consists of the following rules: 32.45/13.24 32.45/13.24 new_lt20(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) 32.45/13.24 new_esEs20(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.45/13.24 new_compare30(xuu33000, xuu34000, app(app(app(ty_@3, cfa), cfb), cfc)) -> new_compare28(xuu33000, xuu34000, cfa, cfb, cfc) 32.45/13.24 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 32.45/13.24 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Float) -> new_ltEs11(xuu33000, xuu34000) 32.45/13.24 new_primCmpInt(Neg(Succ(xuu3300)), Pos(xuu340)) -> LT 32.45/13.24 new_addToFM_C22(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, daa, dab) -> new_mkBalBranch(xuu17, xuu18, new_addToFM_C0(xuu20, Just(xuu22), xuu23, daa, dab), xuu21, daa, dab) 32.45/13.24 new_compare8(xuu33000, xuu34000, bc, bd) -> new_compare24(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, bc, bd), bc, bd) 32.45/13.24 new_esEs23(xuu3110000, xuu6000, app(ty_Maybe, bga)) -> new_esEs6(xuu3110000, xuu6000, bga) 32.45/13.24 new_pePe(True, xuu165) -> True 32.45/13.24 new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.45/13.24 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.45/13.24 new_esEs30(xuu22, xuu17, ty_Ordering) -> new_esEs8(xuu22, xuu17) 32.45/13.24 new_ltEs6(Right(xuu33000), Right(xuu34000), chf, ty_Float) -> new_ltEs11(xuu33000, xuu34000) 32.45/13.24 new_addToFM_C14(xuu61, xuu62, xuu63, xuu64, xuu31101, False, h, ba) -> Branch(Nothing, new_addListToFM0(xuu61, xuu31101, ba), xuu62, xuu63, xuu64) 32.45/13.24 new_esEs17(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) 32.45/13.24 new_lt4(xuu33000, xuu34000, bgf, bgg) -> new_esEs8(new_compare6(xuu33000, xuu34000, bgf, bgg), LT) 32.45/13.24 new_esEs29(xuu311000, xuu600, ty_Int) -> new_esEs12(xuu311000, xuu600) 32.45/13.24 new_esEs30(xuu22, xuu17, ty_Bool) -> new_esEs13(xuu22, xuu17) 32.45/13.24 new_compare23(xuu330, xuu340, True, che) -> EQ 32.45/13.24 new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Maybe, bbe)) -> new_ltEs13(xuu33000, xuu34000, bbe) 32.45/13.24 new_lt15(xuu33000, xuu34000) -> new_esEs8(new_compare31(xuu33000, xuu34000), LT) 32.45/13.24 new_lt10(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) 32.45/13.24 new_ltEs12(LT, LT) -> True 32.45/13.24 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.45/13.24 new_ltEs6(Right(xuu33000), Right(xuu34000), chf, app(app(ty_@2, ddg), ddh)) -> new_ltEs14(xuu33000, xuu34000, ddg, ddh) 32.45/13.24 new_ltEs6(Right(xuu33000), Right(xuu34000), chf, ty_Char) -> new_ltEs17(xuu33000, xuu34000) 32.45/13.24 new_esEs4(Left(xuu3110000), Right(xuu6000), da, be) -> False 32.45/13.24 new_esEs4(Right(xuu3110000), Left(xuu6000), da, be) -> False 32.45/13.24 new_mkBalBranch6Size_l0(xuu61, xuu36, xuu64, h, ba) -> new_sizeFM(xuu36, h, ba) 32.45/13.24 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Int, chg) -> new_ltEs7(xuu33000, xuu34000) 32.45/13.24 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 32.45/13.24 new_esEs29(xuu311000, xuu600, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs5(xuu311000, xuu600, ed, ee, ef) 32.45/13.24 new_primCmpInt(Pos(Zero), Neg(Succ(xuu3400))) -> GT 32.45/13.24 new_esEs15(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), cga) -> new_asAs(new_esEs28(xuu3110000, xuu6000, cga), new_esEs27(xuu3110001, xuu6001, cga)) 32.45/13.24 new_ltEs6(Right(xuu33000), Right(xuu34000), chf, app(ty_[], dde)) -> new_ltEs4(xuu33000, xuu34000, dde) 32.45/13.24 new_mkBalBranch6MkBalBranch30(xuu600, xuu61, xuu28, xuu64, False, h, ba) -> new_mkBranch(Succ(Zero), Just(xuu600), xuu61, xuu28, xuu64, app(ty_Maybe, h), ba) 32.45/13.24 new_esEs24(xuu33001, xuu34001, ty_Ordering) -> new_esEs8(xuu33001, xuu34001) 32.45/13.24 new_emptyFM(h, ba) -> EmptyFM 32.45/13.24 new_ltEs14(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), cca, ccb) -> new_pePe(new_lt20(xuu33000, xuu34000, cca), new_asAs(new_esEs26(xuu33000, xuu34000, cca), new_ltEs20(xuu33001, xuu34001, ccb))) 32.45/13.24 new_ltEs6(Right(xuu33000), Right(xuu34000), chf, app(ty_Ratio, dea)) -> new_ltEs15(xuu33000, xuu34000, dea) 32.45/13.24 new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, beb), bec)) -> new_esEs4(xuu3110000, xuu6000, beb, bec) 32.45/13.24 new_compare0(:(xuu33000, xuu33001), :(xuu34000, xuu34001), bb) -> new_primCompAux1(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, bb), bb) 32.45/13.24 new_primCmpInt(Neg(Succ(xuu3300)), Neg(xuu340)) -> new_primCmpNat0(xuu340, Succ(xuu3300)) 32.45/13.24 new_lt9(xuu33001, xuu34001, app(ty_[], cbb)) -> new_lt16(xuu33001, xuu34001, cbb) 32.45/13.24 new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_Either, bag), bah)) -> new_ltEs6(xuu33000, xuu34000, bag, bah) 32.45/13.24 new_lt10(xuu33000, xuu34000, app(ty_Ratio, bge)) -> new_lt8(xuu33000, xuu34000, bge) 32.45/13.24 new_gt(xuu91, xuu90) -> new_esEs8(new_compare12(xuu91, xuu90), GT) 32.45/13.24 new_esEs28(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.45/13.24 new_esEs26(xuu33000, xuu34000, app(app(ty_@2, ced), cee)) -> new_esEs7(xuu33000, xuu34000, ced, cee) 32.45/13.24 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Char) -> new_ltEs17(xuu33000, xuu34000) 32.45/13.24 new_esEs23(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.45/13.24 new_ltEs20(xuu33001, xuu34001, ty_@0) -> new_ltEs18(xuu33001, xuu34001) 32.45/13.24 new_mkBalBranch6MkBalBranch5(xuu600, xuu61, xuu28, xuu64, True, h, ba) -> new_mkBranch(Zero, Just(xuu600), xuu61, xuu28, xuu64, app(ty_Maybe, h), ba) 32.45/13.24 new_esEs5(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ed, ee, ef) -> new_asAs(new_esEs20(xuu3110000, xuu6000, ed), new_asAs(new_esEs19(xuu3110001, xuu6001, ee), new_esEs18(xuu3110002, xuu6002, ef))) 32.45/13.24 new_esEs10(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) 32.45/13.24 new_ltEs7(xuu3300, xuu3400) -> new_fsEs(new_compare12(xuu3300, xuu3400)) 32.45/13.24 new_esEs18(xuu3110002, xuu6002, ty_Ordering) -> new_esEs8(xuu3110002, xuu6002) 32.45/13.24 new_compare25(xuu33000, xuu34000, False) -> new_compare17(xuu33000, xuu34000, new_ltEs16(xuu33000, xuu34000)) 32.45/13.24 new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_[], dcc), chg) -> new_ltEs4(xuu33000, xuu34000, dcc) 32.45/13.24 new_esEs18(xuu3110002, xuu6002, ty_Bool) -> new_esEs13(xuu3110002, xuu6002) 32.45/13.24 new_primCompAux0(xuu182, GT) -> GT 32.45/13.24 new_lt9(xuu33001, xuu34001, ty_Bool) -> new_lt18(xuu33001, xuu34001) 32.45/13.24 new_esEs23(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.45/13.24 new_compare210(xuu33000, xuu34000, False) -> new_compare110(xuu33000, xuu34000, new_ltEs12(xuu33000, xuu34000)) 32.45/13.24 new_ltEs6(Right(xuu33000), Right(xuu34000), chf, ty_Double) -> new_ltEs9(xuu33000, xuu34000) 32.45/13.24 new_esEs18(xuu3110002, xuu6002, app(ty_Ratio, fg)) -> new_esEs15(xuu3110002, xuu6002, fg) 32.45/13.24 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Integer, be) -> new_esEs17(xuu3110000, xuu6000) 32.45/13.24 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False 32.45/13.24 new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False 32.45/13.24 new_esEs8(GT, GT) -> True 32.45/13.24 new_fsEs(xuu149) -> new_not(new_esEs8(xuu149, GT)) 32.45/13.24 new_esEs19(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) 32.45/13.24 new_lt12(xuu33000, xuu34000) -> new_esEs8(new_compare19(xuu33000, xuu34000), LT) 32.45/13.24 new_esEs24(xuu33001, xuu34001, app(ty_Ratio, cbf)) -> new_esEs15(xuu33001, xuu34001, cbf) 32.45/13.24 new_addToFM_C13(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, False, h, ba) -> Branch(Nothing, new_addListToFM0(xuu61, xuu31101, ba), xuu62, xuu63, xuu64) 32.45/13.24 new_esEs20(xuu3110000, xuu6000, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs5(xuu3110000, xuu6000, hf, hg, hh) 32.45/13.24 new_ltEs4(xuu3300, xuu3400, bb) -> new_fsEs(new_compare0(xuu3300, xuu3400, bb)) 32.45/13.24 new_esEs8(EQ, EQ) -> True 32.45/13.24 new_esEs24(xuu33001, xuu34001, ty_Bool) -> new_esEs13(xuu33001, xuu34001) 32.45/13.24 new_mkBalBranch(xuu600, xuu61, xuu28, xuu64, h, ba) -> new_mkBalBranch6MkBalBranch5(xuu600, xuu61, xuu28, xuu64, new_esEs8(new_primCmpInt0(xuu28, xuu600, xuu61, xuu64, h, ba), LT), h, ba) 32.45/13.24 new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) 32.45/13.24 new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Ratio, dcg), chg) -> new_ltEs15(xuu33000, xuu34000, dcg) 32.45/13.24 new_lt10(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) 32.45/13.24 new_lt10(xuu33000, xuu34000, app(ty_Maybe, cbh)) -> new_lt17(xuu33000, xuu34000, cbh) 32.45/13.24 new_ltEs20(xuu33001, xuu34001, ty_Integer) -> new_ltEs10(xuu33001, xuu34001) 32.45/13.24 new_primCompAux0(xuu182, LT) -> LT 32.45/13.24 new_not(True) -> False 32.45/13.24 new_ltEs19(xuu33002, xuu34002, ty_@0) -> new_ltEs18(xuu33002, xuu34002) 32.45/13.24 new_ltEs12(LT, GT) -> True 32.45/13.24 new_primCmpNat0(Zero, Zero) -> EQ 32.45/13.24 new_mkBalBranch6MkBalBranch010(xuu61, xuu36, xuu640, xuu641, xuu642, Branch(xuu6430, xuu6431, xuu6432, xuu6433, xuu6434), xuu644, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), xuu6430, xuu6431, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Zero))))), Nothing, xuu61, xuu36, xuu6433, app(ty_Maybe, h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), xuu640, xuu641, xuu6434, xuu644, app(ty_Maybe, h), ba), app(ty_Maybe, h), ba) 32.45/13.24 new_mkBalBranch6MkBalBranch11(xuu61, xuu360, xuu361, xuu362, xuu363, Branch(xuu3640, xuu3641, xuu3642, xuu3643, xuu3644), xuu64, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), xuu3640, xuu3641, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), xuu360, xuu361, xuu363, xuu3643, app(ty_Maybe, h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), Nothing, xuu61, xuu3644, xuu64, app(ty_Maybe, h), ba), app(ty_Maybe, h), ba) 32.45/13.24 new_esEs18(xuu3110002, xuu6002, app(app(app(ty_@3, fa), fb), fc)) -> new_esEs5(xuu3110002, xuu6002, fa, fb, fc) 32.45/13.24 new_addToFM_C24(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) -> new_mkBalBranch0(xuu61, new_addToFM_C0(xuu63, Just(xuu311000), xuu31101, h, ba), xuu64, h, ba) 32.45/13.24 new_compare6(xuu33000, xuu34000, bgf, bgg) -> new_compare27(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, bgf, bgg), bgf, bgg) 32.45/13.24 new_compare16(xuu33000, xuu34000, False, bgf, bgg) -> GT 32.45/13.24 new_ltEs19(xuu33002, xuu34002, ty_Integer) -> new_ltEs10(xuu33002, xuu34002) 32.45/13.24 new_esEs25(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) 32.45/13.24 new_compare14(xuu33000, xuu34000, True, bgb, bgc, bgd) -> LT 32.45/13.24 new_esEs30(xuu22, xuu17, app(ty_Ratio, dbb)) -> new_esEs15(xuu22, xuu17, dbb) 32.45/13.24 new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.45/13.24 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.45/13.24 new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_Either, dbf), dbg), chg) -> new_ltEs6(xuu33000, xuu34000, dbf, dbg) 32.45/13.24 new_esEs19(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) 32.45/13.24 new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_[], bbd)) -> new_ltEs4(xuu33000, xuu34000, bbd) 32.45/13.24 new_primEqNat0(Succ(xuu31100000), Zero) -> False 32.45/13.24 new_primEqNat0(Zero, Succ(xuu60000)) -> False 32.45/13.24 new_esEs4(Right(xuu3110000), Right(xuu6000), da, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.45/13.24 new_ltEs5(xuu3300, xuu3400, app(app(ty_Either, chf), chg)) -> new_ltEs6(xuu3300, xuu3400, chf, chg) 32.45/13.24 new_lt20(xuu33000, xuu34000, app(ty_Ratio, cef)) -> new_lt8(xuu33000, xuu34000, cef) 32.45/13.24 new_esEs19(xuu3110001, xuu6001, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs5(xuu3110001, xuu6001, gd, ge, gf) 32.45/13.24 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_@0, be) -> new_esEs9(xuu3110000, xuu6000) 32.45/13.24 new_esEs29(xuu311000, xuu600, ty_Bool) -> new_esEs13(xuu311000, xuu600) 32.45/13.24 new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, dbh), dca), dcb), chg) -> new_ltEs8(xuu33000, xuu34000, dbh, dca, dcb) 32.45/13.24 new_ltEs6(Right(xuu33000), Right(xuu34000), chf, ty_@0) -> new_ltEs18(xuu33000, xuu34000) 32.45/13.24 new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, bde), bdf)) -> new_esEs7(xuu3110000, xuu6000, bde, bdf) 32.45/13.24 new_mkBalBranch6MkBalBranch4(xuu61, xuu36, Branch(xuu640, xuu641, xuu642, xuu643, xuu644), True, h, ba) -> new_mkBalBranch6MkBalBranch010(xuu61, xuu36, xuu640, xuu641, xuu642, xuu643, xuu644, new_lt6(new_sizeFM(xuu643, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(xuu644, h, ba))), h, ba) 32.45/13.24 new_esEs25(xuu33000, xuu34000, app(app(app(ty_@3, bgb), bgc), bgd)) -> new_esEs5(xuu33000, xuu34000, bgb, bgc, bgd) 32.45/13.24 new_primMinusNat0(Succ(xuu28200), Zero) -> Pos(Succ(xuu28200)) 32.45/13.24 new_compare110(xuu33000, xuu34000, True) -> LT 32.45/13.24 new_lt9(xuu33001, xuu34001, app(app(ty_@2, cbd), cbe)) -> new_lt4(xuu33001, xuu34001, cbd, cbe) 32.45/13.24 new_ltEs5(xuu3300, xuu3400, ty_Ordering) -> new_ltEs12(xuu3300, xuu3400) 32.45/13.24 new_lt9(xuu33001, xuu34001, ty_Int) -> new_lt6(xuu33001, xuu34001) 32.45/13.24 new_esEs27(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) 32.45/13.24 new_esEs20(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.45/13.24 new_compare23(Just(xuu3300), Just(xuu3400), False, che) -> new_compare10(xuu3300, xuu3400, new_ltEs5(xuu3300, xuu3400, che), che) 32.45/13.24 new_lt20(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) 32.45/13.24 new_compare30(xuu33000, xuu34000, app(ty_Ratio, cfh)) -> new_compare15(xuu33000, xuu34000, cfh) 32.45/13.24 new_lt20(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) 32.45/13.24 new_primCmpInt(Pos(Succ(xuu3300)), Neg(xuu340)) -> GT 32.45/13.24 new_ltEs10(xuu3300, xuu3400) -> new_fsEs(new_compare7(xuu3300, xuu3400)) 32.45/13.24 new_compare24(xuu33000, xuu34000, False, bc, bd) -> new_compare11(xuu33000, xuu34000, new_ltEs6(xuu33000, xuu34000, bc, bd), bc, bd) 32.45/13.24 new_esEs20(xuu3110000, xuu6000, app(ty_Ratio, bac)) -> new_esEs15(xuu3110000, xuu6000, bac) 32.45/13.24 new_lt5(xuu33000, xuu34000, bc, bd) -> new_esEs8(new_compare8(xuu33000, xuu34000, bc, bd), LT) 32.45/13.24 new_esEs24(xuu33001, xuu34001, app(app(app(ty_@3, cag), cah), cba)) -> new_esEs5(xuu33001, xuu34001, cag, cah, cba) 32.45/13.24 new_esEs30(xuu22, xuu17, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs5(xuu22, xuu17, dae, daf, dag) 32.45/13.24 new_esEs26(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) 32.45/13.24 new_primPlusNat1(Succ(xuu28200), Succ(xuu9700)) -> Succ(Succ(new_primPlusNat1(xuu28200, xuu9700))) 32.45/13.24 new_lt9(xuu33001, xuu34001, ty_Char) -> new_lt7(xuu33001, xuu34001) 32.45/13.24 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Double) -> new_ltEs9(xuu33000, xuu34000) 32.45/13.24 new_lt18(xuu33000, xuu34000) -> new_esEs8(new_compare9(xuu33000, xuu34000), LT) 32.45/13.24 new_primCmpNat0(Zero, Succ(xuu3400)) -> LT 32.45/13.24 new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Maybe, dcd), chg) -> new_ltEs13(xuu33000, xuu34000, dcd) 32.45/13.24 new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Integer) -> new_compare7(new_sr0(xuu33000, xuu34001), new_sr0(xuu34000, xuu33001)) 32.45/13.24 new_esEs30(xuu22, xuu17, ty_Int) -> new_esEs12(xuu22, xuu17) 32.45/13.24 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Bool, be) -> new_esEs13(xuu3110000, xuu6000) 32.45/13.24 new_esEs18(xuu3110002, xuu6002, ty_Int) -> new_esEs12(xuu3110002, xuu6002) 32.45/13.24 new_sizeFM(EmptyFM, h, ba) -> Pos(Zero) 32.45/13.24 new_compare210(xuu33000, xuu34000, True) -> EQ 32.45/13.24 new_esEs24(xuu33001, xuu34001, ty_Int) -> new_esEs12(xuu33001, xuu34001) 32.45/13.24 new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) 32.45/13.24 new_lt9(xuu33001, xuu34001, app(ty_Ratio, cbf)) -> new_lt8(xuu33001, xuu34001, cbf) 32.45/13.24 new_esEs21(xuu3110001, xuu6001, app(app(app(ty_@3, bce), bcf), bcg)) -> new_esEs5(xuu3110001, xuu6001, bce, bcf, bcg) 32.45/13.24 new_primCmpNat0(Succ(xuu3300), Zero) -> GT 32.45/13.24 new_ltEs20(xuu33001, xuu34001, app(ty_Maybe, cda)) -> new_ltEs13(xuu33001, xuu34001, cda) 32.45/13.24 new_pePe(False, xuu165) -> xuu165 32.45/13.24 new_ltEs5(xuu3300, xuu3400, ty_Char) -> new_ltEs17(xuu3300, xuu3400) 32.45/13.24 new_esEs20(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.45/13.24 new_esEs23(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.45/13.24 new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.45/13.24 new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.45/13.24 new_mkBalBranch6MkBalBranch30(xuu600, xuu61, Branch(xuu280, xuu281, xuu282, xuu283, xuu284), xuu64, True, h, ba) -> new_mkBalBranch6MkBalBranch110(xuu600, xuu61, xuu280, xuu281, xuu282, xuu283, xuu284, xuu64, new_lt6(new_sizeFM(xuu284, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(xuu283, h, ba))), h, ba) 32.45/13.24 new_ltEs20(xuu33001, xuu34001, ty_Float) -> new_ltEs11(xuu33001, xuu34001) 32.45/13.24 new_ltEs12(GT, GT) -> True 32.45/13.24 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Ordering, be) -> new_esEs8(xuu3110000, xuu6000) 32.45/13.24 new_ltEs18(xuu3300, xuu3400) -> new_fsEs(new_compare32(xuu3300, xuu3400)) 32.45/13.24 new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Int) -> new_compare12(new_sr(xuu33000, xuu34001), new_sr(xuu34000, xuu33001)) 32.45/13.24 new_ltEs20(xuu33001, xuu34001, ty_Double) -> new_ltEs9(xuu33001, xuu34001) 32.45/13.24 new_ltEs19(xuu33002, xuu34002, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_ltEs8(xuu33002, xuu34002, bhe, bhf, bhg) 32.45/13.24 new_esEs29(xuu311000, xuu600, ty_Integer) -> new_esEs17(xuu311000, xuu600) 32.45/13.24 new_esEs21(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) 32.45/13.24 new_ltEs12(GT, EQ) -> False 32.45/13.24 new_esEs24(xuu33001, xuu34001, ty_@0) -> new_esEs9(xuu33001, xuu34001) 32.45/13.24 new_primMinusNat0(Succ(xuu28200), Succ(xuu9700)) -> new_primMinusNat0(xuu28200, xuu9700) 32.45/13.24 new_esEs21(xuu3110001, xuu6001, app(app(ty_Either, bch), bda)) -> new_esEs4(xuu3110001, xuu6001, bch, bda) 32.45/13.24 new_esEs18(xuu3110002, xuu6002, ty_Float) -> new_esEs11(xuu3110002, xuu6002) 32.45/13.24 new_lt10(xuu33000, xuu34000, app(ty_[], cbg)) -> new_lt16(xuu33000, xuu34000, cbg) 32.45/13.24 new_esEs26(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) 32.45/13.24 new_compare27(xuu33000, xuu34000, False, bgf, bgg) -> new_compare16(xuu33000, xuu34000, new_ltEs14(xuu33000, xuu34000, bgf, bgg), bgf, bgg) 32.45/13.24 new_compare7(Integer(xuu33000), Integer(xuu34000)) -> new_primCmpInt(xuu33000, xuu34000) 32.45/13.24 new_compare10(xuu132, xuu133, False, dbe) -> GT 32.45/13.24 new_esEs30(xuu22, xuu17, ty_Float) -> new_esEs11(xuu22, xuu17) 32.45/13.24 new_esEs8(LT, EQ) -> False 32.45/13.24 new_esEs8(EQ, LT) -> False 32.45/13.24 new_compare17(xuu33000, xuu34000, True) -> LT 32.45/13.24 new_compare11(xuu33000, xuu34000, False, bc, bd) -> GT 32.45/13.24 new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, bef)) -> new_esEs6(xuu3110000, xuu6000, bef) 32.45/13.24 new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False 32.45/13.24 new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False 32.45/13.24 new_addToFM_C22(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, daa, dab) -> new_addToFM_C15(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs8(new_compare23(Just(xuu22), Just(xuu17), new_esEs30(xuu22, xuu17, daa), daa), GT), daa, dab) 32.45/13.24 new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.45/13.24 new_esEs21(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) 32.45/13.24 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Ordering, chg) -> new_ltEs12(xuu33000, xuu34000) 32.45/13.24 new_mkBalBranch6MkBalBranch40(xuu600, xuu61, xuu28, EmptyFM, True, h, ba) -> error([]) 32.45/13.24 new_primCmpInt0(EmptyFM, xuu600, xuu61, xuu64, h, ba) -> new_primCmpInt(new_primPlusInt(Pos(Zero), new_mkBalBranch6Size_r(xuu600, xuu61, EmptyFM, xuu64, h, ba)), Pos(Succ(Succ(Zero)))) 32.45/13.24 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Integer) -> new_ltEs10(xuu33000, xuu34000) 32.45/13.24 new_compare30(xuu33000, xuu34000, app(ty_Maybe, cfe)) -> new_compare29(xuu33000, xuu34000, cfe) 32.45/13.24 new_ltEs5(xuu3300, xuu3400, app(ty_Maybe, baf)) -> new_ltEs13(xuu3300, xuu3400, baf) 32.45/13.24 new_mkBalBranch6Size_r(xuu600, xuu61, xuu28, xuu64, h, ba) -> new_sizeFM(xuu64, h, ba) 32.45/13.24 new_mkBalBranch6MkBalBranch01(xuu600, xuu61, xuu28, xuu640, xuu641, xuu642, EmptyFM, xuu644, False, h, ba) -> error([]) 32.45/13.24 new_esEs26(xuu33000, xuu34000, app(ty_[], ceb)) -> new_esEs16(xuu33000, xuu34000, ceb) 32.45/13.24 new_ltEs17(xuu3300, xuu3400) -> new_fsEs(new_compare13(xuu3300, xuu3400)) 32.45/13.24 new_ltEs15(xuu3300, xuu3400, chh) -> new_fsEs(new_compare15(xuu3300, xuu3400, chh)) 32.45/13.24 new_ltEs19(xuu33002, xuu34002, app(app(ty_@2, cab), cac)) -> new_ltEs14(xuu33002, xuu34002, cab, cac) 32.45/13.24 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 32.45/13.24 new_esEs25(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) 32.45/13.24 new_esEs23(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.45/13.24 new_primCmpInt(Neg(Zero), Pos(Succ(xuu3400))) -> LT 32.45/13.24 new_compare13(Char(xuu33000), Char(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) 32.45/13.24 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Int, be) -> new_esEs12(xuu3110000, xuu6000) 32.45/13.24 new_ltEs5(xuu3300, xuu3400, app(app(app(ty_@3, bgh), bha), bhb)) -> new_ltEs8(xuu3300, xuu3400, bgh, bha, bhb) 32.45/13.24 new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.45/13.24 new_ltEs20(xuu33001, xuu34001, ty_Char) -> new_ltEs17(xuu33001, xuu34001) 32.45/13.24 new_compare17(xuu33000, xuu34000, False) -> GT 32.45/13.24 new_lt9(xuu33001, xuu34001, ty_Integer) -> new_lt13(xuu33001, xuu34001) 32.45/13.24 new_primMulInt(Pos(xuu31100000), Pos(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) 32.45/13.24 new_compare30(xuu33000, xuu34000, ty_Float) -> new_compare18(xuu33000, xuu34000) 32.45/13.24 new_addToFM_C0(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Nothing, xuu31101, h, ba) -> new_addToFM_C14(xuu61, xuu62, xuu63, xuu64, xuu31101, new_esEs8(new_compare23(Nothing, Nothing, True, h), GT), h, ba) 32.45/13.24 new_ltEs5(xuu3300, xuu3400, ty_Float) -> new_ltEs11(xuu3300, xuu3400) 32.45/13.24 new_ltEs5(xuu3300, xuu3400, app(app(ty_@2, cca), ccb)) -> new_ltEs14(xuu3300, xuu3400, cca, ccb) 32.45/13.24 new_esEs23(xuu3110000, xuu6000, app(app(ty_Either, bfe), bff)) -> new_esEs4(xuu3110000, xuu6000, bfe, bff) 32.45/13.24 new_esEs18(xuu3110002, xuu6002, app(ty_[], fh)) -> new_esEs16(xuu3110002, xuu6002, fh) 32.45/13.24 new_ltEs6(Right(xuu33000), Right(xuu34000), chf, ty_Bool) -> new_ltEs16(xuu33000, xuu34000) 32.45/13.24 new_esEs25(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) 32.45/13.24 new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, cgh), cha)) -> new_esEs4(xuu3110000, xuu6000, cgh, cha) 32.45/13.24 new_primCompAux1(xuu33000, xuu34000, xuu176, bb) -> new_primCompAux0(xuu176, new_compare30(xuu33000, xuu34000, bb)) 32.45/13.24 new_lt9(xuu33001, xuu34001, ty_Double) -> new_lt12(xuu33001, xuu34001) 32.45/13.24 new_compare10(xuu132, xuu133, True, dbe) -> LT 32.45/13.24 new_esEs24(xuu33001, xuu34001, app(ty_Maybe, cbc)) -> new_esEs6(xuu33001, xuu34001, cbc) 32.45/13.24 new_mkBalBranch6MkBalBranch50(xuu61, xuu36, xuu64, True, h, ba) -> new_mkBranch(Zero, Nothing, xuu61, xuu36, xuu64, app(ty_Maybe, h), ba) 32.45/13.24 new_primMulNat0(Succ(xuu311000000), Zero) -> Zero 32.45/13.24 new_primMulNat0(Zero, Succ(xuu600100)) -> Zero 32.45/13.24 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) 32.45/13.24 new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, cge), cgf), cgg)) -> new_esEs5(xuu3110000, xuu6000, cge, cgf, cgg) 32.45/13.24 new_lt10(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) 32.45/13.24 new_ltEs6(Right(xuu33000), Right(xuu34000), chf, app(app(ty_Either, dch), dda)) -> new_ltEs6(xuu33000, xuu34000, dch, dda) 32.45/13.24 new_primPlusInt(Pos(xuu2820), Pos(xuu970)) -> Pos(new_primPlusNat1(xuu2820, xuu970)) 32.45/13.24 new_esEs23(xuu3110000, xuu6000, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_esEs5(xuu3110000, xuu6000, bfb, bfc, bfd) 32.45/13.24 new_addToFM_C16(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> Branch(Just(xuu311000), new_addListToFM0(xuu61, xuu31101, ba), xuu62, xuu63, xuu64) 32.45/13.24 new_addListToFM_CAdd(xuu6, @2(xuu31100, xuu31101), h, ba) -> new_addToFM_C0(xuu6, xuu31100, xuu31101, h, ba) 32.45/13.24 new_ltEs19(xuu33002, xuu34002, ty_Char) -> new_ltEs17(xuu33002, xuu34002) 32.45/13.24 new_lt17(xuu33000, xuu34000, cbh) -> new_esEs8(new_compare29(xuu33000, xuu34000, cbh), LT) 32.45/13.24 new_ltEs5(xuu3300, xuu3400, ty_Double) -> new_ltEs9(xuu3300, xuu3400) 32.45/13.24 new_lt20(xuu33000, xuu34000, app(app(app(ty_@3, cdg), cdh), cea)) -> new_lt11(xuu33000, xuu34000, cdg, cdh, cea) 32.45/13.24 new_esEs24(xuu33001, xuu34001, ty_Char) -> new_esEs10(xuu33001, xuu34001) 32.45/13.24 new_lt9(xuu33001, xuu34001, app(ty_Maybe, cbc)) -> new_lt17(xuu33001, xuu34001, cbc) 32.45/13.24 new_esEs18(xuu3110002, xuu6002, ty_Integer) -> new_esEs17(xuu3110002, xuu6002) 32.45/13.24 new_lt14(xuu33000, xuu34000) -> new_esEs8(new_compare18(xuu33000, xuu34000), LT) 32.45/13.24 new_ltEs5(xuu3300, xuu3400, ty_Bool) -> new_ltEs16(xuu3300, xuu3400) 32.45/13.24 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Integer, chg) -> new_ltEs10(xuu33000, xuu34000) 32.45/13.24 new_addToFM_C23(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, True, h, ba) -> new_mkBalBranch(xuu600, xuu61, new_addToFM_C0(xuu63, Nothing, xuu31101, h, ba), xuu64, h, ba) 32.45/13.24 new_esEs8(LT, LT) -> True 32.45/13.24 new_esEs29(xuu311000, xuu600, ty_Float) -> new_esEs11(xuu311000, xuu600) 32.45/13.24 new_addToFM_C15(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, daa, dab) -> new_mkBalBranch(xuu17, xuu18, xuu20, new_addToFM_C0(xuu21, Just(xuu22), xuu23, daa, dab), daa, dab) 32.45/13.24 new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, bed)) -> new_esEs15(xuu3110000, xuu6000, bed) 32.45/13.24 new_esEs26(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) 32.45/13.24 new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, bba), bbb), bbc)) -> new_ltEs8(xuu33000, xuu34000, bba, bbb, bbc) 32.45/13.24 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.45/13.24 new_primPlusNat1(Succ(xuu28200), Zero) -> Succ(xuu28200) 32.45/13.24 new_primPlusNat1(Zero, Succ(xuu9700)) -> Succ(xuu9700) 32.45/13.24 new_compare30(xuu33000, xuu34000, ty_Char) -> new_compare13(xuu33000, xuu34000) 32.45/13.24 new_compare23(Just(xuu3300), Nothing, False, che) -> GT 32.45/13.24 new_ltEs19(xuu33002, xuu34002, ty_Double) -> new_ltEs9(xuu33002, xuu34002) 32.45/13.24 new_esEs19(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) 32.45/13.24 new_lt10(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) 32.45/13.24 new_esEs4(Right(xuu3110000), Right(xuu6000), da, app(app(app(ty_@3, dd), de), df)) -> new_esEs5(xuu3110000, xuu6000, dd, de, df) 32.45/13.24 new_addToFM_C16(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) -> new_mkBalBranch0(xuu61, xuu63, new_addToFM_C0(xuu64, Just(xuu311000), xuu31101, h, ba), h, ba) 32.45/13.24 new_esEs13(True, True) -> True 32.45/13.24 new_esEs30(xuu22, xuu17, ty_Integer) -> new_esEs17(xuu22, xuu17) 32.45/13.24 new_ltEs20(xuu33001, xuu34001, app(app(ty_@2, cdb), cdc)) -> new_ltEs14(xuu33001, xuu34001, cdb, cdc) 32.45/13.24 new_mkBalBranch6MkBalBranch30(xuu600, xuu61, EmptyFM, xuu64, True, h, ba) -> error([]) 32.45/13.24 new_esEs23(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.45/13.24 new_esEs23(xuu3110000, xuu6000, app(ty_Ratio, bfg)) -> new_esEs15(xuu3110000, xuu6000, bfg) 32.45/13.24 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Char, be) -> new_esEs10(xuu3110000, xuu6000) 32.45/13.24 new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_[], cf), be) -> new_esEs16(xuu3110000, xuu6000, cf) 32.45/13.24 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.45/13.24 new_esEs16([], [], beg) -> True 32.45/13.24 new_ltEs19(xuu33002, xuu34002, ty_Float) -> new_ltEs11(xuu33002, xuu34002) 32.45/13.24 new_esEs25(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) 32.45/13.24 new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, chb)) -> new_esEs15(xuu3110000, xuu6000, chb) 32.45/13.24 new_primMulInt(Neg(xuu31100000), Neg(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) 32.45/13.24 new_primCmpInt1(EmptyFM, xuu61, xuu64, h, ba) -> new_primCmpInt(new_primPlusInt(Pos(Zero), new_mkBalBranch6Size_r0(xuu61, EmptyFM, xuu64, h, ba)), Pos(Succ(Succ(Zero)))) 32.45/13.24 new_primCmpInt(Pos(Zero), Pos(Succ(xuu3400))) -> new_primCmpNat0(Zero, Succ(xuu3400)) 32.45/13.24 new_esEs29(xuu311000, xuu600, ty_Double) -> new_esEs14(xuu311000, xuu600) 32.45/13.24 new_esEs25(xuu33000, xuu34000, app(app(ty_@2, bgf), bgg)) -> new_esEs7(xuu33000, xuu34000, bgf, bgg) 32.45/13.24 new_addListToFM0(xuu61, xuu31101, ba) -> xuu31101 32.45/13.24 new_ltEs20(xuu33001, xuu34001, ty_Bool) -> new_ltEs16(xuu33001, xuu34001) 32.45/13.24 new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, chd)) -> new_esEs6(xuu3110000, xuu6000, chd) 32.45/13.24 new_primCmpInt0(Branch(xuu280, xuu281, xuu282, xuu283, xuu284), xuu600, xuu61, xuu64, h, ba) -> new_primCmpInt(new_primPlusInt(xuu282, new_mkBalBranch6Size_r(xuu600, xuu61, Branch(xuu280, xuu281, xuu282, xuu283, xuu284), xuu64, h, ba)), Pos(Succ(Succ(Zero)))) 32.45/13.24 new_esEs6(Nothing, Just(xuu6000), cgb) -> False 32.45/13.24 new_esEs6(Just(xuu3110000), Nothing, cgb) -> False 32.45/13.24 new_esEs4(Right(xuu3110000), Right(xuu6000), da, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.45/13.24 new_esEs4(Right(xuu3110000), Right(xuu6000), da, app(ty_Maybe, ec)) -> new_esEs6(xuu3110000, xuu6000, ec) 32.45/13.24 new_esEs14(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 32.45/13.24 new_esEs6(Nothing, Nothing, cgb) -> True 32.45/13.24 new_mkBalBranch6MkBalBranch3(xuu61, xuu36, xuu64, False, h, ba) -> new_mkBranch(Succ(Zero), Nothing, xuu61, xuu36, xuu64, app(ty_Maybe, h), ba) 32.45/13.24 new_esEs23(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.45/13.24 new_compare26(xuu33000, xuu34000, True, bgb, bgc, bgd) -> EQ 32.45/13.24 new_esEs4(Right(xuu3110000), Right(xuu6000), da, app(ty_Ratio, ea)) -> new_esEs15(xuu3110000, xuu6000, ea) 32.45/13.24 new_compare26(xuu33000, xuu34000, False, bgb, bgc, bgd) -> new_compare14(xuu33000, xuu34000, new_ltEs8(xuu33000, xuu34000, bgb, bgc, bgd), bgb, bgc, bgd) 32.45/13.24 new_mkBalBranch6MkBalBranch11(xuu61, xuu360, xuu361, xuu362, xuu363, xuu364, xuu64, True, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), xuu360, xuu361, xuu363, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), Nothing, xuu61, xuu364, xuu64, app(ty_Maybe, h), ba), app(ty_Maybe, h), ba) 32.45/13.24 new_ltEs19(xuu33002, xuu34002, ty_Bool) -> new_ltEs16(xuu33002, xuu34002) 32.45/13.24 new_lt10(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) 32.45/13.24 new_primMulInt(Pos(xuu31100000), Neg(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) 32.45/13.24 new_primMulInt(Neg(xuu31100000), Pos(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) 32.45/13.24 new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.45/13.24 new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.45/13.24 new_compare30(xuu33000, xuu34000, app(app(ty_@2, cff), cfg)) -> new_compare6(xuu33000, xuu34000, cff, cfg) 32.45/13.24 new_esEs26(xuu33000, xuu34000, app(ty_Ratio, cef)) -> new_esEs15(xuu33000, xuu34000, cef) 32.45/13.24 new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, ce), be) -> new_esEs15(xuu3110000, xuu6000, ce) 32.45/13.24 new_esEs4(Right(xuu3110000), Right(xuu6000), da, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.45/13.24 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Int) -> new_ltEs7(xuu33000, xuu34000) 32.45/13.24 new_ltEs19(xuu33002, xuu34002, ty_Ordering) -> new_ltEs12(xuu33002, xuu34002) 32.45/13.24 new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, bdg), bdh), bea)) -> new_esEs5(xuu3110000, xuu6000, bdg, bdh, bea) 32.45/13.24 new_addToFM_C23(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, False, h, ba) -> new_addToFM_C13(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, new_esEs8(new_compare23(Nothing, Just(xuu600), False, h), GT), h, ba) 32.45/13.24 new_esEs4(Right(xuu3110000), Right(xuu6000), da, app(app(ty_@2, db), dc)) -> new_esEs7(xuu3110000, xuu6000, db, dc) 32.45/13.24 new_primPlusInt(Neg(xuu2820), Neg(xuu970)) -> Neg(new_primPlusNat1(xuu2820, xuu970)) 32.45/13.24 new_esEs21(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) 32.45/13.24 new_sr0(Integer(xuu330000), Integer(xuu340010)) -> Integer(new_primMulInt(xuu330000, xuu340010)) 32.45/13.24 new_esEs24(xuu33001, xuu34001, ty_Double) -> new_esEs14(xuu33001, xuu34001) 32.45/13.24 new_mkBalBranch0(xuu61, xuu36, xuu64, h, ba) -> new_mkBalBranch6MkBalBranch50(xuu61, xuu36, xuu64, new_esEs8(new_primCmpInt1(xuu36, xuu61, xuu64, h, ba), LT), h, ba) 32.45/13.24 new_esEs25(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) 32.45/13.24 new_esEs13(False, False) -> True 32.45/13.24 new_esEs30(xuu22, xuu17, ty_Double) -> new_esEs14(xuu22, xuu17) 32.45/13.24 new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.45/13.24 new_compare31(xuu33000, xuu34000) -> new_compare210(xuu33000, xuu34000, new_esEs8(xuu33000, xuu34000)) 32.45/13.24 new_lt8(xuu33000, xuu34000, bge) -> new_esEs8(new_compare15(xuu33000, xuu34000, bge), LT) 32.45/13.24 new_mkBalBranch6MkBalBranch010(xuu61, xuu36, xuu640, xuu641, xuu642, xuu643, xuu644, True, h, ba) -> new_mkBranch(Succ(Succ(Zero)), xuu640, xuu641, new_mkBranch(Succ(Succ(Succ(Zero))), Nothing, xuu61, xuu36, xuu643, app(ty_Maybe, h), ba), xuu644, app(ty_Maybe, h), ba) 32.45/13.24 new_esEs18(xuu3110002, xuu6002, ty_Double) -> new_esEs14(xuu3110002, xuu6002) 32.45/13.24 new_compare0([], :(xuu34000, xuu34001), bb) -> LT 32.45/13.24 new_asAs(True, xuu139) -> xuu139 32.45/13.24 new_mkBalBranch6MkBalBranch01(xuu600, xuu61, xuu28, xuu640, xuu641, xuu642, Branch(xuu6430, xuu6431, xuu6432, xuu6433, xuu6434), xuu644, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), xuu6430, xuu6431, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Zero))))), Just(xuu600), xuu61, xuu28, xuu6433, app(ty_Maybe, h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), xuu640, xuu641, xuu6434, xuu644, app(ty_Maybe, h), ba), app(ty_Maybe, h), ba) 32.45/13.24 new_esEs19(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) 32.45/13.24 new_esEs21(xuu3110001, xuu6001, app(ty_Maybe, bdd)) -> new_esEs6(xuu3110001, xuu6001, bdd) 32.45/13.24 new_lt10(xuu33000, xuu34000, app(app(app(ty_@3, bgb), bgc), bgd)) -> new_lt11(xuu33000, xuu34000, bgb, bgc, bgd) 32.45/13.24 new_addToFM_C0(Branch(Just(xuu600), xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C22(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Just(xuu600), new_esEs29(xuu311000, xuu600, h), h), LT), h, ba) 32.45/13.24 new_lt16(xuu33000, xuu34000, cbg) -> new_esEs8(new_compare0(xuu33000, xuu34000, cbg), LT) 32.45/13.24 new_esEs4(Right(xuu3110000), Right(xuu6000), da, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.45/13.24 new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, cc), cd), be) -> new_esEs4(xuu3110000, xuu6000, cc, cd) 32.45/13.24 new_esEs21(xuu3110001, xuu6001, app(ty_Ratio, bdb)) -> new_esEs15(xuu3110001, xuu6001, bdb) 32.45/13.24 new_esEs26(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) 32.45/13.24 new_ltEs16(True, False) -> False 32.45/13.24 new_primMinusNat0(Zero, Zero) -> Pos(Zero) 32.45/13.24 new_compare16(xuu33000, xuu34000, True, bgf, bgg) -> LT 32.45/13.24 new_esEs29(xuu311000, xuu600, app(ty_[], beg)) -> new_esEs16(xuu311000, xuu600, beg) 32.45/13.24 new_lt9(xuu33001, xuu34001, app(app(ty_Either, cae), caf)) -> new_lt5(xuu33001, xuu34001, cae, caf) 32.45/13.24 new_primPlusInt(Pos(xuu2820), Neg(xuu970)) -> new_primMinusNat0(xuu2820, xuu970) 32.45/13.24 new_primPlusInt(Neg(xuu2820), Pos(xuu970)) -> new_primMinusNat0(xuu970, xuu2820) 32.45/13.24 new_ltEs5(xuu3300, xuu3400, ty_@0) -> new_ltEs18(xuu3300, xuu3400) 32.45/13.24 new_mkBalBranch6MkBalBranch3(xuu61, EmptyFM, xuu64, True, h, ba) -> error([]) 32.45/13.24 new_esEs18(xuu3110002, xuu6002, app(app(ty_@2, eg), eh)) -> new_esEs7(xuu3110002, xuu6002, eg, eh) 32.45/13.24 new_mkBalBranch6MkBalBranch5(xuu600, xuu61, xuu28, xuu64, False, h, ba) -> new_mkBalBranch6MkBalBranch40(xuu600, xuu61, xuu28, xuu64, new_gt(new_mkBalBranch6Size_r(xuu600, xuu61, xuu28, xuu64, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_l(xuu600, xuu61, xuu28, xuu64, h, ba))), h, ba) 32.45/13.24 new_compare24(xuu33000, xuu34000, True, bc, bd) -> EQ 32.45/13.24 new_mkBalBranch6MkBalBranch40(xuu600, xuu61, xuu28, xuu64, False, h, ba) -> new_mkBalBranch6MkBalBranch30(xuu600, xuu61, xuu28, xuu64, new_gt(new_mkBalBranch6Size_l(xuu600, xuu61, xuu28, xuu64, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_r(xuu600, xuu61, xuu28, xuu64, h, ba))), h, ba) 32.45/13.24 new_esEs24(xuu33001, xuu34001, app(app(ty_@2, cbd), cbe)) -> new_esEs7(xuu33001, xuu34001, cbd, cbe) 32.45/13.24 new_esEs30(xuu22, xuu17, app(app(ty_@2, dac), dad)) -> new_esEs7(xuu22, xuu17, dac, dad) 32.45/13.24 new_primCmpInt(Pos(Succ(xuu3300)), Pos(xuu340)) -> new_primCmpNat0(Succ(xuu3300), xuu340) 32.45/13.24 new_lt9(xuu33001, xuu34001, ty_@0) -> new_lt19(xuu33001, xuu34001) 32.45/13.24 new_compare110(xuu33000, xuu34000, False) -> GT 32.45/13.24 new_compare9(xuu33000, xuu34000) -> new_compare25(xuu33000, xuu34000, new_esEs13(xuu33000, xuu34000)) 32.45/13.24 new_esEs25(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) 32.45/13.24 new_lt20(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) 32.45/13.24 new_esEs9(@0, @0) -> True 32.45/13.24 new_compare0([], [], bb) -> EQ 32.45/13.24 new_esEs19(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) 32.45/13.24 new_esEs20(xuu3110000, xuu6000, app(app(ty_Either, baa), bab)) -> new_esEs4(xuu3110000, xuu6000, baa, bab) 32.45/13.24 new_sr(xuu3110000, xuu6001) -> new_primMulInt(xuu3110000, xuu6001) 32.45/13.24 new_esEs19(xuu3110001, xuu6001, app(app(ty_Either, gg), gh)) -> new_esEs4(xuu3110001, xuu6001, gg, gh) 32.45/13.24 new_mkBalBranch6MkBalBranch110(xuu600, xuu61, xuu280, xuu281, xuu282, xuu283, Branch(xuu2840, xuu2841, xuu2842, xuu2843, xuu2844), xuu64, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), xuu2840, xuu2841, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), xuu280, xuu281, xuu283, xuu2843, app(ty_Maybe, h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), Just(xuu600), xuu61, xuu2844, xuu64, app(ty_Maybe, h), ba), app(ty_Maybe, h), ba) 32.45/13.24 new_compare30(xuu33000, xuu34000, ty_@0) -> new_compare32(xuu33000, xuu34000) 32.45/13.24 new_ltEs20(xuu33001, xuu34001, ty_Ordering) -> new_ltEs12(xuu33001, xuu34001) 32.45/13.24 new_mkBalBranch6MkBalBranch4(xuu61, xuu36, EmptyFM, True, h, ba) -> error([]) 32.45/13.24 new_primMulNat0(Zero, Zero) -> Zero 32.45/13.24 new_lt9(xuu33001, xuu34001, ty_Ordering) -> new_lt15(xuu33001, xuu34001) 32.45/13.24 new_ltEs13(Nothing, Nothing, baf) -> True 32.45/13.24 new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_@2, bbf), bbg)) -> new_ltEs14(xuu33000, xuu34000, bbf, bbg) 32.45/13.24 new_addToFM_C13(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, True, h, ba) -> new_mkBalBranch(xuu600, xuu61, xuu63, new_addToFM_C0(xuu64, Nothing, xuu31101, h, ba), h, ba) 32.45/13.24 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.45/13.24 new_ltEs13(Just(xuu33000), Nothing, baf) -> False 32.45/13.24 new_lt20(xuu33000, xuu34000, app(ty_[], ceb)) -> new_lt16(xuu33000, xuu34000, ceb) 32.45/13.24 new_esEs24(xuu33001, xuu34001, app(ty_[], cbb)) -> new_esEs16(xuu33001, xuu34001, cbb) 32.45/13.24 new_esEs30(xuu22, xuu17, app(ty_[], dbc)) -> new_esEs16(xuu22, xuu17, dbc) 32.45/13.24 new_addToFM_C0(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C24(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Nothing, False, h), LT), h, ba) 32.45/13.24 new_esEs20(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.45/13.24 new_compare14(xuu33000, xuu34000, False, bgb, bgc, bgd) -> GT 32.45/13.24 new_esEs23(xuu3110000, xuu6000, app(app(ty_@2, beh), bfa)) -> new_esEs7(xuu3110000, xuu6000, beh, bfa) 32.45/13.24 new_mkBalBranch6MkBalBranch3(xuu61, Branch(xuu360, xuu361, xuu362, xuu363, xuu364), xuu64, True, h, ba) -> new_mkBalBranch6MkBalBranch11(xuu61, xuu360, xuu361, xuu362, xuu363, xuu364, xuu64, new_lt6(new_sizeFM(xuu364, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(xuu363, h, ba))), h, ba) 32.45/13.24 new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.45/13.24 new_lt20(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) 32.45/13.24 new_esEs25(xuu33000, xuu34000, app(app(ty_Either, bc), bd)) -> new_esEs4(xuu33000, xuu34000, bc, bd) 32.45/13.24 new_ltEs19(xuu33002, xuu34002, app(ty_Maybe, caa)) -> new_ltEs13(xuu33002, xuu34002, caa) 32.45/13.24 new_mkBalBranch6MkBalBranch010(xuu61, xuu36, xuu640, xuu641, xuu642, EmptyFM, xuu644, False, h, ba) -> error([]) 32.45/13.24 new_esEs19(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) 32.45/13.24 new_esEs21(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) 32.45/13.24 new_ltEs20(xuu33001, xuu34001, app(app(app(ty_@3, cce), ccf), ccg)) -> new_ltEs8(xuu33001, xuu34001, cce, ccf, ccg) 32.45/13.24 new_esEs26(xuu33000, xuu34000, app(ty_Maybe, cec)) -> new_esEs6(xuu33000, xuu34000, cec) 32.45/13.24 new_lt11(xuu33000, xuu34000, bgb, bgc, bgd) -> new_esEs8(new_compare28(xuu33000, xuu34000, bgb, bgc, bgd), LT) 32.45/13.24 new_ltEs5(xuu3300, xuu3400, ty_Integer) -> new_ltEs10(xuu3300, xuu3400) 32.45/13.24 new_esEs4(Right(xuu3110000), Right(xuu6000), da, app(app(ty_Either, dg), dh)) -> new_esEs4(xuu3110000, xuu6000, dg, dh) 32.45/13.24 new_compare30(xuu33000, xuu34000, ty_Double) -> new_compare19(xuu33000, xuu34000) 32.45/13.24 new_compare32(@0, @0) -> EQ 32.45/13.24 new_ltEs12(GT, LT) -> False 32.45/13.24 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Bool) -> new_ltEs16(xuu33000, xuu34000) 32.45/13.24 new_primCompAux0(xuu182, EQ) -> xuu182 32.45/13.24 new_esEs26(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) 32.45/13.24 new_esEs20(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.45/13.24 new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, cgc), cgd)) -> new_esEs7(xuu3110000, xuu6000, cgc, cgd) 32.45/13.24 new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.45/13.24 new_esEs29(xuu311000, xuu600, app(app(ty_Either, da), be)) -> new_esEs4(xuu311000, xuu600, da, be) 32.45/13.24 new_esEs7(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bca, bcb) -> new_asAs(new_esEs22(xuu3110000, xuu6000, bca), new_esEs21(xuu3110001, xuu6001, bcb)) 32.45/13.24 new_esEs30(xuu22, xuu17, ty_@0) -> new_esEs9(xuu22, xuu17) 32.45/13.24 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False 32.45/13.24 new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False 32.45/13.24 new_esEs25(xuu33000, xuu34000, app(ty_Maybe, cbh)) -> new_esEs6(xuu33000, xuu34000, cbh) 32.45/13.24 new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, bf), bg), be) -> new_esEs7(xuu3110000, xuu6000, bf, bg) 32.45/13.24 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 32.45/13.24 new_esEs13(False, True) -> False 32.45/13.24 new_esEs13(True, False) -> False 32.45/13.24 new_esEs20(xuu3110000, xuu6000, app(ty_[], bad)) -> new_esEs16(xuu3110000, xuu6000, bad) 32.45/13.24 new_ltEs20(xuu33001, xuu34001, app(app(ty_Either, ccc), ccd)) -> new_ltEs6(xuu33001, xuu34001, ccc, ccd) 32.45/13.24 new_esEs26(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) 32.45/13.24 new_mkBalBranch6MkBalBranch110(xuu600, xuu61, xuu280, xuu281, xuu282, xuu283, EmptyFM, xuu64, False, h, ba) -> error([]) 32.45/13.24 new_esEs20(xuu3110000, xuu6000, app(ty_Maybe, bae)) -> new_esEs6(xuu3110000, xuu6000, bae) 32.45/13.24 new_esEs4(Right(xuu3110000), Right(xuu6000), da, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.45/13.24 new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False 32.45/13.24 new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False 32.45/13.24 new_esEs26(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) 32.45/13.24 new_esEs19(xuu3110001, xuu6001, app(ty_Maybe, hc)) -> new_esEs6(xuu3110001, xuu6001, hc) 32.45/13.24 new_esEs25(xuu33000, xuu34000, app(ty_Ratio, bge)) -> new_esEs15(xuu33000, xuu34000, bge) 32.45/13.24 new_compare30(xuu33000, xuu34000, app(ty_[], cfd)) -> new_compare0(xuu33000, xuu34000, cfd) 32.45/13.24 new_ltEs6(Right(xuu33000), Right(xuu34000), chf, ty_Int) -> new_ltEs7(xuu33000, xuu34000) 32.45/13.24 new_lt9(xuu33001, xuu34001, ty_Float) -> new_lt14(xuu33001, xuu34001) 32.45/13.24 new_primCmpInt(Neg(Zero), Neg(Succ(xuu3400))) -> new_primCmpNat0(Succ(xuu3400), Zero) 32.45/13.24 new_esEs16(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), beg) -> new_asAs(new_esEs23(xuu3110000, xuu6000, beg), new_esEs16(xuu3110001, xuu6001, beg)) 32.45/13.24 new_compare29(xuu33000, xuu34000, cbh) -> new_compare23(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, cbh), cbh) 32.45/13.24 new_compare23(Nothing, Just(xuu3400), False, che) -> LT 32.45/13.24 new_esEs21(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) 32.45/13.24 new_esEs25(xuu33000, xuu34000, app(ty_[], cbg)) -> new_esEs16(xuu33000, xuu34000, cbg) 32.45/13.24 new_esEs30(xuu22, xuu17, app(app(ty_Either, dah), dba)) -> new_esEs4(xuu22, xuu17, dah, dba) 32.45/13.24 new_esEs29(xuu311000, xuu600, ty_@0) -> new_esEs9(xuu311000, xuu600) 32.45/13.24 new_esEs19(xuu3110001, xuu6001, app(ty_[], hb)) -> new_esEs16(xuu3110001, xuu6001, hb) 32.45/13.24 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_@0, chg) -> new_ltEs18(xuu33000, xuu34000) 32.45/13.24 new_esEs24(xuu33001, xuu34001, app(app(ty_Either, cae), caf)) -> new_esEs4(xuu33001, xuu34001, cae, caf) 32.45/13.24 new_ltEs19(xuu33002, xuu34002, app(app(ty_Either, bhc), bhd)) -> new_ltEs6(xuu33002, xuu34002, bhc, bhd) 32.45/13.24 new_ltEs12(EQ, GT) -> True 32.45/13.24 new_esEs19(xuu3110001, xuu6001, app(ty_Ratio, ha)) -> new_esEs15(xuu3110001, xuu6001, ha) 32.45/13.24 new_mkBalBranch6Size_l(xuu600, xuu61, xuu28, xuu64, h, ba) -> new_sizeFM(xuu28, h, ba) 32.45/13.24 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 32.45/13.24 new_esEs18(xuu3110002, xuu6002, app(app(ty_Either, fd), ff)) -> new_esEs4(xuu3110002, xuu6002, fd, ff) 32.45/13.24 new_lt20(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) 32.45/13.24 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.45/13.24 new_lt10(xuu33000, xuu34000, app(app(ty_Either, bc), bd)) -> new_lt5(xuu33000, xuu34000, bc, bd) 32.45/13.24 new_ltEs12(EQ, EQ) -> True 32.45/13.24 new_esEs30(xuu22, xuu17, app(ty_Maybe, dbd)) -> new_esEs6(xuu22, xuu17, dbd) 32.45/13.24 new_sizeFM0(Branch(xuu2120, xuu2121, xuu2122, xuu2123, xuu2124), deb, dec) -> xuu2122 32.45/13.24 new_esEs24(xuu33001, xuu34001, ty_Float) -> new_esEs11(xuu33001, xuu34001) 32.45/13.24 new_compare30(xuu33000, xuu34000, ty_Int) -> new_compare12(xuu33000, xuu34000) 32.45/13.24 new_addToFM_C24(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C16(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Nothing, False, h), GT), h, ba) 32.45/13.24 new_esEs23(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.45/13.24 new_esEs12(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) 32.45/13.24 new_sizeFM(Branch(xuu640, xuu641, xuu642, xuu643, xuu644), h, ba) -> xuu642 32.45/13.24 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Double, be) -> new_esEs14(xuu3110000, xuu6000) 32.45/13.24 new_esEs20(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.45/13.24 new_compare30(xuu33000, xuu34000, ty_Integer) -> new_compare7(xuu33000, xuu34000) 32.45/13.24 new_esEs18(xuu3110002, xuu6002, ty_@0) -> new_esEs9(xuu3110002, xuu6002) 32.45/13.24 new_esEs19(xuu3110001, xuu6001, app(app(ty_@2, gb), gc)) -> new_esEs7(xuu3110001, xuu6001, gb, gc) 32.45/13.24 new_compare23(Nothing, Nothing, False, che) -> LT 32.45/13.24 new_addToFM_C0(Branch(Just(xuu600), xuu61, xuu62, xuu63, xuu64), Nothing, xuu31101, h, ba) -> new_addToFM_C23(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, new_esEs8(new_compare23(Nothing, Just(xuu600), False, h), LT), h, ba) 32.45/13.24 new_esEs4(Right(xuu3110000), Right(xuu6000), da, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.45/13.24 new_primPlusNat0(xuu107, xuu600100) -> new_primPlusNat1(xuu107, Succ(xuu600100)) 32.45/13.24 new_esEs4(Right(xuu3110000), Right(xuu6000), da, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.45/13.24 new_ltEs6(Right(xuu33000), Left(xuu34000), chf, chg) -> False 32.45/13.24 new_not(False) -> True 32.45/13.24 new_esEs21(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) 32.45/13.24 new_esEs21(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) 32.45/13.24 new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_@2, dce), dcf), chg) -> new_ltEs14(xuu33000, xuu34000, dce, dcf) 32.45/13.24 new_ltEs6(Right(xuu33000), Right(xuu34000), chf, app(ty_Maybe, ddf)) -> new_ltEs13(xuu33000, xuu34000, ddf) 32.45/13.24 new_ltEs5(xuu3300, xuu3400, ty_Int) -> new_ltEs7(xuu3300, xuu3400) 32.45/13.24 new_compare28(xuu33000, xuu34000, bgb, bgc, bgd) -> new_compare26(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, bgb, bgc, bgd), bgb, bgc, bgd) 32.45/13.24 new_mkBalBranch6MkBalBranch11(xuu61, xuu360, xuu361, xuu362, xuu363, EmptyFM, xuu64, False, h, ba) -> error([]) 32.45/13.24 new_ltEs8(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), bgh, bha, bhb) -> new_pePe(new_lt10(xuu33000, xuu34000, bgh), new_asAs(new_esEs25(xuu33000, xuu34000, bgh), new_pePe(new_lt9(xuu33001, xuu34001, bha), new_asAs(new_esEs24(xuu33001, xuu34001, bha), new_ltEs19(xuu33002, xuu34002, bhb))))) 32.45/13.24 new_compare30(xuu33000, xuu34000, ty_Bool) -> new_compare9(xuu33000, xuu34000) 32.45/13.24 new_compare0(:(xuu33000, xuu33001), [], bb) -> GT 32.45/13.24 new_esEs8(LT, GT) -> False 32.45/13.24 new_esEs8(GT, LT) -> False 32.45/13.24 new_mkBranch(xuu208, xuu209, xuu210, xuu211, xuu212, deb, dec) -> Branch(xuu209, xuu210, new_primPlusInt(new_primPlusInt(Pos(Succ(Zero)), new_sizeFM0(xuu211, deb, dec)), new_sizeFM0(xuu212, deb, dec)), xuu211, xuu212) 32.45/13.24 new_mkBalBranch6Size_r0(xuu61, xuu36, xuu64, h, ba) -> new_sizeFM(xuu64, h, ba) 32.45/13.24 new_esEs29(xuu311000, xuu600, app(ty_Ratio, cga)) -> new_esEs15(xuu311000, xuu600, cga) 32.45/13.24 new_esEs19(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) 32.45/13.24 new_esEs25(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) 32.45/13.24 new_compare25(xuu33000, xuu34000, True) -> EQ 32.45/13.24 new_compare27(xuu33000, xuu34000, True, bgf, bgg) -> EQ 32.45/13.24 new_primCmpInt1(Branch(xuu360, xuu361, xuu362, xuu363, xuu364), xuu61, xuu64, h, ba) -> new_primCmpInt(new_primPlusInt(xuu362, new_mkBalBranch6Size_r0(xuu61, Branch(xuu360, xuu361, xuu362, xuu363, xuu364), xuu64, h, ba)), Pos(Succ(Succ(Zero)))) 32.45/13.24 new_esEs29(xuu311000, xuu600, app(app(ty_@2, bca), bcb)) -> new_esEs7(xuu311000, xuu600, bca, bcb) 32.45/13.24 new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.45/13.24 new_esEs18(xuu3110002, xuu6002, app(ty_Maybe, ga)) -> new_esEs6(xuu3110002, xuu6002, ga) 32.45/13.24 new_ltEs16(False, False) -> True 32.45/13.24 new_compare11(xuu33000, xuu34000, True, bc, bd) -> LT 32.45/13.24 new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Ratio, bbh)) -> new_ltEs15(xuu33000, xuu34000, bbh) 32.45/13.24 new_ltEs19(xuu33002, xuu34002, ty_Int) -> new_ltEs7(xuu33002, xuu34002) 32.45/13.24 new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.45/13.24 new_esEs29(xuu311000, xuu600, app(ty_Maybe, cgb)) -> new_esEs6(xuu311000, xuu600, cgb) 32.45/13.24 new_lt10(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) 32.45/13.24 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 32.45/13.24 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 32.45/13.24 new_primPlusNat1(Zero, Zero) -> Zero 32.45/13.24 new_lt20(xuu33000, xuu34000, app(app(ty_@2, ced), cee)) -> new_lt4(xuu33000, xuu34000, ced, cee) 32.45/13.24 new_lt9(xuu33001, xuu34001, app(app(app(ty_@3, cag), cah), cba)) -> new_lt11(xuu33001, xuu34001, cag, cah, cba) 32.45/13.24 new_ltEs11(xuu3300, xuu3400) -> new_fsEs(new_compare18(xuu3300, xuu3400)) 32.45/13.24 new_lt19(xuu33000, xuu34000) -> new_esEs8(new_compare32(xuu33000, xuu34000), LT) 32.45/13.24 new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.45/13.24 new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.45/13.24 new_ltEs20(xuu33001, xuu34001, ty_Int) -> new_ltEs7(xuu33001, xuu34001) 32.45/13.24 new_lt20(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) 32.45/13.24 new_esEs28(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.45/13.24 new_lt10(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) 32.45/13.24 new_esEs21(xuu3110001, xuu6001, app(ty_[], bdc)) -> new_esEs16(xuu3110001, xuu6001, bdc) 32.45/13.24 new_ltEs16(True, True) -> True 32.45/13.24 new_lt13(xuu33000, xuu34000) -> new_esEs8(new_compare7(xuu33000, xuu34000), LT) 32.45/13.24 new_esEs20(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.45/13.24 new_esEs26(xuu33000, xuu34000, app(app(ty_Either, cde), cdf)) -> new_esEs4(xuu33000, xuu34000, cde, cdf) 32.45/13.24 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Bool, chg) -> new_ltEs16(xuu33000, xuu34000) 32.45/13.24 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 32.45/13.24 new_mkBalBranch6MkBalBranch110(xuu600, xuu61, xuu280, xuu281, xuu282, xuu283, xuu284, xuu64, True, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), xuu280, xuu281, xuu283, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), Just(xuu600), xuu61, xuu284, xuu64, app(ty_Maybe, h), ba), app(ty_Maybe, h), ba) 32.45/13.24 new_esEs4(Right(xuu3110000), Right(xuu6000), da, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.45/13.24 new_ltEs5(xuu3300, xuu3400, app(ty_Ratio, chh)) -> new_ltEs15(xuu3300, xuu3400, chh) 32.45/13.24 new_esEs25(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) 32.45/13.24 new_mkBalBranch6MkBalBranch40(xuu600, xuu61, xuu28, Branch(xuu640, xuu641, xuu642, xuu643, xuu644), True, h, ba) -> new_mkBalBranch6MkBalBranch01(xuu600, xuu61, xuu28, xuu640, xuu641, xuu642, xuu643, xuu644, new_lt6(new_sizeFM(xuu643, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(xuu644, h, ba))), h, ba) 32.45/13.24 new_addToFM_C15(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, daa, dab) -> Branch(Just(xuu22), new_addListToFM0(xuu18, xuu23, dab), xuu19, xuu20, xuu21) 32.45/13.24 new_primMulNat0(Succ(xuu311000000), Succ(xuu600100)) -> new_primPlusNat0(new_primMulNat0(xuu311000000, Succ(xuu600100)), xuu600100) 32.45/13.24 new_mkBalBranch6MkBalBranch01(xuu600, xuu61, xuu28, xuu640, xuu641, xuu642, xuu643, xuu644, True, h, ba) -> new_mkBranch(Succ(Succ(Zero)), xuu640, xuu641, new_mkBranch(Succ(Succ(Succ(Zero))), Just(xuu600), xuu61, xuu28, xuu643, app(ty_Maybe, h), ba), xuu644, app(ty_Maybe, h), ba) 32.45/13.24 new_ltEs12(EQ, LT) -> False 32.45/13.24 new_ltEs5(xuu3300, xuu3400, app(ty_[], bb)) -> new_ltEs4(xuu3300, xuu3400, bb) 32.45/13.24 new_lt6(xuu330, xuu340) -> new_esEs8(new_compare12(xuu330, xuu340), LT) 32.45/13.24 new_lt7(xuu33000, xuu34000) -> new_esEs8(new_compare13(xuu33000, xuu34000), LT) 32.45/13.24 new_primCmpNat0(Succ(xuu3300), Succ(xuu3400)) -> new_primCmpNat0(xuu3300, xuu3400) 32.45/13.24 new_ltEs19(xuu33002, xuu34002, app(ty_Ratio, cad)) -> new_ltEs15(xuu33002, xuu34002, cad) 32.45/13.24 new_esEs26(xuu33000, xuu34000, app(app(app(ty_@3, cdg), cdh), cea)) -> new_esEs5(xuu33000, xuu34000, cdg, cdh, cea) 32.45/13.24 new_mkBalBranch6MkBalBranch50(xuu61, xuu36, xuu64, False, h, ba) -> new_mkBalBranch6MkBalBranch4(xuu61, xuu36, xuu64, new_gt(new_mkBalBranch6Size_r0(xuu61, xuu36, xuu64, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_l0(xuu61, xuu36, xuu64, h, ba))), h, ba) 32.45/13.24 new_esEs30(xuu22, xuu17, ty_Char) -> new_esEs10(xuu22, xuu17) 32.45/13.24 new_esEs21(xuu3110001, xuu6001, app(app(ty_@2, bcc), bcd)) -> new_esEs7(xuu3110001, xuu6001, bcc, bcd) 32.45/13.24 new_esEs26(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) 32.45/13.24 new_esEs18(xuu3110002, xuu6002, ty_Char) -> new_esEs10(xuu3110002, xuu6002) 32.45/13.24 new_esEs24(xuu33001, xuu34001, ty_Integer) -> new_esEs17(xuu33001, xuu34001) 32.45/13.24 new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_[], chc)) -> new_esEs16(xuu3110000, xuu6000, chc) 32.45/13.24 new_addToFM_C0(EmptyFM, xuu31100, xuu31101, h, ba) -> Branch(xuu31100, xuu31101, Pos(Succ(Zero)), new_emptyFM(h, ba), new_emptyFM(h, ba)) 32.45/13.24 new_primMinusNat0(Zero, Succ(xuu9700)) -> Neg(Succ(xuu9700)) 32.45/13.24 new_compare12(xuu33, xuu34) -> new_primCmpInt(xuu33, xuu34) 32.45/13.24 new_ltEs6(Right(xuu33000), Right(xuu34000), chf, app(app(app(ty_@3, ddb), ddc), ddd)) -> new_ltEs8(xuu33000, xuu34000, ddb, ddc, ddd) 32.45/13.24 new_esEs19(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) 32.45/13.24 new_esEs16(:(xuu3110000, xuu3110001), [], beg) -> False 32.45/13.24 new_esEs16([], :(xuu6000, xuu6001), beg) -> False 32.45/13.24 new_esEs23(xuu3110000, xuu6000, app(ty_[], bfh)) -> new_esEs16(xuu3110000, xuu6000, bfh) 32.45/13.24 new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, bh), ca), cb), be) -> new_esEs5(xuu3110000, xuu6000, bh, ca, cb) 32.45/13.24 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 32.45/13.24 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 32.45/13.24 new_ltEs12(LT, EQ) -> True 32.45/13.24 new_ltEs20(xuu33001, xuu34001, app(ty_[], cch)) -> new_ltEs4(xuu33001, xuu34001, cch) 32.45/13.24 new_mkBalBranch6MkBalBranch4(xuu61, xuu36, xuu64, False, h, ba) -> new_mkBalBranch6MkBalBranch3(xuu61, xuu36, xuu64, new_gt(new_mkBalBranch6Size_l0(xuu61, xuu36, xuu64, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_r0(xuu61, xuu36, xuu64, h, ba))), h, ba) 32.45/13.24 new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.45/13.24 new_compare30(xuu33000, xuu34000, app(app(ty_Either, ceg), ceh)) -> new_compare8(xuu33000, xuu34000, ceg, ceh) 32.45/13.24 new_ltEs20(xuu33001, xuu34001, app(ty_Ratio, cdd)) -> new_ltEs15(xuu33001, xuu34001, cdd) 32.45/13.24 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Float, chg) -> new_ltEs11(xuu33000, xuu34000) 32.45/13.24 new_ltEs9(xuu3300, xuu3400) -> new_fsEs(new_compare19(xuu3300, xuu3400)) 32.45/13.24 new_esEs27(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) 32.45/13.24 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_@0) -> new_ltEs18(xuu33000, xuu34000) 32.45/13.24 new_primEqNat0(Zero, Zero) -> True 32.45/13.24 new_addToFM_C14(xuu61, xuu62, xuu63, xuu64, xuu31101, True, h, ba) -> new_mkBalBranch0(xuu61, xuu63, new_addToFM_C0(xuu64, Nothing, xuu31101, h, ba), h, ba) 32.45/13.24 new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, cg), be) -> new_esEs6(xuu3110000, xuu6000, cg) 32.45/13.24 new_esEs20(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.45/13.24 new_esEs29(xuu311000, xuu600, ty_Ordering) -> new_esEs8(xuu311000, xuu600) 32.45/13.24 new_lt20(xuu33000, xuu34000, app(app(ty_Either, cde), cdf)) -> new_lt5(xuu33000, xuu34000, cde, cdf) 32.45/13.24 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Float, be) -> new_esEs11(xuu3110000, xuu6000) 32.45/13.24 new_lt10(xuu33000, xuu34000, app(app(ty_@2, bgf), bgg)) -> new_lt4(xuu33000, xuu34000, bgf, bgg) 32.45/13.24 new_esEs22(xuu3110000, xuu6000, app(ty_[], bee)) -> new_esEs16(xuu3110000, xuu6000, bee) 32.45/13.24 new_ltEs19(xuu33002, xuu34002, app(ty_[], bhh)) -> new_ltEs4(xuu33002, xuu34002, bhh) 32.45/13.24 new_asAs(False, xuu139) -> False 32.45/13.24 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.45/13.24 new_compare30(xuu33000, xuu34000, ty_Ordering) -> new_compare31(xuu33000, xuu34000) 32.45/13.24 new_lt20(xuu33000, xuu34000, app(ty_Maybe, cec)) -> new_lt17(xuu33000, xuu34000, cec) 32.45/13.24 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Double, chg) -> new_ltEs9(xuu33000, xuu34000) 32.45/13.24 new_lt20(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) 32.45/13.24 new_ltEs6(Right(xuu33000), Right(xuu34000), chf, ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) 32.45/13.24 new_ltEs13(Nothing, Just(xuu34000), baf) -> True 32.45/13.24 new_esEs23(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.45/13.24 new_esEs4(Right(xuu3110000), Right(xuu6000), da, app(ty_[], eb)) -> new_esEs16(xuu3110000, xuu6000, eb) 32.45/13.24 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Char, chg) -> new_ltEs17(xuu33000, xuu34000) 32.45/13.24 new_ltEs6(Left(xuu33000), Right(xuu34000), chf, chg) -> True 32.45/13.24 new_esEs8(EQ, GT) -> False 32.45/13.24 new_esEs8(GT, EQ) -> False 32.45/13.24 new_sizeFM0(EmptyFM, deb, dec) -> Pos(Zero) 32.45/13.24 new_esEs11(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 32.45/13.24 new_ltEs6(Right(xuu33000), Right(xuu34000), chf, ty_Integer) -> new_ltEs10(xuu33000, xuu34000) 32.45/13.24 new_ltEs16(False, True) -> True 32.45/13.24 new_lt10(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) 32.45/13.24 new_esEs29(xuu311000, xuu600, ty_Char) -> new_esEs10(xuu311000, xuu600) 32.45/13.24 new_esEs21(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) 32.45/13.24 new_esEs20(xuu3110000, xuu6000, app(app(ty_@2, hd), he)) -> new_esEs7(xuu3110000, xuu6000, hd, he) 32.45/13.24 32.45/13.24 The set Q consists of the following terms: 32.45/13.24 32.45/13.24 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 32.45/13.24 new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) 32.45/13.24 new_ltEs6(Right(x0), Left(x1), x2, x3) 32.45/13.24 new_ltEs6(Left(x0), Right(x1), x2, x3) 32.45/13.24 new_esEs8(EQ, EQ) 32.45/13.24 new_lt10(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.24 new_esEs6(Just(x0), Just(x1), ty_Double) 32.45/13.24 new_esEs30(x0, x1, app(ty_[], x2)) 32.45/13.24 new_lt9(x0, x1, ty_Bool) 32.45/13.24 new_lt10(x0, x1, ty_@0) 32.45/13.24 new_primCompAux1(x0, x1, x2, x3) 32.45/13.24 new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) 32.45/13.24 new_addToFM_C16(x0, x1, x2, x3, x4, x5, False, x6, x7) 32.45/13.24 new_esEs29(x0, x1, ty_@0) 32.45/13.24 new_ltEs20(x0, x1, ty_Int) 32.45/13.24 new_esEs30(x0, x1, ty_Bool) 32.45/13.24 new_lt20(x0, x1, ty_Integer) 32.45/13.24 new_ltEs11(x0, x1) 32.45/13.24 new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 32.45/13.24 new_esEs29(x0, x1, app(ty_Ratio, x2)) 32.45/13.24 new_ltEs7(x0, x1) 32.45/13.24 new_esEs24(x0, x1, ty_Float) 32.45/13.24 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 32.45/13.24 new_esEs6(Just(x0), Just(x1), ty_Ordering) 32.45/13.24 new_mkBalBranch6MkBalBranch50(x0, x1, x2, True, x3, x4) 32.45/13.24 new_compare11(x0, x1, True, x2, x3) 32.45/13.24 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.24 new_primPlusNat1(Zero, Zero) 32.45/13.24 new_pePe(True, x0) 32.45/13.24 new_mkBalBranch6MkBalBranch40(x0, x1, x2, x3, False, x4, x5) 32.45/13.24 new_esEs29(x0, x1, ty_Bool) 32.45/13.24 new_esEs23(x0, x1, app(ty_Maybe, x2)) 32.45/13.24 new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 32.45/13.24 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 32.45/13.24 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.24 new_ltEs20(x0, x1, ty_Char) 32.45/13.24 new_lt10(x0, x1, ty_Bool) 32.45/13.24 new_ltEs9(x0, x1) 32.45/13.24 new_lt9(x0, x1, ty_Integer) 32.45/13.24 new_ltEs19(x0, x1, ty_Double) 32.45/13.24 new_esEs12(x0, x1) 32.45/13.24 new_lt10(x0, x1, app(ty_[], x2)) 32.45/13.24 new_primEqInt(Pos(Zero), Pos(Zero)) 32.45/13.24 new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) 32.45/13.24 new_primMinusNat0(Zero, Zero) 32.45/13.24 new_lt13(x0, x1) 32.45/13.24 new_mkBalBranch6MkBalBranch010(x0, x1, x2, x3, x4, Branch(x5, x6, x7, x8, x9), x10, False, x11, x12) 32.45/13.24 new_addListToFM_CAdd(x0, @2(x1, x2), x3, x4) 32.45/13.24 new_esEs22(x0, x1, app(ty_Ratio, x2)) 32.45/13.24 new_addToFM_C23(x0, x1, x2, x3, x4, x5, False, x6, x7) 32.45/13.24 new_esEs22(x0, x1, app(ty_[], x2)) 32.45/13.24 new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.24 new_addToFM_C13(x0, x1, x2, x3, x4, x5, True, x6, x7) 32.45/13.24 new_emptyFM(x0, x1) 32.45/13.24 new_lt7(x0, x1) 32.45/13.24 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.24 new_esEs26(x0, x1, ty_Double) 32.45/13.24 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.24 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.24 new_fsEs(x0) 32.45/13.24 new_lt9(x0, x1, ty_@0) 32.45/13.24 new_mkBalBranch6MkBalBranch010(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) 32.45/13.24 new_primEqNat0(Zero, Succ(x0)) 32.45/13.24 new_lt10(x0, x1, ty_Char) 32.45/13.24 new_primEqInt(Neg(Zero), Neg(Zero)) 32.45/13.24 new_compare30(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.24 new_mkBranch(x0, x1, x2, x3, x4, x5, x6) 32.45/13.24 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 32.45/13.24 new_esEs23(x0, x1, ty_Bool) 32.45/13.24 new_esEs21(x0, x1, app(ty_Ratio, x2)) 32.45/13.24 new_esEs6(Just(x0), Just(x1), ty_Char) 32.45/13.24 new_compare16(x0, x1, True, x2, x3) 32.45/13.24 new_sIZE_RATIO 32.45/13.24 new_esEs29(x0, x1, ty_Char) 32.45/13.24 new_esEs23(x0, x1, app(ty_[], x2)) 32.45/13.24 new_lt9(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.24 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) 32.45/13.24 new_ltEs16(False, False) 32.45/13.24 new_ltEs19(x0, x1, ty_Int) 32.45/13.24 new_compare30(x0, x1, ty_Double) 32.45/13.24 new_lt9(x0, x1, app(ty_[], x2)) 32.45/13.24 new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 32.45/13.24 new_mkBalBranch6MkBalBranch110(x0, x1, x2, x3, x4, x5, Branch(x6, x7, x8, x9, x10), x11, False, x12, x13) 32.45/13.24 new_esEs25(x0, x1, app(ty_[], x2)) 32.45/13.24 new_lt19(x0, x1) 32.45/13.24 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.24 new_lt9(x0, x1, app(ty_Ratio, x2)) 32.45/13.24 new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) 32.45/13.24 new_lt20(x0, x1, app(ty_Ratio, x2)) 32.45/13.24 new_ltEs12(GT, EQ) 32.45/13.24 new_ltEs12(EQ, GT) 32.45/13.24 new_compare10(x0, x1, True, x2) 32.45/13.24 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, EmptyFM, x5, False, x6, x7) 32.45/13.24 new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.24 new_lt20(x0, x1, app(ty_[], x2)) 32.45/13.24 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 32.45/13.24 new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) 32.45/13.24 new_compare0(:(x0, x1), [], x2) 32.45/13.24 new_mkBalBranch6MkBalBranch40(x0, x1, x2, Branch(x3, x4, x5, x6, x7), True, x8, x9) 32.45/13.24 new_esEs30(x0, x1, ty_Integer) 32.45/13.24 new_primCmpInt0(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8, x9) 32.45/13.24 new_mkBalBranch6Size_l0(x0, x1, x2, x3, x4) 32.45/13.24 new_addToFM_C13(x0, x1, x2, x3, x4, x5, False, x6, x7) 32.45/13.24 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, EmptyFM, x6, False, x7, x8) 32.45/13.24 new_primEqInt(Pos(Zero), Neg(Zero)) 32.45/13.24 new_primEqInt(Neg(Zero), Pos(Zero)) 32.45/13.24 new_ltEs20(x0, x1, ty_Ordering) 32.45/13.24 new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 32.45/13.24 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 32.45/13.24 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 32.45/13.24 new_addToFM_C23(x0, x1, x2, x3, x4, x5, True, x6, x7) 32.45/13.24 new_addToFM_C24(x0, x1, x2, x3, x4, x5, False, x6, x7) 32.45/13.24 new_esEs4(Left(x0), Left(x1), ty_Integer, x2) 32.45/13.24 new_esEs19(x0, x1, ty_Float) 32.45/13.24 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.24 new_ltEs6(Left(x0), Left(x1), ty_Int, x2) 32.45/13.24 new_esEs26(x0, x1, app(ty_Maybe, x2)) 32.45/13.24 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 32.45/13.24 new_primCompAux0(x0, GT) 32.45/13.24 new_esEs29(x0, x1, ty_Int) 32.45/13.24 new_compare210(x0, x1, False) 32.45/13.24 new_esEs23(x0, x1, ty_Ordering) 32.45/13.24 new_esEs19(x0, x1, app(ty_Maybe, x2)) 32.45/13.24 new_pePe(False, x0) 32.45/13.24 new_esEs6(Just(x0), Just(x1), ty_Int) 32.45/13.24 new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 32.45/13.24 new_addToFM_C15(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) 32.45/13.24 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 32.45/13.24 new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.24 new_ltEs6(Left(x0), Left(x1), ty_Double, x2) 32.45/13.24 new_primCmpInt1(EmptyFM, x0, x1, x2, x3) 32.45/13.24 new_esEs30(x0, x1, app(ty_Ratio, x2)) 32.45/13.24 new_primPlusInt(Pos(x0), Pos(x1)) 32.45/13.24 new_esEs18(x0, x1, app(ty_Ratio, x2)) 32.45/13.24 new_primMinusNat0(Succ(x0), Zero) 32.45/13.24 new_esEs25(x0, x1, ty_Integer) 32.45/13.24 new_esEs10(Char(x0), Char(x1)) 32.45/13.24 new_esEs23(x0, x1, ty_Integer) 32.45/13.24 new_mkBalBranch(x0, x1, x2, x3, x4, x5) 32.45/13.24 new_compare13(Char(x0), Char(x1)) 32.45/13.24 new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) 32.45/13.24 new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 32.45/13.24 new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, False, x4, x5) 32.45/13.24 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.24 new_primEqNat0(Succ(x0), Succ(x1)) 32.45/13.24 new_primMulInt(Neg(x0), Neg(x1)) 32.45/13.24 new_ltEs6(Left(x0), Left(x1), ty_Char, x2) 32.45/13.24 new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 32.45/13.24 new_compare27(x0, x1, True, x2, x3) 32.45/13.24 new_ltEs13(Just(x0), Just(x1), ty_Float) 32.45/13.24 new_ltEs5(x0, x1, ty_Double) 32.45/13.24 new_esEs30(x0, x1, ty_Ordering) 32.45/13.24 new_esEs6(Just(x0), Just(x1), ty_@0) 32.45/13.24 new_esEs9(@0, @0) 32.45/13.24 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.24 new_esEs24(x0, x1, ty_Bool) 32.45/13.24 new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) 32.45/13.24 new_addToFM_C0(EmptyFM, x0, x1, x2, x3) 32.45/13.24 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.24 new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6) 32.45/13.24 new_esEs4(Right(x0), Right(x1), x2, ty_Double) 32.45/13.24 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.24 new_esEs15(:%(x0, x1), :%(x2, x3), x4) 32.45/13.24 new_compare6(x0, x1, x2, x3) 32.45/13.24 new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 32.45/13.24 new_lt9(x0, x1, ty_Double) 32.45/13.24 new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 32.45/13.24 new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 32.45/13.24 new_esEs14(Double(x0, x1), Double(x2, x3)) 32.45/13.24 new_ltEs6(Right(x0), Right(x1), x2, ty_Int) 32.45/13.24 new_lt9(x0, x1, app(ty_Maybe, x2)) 32.45/13.24 new_ltEs6(Left(x0), Left(x1), ty_@0, x2) 32.45/13.24 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.24 new_esEs6(Just(x0), Just(x1), ty_Bool) 32.45/13.24 new_esEs29(x0, x1, ty_Ordering) 32.45/13.24 new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 32.45/13.24 new_lt10(x0, x1, ty_Float) 32.45/13.24 new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 32.45/13.24 new_lt6(x0, x1) 32.45/13.24 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.24 new_ltEs5(x0, x1, ty_Ordering) 32.45/13.24 new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 32.45/13.24 new_esEs30(x0, x1, ty_Double) 32.45/13.24 new_ltEs6(Right(x0), Right(x1), x2, ty_Char) 32.45/13.24 new_esEs16(:(x0, x1), :(x2, x3), x4) 32.45/13.24 new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) 32.45/13.24 new_compare26(x0, x1, True, x2, x3, x4) 32.45/13.24 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.24 new_primMinusNat0(Zero, Succ(x0)) 32.45/13.24 new_ltEs19(x0, x1, ty_Char) 32.45/13.24 new_ltEs13(Just(x0), Just(x1), ty_Int) 32.45/13.24 new_esEs21(x0, x1, ty_Double) 32.45/13.24 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 32.45/13.24 new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 32.45/13.24 new_lt10(x0, x1, ty_Ordering) 32.45/13.24 new_ltEs13(Just(x0), Nothing, x1) 32.45/13.24 new_mkBalBranch6MkBalBranch30(x0, x1, Branch(x2, x3, x4, x5, x6), x7, True, x8, x9) 32.45/13.24 new_esEs26(x0, x1, app(ty_[], x2)) 32.45/13.24 new_primPlusNat0(x0, x1) 32.45/13.24 new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 32.45/13.24 new_esEs26(x0, x1, ty_@0) 32.45/13.24 new_esEs23(x0, x1, ty_Double) 32.45/13.24 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 32.45/13.24 new_addToFM_C15(x0, x1, x2, x3, x4, x5, x6, False, x7, x8) 32.45/13.24 new_compare30(x0, x1, ty_Ordering) 32.45/13.24 new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 32.45/13.24 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.24 new_mkBalBranch6MkBalBranch4(x0, x1, x2, False, x3, x4) 32.45/13.24 new_compare10(x0, x1, False, x2) 32.45/13.24 new_primMulNat0(Succ(x0), Succ(x1)) 32.45/13.24 new_primPlusNat1(Zero, Succ(x0)) 32.45/13.24 new_compare0([], [], x0) 32.45/13.24 new_ltEs6(Right(x0), Right(x1), x2, ty_Float) 32.45/13.24 new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 32.45/13.24 new_lt10(x0, x1, ty_Int) 32.45/13.24 new_compare25(x0, x1, True) 32.45/13.24 new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) 32.45/13.24 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.24 new_primCmpInt1(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8) 32.45/13.24 new_esEs8(GT, GT) 32.45/13.24 new_ltEs19(x0, x1, ty_Bool) 32.45/13.24 new_esEs28(x0, x1, ty_Integer) 32.45/13.24 new_ltEs16(True, False) 32.45/13.24 new_ltEs16(False, True) 32.45/13.24 new_ltEs12(EQ, LT) 32.45/13.24 new_ltEs12(LT, EQ) 32.45/13.24 new_esEs18(x0, x1, ty_Integer) 32.45/13.24 new_esEs8(LT, EQ) 32.45/13.24 new_esEs8(EQ, LT) 32.45/13.24 new_addToFM_C14(x0, x1, x2, x3, x4, True, x5, x6) 32.45/13.24 new_esEs18(x0, x1, ty_Float) 32.45/13.24 new_ltEs12(GT, GT) 32.45/13.24 new_compare30(x0, x1, ty_@0) 32.45/13.24 new_primCmpInt(Neg(Zero), Neg(Zero)) 32.45/13.24 new_compare16(x0, x1, False, x2, x3) 32.45/13.24 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.24 new_esEs30(x0, x1, app(ty_Maybe, x2)) 32.45/13.24 new_esEs22(x0, x1, ty_Integer) 32.45/13.24 new_lt20(x0, x1, ty_@0) 32.45/13.24 new_compare0([], :(x0, x1), x2) 32.45/13.24 new_esEs13(False, True) 32.45/13.24 new_esEs13(True, False) 32.45/13.24 new_lt10(x0, x1, ty_Integer) 32.45/13.24 new_esEs11(Float(x0, x1), Float(x2, x3)) 32.45/13.24 new_esEs26(x0, x1, app(ty_Ratio, x2)) 32.45/13.24 new_esEs8(LT, LT) 32.45/13.24 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 32.45/13.24 new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 32.45/13.24 new_primCmpInt(Pos(Zero), Neg(Zero)) 32.45/13.24 new_primCmpInt(Neg(Zero), Pos(Zero)) 32.45/13.24 new_esEs18(x0, x1, app(ty_Maybe, x2)) 32.45/13.24 new_primMulInt(Pos(x0), Neg(x1)) 32.45/13.24 new_primMulInt(Neg(x0), Pos(x1)) 32.45/13.24 new_esEs20(x0, x1, ty_Char) 32.45/13.24 new_esEs4(Left(x0), Left(x1), ty_Bool, x2) 32.45/13.24 new_esEs16(:(x0, x1), [], x2) 32.45/13.24 new_compare110(x0, x1, True) 32.45/13.24 new_esEs19(x0, x1, app(ty_Ratio, x2)) 32.45/13.24 new_lt17(x0, x1, x2) 32.45/13.24 new_esEs4(Left(x0), Left(x1), ty_Float, x2) 32.45/13.24 new_esEs6(Just(x0), Just(x1), ty_Integer) 32.45/13.24 new_esEs18(x0, x1, ty_Int) 32.45/13.24 new_lt15(x0, x1) 32.45/13.24 new_primPlusInt(Pos(x0), Neg(x1)) 32.45/13.24 new_primPlusInt(Neg(x0), Pos(x1)) 32.45/13.24 new_addToFM_C22(x0, x1, x2, x3, x4, x5, x6, False, x7, x8) 32.45/13.24 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.24 new_mkBalBranch6MkBalBranch4(x0, x1, EmptyFM, True, x2, x3) 32.45/13.24 new_esEs29(x0, x1, ty_Integer) 32.45/13.24 new_esEs21(x0, x1, app(ty_Maybe, x2)) 32.45/13.24 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.24 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.24 new_primMulInt(Pos(x0), Pos(x1)) 32.45/13.24 new_primPlusInt(Neg(x0), Neg(x1)) 32.45/13.24 new_esEs20(x0, x1, ty_Int) 32.45/13.24 new_ltEs20(x0, x1, ty_Double) 32.45/13.24 new_compare210(x0, x1, True) 32.45/13.24 new_esEs19(x0, x1, app(ty_[], x2)) 32.45/13.24 new_esEs22(x0, x1, ty_Ordering) 32.45/13.24 new_esEs25(x0, x1, ty_@0) 32.45/13.24 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.24 new_esEs18(x0, x1, ty_Char) 32.45/13.24 new_ltEs12(LT, LT) 32.45/13.24 new_asAs(True, x0) 32.45/13.24 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.24 new_mkBalBranch6MkBalBranch3(x0, x1, x2, False, x3, x4) 32.45/13.24 new_esEs4(Left(x0), Left(x1), ty_Char, x2) 32.45/13.24 new_mkBalBranch6MkBalBranch3(x0, Branch(x1, x2, x3, x4, x5), x6, True, x7, x8) 32.45/13.24 new_lt10(x0, x1, app(ty_Ratio, x2)) 32.45/13.24 new_compare23(Just(x0), Just(x1), False, x2) 32.45/13.24 new_mkBalBranch6MkBalBranch110(x0, x1, x2, x3, x4, x5, EmptyFM, x6, False, x7, x8) 32.45/13.24 new_ltEs13(Nothing, Just(x0), x1) 32.45/13.24 new_ltEs19(x0, x1, ty_Ordering) 32.45/13.24 new_mkBalBranch6MkBalBranch4(x0, x1, Branch(x2, x3, x4, x5, x6), True, x7, x8) 32.45/13.24 new_esEs4(Left(x0), Left(x1), ty_Int, x2) 32.45/13.24 new_esEs18(x0, x1, ty_Bool) 32.45/13.24 new_ltEs19(x0, x1, ty_Integer) 32.45/13.24 new_esEs23(x0, x1, ty_@0) 32.45/13.24 new_compare23(Nothing, Just(x0), False, x1) 32.45/13.24 new_esEs20(x0, x1, ty_Float) 32.45/13.24 new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) 32.45/13.24 new_ltEs17(x0, x1) 32.45/13.24 new_primCmpNat0(Succ(x0), Succ(x1)) 32.45/13.24 new_sizeFM0(EmptyFM, x0, x1) 32.45/13.24 new_lt20(x0, x1, ty_Double) 32.45/13.24 new_esEs30(x0, x1, ty_@0) 32.45/13.24 new_ltEs20(x0, x1, ty_@0) 32.45/13.24 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.24 new_primMulNat0(Succ(x0), Zero) 32.45/13.24 new_primCmpNat0(Zero, Succ(x0)) 32.45/13.24 new_sizeFM(EmptyFM, x0, x1) 32.45/13.24 new_esEs6(Just(x0), Nothing, x1) 32.45/13.24 new_addListToFM0(x0, x1, x2) 32.45/13.24 new_compare27(x0, x1, False, x2, x3) 32.45/13.24 new_esEs19(x0, x1, ty_Int) 32.45/13.24 new_lt9(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.24 new_ltEs10(x0, x1) 32.45/13.24 new_esEs20(x0, x1, ty_@0) 32.45/13.24 new_compare30(x0, x1, app(ty_Ratio, x2)) 32.45/13.24 new_primCompAux0(x0, LT) 32.45/13.24 new_esEs6(Just(x0), Just(x1), ty_Float) 32.45/13.24 new_ltEs5(x0, x1, ty_Bool) 32.45/13.24 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.24 new_compare7(Integer(x0), Integer(x1)) 32.45/13.24 new_ltEs6(Left(x0), Left(x1), ty_Float, x2) 32.45/13.24 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 32.45/13.24 new_lt8(x0, x1, x2) 32.45/13.24 new_ltEs13(Just(x0), Just(x1), ty_Bool) 32.45/13.24 new_ltEs5(x0, x1, app(ty_Ratio, x2)) 32.45/13.24 new_esEs20(x0, x1, app(ty_[], x2)) 32.45/13.24 new_addToFM_C0(Branch(Nothing, x0, x1, x2, x3), Just(x4), x5, x6, x7) 32.45/13.24 new_primMulNat0(Zero, Zero) 32.45/13.24 new_esEs22(x0, x1, ty_@0) 32.45/13.24 new_esEs25(x0, x1, app(ty_Maybe, x2)) 32.45/13.24 new_esEs4(Right(x0), Right(x1), x2, ty_@0) 32.45/13.24 new_compare30(x0, x1, ty_Integer) 32.45/13.24 new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) 32.45/13.24 new_esEs17(Integer(x0), Integer(x1)) 32.45/13.24 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.24 new_ltEs5(x0, x1, ty_@0) 32.45/13.24 new_esEs19(x0, x1, ty_Ordering) 32.45/13.24 new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) 32.45/13.24 new_lt12(x0, x1) 32.45/13.24 new_esEs4(Right(x0), Right(x1), x2, ty_Bool) 32.45/13.24 new_compare30(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.24 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 32.45/13.24 new_esEs24(x0, x1, ty_Double) 32.45/13.24 new_esEs18(x0, x1, ty_@0) 32.45/13.24 new_ltEs15(x0, x1, x2) 32.45/13.24 new_compare26(x0, x1, False, x2, x3, x4) 32.45/13.24 new_compare14(x0, x1, True, x2, x3, x4) 32.45/13.24 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 32.45/13.24 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 32.45/13.24 new_addToFM_C0(Branch(Just(x0), x1, x2, x3, x4), Nothing, x5, x6, x7) 32.45/13.24 new_esEs4(Right(x0), Right(x1), x2, ty_Integer) 32.45/13.24 new_esEs28(x0, x1, ty_Int) 32.45/13.24 new_esEs19(x0, x1, ty_Double) 32.45/13.24 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 32.45/13.24 new_addToFM_C24(x0, x1, x2, x3, x4, x5, True, x6, x7) 32.45/13.24 new_esEs25(x0, x1, ty_Double) 32.45/13.24 new_addToFM_C22(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) 32.45/13.24 new_sizeFM0(Branch(x0, x1, x2, x3, x4), x5, x6) 32.45/13.24 new_esEs24(x0, x1, ty_Int) 32.45/13.24 new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, True, x4, x5) 32.45/13.24 new_esEs21(x0, x1, ty_Bool) 32.45/13.24 new_esEs20(x0, x1, ty_Bool) 32.45/13.24 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 32.45/13.24 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 32.45/13.24 new_lt20(x0, x1, app(ty_Maybe, x2)) 32.45/13.24 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 32.45/13.24 new_esEs19(x0, x1, ty_Char) 32.45/13.24 new_esEs24(x0, x1, app(ty_Maybe, x2)) 32.45/13.24 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 32.45/13.24 new_ltEs13(Just(x0), Just(x1), ty_@0) 32.45/13.24 new_lt10(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.24 new_esEs29(x0, x1, app(ty_[], x2)) 32.45/13.24 new_esEs24(x0, x1, ty_Ordering) 32.45/13.24 new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 32.45/13.24 new_lt4(x0, x1, x2, x3) 32.45/13.24 new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.24 new_compare24(x0, x1, True, x2, x3) 32.45/13.24 new_ltEs13(Nothing, Nothing, x0) 32.45/13.24 new_not(True) 32.45/13.24 new_compare24(x0, x1, False, x2, x3) 32.45/13.24 new_compare17(x0, x1, False) 32.45/13.24 new_lt11(x0, x1, x2, x3, x4) 32.45/13.24 new_ltEs13(Just(x0), Just(x1), ty_Char) 32.45/13.24 new_compare17(x0, x1, True) 32.45/13.24 new_esEs8(EQ, GT) 32.45/13.24 new_esEs8(GT, EQ) 32.45/13.24 new_esEs18(x0, x1, ty_Ordering) 32.45/13.24 new_esEs22(x0, x1, ty_Int) 32.45/13.24 new_esEs24(x0, x1, ty_Char) 32.45/13.24 new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.24 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 32.45/13.24 new_lt20(x0, x1, ty_Ordering) 32.45/13.24 new_esEs19(x0, x1, ty_@0) 32.45/13.24 new_ltEs13(Just(x0), Just(x1), ty_Integer) 32.45/13.24 new_compare0(:(x0, x1), :(x2, x3), x4) 32.45/13.24 new_compare110(x0, x1, False) 32.45/13.24 new_compare14(x0, x1, False, x2, x3, x4) 32.45/13.24 new_esEs13(True, True) 32.45/13.24 new_esEs21(x0, x1, ty_@0) 32.45/13.24 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, Branch(x5, x6, x7, x8, x9), x10, False, x11, x12) 32.45/13.24 new_ltEs18(x0, x1) 32.45/13.24 new_compare12(x0, x1) 32.45/13.24 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.24 new_compare30(x0, x1, ty_Bool) 32.45/13.24 new_esEs26(x0, x1, ty_Float) 32.45/13.24 new_primPlusNat1(Succ(x0), Succ(x1)) 32.45/13.24 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.24 new_primCmpInt0(EmptyFM, x0, x1, x2, x3, x4) 32.45/13.24 new_addToFM_C0(Branch(Just(x0), x1, x2, x3, x4), Just(x5), x6, x7, x8) 32.45/13.24 new_esEs22(x0, x1, ty_Bool) 32.45/13.24 new_ltEs19(x0, x1, ty_@0) 32.45/13.24 new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 32.45/13.24 new_esEs21(x0, x1, ty_Float) 32.45/13.24 new_primEqNat0(Succ(x0), Zero) 32.45/13.24 new_esEs18(x0, x1, app(ty_[], x2)) 32.45/13.24 new_primCompAux0(x0, EQ) 32.45/13.24 new_lt14(x0, x1) 32.45/13.24 new_lt10(x0, x1, app(ty_Maybe, x2)) 32.45/13.24 new_ltEs19(x0, x1, ty_Float) 32.45/13.24 new_ltEs12(EQ, EQ) 32.45/13.24 new_esEs27(x0, x1, ty_Int) 32.45/13.24 new_esEs22(x0, x1, ty_Char) 32.45/13.24 new_esEs21(x0, x1, app(ty_[], x2)) 32.45/13.24 new_compare25(x0, x1, False) 32.45/13.24 new_esEs22(x0, x1, app(ty_Maybe, x2)) 32.45/13.24 new_addToFM_C0(Branch(Nothing, x0, x1, x2, x3), Nothing, x4, x5, x6) 32.45/13.24 new_ltEs5(x0, x1, ty_Integer) 32.45/13.24 new_esEs25(x0, x1, ty_Ordering) 32.45/13.24 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.24 new_addToFM_C14(x0, x1, x2, x3, x4, False, x5, x6) 32.45/13.24 new_ltEs19(x0, x1, app(ty_[], x2)) 32.45/13.24 new_esEs16([], [], x0) 32.45/13.24 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 32.45/13.24 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.24 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 32.45/13.24 new_esEs20(x0, x1, ty_Integer) 32.45/13.24 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.24 new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 32.45/13.24 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 32.45/13.24 new_esEs22(x0, x1, ty_Double) 32.45/13.24 new_compare30(x0, x1, app(ty_[], x2)) 32.45/13.24 new_primCmpInt(Pos(Zero), Pos(Zero)) 32.45/13.24 new_mkBalBranch6MkBalBranch40(x0, x1, x2, EmptyFM, True, x3, x4) 32.45/13.24 new_compare29(x0, x1, x2) 32.45/13.24 new_ltEs20(x0, x1, ty_Integer) 32.45/13.24 new_esEs29(x0, x1, ty_Double) 32.45/13.24 new_lt9(x0, x1, ty_Ordering) 32.45/13.24 new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 32.45/13.24 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 32.45/13.24 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 32.45/13.24 new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) 32.45/13.24 new_ltEs5(x0, x1, ty_Float) 32.45/13.24 new_ltEs13(Just(x0), Just(x1), ty_Double) 32.45/13.24 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 32.45/13.24 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.24 new_esEs16([], :(x0, x1), x2) 32.45/13.24 new_compare30(x0, x1, ty_Char) 32.45/13.24 new_esEs19(x0, x1, ty_Integer) 32.45/13.24 new_esEs29(x0, x1, ty_Float) 32.45/13.24 new_esEs20(x0, x1, ty_Double) 32.45/13.24 new_sr(x0, x1) 32.45/13.24 new_ltEs4(x0, x1, x2) 32.45/13.24 new_esEs30(x0, x1, ty_Float) 32.45/13.24 new_compare11(x0, x1, False, x2, x3) 32.45/13.24 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.24 new_primMinusNat0(Succ(x0), Succ(x1)) 32.45/13.24 new_esEs21(x0, x1, ty_Ordering) 32.45/13.24 new_compare9(x0, x1) 32.45/13.24 new_ltEs20(x0, x1, app(ty_[], x2)) 32.45/13.24 new_esEs23(x0, x1, app(ty_Ratio, x2)) 32.45/13.24 new_ltEs5(x0, x1, app(ty_Maybe, x2)) 32.45/13.24 new_esEs20(x0, x1, ty_Ordering) 32.45/13.24 new_compare23(x0, x1, True, x2) 32.45/13.24 new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 32.45/13.24 new_esEs21(x0, x1, ty_Int) 32.45/13.24 new_esEs4(Right(x0), Right(x1), x2, ty_Float) 32.45/13.24 new_lt9(x0, x1, ty_Float) 32.45/13.24 new_esEs8(LT, GT) 32.45/13.24 new_esEs8(GT, LT) 32.45/13.24 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.24 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 32.45/13.24 new_addToFM_C16(x0, x1, x2, x3, x4, x5, True, x6, x7) 32.45/13.24 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.24 new_mkBalBranch6MkBalBranch3(x0, EmptyFM, x1, True, x2, x3) 32.45/13.24 new_mkBalBranch0(x0, x1, x2, x3, x4) 32.45/13.24 new_esEs19(x0, x1, ty_Bool) 32.45/13.24 new_esEs25(x0, x1, ty_Char) 32.45/13.24 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 32.45/13.24 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.24 new_ltEs5(x0, x1, ty_Int) 32.45/13.24 new_ltEs20(x0, x1, ty_Bool) 32.45/13.24 new_esEs6(Nothing, Just(x0), x1) 32.45/13.24 new_esEs21(x0, x1, ty_Char) 32.45/13.24 new_esEs22(x0, x1, ty_Float) 32.45/13.24 new_esEs26(x0, x1, ty_Char) 32.45/13.24 new_mkBalBranch6MkBalBranch30(x0, x1, EmptyFM, x2, True, x3, x4) 32.45/13.24 new_esEs4(Left(x0), Right(x1), x2, x3) 32.45/13.24 new_esEs4(Right(x0), Left(x1), x2, x3) 32.45/13.24 new_esEs25(x0, x1, app(ty_Ratio, x2)) 32.45/13.24 new_compare28(x0, x1, x2, x3, x4) 32.45/13.24 new_esEs24(x0, x1, ty_Integer) 32.45/13.24 new_lt9(x0, x1, ty_Char) 32.45/13.24 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.24 new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.24 new_mkBalBranch6MkBalBranch50(x0, x1, x2, False, x3, x4) 32.45/13.24 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.24 new_lt10(x0, x1, ty_Double) 32.45/13.24 new_esEs24(x0, x1, ty_@0) 32.45/13.24 new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 32.45/13.24 new_esEs26(x0, x1, ty_Int) 32.45/13.24 new_compare30(x0, x1, ty_Int) 32.45/13.24 new_esEs20(x0, x1, app(ty_Maybe, x2)) 32.45/13.24 new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 32.45/13.24 new_asAs(False, x0) 32.45/13.24 new_ltEs13(Just(x0), Just(x1), ty_Ordering) 32.45/13.24 new_ltEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 32.45/13.24 new_esEs25(x0, x1, ty_Bool) 32.45/13.24 new_lt9(x0, x1, ty_Int) 32.45/13.24 new_lt18(x0, x1) 32.45/13.24 new_esEs23(x0, x1, ty_Int) 32.45/13.24 new_lt16(x0, x1, x2) 32.45/13.24 new_primEqNat0(Zero, Zero) 32.45/13.24 new_esEs13(False, False) 32.45/13.24 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.24 new_primMulNat0(Zero, Succ(x0)) 32.45/13.24 new_ltEs6(Right(x0), Right(x1), x2, ty_@0) 32.45/13.24 new_ltEs5(x0, x1, ty_Char) 32.45/13.24 new_esEs24(x0, x1, app(ty_[], x2)) 32.45/13.24 new_not(False) 32.45/13.24 new_mkBalBranch6Size_r0(x0, x1, x2, x3, x4) 32.45/13.24 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.24 new_esEs29(x0, x1, app(ty_Maybe, x2)) 32.45/13.24 new_lt20(x0, x1, ty_Float) 32.45/13.24 new_esEs26(x0, x1, ty_Ordering) 32.45/13.24 new_ltEs16(True, True) 32.45/13.24 new_lt20(x0, x1, ty_Bool) 32.45/13.24 new_mkBalBranch6MkBalBranch30(x0, x1, x2, x3, False, x4, x5) 32.45/13.24 new_ltEs12(LT, GT) 32.45/13.24 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.24 new_ltEs12(GT, LT) 32.45/13.24 new_esEs25(x0, x1, ty_Int) 32.45/13.24 new_esEs30(x0, x1, ty_Char) 32.45/13.24 new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 32.45/13.24 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 32.45/13.24 new_esEs26(x0, x1, ty_Bool) 32.45/13.24 new_mkBalBranch6MkBalBranch010(x0, x1, x2, x3, x4, EmptyFM, x5, False, x6, x7) 32.45/13.24 new_ltEs5(x0, x1, app(ty_[], x2)) 32.45/13.24 new_esEs23(x0, x1, ty_Char) 32.45/13.24 new_esEs4(Left(x0), Left(x1), ty_Double, x2) 32.45/13.24 new_lt5(x0, x1, x2, x3) 32.45/13.24 new_sr0(Integer(x0), Integer(x1)) 32.45/13.24 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.24 new_compare30(x0, x1, ty_Float) 32.45/13.24 new_ltEs6(Right(x0), Right(x1), x2, ty_Double) 32.45/13.24 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 32.45/13.24 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 32.45/13.24 new_esEs24(x0, x1, app(ty_Ratio, x2)) 32.45/13.24 new_esEs26(x0, x1, ty_Integer) 32.45/13.24 new_compare30(x0, x1, app(ty_Maybe, x2)) 32.45/13.24 new_esEs6(Nothing, Nothing, x0) 32.45/13.24 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) 32.45/13.24 new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 32.45/13.24 new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) 32.45/13.24 new_esEs4(Right(x0), Right(x1), x2, ty_Int) 32.45/13.24 new_esEs23(x0, x1, ty_Float) 32.45/13.24 new_esEs4(Left(x0), Left(x1), ty_@0, x2) 32.45/13.24 new_esEs20(x0, x1, app(ty_Ratio, x2)) 32.45/13.24 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 32.45/13.24 new_primPlusNat1(Succ(x0), Zero) 32.45/13.24 new_esEs30(x0, x1, ty_Int) 32.45/13.24 new_compare8(x0, x1, x2, x3) 32.45/13.24 new_gt(x0, x1) 32.45/13.24 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 32.45/13.24 new_mkBalBranch6Size_r(x0, x1, x2, x3, x4, x5) 32.45/13.24 new_ltEs20(x0, x1, ty_Float) 32.45/13.24 new_esEs18(x0, x1, ty_Double) 32.45/13.24 new_lt20(x0, x1, ty_Int) 32.45/13.24 new_esEs21(x0, x1, ty_Integer) 32.45/13.24 new_mkBalBranch6MkBalBranch110(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) 32.45/13.24 new_compare23(Nothing, Nothing, False, x0) 32.45/13.24 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, Branch(x6, x7, x8, x9, x10), x11, False, x12, x13) 32.45/13.24 new_esEs27(x0, x1, ty_Integer) 32.45/13.24 new_primCmpNat0(Succ(x0), Zero) 32.45/13.24 new_compare31(x0, x1) 32.45/13.24 new_esEs25(x0, x1, ty_Float) 32.45/13.24 new_esEs4(Right(x0), Right(x1), x2, ty_Char) 32.45/13.24 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 32.45/13.24 new_compare23(Just(x0), Nothing, False, x1) 32.45/13.24 new_compare32(@0, @0) 32.45/13.24 new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 32.45/13.24 new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 32.45/13.24 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.24 new_primCmpNat0(Zero, Zero) 32.45/13.24 new_mkBalBranch6Size_l(x0, x1, x2, x3, x4, x5) 32.45/13.24 new_lt20(x0, x1, ty_Char) 32.45/13.24 32.45/13.24 We have to consider all minimal (P,Q,R)-chains. 32.45/13.24 ---------------------------------------- 32.45/13.24 32.45/13.24 (40) QDPSizeChangeProof (EQUIVALENT) 32.45/13.24 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. 32.45/13.24 32.45/13.24 From the DPs we obtained the following set of size-change graphs: 32.45/13.24 *new_foldl(xuu6, :(xuu3110, xuu3111), h, ba) -> new_foldl(new_addListToFM_CAdd(xuu6, xuu3110, h, ba), xuu3111, h, ba) 32.45/13.24 The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4 32.45/13.24 32.45/13.24 32.45/13.24 ---------------------------------------- 32.45/13.24 32.45/13.24 (41) 32.45/13.24 YES 32.45/13.24 32.45/13.24 ---------------------------------------- 32.45/13.24 32.45/13.24 (42) 32.45/13.24 Obligation: 32.45/13.24 Q DP problem: 32.45/13.24 The TRS P consists of the following rules: 32.45/13.24 32.45/13.24 new_primMulNat(Succ(xuu311000000), Succ(xuu600100)) -> new_primMulNat(xuu311000000, Succ(xuu600100)) 32.45/13.24 32.45/13.24 R is empty. 32.45/13.24 Q is empty. 32.45/13.24 We have to consider all minimal (P,Q,R)-chains. 32.45/13.24 ---------------------------------------- 32.45/13.24 32.45/13.24 (43) QDPSizeChangeProof (EQUIVALENT) 32.45/13.24 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. 32.45/13.24 32.45/13.24 From the DPs we obtained the following set of size-change graphs: 32.45/13.24 *new_primMulNat(Succ(xuu311000000), Succ(xuu600100)) -> new_primMulNat(xuu311000000, Succ(xuu600100)) 32.45/13.24 The graph contains the following edges 1 > 1, 2 >= 2 32.45/13.24 32.45/13.24 32.45/13.24 ---------------------------------------- 32.45/13.24 32.45/13.24 (44) 32.45/13.24 YES 32.45/13.24 32.45/13.24 ---------------------------------------- 32.45/13.24 32.45/13.24 (45) 32.45/13.24 Obligation: 32.45/13.24 Q DP problem: 32.45/13.24 The TRS P consists of the following rules: 32.45/13.24 32.45/13.24 new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(ty_Maybe, ha), df, fb) -> new_compare21(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, ha), ha) 32.45/13.24 new_primCompAux(xuu33000, xuu34000, xuu176, app(ty_Maybe, bac)) -> new_compare4(xuu33000, xuu34000, bac) 32.45/13.24 new_compare20(xuu33000, xuu34000, False, ge, gf, gg) -> new_ltEs0(xuu33000, xuu34000, ge, gf, gg) 32.45/13.24 new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(ty_[], bdg)), bdc)) -> new_lt1(xuu33000, xuu34000, bdg) 32.45/13.24 new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, df, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs0(xuu33002, xuu34002, ea, eb, ec) 32.45/13.24 new_compare21(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, cb), app(app(ty_@2, dc), dd))) -> new_ltEs3(xuu33000, xuu34000, dc, dd) 32.45/13.24 new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), df), app(ty_Maybe, ee))) -> new_ltEs2(xuu33002, xuu34002, ee) 32.45/13.24 new_primCompAux(xuu33000, xuu34000, xuu176, app(app(app(ty_@3, hg), hh), baa)) -> new_compare3(xuu33000, xuu34000, hg, hh, baa) 32.45/13.24 new_compare21(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, cb), app(ty_Maybe, db))) -> new_ltEs2(xuu33000, xuu34000, db) 32.45/13.24 new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), app(app(ty_@2, ga), gb)), fb)) -> new_lt3(xuu33001, xuu34001, ga, gb) 32.45/13.24 new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), df), app(app(ty_Either, dg), dh))) -> new_ltEs(xuu33002, xuu34002, dg, dh) 32.45/13.24 new_compare21(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(app(ty_@2, bh), ca)), bb)) -> new_ltEs3(xuu33000, xuu34000, bh, ca) 32.45/13.24 new_lt3(xuu33000, xuu34000, hb, hc) -> new_compare22(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, hb, hc), hb, hc) 32.45/13.24 new_compare21(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(app(ty_@2, bbe), bbf))) -> new_ltEs3(xuu33000, xuu34000, bbe, bbf) 32.45/13.24 new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, bbg), app(ty_Maybe, bcf))) -> new_ltEs2(xuu33001, xuu34001, bcf) 32.45/13.24 new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), df), app(ty_[], ed))) -> new_ltEs1(xuu33002, xuu34002, ed) 32.45/13.24 new_ltEs(Left(xuu33000), Left(xuu34000), app(ty_[], bf), bb) -> new_ltEs1(xuu33000, xuu34000, bf) 32.45/13.24 new_compare21(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, cb), app(app(ty_Either, cc), cd))) -> new_ltEs(xuu33000, xuu34000, cc, cd) 32.45/13.24 new_compare21(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(app(app(ty_@3, bc), bd), be)), bb)) -> new_ltEs0(xuu33000, xuu34000, bc, bd, be) 32.45/13.24 new_compare21(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(app(app(ty_@3, bah), bba), bbb))) -> new_ltEs0(xuu33000, xuu34000, bah, bba, bbb) 32.45/13.24 new_lt(xuu33000, xuu34000, gc, gd) -> new_compare2(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, gc, gd), gc, gd) 32.45/13.24 new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), bbg, app(app(ty_@2, bcg), bch)) -> new_ltEs3(xuu33001, xuu34001, bcg, bch) 32.45/13.24 new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, bbg), app(ty_[], bce))) -> new_ltEs1(xuu33001, xuu34001, bce) 32.45/13.24 new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(app(ty_@2, hb), hc), df, fb) -> new_compare22(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, hb, hc), hb, hc) 32.45/13.24 new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), bbg, app(app(ty_Either, bbh), bca)) -> new_ltEs(xuu33001, xuu34001, bbh, bca) 32.45/13.24 new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(app(ty_@2, bea), beb), bdc) -> new_lt3(xuu33000, xuu34000, bea, beb) 32.45/13.24 new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, bbg), app(app(ty_@2, bcg), bch))) -> new_ltEs3(xuu33001, xuu34001, bcg, bch) 32.45/13.24 new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), bbg, app(ty_Maybe, bcf)) -> new_ltEs2(xuu33001, xuu34001, bcf) 32.45/13.24 new_compare21(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(app(ty_Either, baf), bag))) -> new_ltEs(xuu33000, xuu34000, baf, bag) 32.45/13.24 new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(app(ty_@2, bea), beb)), bdc)) -> new_lt3(xuu33000, xuu34000, bea, beb) 32.45/13.24 new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), app(ty_Maybe, fh)), fb)) -> new_lt2(xuu33001, xuu34001, fh) 32.45/13.24 new_compare21(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(ty_[], bf)), bb)) -> new_ltEs1(xuu33000, xuu34000, bf) 32.45/13.24 new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, app(app(ty_Either, eh), fa), fb) -> new_lt(xuu33001, xuu34001, eh, fa) 32.45/13.24 new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(app(ty_Either, bda), bdb)), bdc)) -> new_lt(xuu33000, xuu34000, bda, bdb) 32.45/13.24 new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(app(ty_@2, hb), hc)), df), fb)) -> new_compare22(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, hb, hc), hb, hc) 32.45/13.24 new_compare4(xuu33000, xuu34000, ha) -> new_compare21(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, ha), ha) 32.45/13.24 new_ltEs(Left(xuu33000), Left(xuu34000), app(app(ty_Either, h), ba), bb) -> new_ltEs(xuu33000, xuu34000, h, ba) 32.45/13.24 new_compare21(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, cb), app(ty_[], da))) -> new_ltEs1(xuu33000, xuu34000, da) 32.45/13.24 new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, df, app(ty_[], ed)) -> new_ltEs1(xuu33002, xuu34002, ed) 32.45/13.24 new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, bbg), app(app(app(ty_@3, bcb), bcc), bcd))) -> new_ltEs0(xuu33001, xuu34001, bcb, bcc, bcd) 32.45/13.24 new_compare21(Just(:(xuu33000, xuu33001)), Just(:(xuu34000, xuu34001)), False, app(ty_[], hd)) -> new_primCompAux(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, hd), hd) 32.45/13.24 new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(app(app(ty_@3, ge), gf), gg), df, fb) -> new_compare20(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, ge, gf, gg), ge, gf, gg) 32.45/13.24 new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), app(ty_[], fg)), fb)) -> new_lt1(xuu33001, xuu34001, fg) 32.45/13.24 new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, app(ty_[], fg), fb) -> new_lt1(xuu33001, xuu34001, fg) 32.45/13.24 new_primCompAux(xuu33000, xuu34000, xuu176, app(app(ty_Either, he), hf)) -> new_compare1(xuu33000, xuu34000, he, hf) 32.45/13.24 new_ltEs1(:(xuu33000, xuu33001), :(xuu34000, xuu34001), hd) -> new_compare(xuu33001, xuu34001, hd) 32.45/13.24 new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), bbg, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_ltEs0(xuu33001, xuu34001, bcb, bcc, bcd) 32.45/13.24 new_ltEs(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, bc), bd), be), bb) -> new_ltEs0(xuu33000, xuu34000, bc, bd, be) 32.45/13.24 new_compare21(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(app(ty_Either, h), ba)), bb)) -> new_ltEs(xuu33000, xuu34000, h, ba) 32.45/13.24 new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(ty_Maybe, ha)), df), fb)) -> new_compare21(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, ha), ha) 32.45/13.24 new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(ty_Maybe, bdh)), bdc)) -> new_lt2(xuu33000, xuu34000, bdh) 32.45/13.24 new_ltEs(Right(xuu33000), Right(xuu34000), cb, app(ty_[], da)) -> new_ltEs1(xuu33000, xuu34000, da) 32.45/13.24 new_ltEs2(Just(xuu33000), Just(xuu34000), app(ty_Maybe, bbd)) -> new_ltEs2(xuu33000, xuu34000, bbd) 32.45/13.24 new_ltEs2(Just(xuu33000), Just(xuu34000), app(ty_[], bbc)) -> new_ltEs1(xuu33000, xuu34000, bbc) 32.45/13.24 new_compare21(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(ty_Maybe, bbd))) -> new_ltEs2(xuu33000, xuu34000, bbd) 32.45/13.24 new_ltEs2(Just(xuu33000), Just(xuu34000), app(app(ty_@2, bbe), bbf)) -> new_ltEs3(xuu33000, xuu34000, bbe, bbf) 32.45/13.24 new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, app(app(ty_@2, ga), gb), fb) -> new_lt3(xuu33001, xuu34001, ga, gb) 32.45/13.24 new_compare3(xuu33000, xuu34000, ge, gf, gg) -> new_compare20(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, ge, gf, gg), ge, gf, gg) 32.45/13.24 new_ltEs(Right(xuu33000), Right(xuu34000), cb, app(ty_Maybe, db)) -> new_ltEs2(xuu33000, xuu34000, db) 32.45/13.24 new_compare21(Just(:(xuu33000, xuu33001)), Just(:(xuu34000, xuu34001)), False, app(ty_[], hd)) -> new_compare(xuu33001, xuu34001, hd) 32.45/13.24 new_lt2(xuu33000, xuu34000, ha) -> new_compare21(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, ha), ha) 32.45/13.24 new_ltEs(Right(xuu33000), Right(xuu34000), cb, app(app(ty_Either, cc), cd)) -> new_ltEs(xuu33000, xuu34000, cc, cd) 32.45/13.24 new_compare21(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(ty_Maybe, bg)), bb)) -> new_ltEs2(xuu33000, xuu34000, bg) 32.45/13.24 new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(ty_[], gh), df, fb) -> new_compare(xuu33000, xuu34000, gh) 32.45/13.24 new_compare22(xuu33000, xuu34000, False, hb, hc) -> new_ltEs3(xuu33000, xuu34000, hb, hc) 32.45/13.24 new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), app(app(ty_Either, eh), fa)), fb)) -> new_lt(xuu33001, xuu34001, eh, fa) 32.45/13.24 new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, df, app(app(ty_Either, dg), dh)) -> new_ltEs(xuu33002, xuu34002, dg, dh) 32.45/13.24 new_ltEs2(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, bah), bba), bbb)) -> new_ltEs0(xuu33000, xuu34000, bah, bba, bbb) 32.45/13.24 new_ltEs(Left(xuu33000), Left(xuu34000), app(app(ty_@2, bh), ca), bb) -> new_ltEs3(xuu33000, xuu34000, bh, ca) 32.45/13.24 new_compare21(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, cb), app(app(app(ty_@3, ce), cf), cg))) -> new_ltEs0(xuu33000, xuu34000, ce, cf, cg) 32.45/13.24 new_lt0(xuu33000, xuu34000, ge, gf, gg) -> new_compare20(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, ge, gf, gg), ge, gf, gg) 32.45/13.24 new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(app(ty_Either, bda), bdb), bdc) -> new_lt(xuu33000, xuu34000, bda, bdb) 32.45/13.24 new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, app(app(app(ty_@3, fc), fd), ff), fb) -> new_lt0(xuu33001, xuu34001, fc, fd, ff) 32.45/13.24 new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, df, app(app(ty_@2, ef), eg)) -> new_ltEs3(xuu33002, xuu34002, ef, eg) 32.45/13.24 new_compare(:(xuu33000, xuu33001), :(xuu34000, xuu34001), hd) -> new_primCompAux(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, hd), hd) 32.45/13.24 new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(app(app(ty_@3, bdd), bde), bdf), bdc) -> new_lt0(xuu33000, xuu34000, bdd, bde, bdf) 32.45/13.24 new_ltEs(Right(xuu33000), Right(xuu34000), cb, app(app(ty_@2, dc), dd)) -> new_ltEs3(xuu33000, xuu34000, dc, dd) 32.45/13.24 new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(app(app(ty_@3, bdd), bde), bdf)), bdc)) -> new_lt0(xuu33000, xuu34000, bdd, bde, bdf) 32.45/13.24 new_primCompAux(xuu33000, xuu34000, xuu176, app(app(ty_@2, bad), bae)) -> new_compare5(xuu33000, xuu34000, bad, bae) 32.45/13.24 new_compare5(xuu33000, xuu34000, hb, hc) -> new_compare22(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, hb, hc), hb, hc) 32.45/13.24 new_primCompAux(xuu33000, xuu34000, xuu176, app(ty_[], bab)) -> new_compare(xuu33000, xuu34000, bab) 32.45/13.24 new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(ty_[], bdg), bdc) -> new_lt1(xuu33000, xuu34000, bdg) 32.45/13.24 new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, df, app(ty_Maybe, ee)) -> new_ltEs2(xuu33002, xuu34002, ee) 32.45/13.24 new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, bbg), app(app(ty_Either, bbh), bca))) -> new_ltEs(xuu33001, xuu34001, bbh, bca) 32.45/13.24 new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(ty_Maybe, bdh), bdc) -> new_lt2(xuu33000, xuu34000, bdh) 32.45/13.24 new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(ty_[], gh)), df), fb)) -> new_compare(xuu33000, xuu34000, gh) 32.45/13.24 new_compare(:(xuu33000, xuu33001), :(xuu34000, xuu34001), hd) -> new_compare(xuu33001, xuu34001, hd) 32.45/13.24 new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(app(app(ty_@3, ge), gf), gg)), df), fb)) -> new_compare20(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, ge, gf, gg), ge, gf, gg) 32.45/13.24 new_compare21(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(ty_[], bbc))) -> new_ltEs1(xuu33000, xuu34000, bbc) 32.45/13.24 new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), app(app(app(ty_@3, fc), fd), ff)), fb)) -> new_lt0(xuu33001, xuu34001, fc, fd, ff) 32.45/13.24 new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(app(ty_Either, gc), gd), df, fb) -> new_compare2(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, gc, gd), gc, gd) 32.45/13.24 new_ltEs1(:(xuu33000, xuu33001), :(xuu34000, xuu34001), hd) -> new_primCompAux(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, hd), hd) 32.45/13.24 new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, app(ty_Maybe, fh), fb) -> new_lt2(xuu33001, xuu34001, fh) 32.45/13.24 new_compare2(xuu33000, xuu34000, False, gc, gd) -> new_ltEs(xuu33000, xuu34000, gc, gd) 32.45/13.24 new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), bbg, app(ty_[], bce)) -> new_ltEs1(xuu33001, xuu34001, bce) 32.45/13.24 new_ltEs2(Just(xuu33000), Just(xuu34000), app(app(ty_Either, baf), bag)) -> new_ltEs(xuu33000, xuu34000, baf, bag) 32.45/13.24 new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(app(ty_Either, gc), gd)), df), fb)) -> new_compare2(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, gc, gd), gc, gd) 32.45/13.24 new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), df), app(app(ty_@2, ef), eg))) -> new_ltEs3(xuu33002, xuu34002, ef, eg) 32.45/13.24 new_lt1(xuu33000, xuu34000, gh) -> new_compare(xuu33000, xuu34000, gh) 32.45/13.24 new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), df), app(app(app(ty_@3, ea), eb), ec))) -> new_ltEs0(xuu33002, xuu34002, ea, eb, ec) 32.45/13.24 new_ltEs(Right(xuu33000), Right(xuu34000), cb, app(app(app(ty_@3, ce), cf), cg)) -> new_ltEs0(xuu33000, xuu34000, ce, cf, cg) 32.45/13.24 new_ltEs(Left(xuu33000), Left(xuu34000), app(ty_Maybe, bg), bb) -> new_ltEs2(xuu33000, xuu34000, bg) 32.45/13.24 new_compare1(xuu33000, xuu34000, gc, gd) -> new_compare2(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, gc, gd), gc, gd) 32.45/13.24 32.45/13.24 The TRS R consists of the following rules: 32.45/13.24 32.45/13.24 new_lt20(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) 32.45/13.24 new_esEs20(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.45/13.24 new_compare30(xuu33000, xuu34000, app(app(app(ty_@3, hg), hh), baa)) -> new_compare28(xuu33000, xuu34000, hg, hh, baa) 32.45/13.24 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 32.45/13.24 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Float) -> new_ltEs11(xuu33000, xuu34000) 32.45/13.24 new_primCmpInt(Neg(Succ(xuu3300)), Pos(xuu340)) -> LT 32.45/13.24 new_compare8(xuu33000, xuu34000, gc, gd) -> new_compare24(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, gc, gd), gc, gd) 32.45/13.24 new_esEs23(xuu3110000, xuu6000, app(ty_Maybe, dba)) -> new_esEs6(xuu3110000, xuu6000, dba) 32.45/13.24 new_pePe(True, xuu165) -> True 32.45/13.24 new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.45/13.24 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.45/13.24 new_ltEs6(Right(xuu33000), Right(xuu34000), cb, ty_Float) -> new_ltEs11(xuu33000, xuu34000) 32.45/13.24 new_esEs17(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) 32.45/13.24 new_lt4(xuu33000, xuu34000, hb, hc) -> new_esEs8(new_compare6(xuu33000, xuu34000, hb, hc), LT) 32.45/13.24 new_compare23(xuu330, xuu340, True, bff) -> EQ 32.45/13.24 new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Maybe, bbd)) -> new_ltEs13(xuu33000, xuu34000, bbd) 32.45/13.24 new_lt15(xuu33000, xuu34000) -> new_esEs8(new_compare31(xuu33000, xuu34000), LT) 32.45/13.24 new_lt10(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) 32.45/13.24 new_ltEs12(LT, LT) -> True 32.45/13.24 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.45/13.24 new_ltEs6(Right(xuu33000), Right(xuu34000), cb, app(app(ty_@2, dc), dd)) -> new_ltEs14(xuu33000, xuu34000, dc, dd) 32.45/13.24 new_ltEs6(Right(xuu33000), Right(xuu34000), cb, ty_Char) -> new_ltEs17(xuu33000, xuu34000) 32.45/13.24 new_esEs4(Left(xuu3110000), Right(xuu6000), bhd, bga) -> False 32.45/13.24 new_esEs4(Right(xuu3110000), Left(xuu6000), bhd, bga) -> False 32.45/13.24 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Int, bb) -> new_ltEs7(xuu33000, xuu34000) 32.45/13.24 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 32.45/13.24 new_primCmpInt(Pos(Zero), Neg(Succ(xuu3400))) -> GT 32.45/13.24 new_ltEs6(Right(xuu33000), Right(xuu34000), cb, app(ty_[], da)) -> new_ltEs4(xuu33000, xuu34000, da) 32.45/13.24 new_esEs15(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), dcc) -> new_asAs(new_esEs28(xuu3110000, xuu6000, dcc), new_esEs27(xuu3110001, xuu6001, dcc)) 32.45/13.24 new_esEs24(xuu33001, xuu34001, ty_Ordering) -> new_esEs8(xuu33001, xuu34001) 32.45/13.24 new_ltEs14(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), bbg, bdc) -> new_pePe(new_lt20(xuu33000, xuu34000, bbg), new_asAs(new_esEs26(xuu33000, xuu34000, bbg), new_ltEs20(xuu33001, xuu34001, bdc))) 32.45/13.24 new_ltEs6(Right(xuu33000), Right(xuu34000), cb, app(ty_Ratio, dcb)) -> new_ltEs15(xuu33000, xuu34000, dcb) 32.45/13.24 new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, chb), chc)) -> new_esEs4(xuu3110000, xuu6000, chb, chc) 32.45/13.24 new_compare0(:(xuu33000, xuu33001), :(xuu34000, xuu34001), hd) -> new_primCompAux1(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, hd), hd) 32.45/13.24 new_primCmpInt(Neg(Succ(xuu3300)), Neg(xuu340)) -> new_primCmpNat0(xuu340, Succ(xuu3300)) 32.45/13.24 new_lt9(xuu33001, xuu34001, app(ty_[], fg)) -> new_lt16(xuu33001, xuu34001, fg) 32.45/13.24 new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_Either, baf), bag)) -> new_ltEs6(xuu33000, xuu34000, baf, bag) 32.45/13.24 new_lt10(xuu33000, xuu34000, app(ty_Ratio, dbb)) -> new_lt8(xuu33000, xuu34000, dbb) 32.45/13.24 new_esEs28(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.45/13.24 new_esEs26(xuu33000, xuu34000, app(app(ty_@2, bea), beb)) -> new_esEs7(xuu33000, xuu34000, bea, beb) 32.45/13.24 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Char) -> new_ltEs17(xuu33000, xuu34000) 32.45/13.24 new_esEs23(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.45/13.24 new_ltEs20(xuu33001, xuu34001, ty_@0) -> new_ltEs18(xuu33001, xuu34001) 32.45/13.24 new_esEs5(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), cag, cah, cba) -> new_asAs(new_esEs20(xuu3110000, xuu6000, cag), new_asAs(new_esEs19(xuu3110001, xuu6001, cah), new_esEs18(xuu3110002, xuu6002, cba))) 32.45/13.24 new_esEs10(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) 32.45/13.24 new_ltEs7(xuu3300, xuu3400) -> new_fsEs(new_compare12(xuu3300, xuu3400)) 32.45/13.24 new_esEs18(xuu3110002, xuu6002, ty_Ordering) -> new_esEs8(xuu3110002, xuu6002) 32.45/13.24 new_compare25(xuu33000, xuu34000, False) -> new_compare17(xuu33000, xuu34000, new_ltEs16(xuu33000, xuu34000)) 32.45/13.24 new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_[], bf), bb) -> new_ltEs4(xuu33000, xuu34000, bf) 32.45/13.24 new_esEs18(xuu3110002, xuu6002, ty_Bool) -> new_esEs13(xuu3110002, xuu6002) 32.45/13.24 new_primCompAux0(xuu182, GT) -> GT 32.45/13.24 new_lt9(xuu33001, xuu34001, ty_Bool) -> new_lt18(xuu33001, xuu34001) 32.45/13.24 new_esEs23(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.45/13.24 new_ltEs6(Right(xuu33000), Right(xuu34000), cb, ty_Double) -> new_ltEs9(xuu33000, xuu34000) 32.45/13.24 new_compare210(xuu33000, xuu34000, False) -> new_compare110(xuu33000, xuu34000, new_ltEs12(xuu33000, xuu34000)) 32.45/13.24 new_esEs18(xuu3110002, xuu6002, app(ty_Ratio, cca)) -> new_esEs15(xuu3110002, xuu6002, cca) 32.45/13.24 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Integer, bga) -> new_esEs17(xuu3110000, xuu6000) 32.45/13.24 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False 32.45/13.24 new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False 32.45/13.24 new_esEs8(GT, GT) -> True 32.45/13.24 new_fsEs(xuu149) -> new_not(new_esEs8(xuu149, GT)) 32.45/13.24 new_esEs19(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) 32.45/13.24 new_lt12(xuu33000, xuu34000) -> new_esEs8(new_compare19(xuu33000, xuu34000), LT) 32.45/13.24 new_esEs24(xuu33001, xuu34001, app(ty_Ratio, dbd)) -> new_esEs15(xuu33001, xuu34001, dbd) 32.45/13.24 new_esEs20(xuu3110000, xuu6000, app(app(app(ty_@3, cdh), cea), ceb)) -> new_esEs5(xuu3110000, xuu6000, cdh, cea, ceb) 32.45/13.24 new_ltEs4(xuu3300, xuu3400, hd) -> new_fsEs(new_compare0(xuu3300, xuu3400, hd)) 32.45/13.24 new_esEs8(EQ, EQ) -> True 32.45/13.24 new_esEs24(xuu33001, xuu34001, ty_Bool) -> new_esEs13(xuu33001, xuu34001) 32.45/13.24 new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Ratio, dca), bb) -> new_ltEs15(xuu33000, xuu34000, dca) 32.45/13.24 new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) 32.45/13.24 new_lt10(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) 32.45/13.24 new_lt10(xuu33000, xuu34000, app(ty_Maybe, ha)) -> new_lt17(xuu33000, xuu34000, ha) 32.45/13.24 new_ltEs20(xuu33001, xuu34001, ty_Integer) -> new_ltEs10(xuu33001, xuu34001) 32.45/13.24 new_primCompAux0(xuu182, LT) -> LT 32.45/13.24 new_not(True) -> False 32.45/13.24 new_ltEs19(xuu33002, xuu34002, ty_@0) -> new_ltEs18(xuu33002, xuu34002) 32.45/13.24 new_ltEs12(LT, GT) -> True 32.45/13.24 new_primCmpNat0(Zero, Zero) -> EQ 32.45/13.24 new_esEs18(xuu3110002, xuu6002, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_esEs5(xuu3110002, xuu6002, cbd, cbe, cbf) 32.45/13.24 new_compare6(xuu33000, xuu34000, hb, hc) -> new_compare27(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, hb, hc), hb, hc) 32.45/13.24 new_compare16(xuu33000, xuu34000, False, hb, hc) -> GT 32.45/13.24 new_ltEs19(xuu33002, xuu34002, ty_Integer) -> new_ltEs10(xuu33002, xuu34002) 32.45/13.24 new_esEs25(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) 32.45/13.24 new_compare14(xuu33000, xuu34000, True, ge, gf, gg) -> LT 32.45/13.24 new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.45/13.24 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.45/13.24 new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_Either, h), ba), bb) -> new_ltEs6(xuu33000, xuu34000, h, ba) 32.45/13.24 new_esEs19(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) 32.45/13.24 new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_[], bbc)) -> new_ltEs4(xuu33000, xuu34000, bbc) 32.45/13.24 new_primEqNat0(Succ(xuu31100000), Zero) -> False 32.45/13.24 new_primEqNat0(Zero, Succ(xuu60000)) -> False 32.45/13.24 new_ltEs5(xuu3300, xuu3400, app(app(ty_Either, cb), bb)) -> new_ltEs6(xuu3300, xuu3400, cb, bb) 32.45/13.24 new_esEs4(Right(xuu3110000), Right(xuu6000), bhd, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.45/13.24 new_lt20(xuu33000, xuu34000, app(ty_Ratio, dbg)) -> new_lt8(xuu33000, xuu34000, dbg) 32.45/13.24 new_esEs19(xuu3110001, xuu6001, app(app(app(ty_@3, ccf), ccg), cch)) -> new_esEs5(xuu3110001, xuu6001, ccf, ccg, cch) 32.45/13.24 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_@0, bga) -> new_esEs9(xuu3110000, xuu6000) 32.45/13.24 new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, bc), bd), be), bb) -> new_ltEs8(xuu33000, xuu34000, bc, bd, be) 32.45/13.24 new_ltEs6(Right(xuu33000), Right(xuu34000), cb, ty_@0) -> new_ltEs18(xuu33000, xuu34000) 32.45/13.24 new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, cge), cgf)) -> new_esEs7(xuu3110000, xuu6000, cge, cgf) 32.45/13.24 new_esEs25(xuu33000, xuu34000, app(app(app(ty_@3, ge), gf), gg)) -> new_esEs5(xuu33000, xuu34000, ge, gf, gg) 32.45/13.24 new_compare110(xuu33000, xuu34000, True) -> LT 32.45/13.24 new_lt9(xuu33001, xuu34001, app(app(ty_@2, ga), gb)) -> new_lt4(xuu33001, xuu34001, ga, gb) 32.45/13.24 new_ltEs5(xuu3300, xuu3400, ty_Ordering) -> new_ltEs12(xuu3300, xuu3400) 32.45/13.24 new_lt9(xuu33001, xuu34001, ty_Int) -> new_lt6(xuu33001, xuu34001) 32.45/13.24 new_esEs27(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) 32.45/13.24 new_esEs20(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.45/13.24 new_compare23(Just(xuu3300), Just(xuu3400), False, bff) -> new_compare10(xuu3300, xuu3400, new_ltEs5(xuu3300, xuu3400, bff), bff) 32.45/13.24 new_lt20(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) 32.45/13.24 new_compare30(xuu33000, xuu34000, app(ty_Ratio, dbh)) -> new_compare15(xuu33000, xuu34000, dbh) 32.45/13.24 new_lt20(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) 32.45/13.24 new_primCmpInt(Pos(Succ(xuu3300)), Neg(xuu340)) -> GT 32.45/13.24 new_ltEs10(xuu3300, xuu3400) -> new_fsEs(new_compare7(xuu3300, xuu3400)) 32.45/13.24 new_compare24(xuu33000, xuu34000, False, gc, gd) -> new_compare11(xuu33000, xuu34000, new_ltEs6(xuu33000, xuu34000, gc, gd), gc, gd) 32.45/13.24 new_lt5(xuu33000, xuu34000, gc, gd) -> new_esEs8(new_compare8(xuu33000, xuu34000, gc, gd), LT) 32.45/13.24 new_esEs20(xuu3110000, xuu6000, app(ty_Ratio, cee)) -> new_esEs15(xuu3110000, xuu6000, cee) 32.45/13.24 new_esEs24(xuu33001, xuu34001, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs5(xuu33001, xuu34001, fc, fd, ff) 32.45/13.24 new_esEs26(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) 32.45/13.24 new_primPlusNat1(Succ(xuu28200), Succ(xuu9700)) -> Succ(Succ(new_primPlusNat1(xuu28200, xuu9700))) 32.45/13.24 new_lt9(xuu33001, xuu34001, ty_Char) -> new_lt7(xuu33001, xuu34001) 32.45/13.24 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Double) -> new_ltEs9(xuu33000, xuu34000) 32.45/13.24 new_lt18(xuu33000, xuu34000) -> new_esEs8(new_compare9(xuu33000, xuu34000), LT) 32.45/13.24 new_primCmpNat0(Zero, Succ(xuu3400)) -> LT 32.45/13.24 new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Maybe, bg), bb) -> new_ltEs13(xuu33000, xuu34000, bg) 32.45/13.24 new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Integer) -> new_compare7(new_sr0(xuu33000, xuu34001), new_sr0(xuu34000, xuu33001)) 32.45/13.24 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Bool, bga) -> new_esEs13(xuu3110000, xuu6000) 32.45/13.24 new_esEs18(xuu3110002, xuu6002, ty_Int) -> new_esEs12(xuu3110002, xuu6002) 32.45/13.24 new_compare210(xuu33000, xuu34000, True) -> EQ 32.45/13.24 new_esEs24(xuu33001, xuu34001, ty_Int) -> new_esEs12(xuu33001, xuu34001) 32.45/13.24 new_lt9(xuu33001, xuu34001, app(ty_Ratio, dbd)) -> new_lt8(xuu33001, xuu34001, dbd) 32.45/13.24 new_esEs21(xuu3110001, xuu6001, app(app(app(ty_@3, cfe), cff), cfg)) -> new_esEs5(xuu3110001, xuu6001, cfe, cff, cfg) 32.45/13.24 new_primCmpNat0(Succ(xuu3300), Zero) -> GT 32.45/13.24 new_ltEs20(xuu33001, xuu34001, app(ty_Maybe, bcf)) -> new_ltEs13(xuu33001, xuu34001, bcf) 32.45/13.24 new_pePe(False, xuu165) -> xuu165 32.45/13.24 new_ltEs5(xuu3300, xuu3400, ty_Char) -> new_ltEs17(xuu3300, xuu3400) 32.45/13.24 new_esEs20(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.45/13.24 new_esEs23(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.45/13.24 new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.45/13.24 new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.45/13.24 new_ltEs20(xuu33001, xuu34001, ty_Float) -> new_ltEs11(xuu33001, xuu34001) 32.45/13.24 new_ltEs12(GT, GT) -> True 32.45/13.24 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Ordering, bga) -> new_esEs8(xuu3110000, xuu6000) 32.45/13.24 new_ltEs18(xuu3300, xuu3400) -> new_fsEs(new_compare32(xuu3300, xuu3400)) 32.45/13.24 new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Int) -> new_compare12(new_sr(xuu33000, xuu34001), new_sr(xuu34000, xuu33001)) 32.45/13.24 new_ltEs20(xuu33001, xuu34001, ty_Double) -> new_ltEs9(xuu33001, xuu34001) 32.45/13.24 new_ltEs19(xuu33002, xuu34002, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs8(xuu33002, xuu34002, ea, eb, ec) 32.45/13.24 new_esEs21(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) 32.45/13.24 new_ltEs12(GT, EQ) -> False 32.45/13.24 new_esEs24(xuu33001, xuu34001, ty_@0) -> new_esEs9(xuu33001, xuu34001) 32.45/13.24 new_esEs21(xuu3110001, xuu6001, app(app(ty_Either, cfh), cga)) -> new_esEs4(xuu3110001, xuu6001, cfh, cga) 32.45/13.24 new_esEs18(xuu3110002, xuu6002, ty_Float) -> new_esEs11(xuu3110002, xuu6002) 32.45/13.24 new_lt10(xuu33000, xuu34000, app(ty_[], gh)) -> new_lt16(xuu33000, xuu34000, gh) 32.45/13.25 new_esEs26(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) 32.45/13.25 new_compare27(xuu33000, xuu34000, False, hb, hc) -> new_compare16(xuu33000, xuu34000, new_ltEs14(xuu33000, xuu34000, hb, hc), hb, hc) 32.45/13.25 new_compare7(Integer(xuu33000), Integer(xuu34000)) -> new_primCmpInt(xuu33000, xuu34000) 32.45/13.25 new_compare10(xuu132, xuu133, False, dbe) -> GT 32.45/13.25 new_esEs8(LT, EQ) -> False 32.45/13.25 new_esEs8(EQ, LT) -> False 32.45/13.25 new_compare17(xuu33000, xuu34000, True) -> LT 32.45/13.25 new_compare11(xuu33000, xuu34000, False, gc, gd) -> GT 32.45/13.25 new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, chf)) -> new_esEs6(xuu3110000, xuu6000, chf) 32.45/13.25 new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False 32.45/13.25 new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False 32.45/13.25 new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.45/13.25 new_esEs21(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) 32.45/13.25 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Ordering, bb) -> new_ltEs12(xuu33000, xuu34000) 32.45/13.25 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Integer) -> new_ltEs10(xuu33000, xuu34000) 32.45/13.25 new_compare30(xuu33000, xuu34000, app(ty_Maybe, bac)) -> new_compare29(xuu33000, xuu34000, bac) 32.45/13.25 new_ltEs5(xuu3300, xuu3400, app(ty_Maybe, bfg)) -> new_ltEs13(xuu3300, xuu3400, bfg) 32.45/13.25 new_esEs26(xuu33000, xuu34000, app(ty_[], bdg)) -> new_esEs16(xuu33000, xuu34000, bdg) 32.45/13.25 new_ltEs17(xuu3300, xuu3400) -> new_fsEs(new_compare13(xuu3300, xuu3400)) 32.45/13.25 new_ltEs15(xuu3300, xuu3400, bfh) -> new_fsEs(new_compare15(xuu3300, xuu3400, bfh)) 32.45/13.25 new_ltEs19(xuu33002, xuu34002, app(app(ty_@2, ef), eg)) -> new_ltEs14(xuu33002, xuu34002, ef, eg) 32.45/13.25 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 32.45/13.25 new_esEs25(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) 32.45/13.25 new_esEs23(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.45/13.25 new_primCmpInt(Neg(Zero), Pos(Succ(xuu3400))) -> LT 32.45/13.25 new_compare13(Char(xuu33000), Char(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) 32.45/13.25 new_ltEs5(xuu3300, xuu3400, app(app(app(ty_@3, de), df), fb)) -> new_ltEs8(xuu3300, xuu3400, de, df, fb) 32.45/13.25 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Int, bga) -> new_esEs12(xuu3110000, xuu6000) 32.45/13.25 new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.45/13.25 new_ltEs20(xuu33001, xuu34001, ty_Char) -> new_ltEs17(xuu33001, xuu34001) 32.45/13.25 new_compare17(xuu33000, xuu34000, False) -> GT 32.45/13.25 new_lt9(xuu33001, xuu34001, ty_Integer) -> new_lt13(xuu33001, xuu34001) 32.45/13.25 new_primMulInt(Pos(xuu31100000), Pos(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) 32.45/13.25 new_compare30(xuu33000, xuu34000, ty_Float) -> new_compare18(xuu33000, xuu34000) 32.45/13.25 new_ltEs5(xuu3300, xuu3400, ty_Float) -> new_ltEs11(xuu3300, xuu3400) 32.45/13.25 new_ltEs5(xuu3300, xuu3400, app(app(ty_@2, bbg), bdc)) -> new_ltEs14(xuu3300, xuu3400, bbg, bdc) 32.45/13.25 new_esEs23(xuu3110000, xuu6000, app(app(ty_Either, dae), daf)) -> new_esEs4(xuu3110000, xuu6000, dae, daf) 32.45/13.25 new_esEs18(xuu3110002, xuu6002, app(ty_[], ccb)) -> new_esEs16(xuu3110002, xuu6002, ccb) 32.45/13.25 new_ltEs6(Right(xuu33000), Right(xuu34000), cb, ty_Bool) -> new_ltEs16(xuu33000, xuu34000) 32.45/13.25 new_esEs25(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) 32.45/13.25 new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, bfa), bfb)) -> new_esEs4(xuu3110000, xuu6000, bfa, bfb) 32.45/13.25 new_primCompAux1(xuu33000, xuu34000, xuu176, hd) -> new_primCompAux0(xuu176, new_compare30(xuu33000, xuu34000, hd)) 32.45/13.25 new_lt9(xuu33001, xuu34001, ty_Double) -> new_lt12(xuu33001, xuu34001) 32.45/13.25 new_compare10(xuu132, xuu133, True, dbe) -> LT 32.45/13.25 new_esEs24(xuu33001, xuu34001, app(ty_Maybe, fh)) -> new_esEs6(xuu33001, xuu34001, fh) 32.45/13.25 new_primMulNat0(Succ(xuu311000000), Zero) -> Zero 32.45/13.25 new_primMulNat0(Zero, Succ(xuu600100)) -> Zero 32.45/13.25 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) 32.45/13.25 new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, bef), beg), beh)) -> new_esEs5(xuu3110000, xuu6000, bef, beg, beh) 32.45/13.25 new_lt10(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) 32.45/13.25 new_ltEs6(Right(xuu33000), Right(xuu34000), cb, app(app(ty_Either, cc), cd)) -> new_ltEs6(xuu33000, xuu34000, cc, cd) 32.45/13.25 new_esEs23(xuu3110000, xuu6000, app(app(app(ty_@3, dab), dac), dad)) -> new_esEs5(xuu3110000, xuu6000, dab, dac, dad) 32.45/13.25 new_ltEs19(xuu33002, xuu34002, ty_Char) -> new_ltEs17(xuu33002, xuu34002) 32.45/13.25 new_lt17(xuu33000, xuu34000, ha) -> new_esEs8(new_compare29(xuu33000, xuu34000, ha), LT) 32.45/13.25 new_ltEs5(xuu3300, xuu3400, ty_Double) -> new_ltEs9(xuu3300, xuu3400) 32.45/13.25 new_lt20(xuu33000, xuu34000, app(app(app(ty_@3, bdd), bde), bdf)) -> new_lt11(xuu33000, xuu34000, bdd, bde, bdf) 32.45/13.25 new_esEs24(xuu33001, xuu34001, ty_Char) -> new_esEs10(xuu33001, xuu34001) 32.45/13.25 new_lt9(xuu33001, xuu34001, app(ty_Maybe, fh)) -> new_lt17(xuu33001, xuu34001, fh) 32.45/13.25 new_esEs18(xuu3110002, xuu6002, ty_Integer) -> new_esEs17(xuu3110002, xuu6002) 32.45/13.25 new_lt14(xuu33000, xuu34000) -> new_esEs8(new_compare18(xuu33000, xuu34000), LT) 32.45/13.25 new_ltEs5(xuu3300, xuu3400, ty_Bool) -> new_ltEs16(xuu3300, xuu3400) 32.45/13.25 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Integer, bb) -> new_ltEs10(xuu33000, xuu34000) 32.45/13.25 new_esEs8(LT, LT) -> True 32.45/13.25 new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, chd)) -> new_esEs15(xuu3110000, xuu6000, chd) 32.45/13.25 new_esEs26(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) 32.45/13.25 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.45/13.25 new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, bah), bba), bbb)) -> new_ltEs8(xuu33000, xuu34000, bah, bba, bbb) 32.45/13.25 new_primPlusNat1(Succ(xuu28200), Zero) -> Succ(xuu28200) 32.45/13.25 new_primPlusNat1(Zero, Succ(xuu9700)) -> Succ(xuu9700) 32.45/13.25 new_compare23(Just(xuu3300), Nothing, False, bff) -> GT 32.45/13.25 new_compare30(xuu33000, xuu34000, ty_Char) -> new_compare13(xuu33000, xuu34000) 32.45/13.25 new_ltEs19(xuu33002, xuu34002, ty_Double) -> new_ltEs9(xuu33002, xuu34002) 32.45/13.25 new_esEs19(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) 32.45/13.25 new_lt10(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) 32.45/13.25 new_esEs4(Right(xuu3110000), Right(xuu6000), bhd, app(app(app(ty_@3, bhg), bhh), caa)) -> new_esEs5(xuu3110000, xuu6000, bhg, bhh, caa) 32.45/13.25 new_esEs13(True, True) -> True 32.45/13.25 new_ltEs20(xuu33001, xuu34001, app(app(ty_@2, bcg), bch)) -> new_ltEs14(xuu33001, xuu34001, bcg, bch) 32.45/13.25 new_esEs23(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.45/13.25 new_esEs23(xuu3110000, xuu6000, app(ty_Ratio, dag)) -> new_esEs15(xuu3110000, xuu6000, dag) 32.45/13.25 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Char, bga) -> new_esEs10(xuu3110000, xuu6000) 32.45/13.25 new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_[], bhb), bga) -> new_esEs16(xuu3110000, xuu6000, bhb) 32.45/13.25 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.45/13.25 new_esEs16([], [], chg) -> True 32.45/13.25 new_ltEs19(xuu33002, xuu34002, ty_Float) -> new_ltEs11(xuu33002, xuu34002) 32.45/13.25 new_esEs25(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) 32.45/13.25 new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, bfc)) -> new_esEs15(xuu3110000, xuu6000, bfc) 32.45/13.25 new_primMulInt(Neg(xuu31100000), Neg(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) 32.45/13.25 new_primCmpInt(Pos(Zero), Pos(Succ(xuu3400))) -> new_primCmpNat0(Zero, Succ(xuu3400)) 32.45/13.25 new_esEs25(xuu33000, xuu34000, app(app(ty_@2, hb), hc)) -> new_esEs7(xuu33000, xuu34000, hb, hc) 32.45/13.25 new_ltEs20(xuu33001, xuu34001, ty_Bool) -> new_ltEs16(xuu33001, xuu34001) 32.45/13.25 new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, bfe)) -> new_esEs6(xuu3110000, xuu6000, bfe) 32.45/13.25 new_esEs6(Nothing, Just(xuu6000), bec) -> False 32.45/13.25 new_esEs6(Just(xuu3110000), Nothing, bec) -> False 32.45/13.25 new_esEs4(Right(xuu3110000), Right(xuu6000), bhd, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.45/13.25 new_esEs4(Right(xuu3110000), Right(xuu6000), bhd, app(ty_Maybe, caf)) -> new_esEs6(xuu3110000, xuu6000, caf) 32.45/13.25 new_esEs6(Nothing, Nothing, bec) -> True 32.45/13.25 new_esEs14(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 32.45/13.25 new_esEs23(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.45/13.25 new_compare26(xuu33000, xuu34000, True, ge, gf, gg) -> EQ 32.45/13.25 new_esEs4(Right(xuu3110000), Right(xuu6000), bhd, app(ty_Ratio, cad)) -> new_esEs15(xuu3110000, xuu6000, cad) 32.45/13.25 new_compare26(xuu33000, xuu34000, False, ge, gf, gg) -> new_compare14(xuu33000, xuu34000, new_ltEs8(xuu33000, xuu34000, ge, gf, gg), ge, gf, gg) 32.45/13.25 new_ltEs19(xuu33002, xuu34002, ty_Bool) -> new_ltEs16(xuu33002, xuu34002) 32.45/13.25 new_lt10(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) 32.45/13.25 new_primMulInt(Pos(xuu31100000), Neg(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) 32.45/13.25 new_primMulInt(Neg(xuu31100000), Pos(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) 32.45/13.25 new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.45/13.25 new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.45/13.25 new_compare30(xuu33000, xuu34000, app(app(ty_@2, bad), bae)) -> new_compare6(xuu33000, xuu34000, bad, bae) 32.45/13.25 new_esEs26(xuu33000, xuu34000, app(ty_Ratio, dbg)) -> new_esEs15(xuu33000, xuu34000, dbg) 32.45/13.25 new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, bha), bga) -> new_esEs15(xuu3110000, xuu6000, bha) 32.45/13.25 new_esEs4(Right(xuu3110000), Right(xuu6000), bhd, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.45/13.25 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Int) -> new_ltEs7(xuu33000, xuu34000) 32.45/13.25 new_ltEs19(xuu33002, xuu34002, ty_Ordering) -> new_ltEs12(xuu33002, xuu34002) 32.45/13.25 new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs5(xuu3110000, xuu6000, cgg, cgh, cha) 32.45/13.25 new_esEs4(Right(xuu3110000), Right(xuu6000), bhd, app(app(ty_@2, bhe), bhf)) -> new_esEs7(xuu3110000, xuu6000, bhe, bhf) 32.45/13.25 new_esEs21(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) 32.45/13.25 new_sr0(Integer(xuu330000), Integer(xuu340010)) -> Integer(new_primMulInt(xuu330000, xuu340010)) 32.45/13.25 new_esEs24(xuu33001, xuu34001, ty_Double) -> new_esEs14(xuu33001, xuu34001) 32.45/13.25 new_esEs25(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) 32.45/13.25 new_esEs13(False, False) -> True 32.45/13.25 new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.45/13.25 new_compare31(xuu33000, xuu34000) -> new_compare210(xuu33000, xuu34000, new_esEs8(xuu33000, xuu34000)) 32.45/13.25 new_lt8(xuu33000, xuu34000, dbb) -> new_esEs8(new_compare15(xuu33000, xuu34000, dbb), LT) 32.45/13.25 new_esEs18(xuu3110002, xuu6002, ty_Double) -> new_esEs14(xuu3110002, xuu6002) 32.45/13.25 new_compare0([], :(xuu34000, xuu34001), hd) -> LT 32.45/13.25 new_asAs(True, xuu139) -> xuu139 32.45/13.25 new_esEs19(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) 32.45/13.25 new_esEs21(xuu3110001, xuu6001, app(ty_Maybe, cgd)) -> new_esEs6(xuu3110001, xuu6001, cgd) 32.45/13.25 new_lt10(xuu33000, xuu34000, app(app(app(ty_@3, ge), gf), gg)) -> new_lt11(xuu33000, xuu34000, ge, gf, gg) 32.45/13.25 new_lt16(xuu33000, xuu34000, gh) -> new_esEs8(new_compare0(xuu33000, xuu34000, gh), LT) 32.45/13.25 new_esEs4(Right(xuu3110000), Right(xuu6000), bhd, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.45/13.25 new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, bgg), bgh), bga) -> new_esEs4(xuu3110000, xuu6000, bgg, bgh) 32.45/13.25 new_esEs21(xuu3110001, xuu6001, app(ty_Ratio, cgb)) -> new_esEs15(xuu3110001, xuu6001, cgb) 32.45/13.25 new_esEs26(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) 32.45/13.25 new_ltEs16(True, False) -> False 32.45/13.25 new_compare16(xuu33000, xuu34000, True, hb, hc) -> LT 32.45/13.25 new_ltEs5(xuu3300, xuu3400, ty_@0) -> new_ltEs18(xuu3300, xuu3400) 32.45/13.25 new_lt9(xuu33001, xuu34001, app(app(ty_Either, eh), fa)) -> new_lt5(xuu33001, xuu34001, eh, fa) 32.45/13.25 new_esEs18(xuu3110002, xuu6002, app(app(ty_@2, cbb), cbc)) -> new_esEs7(xuu3110002, xuu6002, cbb, cbc) 32.45/13.25 new_compare24(xuu33000, xuu34000, True, gc, gd) -> EQ 32.45/13.25 new_esEs24(xuu33001, xuu34001, app(app(ty_@2, ga), gb)) -> new_esEs7(xuu33001, xuu34001, ga, gb) 32.45/13.25 new_primCmpInt(Pos(Succ(xuu3300)), Pos(xuu340)) -> new_primCmpNat0(Succ(xuu3300), xuu340) 32.45/13.25 new_lt9(xuu33001, xuu34001, ty_@0) -> new_lt19(xuu33001, xuu34001) 32.45/13.25 new_compare110(xuu33000, xuu34000, False) -> GT 32.45/13.25 new_compare9(xuu33000, xuu34000) -> new_compare25(xuu33000, xuu34000, new_esEs13(xuu33000, xuu34000)) 32.45/13.25 new_esEs25(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) 32.45/13.25 new_lt20(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) 32.45/13.25 new_esEs9(@0, @0) -> True 32.45/13.25 new_compare0([], [], hd) -> EQ 32.45/13.25 new_esEs19(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) 32.45/13.25 new_esEs20(xuu3110000, xuu6000, app(app(ty_Either, cec), ced)) -> new_esEs4(xuu3110000, xuu6000, cec, ced) 32.45/13.25 new_sr(xuu3110000, xuu6001) -> new_primMulInt(xuu3110000, xuu6001) 32.45/13.25 new_esEs19(xuu3110001, xuu6001, app(app(ty_Either, cda), cdb)) -> new_esEs4(xuu3110001, xuu6001, cda, cdb) 32.45/13.25 new_compare30(xuu33000, xuu34000, ty_@0) -> new_compare32(xuu33000, xuu34000) 32.45/13.25 new_primMulNat0(Zero, Zero) -> Zero 32.45/13.25 new_ltEs20(xuu33001, xuu34001, ty_Ordering) -> new_ltEs12(xuu33001, xuu34001) 32.45/13.25 new_lt9(xuu33001, xuu34001, ty_Ordering) -> new_lt15(xuu33001, xuu34001) 32.45/13.25 new_ltEs13(Nothing, Nothing, bfg) -> True 32.45/13.25 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.45/13.25 new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_@2, bbe), bbf)) -> new_ltEs14(xuu33000, xuu34000, bbe, bbf) 32.45/13.25 new_ltEs13(Just(xuu33000), Nothing, bfg) -> False 32.45/13.25 new_lt20(xuu33000, xuu34000, app(ty_[], bdg)) -> new_lt16(xuu33000, xuu34000, bdg) 32.45/13.25 new_esEs24(xuu33001, xuu34001, app(ty_[], fg)) -> new_esEs16(xuu33001, xuu34001, fg) 32.45/13.25 new_esEs20(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.45/13.25 new_compare14(xuu33000, xuu34000, False, ge, gf, gg) -> GT 32.45/13.25 new_esEs23(xuu3110000, xuu6000, app(app(ty_@2, chh), daa)) -> new_esEs7(xuu3110000, xuu6000, chh, daa) 32.45/13.25 new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.45/13.25 new_lt20(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) 32.45/13.25 new_esEs25(xuu33000, xuu34000, app(app(ty_Either, gc), gd)) -> new_esEs4(xuu33000, xuu34000, gc, gd) 32.45/13.25 new_ltEs19(xuu33002, xuu34002, app(ty_Maybe, ee)) -> new_ltEs13(xuu33002, xuu34002, ee) 32.45/13.25 new_esEs19(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) 32.45/13.25 new_esEs21(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) 32.45/13.25 new_ltEs20(xuu33001, xuu34001, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_ltEs8(xuu33001, xuu34001, bcb, bcc, bcd) 32.45/13.25 new_esEs26(xuu33000, xuu34000, app(ty_Maybe, bdh)) -> new_esEs6(xuu33000, xuu34000, bdh) 32.45/13.25 new_lt11(xuu33000, xuu34000, ge, gf, gg) -> new_esEs8(new_compare28(xuu33000, xuu34000, ge, gf, gg), LT) 32.45/13.25 new_ltEs5(xuu3300, xuu3400, ty_Integer) -> new_ltEs10(xuu3300, xuu3400) 32.45/13.25 new_esEs4(Right(xuu3110000), Right(xuu6000), bhd, app(app(ty_Either, cab), cac)) -> new_esEs4(xuu3110000, xuu6000, cab, cac) 32.45/13.25 new_compare30(xuu33000, xuu34000, ty_Double) -> new_compare19(xuu33000, xuu34000) 32.45/13.25 new_compare32(@0, @0) -> EQ 32.45/13.25 new_ltEs12(GT, LT) -> False 32.45/13.25 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Bool) -> new_ltEs16(xuu33000, xuu34000) 32.45/13.25 new_primCompAux0(xuu182, EQ) -> xuu182 32.45/13.25 new_esEs26(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) 32.45/13.25 new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, bed), bee)) -> new_esEs7(xuu3110000, xuu6000, bed, bee) 32.45/13.25 new_esEs20(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.45/13.25 new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) 32.45/13.25 new_esEs7(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), cfa, cfb) -> new_asAs(new_esEs22(xuu3110000, xuu6000, cfa), new_esEs21(xuu3110001, xuu6001, cfb)) 32.45/13.25 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False 32.45/13.25 new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False 32.45/13.25 new_esEs25(xuu33000, xuu34000, app(ty_Maybe, ha)) -> new_esEs6(xuu33000, xuu34000, ha) 32.45/13.25 new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, bgb), bgc), bga) -> new_esEs7(xuu3110000, xuu6000, bgb, bgc) 32.45/13.25 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 32.45/13.25 new_esEs13(False, True) -> False 32.45/13.25 new_esEs13(True, False) -> False 32.45/13.25 new_esEs20(xuu3110000, xuu6000, app(ty_[], cef)) -> new_esEs16(xuu3110000, xuu6000, cef) 32.45/13.25 new_ltEs20(xuu33001, xuu34001, app(app(ty_Either, bbh), bca)) -> new_ltEs6(xuu33001, xuu34001, bbh, bca) 32.45/13.25 new_esEs26(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) 32.45/13.25 new_esEs20(xuu3110000, xuu6000, app(ty_Maybe, ceg)) -> new_esEs6(xuu3110000, xuu6000, ceg) 32.45/13.25 new_esEs4(Right(xuu3110000), Right(xuu6000), bhd, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.45/13.25 new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False 32.45/13.25 new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False 32.45/13.25 new_esEs26(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) 32.45/13.25 new_esEs19(xuu3110001, xuu6001, app(ty_Maybe, cde)) -> new_esEs6(xuu3110001, xuu6001, cde) 32.45/13.25 new_esEs25(xuu33000, xuu34000, app(ty_Ratio, dbb)) -> new_esEs15(xuu33000, xuu34000, dbb) 32.45/13.25 new_compare30(xuu33000, xuu34000, app(ty_[], bab)) -> new_compare0(xuu33000, xuu34000, bab) 32.45/13.25 new_ltEs6(Right(xuu33000), Right(xuu34000), cb, ty_Int) -> new_ltEs7(xuu33000, xuu34000) 32.45/13.25 new_lt9(xuu33001, xuu34001, ty_Float) -> new_lt14(xuu33001, xuu34001) 32.45/13.25 new_primCmpInt(Neg(Zero), Neg(Succ(xuu3400))) -> new_primCmpNat0(Succ(xuu3400), Zero) 32.45/13.25 new_esEs16(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), chg) -> new_asAs(new_esEs23(xuu3110000, xuu6000, chg), new_esEs16(xuu3110001, xuu6001, chg)) 32.45/13.25 new_compare23(Nothing, Just(xuu3400), False, bff) -> LT 32.45/13.25 new_compare29(xuu33000, xuu34000, ha) -> new_compare23(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, ha), ha) 32.45/13.25 new_esEs21(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) 32.45/13.25 new_esEs25(xuu33000, xuu34000, app(ty_[], gh)) -> new_esEs16(xuu33000, xuu34000, gh) 32.45/13.25 new_esEs19(xuu3110001, xuu6001, app(ty_[], cdd)) -> new_esEs16(xuu3110001, xuu6001, cdd) 32.45/13.25 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_@0, bb) -> new_ltEs18(xuu33000, xuu34000) 32.45/13.25 new_esEs24(xuu33001, xuu34001, app(app(ty_Either, eh), fa)) -> new_esEs4(xuu33001, xuu34001, eh, fa) 32.45/13.25 new_ltEs19(xuu33002, xuu34002, app(app(ty_Either, dg), dh)) -> new_ltEs6(xuu33002, xuu34002, dg, dh) 32.45/13.25 new_ltEs12(EQ, GT) -> True 32.45/13.25 new_esEs19(xuu3110001, xuu6001, app(ty_Ratio, cdc)) -> new_esEs15(xuu3110001, xuu6001, cdc) 32.45/13.25 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 32.45/13.25 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.45/13.25 new_esEs18(xuu3110002, xuu6002, app(app(ty_Either, cbg), cbh)) -> new_esEs4(xuu3110002, xuu6002, cbg, cbh) 32.45/13.25 new_lt20(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) 32.45/13.25 new_lt10(xuu33000, xuu34000, app(app(ty_Either, gc), gd)) -> new_lt5(xuu33000, xuu34000, gc, gd) 32.45/13.25 new_ltEs12(EQ, EQ) -> True 32.45/13.25 new_esEs24(xuu33001, xuu34001, ty_Float) -> new_esEs11(xuu33001, xuu34001) 32.45/13.25 new_compare30(xuu33000, xuu34000, ty_Int) -> new_compare12(xuu33000, xuu34000) 32.45/13.25 new_esEs23(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.45/13.25 new_esEs12(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) 32.45/13.25 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Double, bga) -> new_esEs14(xuu3110000, xuu6000) 32.45/13.25 new_esEs20(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.45/13.25 new_compare30(xuu33000, xuu34000, ty_Integer) -> new_compare7(xuu33000, xuu34000) 32.45/13.25 new_compare23(Nothing, Nothing, False, bff) -> LT 32.45/13.25 new_esEs18(xuu3110002, xuu6002, ty_@0) -> new_esEs9(xuu3110002, xuu6002) 32.45/13.25 new_esEs19(xuu3110001, xuu6001, app(app(ty_@2, ccd), cce)) -> new_esEs7(xuu3110001, xuu6001, ccd, cce) 32.45/13.25 new_esEs4(Right(xuu3110000), Right(xuu6000), bhd, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.45/13.25 new_primPlusNat0(xuu107, xuu600100) -> new_primPlusNat1(xuu107, Succ(xuu600100)) 32.45/13.25 new_esEs4(Right(xuu3110000), Right(xuu6000), bhd, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 32.45/13.25 new_ltEs6(Right(xuu33000), Left(xuu34000), cb, bb) -> False 32.45/13.25 new_not(False) -> True 32.45/13.25 new_esEs21(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) 32.45/13.25 new_esEs21(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) 32.45/13.25 new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_@2, bh), ca), bb) -> new_ltEs14(xuu33000, xuu34000, bh, ca) 32.45/13.25 new_ltEs6(Right(xuu33000), Right(xuu34000), cb, app(ty_Maybe, db)) -> new_ltEs13(xuu33000, xuu34000, db) 32.45/13.25 new_ltEs5(xuu3300, xuu3400, ty_Int) -> new_ltEs7(xuu3300, xuu3400) 32.45/13.25 new_compare28(xuu33000, xuu34000, ge, gf, gg) -> new_compare26(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, ge, gf, gg), ge, gf, gg) 32.45/13.25 new_ltEs8(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, df, fb) -> new_pePe(new_lt10(xuu33000, xuu34000, de), new_asAs(new_esEs25(xuu33000, xuu34000, de), new_pePe(new_lt9(xuu33001, xuu34001, df), new_asAs(new_esEs24(xuu33001, xuu34001, df), new_ltEs19(xuu33002, xuu34002, fb))))) 32.45/13.25 new_compare30(xuu33000, xuu34000, ty_Bool) -> new_compare9(xuu33000, xuu34000) 32.45/13.25 new_compare0(:(xuu33000, xuu33001), [], hd) -> GT 32.45/13.25 new_esEs8(LT, GT) -> False 32.45/13.25 new_esEs8(GT, LT) -> False 32.45/13.25 new_esEs19(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) 32.45/13.25 new_esEs25(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) 32.45/13.25 new_compare25(xuu33000, xuu34000, True) -> EQ 32.45/13.25 new_compare27(xuu33000, xuu34000, True, hb, hc) -> EQ 32.45/13.25 new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.45/13.25 new_esEs18(xuu3110002, xuu6002, app(ty_Maybe, ccc)) -> new_esEs6(xuu3110002, xuu6002, ccc) 32.45/13.25 new_ltEs16(False, False) -> True 32.45/13.25 new_compare11(xuu33000, xuu34000, True, gc, gd) -> LT 32.45/13.25 new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Ratio, ceh)) -> new_ltEs15(xuu33000, xuu34000, ceh) 32.45/13.25 new_ltEs19(xuu33002, xuu34002, ty_Int) -> new_ltEs7(xuu33002, xuu34002) 32.45/13.25 new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.45/13.25 new_lt10(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) 32.45/13.25 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 32.45/13.25 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 32.45/13.25 new_primPlusNat1(Zero, Zero) -> Zero 32.45/13.25 new_lt20(xuu33000, xuu34000, app(app(ty_@2, bea), beb)) -> new_lt4(xuu33000, xuu34000, bea, beb) 32.45/13.25 new_lt9(xuu33001, xuu34001, app(app(app(ty_@3, fc), fd), ff)) -> new_lt11(xuu33001, xuu34001, fc, fd, ff) 32.45/13.25 new_ltEs11(xuu3300, xuu3400) -> new_fsEs(new_compare18(xuu3300, xuu3400)) 32.45/13.25 new_lt19(xuu33000, xuu34000) -> new_esEs8(new_compare32(xuu33000, xuu34000), LT) 32.45/13.25 new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) 32.45/13.25 new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.45/13.25 new_ltEs20(xuu33001, xuu34001, ty_Int) -> new_ltEs7(xuu33001, xuu34001) 32.45/13.25 new_lt20(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) 32.45/13.25 new_esEs28(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) 32.45/13.25 new_lt10(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) 32.45/13.25 new_esEs21(xuu3110001, xuu6001, app(ty_[], cgc)) -> new_esEs16(xuu3110001, xuu6001, cgc) 32.45/13.25 new_ltEs16(True, True) -> True 32.45/13.25 new_lt13(xuu33000, xuu34000) -> new_esEs8(new_compare7(xuu33000, xuu34000), LT) 32.45/13.25 new_esEs20(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 32.45/13.25 new_esEs26(xuu33000, xuu34000, app(app(ty_Either, bda), bdb)) -> new_esEs4(xuu33000, xuu34000, bda, bdb) 32.45/13.25 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Bool, bb) -> new_ltEs16(xuu33000, xuu34000) 32.45/13.25 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 32.45/13.25 new_ltEs5(xuu3300, xuu3400, app(ty_Ratio, bfh)) -> new_ltEs15(xuu3300, xuu3400, bfh) 32.45/13.25 new_esEs4(Right(xuu3110000), Right(xuu6000), bhd, ty_Char) -> new_esEs10(xuu3110000, xuu6000) 32.45/13.25 new_esEs25(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) 32.45/13.25 new_primMulNat0(Succ(xuu311000000), Succ(xuu600100)) -> new_primPlusNat0(new_primMulNat0(xuu311000000, Succ(xuu600100)), xuu600100) 32.45/13.25 new_ltEs12(EQ, LT) -> False 32.45/13.25 new_ltEs5(xuu3300, xuu3400, app(ty_[], hd)) -> new_ltEs4(xuu3300, xuu3400, hd) 32.45/13.25 new_lt6(xuu330, xuu340) -> new_esEs8(new_compare12(xuu330, xuu340), LT) 32.45/13.25 new_lt7(xuu33000, xuu34000) -> new_esEs8(new_compare13(xuu33000, xuu34000), LT) 32.45/13.25 new_primCmpNat0(Succ(xuu3300), Succ(xuu3400)) -> new_primCmpNat0(xuu3300, xuu3400) 32.45/13.25 new_ltEs19(xuu33002, xuu34002, app(ty_Ratio, dbc)) -> new_ltEs15(xuu33002, xuu34002, dbc) 32.45/13.25 new_esEs26(xuu33000, xuu34000, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs5(xuu33000, xuu34000, bdd, bde, bdf) 32.45/13.25 new_esEs21(xuu3110001, xuu6001, app(app(ty_@2, cfc), cfd)) -> new_esEs7(xuu3110001, xuu6001, cfc, cfd) 32.45/13.25 new_esEs26(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) 32.45/13.25 new_esEs18(xuu3110002, xuu6002, ty_Char) -> new_esEs10(xuu3110002, xuu6002) 32.45/13.25 new_esEs24(xuu33001, xuu34001, ty_Integer) -> new_esEs17(xuu33001, xuu34001) 32.45/13.25 new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_[], bfd)) -> new_esEs16(xuu3110000, xuu6000, bfd) 32.45/13.25 new_compare12(xuu33, xuu34) -> new_primCmpInt(xuu33, xuu34) 32.45/13.25 new_ltEs6(Right(xuu33000), Right(xuu34000), cb, app(app(app(ty_@3, ce), cf), cg)) -> new_ltEs8(xuu33000, xuu34000, ce, cf, cg) 32.45/13.25 new_esEs19(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) 32.45/13.25 new_esEs16(:(xuu3110000, xuu3110001), [], chg) -> False 32.45/13.25 new_esEs16([], :(xuu6000, xuu6001), chg) -> False 32.45/13.25 new_esEs23(xuu3110000, xuu6000, app(ty_[], dah)) -> new_esEs16(xuu3110000, xuu6000, dah) 32.45/13.25 new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, bgd), bge), bgf), bga) -> new_esEs5(xuu3110000, xuu6000, bgd, bge, bgf) 32.45/13.25 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 32.45/13.25 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 32.45/13.25 new_ltEs12(LT, EQ) -> True 32.45/13.25 new_ltEs20(xuu33001, xuu34001, app(ty_[], bce)) -> new_ltEs4(xuu33001, xuu34001, bce) 32.45/13.25 new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) 32.45/13.25 new_compare30(xuu33000, xuu34000, app(app(ty_Either, he), hf)) -> new_compare8(xuu33000, xuu34000, he, hf) 32.45/13.25 new_ltEs20(xuu33001, xuu34001, app(ty_Ratio, dbf)) -> new_ltEs15(xuu33001, xuu34001, dbf) 32.45/13.25 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Float, bb) -> new_ltEs11(xuu33000, xuu34000) 32.45/13.25 new_ltEs9(xuu3300, xuu3400) -> new_fsEs(new_compare19(xuu3300, xuu3400)) 32.45/13.25 new_esEs27(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) 32.45/13.25 new_ltEs13(Just(xuu33000), Just(xuu34000), ty_@0) -> new_ltEs18(xuu33000, xuu34000) 32.45/13.25 new_primEqNat0(Zero, Zero) -> True 32.45/13.25 new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, bhc), bga) -> new_esEs6(xuu3110000, xuu6000, bhc) 32.45/13.25 new_esEs20(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 32.45/13.25 new_lt20(xuu33000, xuu34000, app(app(ty_Either, bda), bdb)) -> new_lt5(xuu33000, xuu34000, bda, bdb) 32.45/13.25 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Float, bga) -> new_esEs11(xuu3110000, xuu6000) 32.45/13.25 new_lt10(xuu33000, xuu34000, app(app(ty_@2, hb), hc)) -> new_lt4(xuu33000, xuu34000, hb, hc) 32.45/13.25 new_esEs22(xuu3110000, xuu6000, app(ty_[], che)) -> new_esEs16(xuu3110000, xuu6000, che) 32.45/13.25 new_asAs(False, xuu139) -> False 32.45/13.25 new_ltEs19(xuu33002, xuu34002, app(ty_[], ed)) -> new_ltEs4(xuu33002, xuu34002, ed) 32.45/13.25 new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs14(xuu3110000, xuu6000) 32.45/13.25 new_compare30(xuu33000, xuu34000, ty_Ordering) -> new_compare31(xuu33000, xuu34000) 32.45/13.25 new_lt20(xuu33000, xuu34000, app(ty_Maybe, bdh)) -> new_lt17(xuu33000, xuu34000, bdh) 32.45/13.25 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Double, bb) -> new_ltEs9(xuu33000, xuu34000) 32.45/13.25 new_lt20(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) 32.45/13.25 new_ltEs6(Right(xuu33000), Right(xuu34000), cb, ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) 32.45/13.25 new_ltEs13(Nothing, Just(xuu34000), bfg) -> True 32.45/13.25 new_esEs23(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) 32.45/13.25 new_esEs4(Right(xuu3110000), Right(xuu6000), bhd, app(ty_[], cae)) -> new_esEs16(xuu3110000, xuu6000, cae) 32.45/13.25 new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Char, bb) -> new_ltEs17(xuu33000, xuu34000) 32.45/13.25 new_ltEs6(Left(xuu33000), Right(xuu34000), cb, bb) -> True 32.45/13.25 new_esEs8(EQ, GT) -> False 32.45/13.25 new_esEs8(GT, EQ) -> False 32.45/13.25 new_esEs11(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 32.45/13.25 new_ltEs6(Right(xuu33000), Right(xuu34000), cb, ty_Integer) -> new_ltEs10(xuu33000, xuu34000) 32.45/13.25 new_ltEs16(False, True) -> True 32.45/13.25 new_lt10(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) 32.45/13.25 new_esEs21(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) 32.45/13.25 new_esEs20(xuu3110000, xuu6000, app(app(ty_@2, cdf), cdg)) -> new_esEs7(xuu3110000, xuu6000, cdf, cdg) 32.45/13.25 32.45/13.25 The set Q consists of the following terms: 32.45/13.25 32.45/13.25 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.25 new_lt10(x0, x1, app(ty_Maybe, x2)) 32.45/13.25 new_esEs8(EQ, EQ) 32.45/13.25 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 32.45/13.25 new_esEs6(Just(x0), Just(x1), ty_Double) 32.45/13.25 new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) 32.45/13.25 new_esEs15(:%(x0, x1), :%(x2, x3), x4) 32.45/13.25 new_lt9(x0, x1, ty_Bool) 32.45/13.25 new_ltEs13(Just(x0), Nothing, x1) 32.45/13.25 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.25 new_lt10(x0, x1, ty_@0) 32.45/13.25 new_esEs19(x0, x1, app(ty_Ratio, x2)) 32.45/13.25 new_ltEs20(x0, x1, ty_Int) 32.45/13.25 new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) 32.45/13.25 new_lt20(x0, x1, ty_Integer) 32.45/13.25 new_ltEs11(x0, x1) 32.45/13.25 new_ltEs7(x0, x1) 32.45/13.25 new_esEs25(x0, x1, app(ty_Ratio, x2)) 32.45/13.25 new_esEs24(x0, x1, ty_Float) 32.45/13.25 new_esEs6(Just(x0), Just(x1), ty_Ordering) 32.45/13.25 new_esEs23(x0, x1, app(ty_[], x2)) 32.45/13.25 new_primPlusNat1(Zero, Zero) 32.45/13.25 new_pePe(True, x0) 32.45/13.25 new_lt20(x0, x1, app(ty_Ratio, x2)) 32.45/13.25 new_ltEs5(x0, x1, app(ty_Maybe, x2)) 32.45/13.25 new_ltEs6(Right(x0), Right(x1), x2, ty_@0) 32.45/13.25 new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.25 new_ltEs20(x0, x1, ty_Char) 32.45/13.25 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.25 new_lt10(x0, x1, ty_Bool) 32.45/13.25 new_ltEs9(x0, x1) 32.45/13.25 new_lt9(x0, x1, ty_Integer) 32.45/13.25 new_ltEs19(x0, x1, ty_Double) 32.45/13.25 new_compare14(x0, x1, True, x2, x3, x4) 32.45/13.25 new_esEs12(x0, x1) 32.45/13.25 new_primEqInt(Pos(Zero), Pos(Zero)) 32.45/13.25 new_lt13(x0, x1) 32.45/13.25 new_ltEs6(Left(x0), Left(x1), ty_Float, x2) 32.45/13.25 new_esEs4(Right(x0), Right(x1), x2, ty_Int) 32.45/13.25 new_esEs20(x0, x1, app(ty_Ratio, x2)) 32.45/13.25 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.25 new_lt7(x0, x1) 32.45/13.25 new_esEs26(x0, x1, ty_Double) 32.45/13.25 new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 32.45/13.25 new_fsEs(x0) 32.45/13.25 new_lt10(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.25 new_lt9(x0, x1, ty_@0) 32.45/13.25 new_primEqNat0(Zero, Succ(x0)) 32.45/13.25 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.25 new_lt10(x0, x1, ty_Char) 32.45/13.25 new_primEqInt(Neg(Zero), Neg(Zero)) 32.45/13.25 new_esEs4(Right(x0), Right(x1), x2, ty_Double) 32.45/13.25 new_esEs26(x0, x1, app(ty_[], x2)) 32.45/13.25 new_esEs16(:(x0, x1), :(x2, x3), x4) 32.45/13.25 new_esEs4(Right(x0), Right(x1), x2, ty_Char) 32.45/13.25 new_esEs23(x0, x1, ty_Bool) 32.45/13.25 new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 32.45/13.25 new_esEs6(Just(x0), Just(x1), ty_Char) 32.45/13.25 new_lt11(x0, x1, x2, x3, x4) 32.45/13.25 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.25 new_lt5(x0, x1, x2, x3) 32.45/13.25 new_ltEs16(False, False) 32.45/13.25 new_ltEs19(x0, x1, ty_Int) 32.45/13.25 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 32.45/13.25 new_ltEs13(Nothing, Just(x0), x1) 32.45/13.25 new_compare30(x0, x1, ty_Double) 32.45/13.25 new_lt19(x0, x1) 32.45/13.25 new_ltEs19(x0, x1, app(ty_[], x2)) 32.45/13.25 new_esEs24(x0, x1, app(ty_Maybe, x2)) 32.45/13.25 new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) 32.45/13.25 new_esEs21(x0, x1, app(ty_[], x2)) 32.45/13.25 new_lt20(x0, x1, app(ty_Maybe, x2)) 32.45/13.25 new_esEs24(x0, x1, app(ty_Ratio, x2)) 32.45/13.25 new_ltEs12(GT, EQ) 32.45/13.25 new_ltEs12(EQ, GT) 32.45/13.25 new_ltEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 32.45/13.25 new_compare10(x0, x1, True, x2) 32.45/13.25 new_esEs19(x0, x1, app(ty_[], x2)) 32.45/13.25 new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) 32.45/13.25 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.25 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.25 new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 32.45/13.25 new_primEqInt(Pos(Zero), Neg(Zero)) 32.45/13.25 new_primEqInt(Neg(Zero), Pos(Zero)) 32.45/13.25 new_ltEs20(x0, x1, ty_Ordering) 32.45/13.25 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 32.45/13.25 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 32.45/13.25 new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) 32.45/13.25 new_compare30(x0, x1, app(ty_Ratio, x2)) 32.45/13.25 new_esEs19(x0, x1, ty_Float) 32.45/13.25 new_compare14(x0, x1, False, x2, x3, x4) 32.45/13.25 new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 32.45/13.25 new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.25 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.25 new_primCompAux0(x0, GT) 32.45/13.25 new_compare210(x0, x1, False) 32.45/13.25 new_esEs23(x0, x1, ty_Ordering) 32.45/13.25 new_lt10(x0, x1, app(ty_[], x2)) 32.45/13.25 new_esEs21(x0, x1, app(ty_Ratio, x2)) 32.45/13.25 new_pePe(False, x0) 32.45/13.25 new_esEs6(Just(x0), Just(x1), ty_Int) 32.45/13.25 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 32.45/13.25 new_esEs23(x0, x1, app(ty_Maybe, x2)) 32.45/13.25 new_esEs4(Left(x0), Left(x1), ty_Integer, x2) 32.45/13.25 new_esEs25(x0, x1, ty_Integer) 32.45/13.25 new_esEs10(Char(x0), Char(x1)) 32.45/13.25 new_esEs23(x0, x1, ty_Integer) 32.45/13.25 new_compare13(Char(x0), Char(x1)) 32.45/13.25 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 32.45/13.25 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 32.45/13.25 new_compare11(x0, x1, True, x2, x3) 32.45/13.25 new_primEqNat0(Succ(x0), Succ(x1)) 32.45/13.25 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 32.45/13.25 new_primMulInt(Neg(x0), Neg(x1)) 32.45/13.25 new_ltEs13(Just(x0), Just(x1), ty_Float) 32.45/13.25 new_ltEs5(x0, x1, ty_Double) 32.45/13.25 new_ltEs6(Right(x0), Right(x1), x2, ty_Float) 32.45/13.25 new_esEs6(Just(x0), Just(x1), ty_@0) 32.45/13.25 new_esEs9(@0, @0) 32.45/13.25 new_esEs24(x0, x1, ty_Bool) 32.45/13.25 new_esEs4(Right(x0), Right(x1), x2, ty_Bool) 32.45/13.25 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 32.45/13.25 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 32.45/13.25 new_esEs22(x0, x1, app(ty_Ratio, x2)) 32.45/13.25 new_lt9(x0, x1, ty_Double) 32.45/13.25 new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 32.45/13.25 new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 32.45/13.25 new_lt10(x0, x1, app(ty_Ratio, x2)) 32.45/13.25 new_esEs14(Double(x0, x1), Double(x2, x3)) 32.45/13.25 new_compare30(x0, x1, app(ty_[], x2)) 32.45/13.25 new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 32.45/13.25 new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.25 new_lt4(x0, x1, x2, x3) 32.45/13.25 new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) 32.45/13.25 new_esEs6(Just(x0), Just(x1), ty_Bool) 32.45/13.25 new_lt10(x0, x1, ty_Float) 32.45/13.25 new_lt6(x0, x1) 32.45/13.25 new_esEs4(Left(x0), Left(x1), ty_@0, x2) 32.45/13.25 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.25 new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 32.45/13.25 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 32.45/13.25 new_ltEs5(x0, x1, ty_Ordering) 32.45/13.25 new_compare29(x0, x1, x2) 32.45/13.25 new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) 32.45/13.25 new_ltEs19(x0, x1, ty_Char) 32.45/13.25 new_ltEs13(Just(x0), Just(x1), ty_Int) 32.45/13.25 new_esEs21(x0, x1, ty_Double) 32.45/13.25 new_lt8(x0, x1, x2) 32.45/13.25 new_lt10(x0, x1, ty_Ordering) 32.45/13.25 new_ltEs6(Right(x0), Right(x1), x2, ty_Int) 32.45/13.25 new_lt17(x0, x1, x2) 32.45/13.25 new_primPlusNat0(x0, x1) 32.45/13.25 new_ltEs5(x0, x1, app(ty_[], x2)) 32.45/13.25 new_esEs26(x0, x1, ty_@0) 32.45/13.25 new_esEs23(x0, x1, ty_Double) 32.45/13.25 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 32.45/13.25 new_compare28(x0, x1, x2, x3, x4) 32.45/13.25 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.25 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.25 new_compare30(x0, x1, ty_Ordering) 32.45/13.25 new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) 32.45/13.25 new_compare10(x0, x1, False, x2) 32.45/13.25 new_primMulNat0(Succ(x0), Succ(x1)) 32.45/13.25 new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 32.45/13.25 new_primPlusNat1(Zero, Succ(x0)) 32.45/13.25 new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 32.45/13.25 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 32.45/13.25 new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 32.45/13.25 new_lt16(x0, x1, x2) 32.45/13.25 new_lt10(x0, x1, ty_Int) 32.45/13.25 new_compare25(x0, x1, True) 32.45/13.25 new_ltEs6(Right(x0), Right(x1), x2, ty_Char) 32.45/13.25 new_esEs8(GT, GT) 32.45/13.25 new_ltEs19(x0, x1, ty_Bool) 32.45/13.25 new_esEs28(x0, x1, ty_Integer) 32.45/13.25 new_ltEs16(True, False) 32.45/13.25 new_ltEs16(False, True) 32.45/13.25 new_ltEs12(EQ, LT) 32.45/13.25 new_ltEs12(LT, EQ) 32.45/13.25 new_esEs18(x0, x1, ty_Integer) 32.45/13.25 new_esEs8(LT, EQ) 32.45/13.25 new_esEs8(EQ, LT) 32.45/13.25 new_esEs18(x0, x1, ty_Float) 32.45/13.25 new_ltEs12(GT, GT) 32.45/13.25 new_compare30(x0, x1, ty_@0) 32.45/13.25 new_primCmpInt(Neg(Zero), Neg(Zero)) 32.45/13.25 new_esEs22(x0, x1, ty_Integer) 32.45/13.25 new_lt20(x0, x1, ty_@0) 32.45/13.25 new_compare23(x0, x1, True, x2) 32.45/13.25 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.25 new_esEs13(False, True) 32.45/13.25 new_esEs13(True, False) 32.45/13.25 new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 32.45/13.25 new_lt10(x0, x1, ty_Integer) 32.45/13.25 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.25 new_esEs11(Float(x0, x1), Float(x2, x3)) 32.45/13.25 new_esEs8(LT, LT) 32.45/13.25 new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 32.45/13.25 new_primCmpInt(Pos(Zero), Neg(Zero)) 32.45/13.25 new_primCmpInt(Neg(Zero), Pos(Zero)) 32.45/13.25 new_primMulInt(Pos(x0), Neg(x1)) 32.45/13.25 new_primMulInt(Neg(x0), Pos(x1)) 32.45/13.25 new_esEs20(x0, x1, ty_Char) 32.45/13.25 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 32.45/13.25 new_compare110(x0, x1, True) 32.45/13.25 new_esEs6(Just(x0), Just(x1), ty_Integer) 32.45/13.25 new_esEs18(x0, x1, ty_Int) 32.45/13.25 new_lt15(x0, x1) 32.45/13.25 new_primMulInt(Pos(x0), Pos(x1)) 32.45/13.25 new_lt9(x0, x1, app(ty_Maybe, x2)) 32.45/13.25 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.25 new_esEs20(x0, x1, ty_Int) 32.45/13.25 new_ltEs20(x0, x1, ty_Double) 32.45/13.25 new_compare210(x0, x1, True) 32.45/13.25 new_esEs6(Nothing, Nothing, x0) 32.45/13.25 new_compare24(x0, x1, False, x2, x3) 32.45/13.25 new_esEs22(x0, x1, ty_Ordering) 32.45/13.25 new_esEs25(x0, x1, ty_@0) 32.45/13.25 new_esEs18(x0, x1, ty_Char) 32.45/13.25 new_ltEs12(LT, LT) 32.45/13.25 new_asAs(True, x0) 32.45/13.25 new_primCompAux1(x0, x1, x2, x3) 32.45/13.25 new_esEs22(x0, x1, app(ty_[], x2)) 32.45/13.25 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.25 new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) 32.45/13.25 new_esEs4(Right(x0), Right(x1), x2, ty_Integer) 32.45/13.25 new_compare26(x0, x1, False, x2, x3, x4) 32.45/13.25 new_ltEs19(x0, x1, ty_Ordering) 32.45/13.25 new_esEs18(x0, x1, ty_Bool) 32.45/13.25 new_ltEs19(x0, x1, ty_Integer) 32.45/13.25 new_esEs23(x0, x1, ty_@0) 32.45/13.25 new_compare16(x0, x1, False, x2, x3) 32.45/13.25 new_esEs20(x0, x1, ty_Float) 32.45/13.25 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.25 new_ltEs17(x0, x1) 32.45/13.25 new_lt9(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.25 new_primCmpNat0(Succ(x0), Succ(x1)) 32.45/13.25 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.25 new_lt20(x0, x1, ty_Double) 32.45/13.25 new_compare6(x0, x1, x2, x3) 32.45/13.25 new_ltEs20(x0, x1, ty_@0) 32.45/13.25 new_compare23(Just(x0), Nothing, False, x1) 32.45/13.25 new_primMulNat0(Succ(x0), Zero) 32.45/13.25 new_primCmpNat0(Zero, Succ(x0)) 32.45/13.25 new_compare23(Nothing, Nothing, False, x0) 32.45/13.25 new_esEs19(x0, x1, ty_Int) 32.45/13.25 new_ltEs10(x0, x1) 32.45/13.25 new_esEs20(x0, x1, ty_@0) 32.45/13.25 new_primCompAux0(x0, LT) 32.45/13.25 new_esEs6(Just(x0), Just(x1), ty_Float) 32.45/13.25 new_ltEs5(x0, x1, ty_Bool) 32.45/13.25 new_lt20(x0, x1, app(ty_[], x2)) 32.45/13.25 new_ltEs6(Left(x0), Left(x1), ty_Int, x2) 32.45/13.25 new_compare7(Integer(x0), Integer(x1)) 32.45/13.25 new_esEs4(Right(x0), Right(x1), x2, ty_Float) 32.45/13.25 new_esEs21(x0, x1, app(ty_Maybe, x2)) 32.45/13.25 new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) 32.45/13.25 new_ltEs13(Just(x0), Just(x1), ty_Bool) 32.45/13.25 new_compare27(x0, x1, True, x2, x3) 32.45/13.25 new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 32.45/13.25 new_primMulNat0(Zero, Zero) 32.45/13.25 new_esEs22(x0, x1, ty_@0) 32.45/13.25 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 32.45/13.25 new_compare30(x0, x1, ty_Integer) 32.45/13.25 new_esEs16([], :(x0, x1), x2) 32.45/13.25 new_lt10(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.25 new_esEs6(Nothing, Just(x0), x1) 32.45/13.25 new_esEs17(Integer(x0), Integer(x1)) 32.45/13.25 new_esEs26(x0, x1, app(ty_Maybe, x2)) 32.45/13.25 new_ltEs5(x0, x1, ty_@0) 32.45/13.25 new_esEs19(x0, x1, ty_Ordering) 32.45/13.25 new_lt12(x0, x1) 32.45/13.25 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.25 new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) 32.45/13.25 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 32.45/13.25 new_esEs24(x0, x1, ty_Double) 32.45/13.25 new_esEs18(x0, x1, ty_@0) 32.45/13.25 new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.25 new_compare24(x0, x1, True, x2, x3) 32.45/13.25 new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 32.45/13.25 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 32.45/13.25 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 32.45/13.25 new_esEs28(x0, x1, ty_Int) 32.45/13.25 new_esEs4(Left(x0), Left(x1), ty_Double, x2) 32.45/13.25 new_esEs19(x0, x1, ty_Double) 32.45/13.25 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 32.45/13.25 new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 32.45/13.25 new_esEs25(x0, x1, ty_Double) 32.45/13.25 new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.25 new_esEs24(x0, x1, ty_Int) 32.45/13.25 new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.25 new_esEs21(x0, x1, ty_Bool) 32.45/13.25 new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 32.45/13.25 new_esEs19(x0, x1, app(ty_Maybe, x2)) 32.45/13.25 new_esEs20(x0, x1, ty_Bool) 32.45/13.25 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 32.45/13.25 new_esEs19(x0, x1, ty_Char) 32.45/13.25 new_compare11(x0, x1, False, x2, x3) 32.45/13.25 new_ltEs13(Just(x0), Just(x1), ty_@0) 32.45/13.25 new_esEs24(x0, x1, ty_Ordering) 32.45/13.25 new_compare8(x0, x1, x2, x3) 32.45/13.25 new_not(True) 32.45/13.25 new_compare17(x0, x1, False) 32.45/13.25 new_ltEs13(Just(x0), Just(x1), ty_Char) 32.45/13.25 new_lt9(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.25 new_compare17(x0, x1, True) 32.45/13.25 new_esEs8(EQ, GT) 32.45/13.25 new_esEs8(GT, EQ) 32.45/13.25 new_esEs18(x0, x1, ty_Ordering) 32.45/13.25 new_esEs22(x0, x1, ty_Int) 32.45/13.25 new_esEs24(x0, x1, ty_Char) 32.45/13.25 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.25 new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) 32.45/13.25 new_lt20(x0, x1, ty_Ordering) 32.45/13.25 new_esEs19(x0, x1, ty_@0) 32.45/13.25 new_ltEs13(Just(x0), Just(x1), ty_Integer) 32.45/13.25 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 32.45/13.25 new_compare110(x0, x1, False) 32.45/13.25 new_esEs13(True, True) 32.45/13.25 new_esEs21(x0, x1, ty_@0) 32.45/13.25 new_ltEs18(x0, x1) 32.45/13.25 new_compare12(x0, x1) 32.45/13.25 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.25 new_ltEs6(Left(x0), Left(x1), ty_@0, x2) 32.45/13.25 new_compare30(x0, x1, ty_Bool) 32.45/13.25 new_esEs26(x0, x1, ty_Float) 32.45/13.25 new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 32.45/13.25 new_ltEs6(Left(x0), Left(x1), ty_Char, x2) 32.45/13.25 new_primPlusNat1(Succ(x0), Succ(x1)) 32.45/13.25 new_esEs22(x0, x1, app(ty_Maybe, x2)) 32.45/13.25 new_esEs22(x0, x1, ty_Bool) 32.45/13.25 new_ltEs19(x0, x1, ty_@0) 32.45/13.25 new_esEs21(x0, x1, ty_Float) 32.45/13.25 new_compare30(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.25 new_esEs16([], [], x0) 32.45/13.25 new_primEqNat0(Succ(x0), Zero) 32.45/13.25 new_primCompAux0(x0, EQ) 32.45/13.25 new_lt14(x0, x1) 32.45/13.25 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 32.45/13.25 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.25 new_ltEs6(Right(x0), Left(x1), x2, x3) 32.45/13.25 new_ltEs6(Left(x0), Right(x1), x2, x3) 32.45/13.25 new_ltEs19(x0, x1, ty_Float) 32.45/13.25 new_ltEs12(EQ, EQ) 32.45/13.25 new_esEs27(x0, x1, ty_Int) 32.45/13.25 new_compare30(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.25 new_ltEs5(x0, x1, app(ty_Ratio, x2)) 32.45/13.25 new_esEs22(x0, x1, ty_Char) 32.45/13.25 new_compare25(x0, x1, False) 32.45/13.25 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 32.45/13.25 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 32.45/13.25 new_ltEs5(x0, x1, ty_Integer) 32.45/13.25 new_esEs25(x0, x1, ty_Ordering) 32.45/13.25 new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 32.45/13.25 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 32.45/13.25 new_esEs20(x0, x1, ty_Integer) 32.45/13.25 new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 32.45/13.25 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.25 new_esEs22(x0, x1, ty_Double) 32.45/13.25 new_ltEs6(Left(x0), Left(x1), ty_Double, x2) 32.45/13.25 new_lt9(x0, x1, app(ty_[], x2)) 32.45/13.25 new_primCmpInt(Pos(Zero), Pos(Zero)) 32.45/13.25 new_ltEs20(x0, x1, ty_Integer) 32.45/13.25 new_lt9(x0, x1, ty_Ordering) 32.45/13.25 new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 32.45/13.25 new_ltEs6(Right(x0), Right(x1), x2, ty_Double) 32.45/13.25 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 32.45/13.25 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 32.45/13.25 new_ltEs5(x0, x1, ty_Float) 32.45/13.25 new_ltEs13(Just(x0), Just(x1), ty_Double) 32.45/13.25 new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 32.45/13.25 new_compare30(x0, x1, ty_Char) 32.45/13.25 new_esEs19(x0, x1, ty_Integer) 32.45/13.25 new_esEs20(x0, x1, ty_Double) 32.45/13.25 new_esEs18(x0, x1, app(ty_Maybe, x2)) 32.45/13.25 new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 32.45/13.25 new_sr(x0, x1) 32.45/13.25 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 32.45/13.25 new_compare27(x0, x1, False, x2, x3) 32.45/13.25 new_esEs24(x0, x1, app(ty_[], x2)) 32.45/13.25 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.25 new_esEs21(x0, x1, ty_Ordering) 32.45/13.25 new_compare9(x0, x1) 32.45/13.25 new_esEs4(Right(x0), Right(x1), x2, ty_@0) 32.45/13.25 new_esEs20(x0, x1, ty_Ordering) 32.45/13.25 new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 32.45/13.25 new_esEs21(x0, x1, ty_Int) 32.45/13.25 new_lt9(x0, x1, ty_Float) 32.45/13.25 new_ltEs15(x0, x1, x2) 32.45/13.25 new_esEs8(LT, GT) 32.45/13.25 new_esEs8(GT, LT) 32.45/13.25 new_esEs18(x0, x1, app(ty_Ratio, x2)) 32.45/13.25 new_esEs19(x0, x1, ty_Bool) 32.45/13.25 new_esEs23(x0, x1, app(ty_Ratio, x2)) 32.45/13.25 new_ltEs13(Nothing, Nothing, x0) 32.45/13.25 new_esEs25(x0, x1, ty_Char) 32.45/13.25 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 32.45/13.25 new_ltEs5(x0, x1, ty_Int) 32.45/13.25 new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 32.45/13.25 new_ltEs20(x0, x1, ty_Bool) 32.45/13.25 new_compare0([], :(x0, x1), x2) 32.45/13.25 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.25 new_esEs21(x0, x1, ty_Char) 32.45/13.25 new_lt9(x0, x1, app(ty_Ratio, x2)) 32.45/13.25 new_esEs25(x0, x1, app(ty_Maybe, x2)) 32.45/13.25 new_esEs22(x0, x1, ty_Float) 32.45/13.25 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 32.45/13.25 new_esEs26(x0, x1, ty_Char) 32.45/13.25 new_esEs4(Left(x0), Left(x1), ty_Bool, x2) 32.45/13.25 new_esEs4(Left(x0), Left(x1), ty_Char, x2) 32.45/13.25 new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) 32.45/13.25 new_esEs24(x0, x1, ty_Integer) 32.45/13.25 new_ltEs4(x0, x1, x2) 32.45/13.25 new_esEs20(x0, x1, app(ty_[], x2)) 32.45/13.25 new_lt9(x0, x1, ty_Char) 32.45/13.25 new_lt10(x0, x1, ty_Double) 32.45/13.25 new_esEs24(x0, x1, ty_@0) 32.45/13.25 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.25 new_esEs18(x0, x1, app(ty_[], x2)) 32.45/13.25 new_esEs26(x0, x1, ty_Int) 32.45/13.25 new_esEs16(:(x0, x1), [], x2) 32.45/13.25 new_compare30(x0, x1, ty_Int) 32.45/13.25 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.25 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.25 new_asAs(False, x0) 32.45/13.25 new_compare26(x0, x1, True, x2, x3, x4) 32.45/13.25 new_ltEs13(Just(x0), Just(x1), ty_Ordering) 32.45/13.25 new_esEs25(x0, x1, ty_Bool) 32.45/13.25 new_lt9(x0, x1, ty_Int) 32.45/13.25 new_compare16(x0, x1, True, x2, x3) 32.45/13.25 new_compare0([], [], x0) 32.45/13.25 new_lt18(x0, x1) 32.45/13.25 new_esEs23(x0, x1, ty_Int) 32.45/13.25 new_primEqNat0(Zero, Zero) 32.45/13.25 new_esEs13(False, False) 32.45/13.25 new_primMulNat0(Zero, Succ(x0)) 32.45/13.25 new_esEs25(x0, x1, app(ty_[], x2)) 32.45/13.25 new_ltEs5(x0, x1, ty_Char) 32.45/13.25 new_not(False) 32.45/13.25 new_compare30(x0, x1, app(ty_Maybe, x2)) 32.45/13.25 new_ltEs20(x0, x1, app(ty_[], x2)) 32.45/13.25 new_lt20(x0, x1, ty_Float) 32.45/13.25 new_esEs26(x0, x1, ty_Ordering) 32.45/13.25 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.25 new_ltEs16(True, True) 32.45/13.25 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.25 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 32.45/13.25 new_lt20(x0, x1, ty_Bool) 32.45/13.25 new_esEs6(Just(x0), Nothing, x1) 32.45/13.25 new_ltEs12(LT, GT) 32.45/13.25 new_ltEs12(GT, LT) 32.45/13.25 new_esEs25(x0, x1, ty_Int) 32.45/13.25 new_compare0(:(x0, x1), :(x2, x3), x4) 32.45/13.25 new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 32.45/13.25 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 32.45/13.25 new_esEs26(x0, x1, ty_Bool) 32.45/13.25 new_esEs23(x0, x1, ty_Char) 32.45/13.25 new_sr0(Integer(x0), Integer(x1)) 32.45/13.25 new_compare30(x0, x1, ty_Float) 32.45/13.25 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.25 new_compare0(:(x0, x1), [], x2) 32.45/13.25 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 32.45/13.25 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 32.45/13.25 new_esEs26(x0, x1, app(ty_Ratio, x2)) 32.45/13.25 new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 32.45/13.25 new_esEs4(Left(x0), Left(x1), ty_Int, x2) 32.45/13.25 new_esEs26(x0, x1, ty_Integer) 32.45/13.25 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.25 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 32.45/13.25 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.25 new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) 32.45/13.25 new_compare23(Nothing, Just(x0), False, x1) 32.45/13.25 new_esEs23(x0, x1, ty_Float) 32.45/13.25 new_esEs4(Left(x0), Left(x1), ty_Float, x2) 32.45/13.25 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 32.45/13.25 new_primPlusNat1(Succ(x0), Zero) 32.45/13.25 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 32.45/13.25 new_compare23(Just(x0), Just(x1), False, x2) 32.45/13.25 new_ltEs20(x0, x1, ty_Float) 32.45/13.25 new_esEs18(x0, x1, ty_Double) 32.45/13.25 new_lt20(x0, x1, ty_Int) 32.45/13.25 new_esEs20(x0, x1, app(ty_Maybe, x2)) 32.45/13.25 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 32.45/13.25 new_esEs21(x0, x1, ty_Integer) 32.45/13.25 new_esEs4(Left(x0), Right(x1), x2, x3) 32.45/13.25 new_esEs4(Right(x0), Left(x1), x2, x3) 32.45/13.25 new_esEs27(x0, x1, ty_Integer) 32.45/13.25 new_primCmpNat0(Succ(x0), Zero) 32.45/13.25 new_compare31(x0, x1) 32.45/13.25 new_esEs25(x0, x1, ty_Float) 32.45/13.25 new_compare32(@0, @0) 32.45/13.25 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 32.45/13.25 new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 32.45/13.25 new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 32.45/13.25 new_primCmpNat0(Zero, Zero) 32.45/13.25 new_lt20(x0, x1, ty_Char) 32.45/13.25 32.45/13.25 We have to consider all minimal (P,Q,R)-chains. 32.45/13.25 ---------------------------------------- 32.45/13.25 32.45/13.25 (46) QDPSizeChangeProof (EQUIVALENT) 32.45/13.25 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. 32.45/13.25 32.45/13.25 From the DPs we obtained the following set of size-change graphs: 32.45/13.25 *new_compare21(Just(:(xuu33000, xuu33001)), Just(:(xuu34000, xuu34001)), False, app(ty_[], hd)) -> new_primCompAux(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, hd), hd) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare4(xuu33000, xuu34000, ha) -> new_compare21(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, ha), ha) 32.45/13.25 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(app(app(ty_@3, ge), gf), gg)), df), fb)) -> new_compare20(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, ge, gf, gg), ge, gf, gg) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, df, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs0(xuu33002, xuu34002, ea, eb, ec) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(app(app(ty_@3, ge), gf), gg), df, fb) -> new_compare20(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, ge, gf, gg), ge, gf, gg) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5, 3 > 6 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(ty_Maybe, ha)), df), fb)) -> new_compare21(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, ha), ha) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(ty_Maybe, ha), df, fb) -> new_compare21(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, ha), ha) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_lt1(xuu33000, xuu34000, gh) -> new_compare(xuu33000, xuu34000, gh) 32.45/13.25 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_lt2(xuu33000, xuu34000, ha) -> new_compare21(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, ha), ha) 32.45/13.25 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), bbg, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_ltEs0(xuu33001, xuu34001, bcb, bcc, bcd) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs2(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, bah), bba), bbb)) -> new_ltEs0(xuu33000, xuu34000, bah, bba, bbb) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare3(xuu33000, xuu34000, ge, gf, gg) -> new_compare20(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, ge, gf, gg), ge, gf, gg) 32.45/13.25 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 32.45/13.25 32.45/13.25 32.45/13.25 *new_lt0(xuu33000, xuu34000, ge, gf, gg) -> new_compare20(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, ge, gf, gg), ge, gf, gg) 32.45/13.25 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 32.45/13.25 32.45/13.25 32.45/13.25 *new_lt3(xuu33000, xuu34000, hb, hc) -> new_compare22(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, hb, hc), hb, hc) 32.45/13.25 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare20(xuu33000, xuu34000, False, ge, gf, gg) -> new_ltEs0(xuu33000, xuu34000, ge, gf, gg) 32.45/13.25 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, app(app(ty_@2, ga), gb), fb) -> new_lt3(xuu33001, xuu34001, ga, gb) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(app(ty_@2, bea), beb), bdc) -> new_lt3(xuu33000, xuu34000, bea, beb) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare22(xuu33000, xuu34000, False, hb, hc) -> new_ltEs3(xuu33000, xuu34000, hb, hc) 32.45/13.25 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs1(:(xuu33000, xuu33001), :(xuu34000, xuu34001), hd) -> new_primCompAux(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, hd), hd) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare(:(xuu33000, xuu33001), :(xuu34000, xuu34001), hd) -> new_primCompAux(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, hd), hd) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs1(:(xuu33000, xuu33001), :(xuu34000, xuu34001), hd) -> new_compare(xuu33001, xuu34001, hd) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, df, app(app(ty_Either, dg), dh)) -> new_ltEs(xuu33002, xuu34002, dg, dh) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), bbg, app(app(ty_Either, bbh), bca)) -> new_ltEs(xuu33001, xuu34001, bbh, bca) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs2(Just(xuu33000), Just(xuu34000), app(app(ty_Either, baf), bag)) -> new_ltEs(xuu33000, xuu34000, baf, bag) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare2(xuu33000, xuu34000, False, gc, gd) -> new_ltEs(xuu33000, xuu34000, gc, gd) 32.45/13.25 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, app(app(ty_Either, eh), fa), fb) -> new_lt(xuu33001, xuu34001, eh, fa) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(app(ty_Either, bda), bdb), bdc) -> new_lt(xuu33000, xuu34000, bda, bdb) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, df, app(app(ty_@2, ef), eg)) -> new_ltEs3(xuu33002, xuu34002, ef, eg) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), bbg, app(app(ty_@2, bcg), bch)) -> new_ltEs3(xuu33001, xuu34001, bcg, bch) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs2(Just(xuu33000), Just(xuu34000), app(app(ty_@2, bbe), bbf)) -> new_ltEs3(xuu33000, xuu34000, bbe, bbf) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_lt(xuu33000, xuu34000, gc, gd) -> new_compare2(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, gc, gd), gc, gd) 32.45/13.25 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 32.45/13.25 32.45/13.25 32.45/13.25 *new_primCompAux(xuu33000, xuu34000, xuu176, app(ty_Maybe, bac)) -> new_compare4(xuu33000, xuu34000, bac) 32.45/13.25 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare1(xuu33000, xuu34000, gc, gd) -> new_compare2(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, gc, gd), gc, gd) 32.45/13.25 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, df, app(ty_[], ed)) -> new_ltEs1(xuu33002, xuu34002, ed) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), bbg, app(ty_[], bce)) -> new_ltEs1(xuu33001, xuu34001, bce) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs2(Just(xuu33000), Just(xuu34000), app(ty_[], bbc)) -> new_ltEs1(xuu33000, xuu34000, bbc) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs2(Just(xuu33000), Just(xuu34000), app(ty_Maybe, bbd)) -> new_ltEs2(xuu33000, xuu34000, bbd) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare(:(xuu33000, xuu33001), :(xuu34000, xuu34001), hd) -> new_compare(xuu33001, xuu34001, hd) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare5(xuu33000, xuu34000, hb, hc) -> new_compare22(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, hb, hc), hb, hc) 32.45/13.25 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, df, app(ty_Maybe, ee)) -> new_ltEs2(xuu33002, xuu34002, ee) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), bbg, app(ty_Maybe, bcf)) -> new_ltEs2(xuu33001, xuu34001, bcf) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_primCompAux(xuu33000, xuu34000, xuu176, app(app(app(ty_@3, hg), hh), baa)) -> new_compare3(xuu33000, xuu34000, hg, hh, baa) 32.45/13.25 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, app(ty_Maybe, fh), fb) -> new_lt2(xuu33001, xuu34001, fh) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(ty_Maybe, bdh), bdc) -> new_lt2(xuu33000, xuu34000, bdh) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(app(ty_@2, hb), hc)), df), fb)) -> new_compare22(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, hb, hc), hb, hc) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(app(ty_@2, hb), hc), df, fb) -> new_compare22(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, hb, hc), hb, hc) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, app(app(app(ty_@3, fc), fd), ff), fb) -> new_lt0(xuu33001, xuu34001, fc, fd, ff) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(app(app(ty_@3, bdd), bde), bdf), bdc) -> new_lt0(xuu33000, xuu34000, bdd, bde, bdf) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(ty_[], bdg), bdc) -> new_lt1(xuu33000, xuu34000, bdg) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(ty_[], gh), df, fb) -> new_compare(xuu33000, xuu34000, gh) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_primCompAux(xuu33000, xuu34000, xuu176, app(ty_[], bab)) -> new_compare(xuu33000, xuu34000, bab) 32.45/13.25 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_primCompAux(xuu33000, xuu34000, xuu176, app(app(ty_@2, bad), bae)) -> new_compare5(xuu33000, xuu34000, bad, bae) 32.45/13.25 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_primCompAux(xuu33000, xuu34000, xuu176, app(app(ty_Either, he), hf)) -> new_compare1(xuu33000, xuu34000, he, hf) 32.45/13.25 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(app(ty_Either, gc), gd)), df), fb)) -> new_compare2(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, gc, gd), gc, gd) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(app(ty_Either, gc), gd), df, fb) -> new_compare2(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, gc, gd), gc, gd) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, app(ty_[], fg), fb) -> new_lt1(xuu33001, xuu34001, fg) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(app(app(ty_@3, bc), bd), be)), bb)) -> new_ltEs0(xuu33000, xuu34000, bc, bd, be) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(app(app(ty_@3, bah), bba), bbb))) -> new_ltEs0(xuu33000, xuu34000, bah, bba, bbb) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, bbg), app(app(app(ty_@3, bcb), bcc), bcd))) -> new_ltEs0(xuu33001, xuu34001, bcb, bcc, bcd) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, cb), app(app(app(ty_@3, ce), cf), cg))) -> new_ltEs0(xuu33000, xuu34000, ce, cf, cg) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), df), app(app(app(ty_@3, ea), eb), ec))) -> new_ltEs0(xuu33002, xuu34002, ea, eb, ec) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), app(app(ty_@2, ga), gb)), fb)) -> new_lt3(xuu33001, xuu34001, ga, gb) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(app(ty_@2, bea), beb)), bdc)) -> new_lt3(xuu33000, xuu34000, bea, beb) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), df), app(app(ty_Either, dg), dh))) -> new_ltEs(xuu33002, xuu34002, dg, dh) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, cb), app(app(ty_Either, cc), cd))) -> new_ltEs(xuu33000, xuu34000, cc, cd) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(app(ty_Either, baf), bag))) -> new_ltEs(xuu33000, xuu34000, baf, bag) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(app(ty_Either, h), ba)), bb)) -> new_ltEs(xuu33000, xuu34000, h, ba) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, bbg), app(app(ty_Either, bbh), bca))) -> new_ltEs(xuu33001, xuu34001, bbh, bca) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(app(ty_Either, bda), bdb)), bdc)) -> new_lt(xuu33000, xuu34000, bda, bdb) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), app(app(ty_Either, eh), fa)), fb)) -> new_lt(xuu33001, xuu34001, eh, fa) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, cb), app(app(ty_@2, dc), dd))) -> new_ltEs3(xuu33000, xuu34000, dc, dd) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(app(ty_@2, bh), ca)), bb)) -> new_ltEs3(xuu33000, xuu34000, bh, ca) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(app(ty_@2, bbe), bbf))) -> new_ltEs3(xuu33000, xuu34000, bbe, bbf) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, bbg), app(app(ty_@2, bcg), bch))) -> new_ltEs3(xuu33001, xuu34001, bcg, bch) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), df), app(app(ty_@2, ef), eg))) -> new_ltEs3(xuu33002, xuu34002, ef, eg) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), df), app(ty_[], ed))) -> new_ltEs1(xuu33002, xuu34002, ed) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, bbg), app(ty_[], bce))) -> new_ltEs1(xuu33001, xuu34001, bce) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(ty_[], bf)), bb)) -> new_ltEs1(xuu33000, xuu34000, bf) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, cb), app(ty_[], da))) -> new_ltEs1(xuu33000, xuu34000, da) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(ty_[], bbc))) -> new_ltEs1(xuu33000, xuu34000, bbc) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), df), app(ty_Maybe, ee))) -> new_ltEs2(xuu33002, xuu34002, ee) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, cb), app(ty_Maybe, db))) -> new_ltEs2(xuu33000, xuu34000, db) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, bbg), app(ty_Maybe, bcf))) -> new_ltEs2(xuu33001, xuu34001, bcf) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(ty_Maybe, bbd))) -> new_ltEs2(xuu33000, xuu34000, bbd) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(ty_Maybe, bg)), bb)) -> new_ltEs2(xuu33000, xuu34000, bg) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), app(ty_Maybe, fh)), fb)) -> new_lt2(xuu33001, xuu34001, fh) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(ty_Maybe, bdh)), bdc)) -> new_lt2(xuu33000, xuu34000, bdh) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(app(app(ty_@3, bdd), bde), bdf)), bdc)) -> new_lt0(xuu33000, xuu34000, bdd, bde, bdf) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), app(app(app(ty_@3, fc), fd), ff)), fb)) -> new_lt0(xuu33001, xuu34001, fc, fd, ff) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(:(xuu33000, xuu33001)), Just(:(xuu34000, xuu34001)), False, app(ty_[], hd)) -> new_compare(xuu33001, xuu34001, hd) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(ty_[], gh)), df), fb)) -> new_compare(xuu33000, xuu34000, gh) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(ty_[], bdg)), bdc)) -> new_lt1(xuu33000, xuu34000, bdg) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), app(ty_[], fg)), fb)) -> new_lt1(xuu33001, xuu34001, fg) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, bc), bd), be), bb) -> new_ltEs0(xuu33000, xuu34000, bc, bd, be) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs(Right(xuu33000), Right(xuu34000), cb, app(app(app(ty_@3, ce), cf), cg)) -> new_ltEs0(xuu33000, xuu34000, ce, cf, cg) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs(Left(xuu33000), Left(xuu34000), app(app(ty_Either, h), ba), bb) -> new_ltEs(xuu33000, xuu34000, h, ba) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs(Right(xuu33000), Right(xuu34000), cb, app(app(ty_Either, cc), cd)) -> new_ltEs(xuu33000, xuu34000, cc, cd) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs(Left(xuu33000), Left(xuu34000), app(app(ty_@2, bh), ca), bb) -> new_ltEs3(xuu33000, xuu34000, bh, ca) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs(Right(xuu33000), Right(xuu34000), cb, app(app(ty_@2, dc), dd)) -> new_ltEs3(xuu33000, xuu34000, dc, dd) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs(Left(xuu33000), Left(xuu34000), app(ty_[], bf), bb) -> new_ltEs1(xuu33000, xuu34000, bf) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs(Right(xuu33000), Right(xuu34000), cb, app(ty_[], da)) -> new_ltEs1(xuu33000, xuu34000, da) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs(Right(xuu33000), Right(xuu34000), cb, app(ty_Maybe, db)) -> new_ltEs2(xuu33000, xuu34000, db) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_ltEs(Left(xuu33000), Left(xuu34000), app(ty_Maybe, bg), bb) -> new_ltEs2(xuu33000, xuu34000, bg) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 32.45/13.25 32.45/13.25 32.45/13.25 ---------------------------------------- 32.45/13.25 32.45/13.25 (47) 32.45/13.25 YES 32.45/13.25 32.45/13.25 ---------------------------------------- 32.45/13.25 32.45/13.25 (48) 32.45/13.25 Obligation: 32.45/13.25 Q DP problem: 32.45/13.25 The TRS P consists of the following rules: 32.45/13.25 32.45/13.25 new_primEqNat(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat(xuu31100000, xuu60000) 32.45/13.25 32.45/13.25 R is empty. 32.45/13.25 Q is empty. 32.45/13.25 We have to consider all minimal (P,Q,R)-chains. 32.45/13.25 ---------------------------------------- 32.45/13.25 32.45/13.25 (49) QDPSizeChangeProof (EQUIVALENT) 32.45/13.25 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. 32.45/13.25 32.45/13.25 From the DPs we obtained the following set of size-change graphs: 32.45/13.25 *new_primEqNat(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat(xuu31100000, xuu60000) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2 32.45/13.25 32.45/13.25 32.45/13.25 ---------------------------------------- 32.45/13.25 32.45/13.25 (50) 32.45/13.25 YES 32.45/13.25 32.45/13.25 ---------------------------------------- 32.45/13.25 32.45/13.25 (51) 32.45/13.25 Obligation: 32.45/13.25 Q DP problem: 32.45/13.25 The TRS P consists of the following rules: 32.45/13.25 32.45/13.25 new_primMinusNat(Succ(xuu28200), Succ(xuu9700)) -> new_primMinusNat(xuu28200, xuu9700) 32.45/13.25 32.45/13.25 R is empty. 32.45/13.25 Q is empty. 32.45/13.25 We have to consider all minimal (P,Q,R)-chains. 32.45/13.25 ---------------------------------------- 32.45/13.25 32.45/13.25 (52) QDPSizeChangeProof (EQUIVALENT) 32.45/13.25 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. 32.45/13.25 32.45/13.25 From the DPs we obtained the following set of size-change graphs: 32.45/13.25 *new_primMinusNat(Succ(xuu28200), Succ(xuu9700)) -> new_primMinusNat(xuu28200, xuu9700) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2 32.45/13.25 32.45/13.25 32.45/13.25 ---------------------------------------- 32.45/13.25 32.45/13.25 (53) 32.45/13.25 YES 32.45/13.25 32.45/13.25 ---------------------------------------- 32.45/13.25 32.45/13.25 (54) 32.45/13.25 Obligation: 32.45/13.25 Q DP problem: 32.45/13.25 The TRS P consists of the following rules: 32.45/13.25 32.45/13.25 new_primPlusNat(Succ(xuu28200), Succ(xuu9700)) -> new_primPlusNat(xuu28200, xuu9700) 32.45/13.25 32.45/13.25 R is empty. 32.45/13.25 Q is empty. 32.45/13.25 We have to consider all minimal (P,Q,R)-chains. 32.45/13.25 ---------------------------------------- 32.45/13.25 32.45/13.25 (55) QDPSizeChangeProof (EQUIVALENT) 32.45/13.25 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. 32.45/13.25 32.45/13.25 From the DPs we obtained the following set of size-change graphs: 32.45/13.25 *new_primPlusNat(Succ(xuu28200), Succ(xuu9700)) -> new_primPlusNat(xuu28200, xuu9700) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2 32.45/13.25 32.45/13.25 32.45/13.25 ---------------------------------------- 32.45/13.25 32.45/13.25 (56) 32.45/13.25 YES 32.45/13.25 32.45/13.25 ---------------------------------------- 32.45/13.25 32.45/13.25 (57) 32.45/13.25 Obligation: 32.45/13.25 Q DP problem: 32.45/13.25 The TRS P consists of the following rules: 32.45/13.25 32.45/13.25 new_esEs3(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, bdg), bdh)) -> new_esEs1(xuu3110000, xuu6000, bdg, bdh) 32.45/13.25 new_esEs1(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, bab), bac), hf) -> new_esEs1(xuu3110000, xuu6000, bab, bac) 32.45/13.25 new_esEs1(Right(xuu3110000), Right(xuu6000), baf, app(ty_Maybe, bbg)) -> new_esEs3(xuu3110000, xuu6000, bbg) 32.45/13.25 new_esEs2(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bbh) -> new_esEs2(xuu3110001, xuu6001, bbh) 32.45/13.25 new_esEs3(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs0(xuu3110000, xuu6000, bdd, bde, bdf) 32.45/13.25 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, app(app(app(ty_@3, fc), fd), ff), fb) -> new_esEs0(xuu3110001, xuu6001, fc, fd, ff) 32.45/13.25 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, app(ty_Maybe, gb), fb) -> new_esEs3(xuu3110001, xuu6001, gb) 32.45/13.25 new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(ty_@2, cb), cc), cd) -> new_esEs(xuu3110000, xuu6000, cb, cc) 32.45/13.25 new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), h, app(app(app(ty_@3, bc), bd), be)) -> new_esEs0(xuu3110001, xuu6001, bc, bd, be) 32.45/13.25 new_esEs2(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(ty_@2, bca), bcb)) -> new_esEs(xuu3110000, xuu6000, bca, bcb) 32.45/13.25 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, df, app(ty_Maybe, eg)) -> new_esEs3(xuu3110002, xuu6002, eg) 32.45/13.25 new_esEs2(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(app(ty_@3, bcc), bcd), bce)) -> new_esEs0(xuu3110000, xuu6000, bcc, bcd, bce) 32.45/13.25 new_esEs3(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, beb)) -> new_esEs3(xuu3110000, xuu6000, beb) 32.45/13.25 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(ty_@2, gc), gd), df, fb) -> new_esEs(xuu3110000, xuu6000, gc, gd) 32.45/13.25 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(ty_Either, gh), ha), df, fb) -> new_esEs1(xuu3110000, xuu6000, gh, ha) 32.45/13.25 new_esEs1(Right(xuu3110000), Right(xuu6000), baf, app(ty_[], bbf)) -> new_esEs2(xuu3110000, xuu6000, bbf) 32.45/13.25 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(ty_Maybe, hc), df, fb) -> new_esEs3(xuu3110000, xuu6000, hc) 32.45/13.25 new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), h, app(ty_Maybe, ca)) -> new_esEs3(xuu3110001, xuu6001, ca) 32.45/13.25 new_esEs1(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, bae), hf) -> new_esEs3(xuu3110000, xuu6000, bae) 32.45/13.25 new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(ty_Maybe, dd), cd) -> new_esEs3(xuu3110000, xuu6000, dd) 32.45/13.25 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, df, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs0(xuu3110002, xuu6002, ea, eb, ec) 32.45/13.25 new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), h, app(app(ty_@2, ba), bb)) -> new_esEs(xuu3110001, xuu6001, ba, bb) 32.45/13.25 new_esEs1(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, hg), hh), baa), hf) -> new_esEs0(xuu3110000, xuu6000, hg, hh, baa) 32.45/13.25 new_esEs3(Just(xuu3110000), Just(xuu6000), app(ty_[], bea)) -> new_esEs2(xuu3110000, xuu6000, bea) 32.45/13.25 new_esEs1(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, hd), he), hf) -> new_esEs(xuu3110000, xuu6000, hd, he) 32.45/13.25 new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), h, app(app(ty_Either, bf), bg)) -> new_esEs1(xuu3110001, xuu6001, bf, bg) 32.45/13.25 new_esEs2(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(ty_Either, bcf), bcg)) -> new_esEs1(xuu3110000, xuu6000, bcf, bcg) 32.45/13.25 new_esEs2(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(ty_Maybe, bda)) -> new_esEs3(xuu3110000, xuu6000, bda) 32.45/13.25 new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(ty_Either, da), db), cd) -> new_esEs1(xuu3110000, xuu6000, da, db) 32.45/13.25 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, app(app(ty_Either, fg), fh), fb) -> new_esEs1(xuu3110001, xuu6001, fg, fh) 32.45/13.25 new_esEs3(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, bdb), bdc)) -> new_esEs(xuu3110000, xuu6000, bdb, bdc) 32.45/13.25 new_esEs1(Right(xuu3110000), Right(xuu6000), baf, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs0(xuu3110000, xuu6000, bba, bbb, bbc) 32.45/13.25 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, app(app(ty_@2, eh), fa), fb) -> new_esEs(xuu3110001, xuu6001, eh, fa) 32.45/13.25 new_esEs2(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(ty_[], bch)) -> new_esEs2(xuu3110000, xuu6000, bch) 32.45/13.25 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, df, app(ty_[], ef)) -> new_esEs2(xuu3110002, xuu6002, ef) 32.45/13.25 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, df, app(app(ty_@2, dg), dh)) -> new_esEs(xuu3110002, xuu6002, dg, dh) 32.45/13.25 new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(app(ty_@3, ce), cf), cg), cd) -> new_esEs0(xuu3110000, xuu6000, ce, cf, cg) 32.45/13.25 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, app(ty_[], ga), fb) -> new_esEs2(xuu3110001, xuu6001, ga) 32.45/13.25 new_esEs1(Right(xuu3110000), Right(xuu6000), baf, app(app(ty_@2, bag), bah)) -> new_esEs(xuu3110000, xuu6000, bag, bah) 32.45/13.25 new_esEs1(Left(xuu3110000), Left(xuu6000), app(ty_[], bad), hf) -> new_esEs2(xuu3110000, xuu6000, bad) 32.45/13.25 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(ty_[], hb), df, fb) -> new_esEs2(xuu3110000, xuu6000, hb) 32.45/13.25 new_esEs1(Right(xuu3110000), Right(xuu6000), baf, app(app(ty_Either, bbd), bbe)) -> new_esEs1(xuu3110000, xuu6000, bbd, bbe) 32.45/13.25 new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), h, app(ty_[], bh)) -> new_esEs2(xuu3110001, xuu6001, bh) 32.45/13.25 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(app(ty_@3, ge), gf), gg), df, fb) -> new_esEs0(xuu3110000, xuu6000, ge, gf, gg) 32.45/13.25 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, df, app(app(ty_Either, ed), ee)) -> new_esEs1(xuu3110002, xuu6002, ed, ee) 32.45/13.25 new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(ty_[], dc), cd) -> new_esEs2(xuu3110000, xuu6000, dc) 32.45/13.25 32.45/13.25 R is empty. 32.45/13.25 Q is empty. 32.45/13.25 We have to consider all minimal (P,Q,R)-chains. 32.45/13.25 ---------------------------------------- 32.45/13.25 32.45/13.25 (58) QDPSizeChangeProof (EQUIVALENT) 32.45/13.25 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. 32.45/13.25 32.45/13.25 From the DPs we obtained the following set of size-change graphs: 32.45/13.25 *new_esEs3(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, beb)) -> new_esEs3(xuu3110000, xuu6000, beb) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs3(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, bdg), bdh)) -> new_esEs1(xuu3110000, xuu6000, bdg, bdh) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs2(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(ty_Maybe, bda)) -> new_esEs3(xuu3110000, xuu6000, bda) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs2(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(ty_Either, bcf), bcg)) -> new_esEs1(xuu3110000, xuu6000, bcf, bcg) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs3(Just(xuu3110000), Just(xuu6000), app(ty_[], bea)) -> new_esEs2(xuu3110000, xuu6000, bea) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs3(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs0(xuu3110000, xuu6000, bdd, bde, bdf) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs3(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, bdb), bdc)) -> new_esEs(xuu3110000, xuu6000, bdb, bdc) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs2(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(app(ty_@3, bcc), bcd), bce)) -> new_esEs0(xuu3110000, xuu6000, bcc, bcd, bce) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs2(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(ty_@2, bca), bcb)) -> new_esEs(xuu3110000, xuu6000, bca, bcb) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs1(Right(xuu3110000), Right(xuu6000), baf, app(ty_Maybe, bbg)) -> new_esEs3(xuu3110000, xuu6000, bbg) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs1(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, bae), hf) -> new_esEs3(xuu3110000, xuu6000, bae) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs1(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, bab), bac), hf) -> new_esEs1(xuu3110000, xuu6000, bab, bac) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs1(Right(xuu3110000), Right(xuu6000), baf, app(app(ty_Either, bbd), bbe)) -> new_esEs1(xuu3110000, xuu6000, bbd, bbe) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs1(Right(xuu3110000), Right(xuu6000), baf, app(ty_[], bbf)) -> new_esEs2(xuu3110000, xuu6000, bbf) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs1(Left(xuu3110000), Left(xuu6000), app(ty_[], bad), hf) -> new_esEs2(xuu3110000, xuu6000, bad) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs1(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, hg), hh), baa), hf) -> new_esEs0(xuu3110000, xuu6000, hg, hh, baa) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs1(Right(xuu3110000), Right(xuu6000), baf, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs0(xuu3110000, xuu6000, bba, bbb, bbc) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs1(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, hd), he), hf) -> new_esEs(xuu3110000, xuu6000, hd, he) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs1(Right(xuu3110000), Right(xuu6000), baf, app(app(ty_@2, bag), bah)) -> new_esEs(xuu3110000, xuu6000, bag, bah) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, app(ty_Maybe, gb), fb) -> new_esEs3(xuu3110001, xuu6001, gb) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, df, app(ty_Maybe, eg)) -> new_esEs3(xuu3110002, xuu6002, eg) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(ty_Maybe, hc), df, fb) -> new_esEs3(xuu3110000, xuu6000, hc) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), h, app(ty_Maybe, ca)) -> new_esEs3(xuu3110001, xuu6001, ca) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(ty_Maybe, dd), cd) -> new_esEs3(xuu3110000, xuu6000, dd) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(ty_Either, gh), ha), df, fb) -> new_esEs1(xuu3110000, xuu6000, gh, ha) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, app(app(ty_Either, fg), fh), fb) -> new_esEs1(xuu3110001, xuu6001, fg, fh) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, df, app(app(ty_Either, ed), ee)) -> new_esEs1(xuu3110002, xuu6002, ed, ee) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), h, app(app(ty_Either, bf), bg)) -> new_esEs1(xuu3110001, xuu6001, bf, bg) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(ty_Either, da), db), cd) -> new_esEs1(xuu3110000, xuu6000, da, db) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs2(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bbh) -> new_esEs2(xuu3110001, xuu6001, bbh) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs2(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(ty_[], bch)) -> new_esEs2(xuu3110000, xuu6000, bch) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, df, app(ty_[], ef)) -> new_esEs2(xuu3110002, xuu6002, ef) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, app(ty_[], ga), fb) -> new_esEs2(xuu3110001, xuu6001, ga) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(ty_[], hb), df, fb) -> new_esEs2(xuu3110000, xuu6000, hb) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), h, app(ty_[], bh)) -> new_esEs2(xuu3110001, xuu6001, bh) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(ty_[], dc), cd) -> new_esEs2(xuu3110000, xuu6000, dc) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, app(app(app(ty_@3, fc), fd), ff), fb) -> new_esEs0(xuu3110001, xuu6001, fc, fd, ff) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, df, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs0(xuu3110002, xuu6002, ea, eb, ec) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(app(ty_@3, ge), gf), gg), df, fb) -> new_esEs0(xuu3110000, xuu6000, ge, gf, gg) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(ty_@2, gc), gd), df, fb) -> new_esEs(xuu3110000, xuu6000, gc, gd) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, app(app(ty_@2, eh), fa), fb) -> new_esEs(xuu3110001, xuu6001, eh, fa) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, df, app(app(ty_@2, dg), dh)) -> new_esEs(xuu3110002, xuu6002, dg, dh) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), h, app(app(app(ty_@3, bc), bd), be)) -> new_esEs0(xuu3110001, xuu6001, bc, bd, be) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(app(ty_@3, ce), cf), cg), cd) -> new_esEs0(xuu3110000, xuu6000, ce, cf, cg) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(ty_@2, cb), cc), cd) -> new_esEs(xuu3110000, xuu6000, cb, cc) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 32.45/13.25 32.45/13.25 32.45/13.25 *new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), h, app(app(ty_@2, ba), bb)) -> new_esEs(xuu3110001, xuu6001, ba, bb) 32.45/13.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 32.45/13.25 32.45/13.25 32.45/13.25 ---------------------------------------- 32.45/13.25 32.45/13.25 (59) 32.45/13.25 YES 32.45/13.30 EOF