43.42/22.17 YES 46.15/22.88 proof of /export/starexec/sandbox2/benchmark/theBenchmark.hs 46.15/22.88 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 46.15/22.88 46.15/22.88 46.15/22.88 H-Termination with start terms of the given HASKELL could be proven: 46.15/22.88 46.15/22.88 (0) HASKELL 46.15/22.88 (1) LR [EQUIVALENT, 0 ms] 46.15/22.88 (2) HASKELL 46.15/22.88 (3) CR [EQUIVALENT, 0 ms] 46.15/22.88 (4) HASKELL 46.15/22.88 (5) IFR [EQUIVALENT, 0 ms] 46.15/22.88 (6) HASKELL 46.15/22.88 (7) BR [EQUIVALENT, 0 ms] 46.15/22.88 (8) HASKELL 46.15/22.88 (9) COR [EQUIVALENT, 0 ms] 46.15/22.88 (10) HASKELL 46.15/22.88 (11) LetRed [EQUIVALENT, 0 ms] 46.15/22.88 (12) HASKELL 46.15/22.88 (13) NumRed [SOUND, 0 ms] 46.15/22.88 (14) HASKELL 46.15/22.88 (15) Narrow [SOUND, 0 ms] 46.15/22.88 (16) AND 46.15/22.88 (17) QDP 46.15/22.88 (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] 46.15/22.88 (19) YES 46.15/22.88 (20) QDP 46.15/22.88 (21) QDPSizeChangeProof [EQUIVALENT, 0 ms] 46.15/22.88 (22) YES 46.15/22.88 (23) QDP 46.15/22.88 (24) DependencyGraphProof [EQUIVALENT, 0 ms] 46.15/22.88 (25) AND 46.15/22.88 (26) QDP 46.15/22.88 (27) QDPSizeChangeProof [EQUIVALENT, 0 ms] 46.15/22.88 (28) YES 46.15/22.88 (29) QDP 46.15/22.88 (30) QDPSizeChangeProof [EQUIVALENT, 0 ms] 46.15/22.88 (31) YES 46.15/22.88 (32) QDP 46.15/22.88 (33) QDPSizeChangeProof [EQUIVALENT, 80 ms] 46.15/22.88 (34) YES 46.15/22.88 (35) QDP 46.15/22.88 (36) QDPSizeChangeProof [EQUIVALENT, 0 ms] 46.15/22.88 (37) YES 46.15/22.88 (38) QDP 46.15/22.88 (39) DependencyGraphProof [EQUIVALENT, 0 ms] 46.15/22.88 (40) AND 46.15/22.88 (41) QDP 46.15/22.88 (42) QDPSizeChangeProof [EQUIVALENT, 0 ms] 46.15/22.88 (43) YES 46.15/22.88 (44) QDP 46.15/22.88 (45) QDPSizeChangeProof [EQUIVALENT, 0 ms] 46.15/22.88 (46) YES 46.15/22.88 (47) QDP 46.15/22.88 (48) QDPOrderProof [EQUIVALENT, 93 ms] 46.15/22.88 (49) QDP 46.15/22.88 (50) DependencyGraphProof [EQUIVALENT, 0 ms] 46.15/22.88 (51) AND 46.15/22.88 (52) QDP 46.15/22.88 (53) QDPSizeChangeProof [EQUIVALENT, 0 ms] 46.15/22.88 (54) YES 46.15/22.88 (55) QDP 46.15/22.88 (56) QDPOrderProof [EQUIVALENT, 47 ms] 46.15/22.88 (57) QDP 46.15/22.88 (58) QDPSizeChangeProof [EQUIVALENT, 0 ms] 46.15/22.88 (59) YES 46.15/22.88 (60) QDP 46.15/22.88 (61) DependencyGraphProof [EQUIVALENT, 0 ms] 46.15/22.88 (62) AND 46.15/22.88 (63) QDP 46.15/22.88 (64) QDPSizeChangeProof [EQUIVALENT, 0 ms] 46.15/22.88 (65) YES 46.15/22.88 (66) QDP 46.15/22.88 (67) QDPSizeChangeProof [EQUIVALENT, 0 ms] 46.15/22.88 (68) YES 46.15/22.88 (69) QDP 46.15/22.88 (70) QDPSizeChangeProof [EQUIVALENT, 0 ms] 46.15/22.88 (71) YES 46.15/22.88 (72) QDP 46.15/22.88 (73) QDPSizeChangeProof [EQUIVALENT, 0 ms] 46.15/22.88 (74) YES 46.15/22.88 (75) QDP 46.15/22.88 (76) QDPSizeChangeProof [EQUIVALENT, 0 ms] 46.15/22.88 (77) YES 46.15/22.88 (78) QDP 46.15/22.88 (79) QDPSizeChangeProof [EQUIVALENT, 0 ms] 46.15/22.88 (80) YES 46.15/22.88 46.15/22.88 46.15/22.88 ---------------------------------------- 46.15/22.88 46.15/22.88 (0) 46.15/22.88 Obligation: 46.15/22.88 mainModule Main 46.15/22.88 module FiniteMap where { 46.15/22.88 import qualified Main; 46.15/22.88 import qualified Maybe; 46.15/22.88 import qualified Prelude; 46.15/22.88 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 46.15/22.88 46.15/22.88 instance (Eq a, Eq b) => Eq FiniteMap a b where { 46.15/22.88 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 46.15/22.88 } 46.15/22.88 addToFM :: Ord a => FiniteMap a b -> a -> b -> FiniteMap a b; 46.15/22.88 addToFM fm key elt = addToFM_C (\old new ->new) fm key elt; 46.15/22.88 46.15/22.88 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 46.15/22.88 addToFM_C combiner EmptyFM key elt = unitFM key elt; 46.15/22.88 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r 46.15/22.88 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 46.15/22.88 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 46.15/22.88 46.15/22.88 emptyFM :: FiniteMap b a; 46.15/22.88 emptyFM = EmptyFM; 46.15/22.88 46.15/22.88 findMax :: FiniteMap a b -> (a,b); 46.15/22.88 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 46.15/22.88 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 46.15/22.88 46.15/22.88 findMin :: FiniteMap a b -> (a,b); 46.15/22.88 findMin (Branch key elt _ EmptyFM _) = (key,elt); 46.15/22.88 findMin (Branch key elt _ fm_l _) = findMin fm_l; 46.15/22.88 46.15/22.88 fmToList :: FiniteMap a b -> [(a,b)]; 46.15/22.88 fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; 46.15/22.88 46.15/22.88 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 46.15/22.88 foldFM k z EmptyFM = z; 46.15/22.88 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 46.15/22.88 46.15/22.88 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 46.15/22.88 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 46.15/22.88 | size_r > sIZE_RATIO * size_l = case fm_R of { 46.15/22.88 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 46.15/22.88 | otherwise -> double_L fm_L fm_R; 46.15/22.88 } 46.15/22.88 | size_l > sIZE_RATIO * size_r = case fm_L of { 46.15/22.88 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 46.15/22.88 | otherwise -> double_R fm_L fm_R; 46.15/22.88 } 46.15/22.88 | otherwise = mkBranch 2 key elt fm_L fm_R where { 46.15/22.88 double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 46.15/22.88 double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 46.15/22.88 single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 46.15/22.88 single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 46.15/22.88 size_l = sizeFM fm_L; 46.15/22.88 size_r = sizeFM fm_R; 46.15/22.88 }; 46.15/22.88 46.15/22.88 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 46.15/22.88 mkBranch which key elt fm_l fm_r = let { 46.15/22.88 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 46.15/22.88 } in result where { 46.15/22.88 balance_ok = True; 46.15/22.88 left_ok = case fm_l of { 46.15/22.88 EmptyFM-> True; 46.15/22.88 Branch left_key _ _ _ _-> let { 46.15/22.88 biggest_left_key = fst (findMax fm_l); 46.15/22.88 } in biggest_left_key < key; 46.15/22.88 } ; 46.15/22.88 left_size = sizeFM fm_l; 46.15/22.88 right_ok = case fm_r of { 46.15/22.88 EmptyFM-> True; 46.15/22.88 Branch right_key _ _ _ _-> let { 46.15/22.88 smallest_right_key = fst (findMin fm_r); 46.15/22.88 } in key < smallest_right_key; 46.15/22.88 } ; 46.15/22.88 right_size = sizeFM fm_r; 46.15/22.88 unbox :: Int -> Int; 46.15/22.88 unbox x = x; 46.15/22.88 }; 46.15/22.88 46.15/22.88 mkVBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 46.15/22.88 mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; 46.15/22.88 mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; 46.15/22.88 mkVBalBranch key elt fm_l@(Branch key_l elt_l _ fm_ll fm_lr) fm_r@(Branch key_r elt_r _ fm_rl fm_rr) | sIZE_RATIO * size_l < size_r = mkBalBranch key_r elt_r (mkVBalBranch key elt fm_l fm_rl) fm_rr 46.15/22.88 | sIZE_RATIO * size_r < size_l = mkBalBranch key_l elt_l fm_ll (mkVBalBranch key elt fm_lr fm_r) 46.15/22.88 | otherwise = mkBranch 13 key elt fm_l fm_r where { 46.15/22.88 size_l = sizeFM fm_l; 46.15/22.88 size_r = sizeFM fm_r; 46.15/22.88 }; 46.15/22.88 46.15/22.88 plusFM :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 46.15/22.88 plusFM EmptyFM fm2 = fm2; 46.15/22.88 plusFM fm1 EmptyFM = fm1; 46.15/22.88 plusFM fm1 (Branch split_key elt1 _ left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { 46.15/22.88 gts = splitGT fm1 split_key; 46.15/22.88 lts = splitLT fm1 split_key; 46.15/22.88 }; 46.15/22.88 46.15/22.88 sIZE_RATIO :: Int; 46.15/22.88 sIZE_RATIO = 5; 46.15/22.88 46.15/22.88 sizeFM :: FiniteMap a b -> Int; 46.15/22.88 sizeFM EmptyFM = 0; 46.15/22.88 sizeFM (Branch _ _ size _ _) = size; 46.15/22.88 46.15/22.88 splitGT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 46.15/22.88 splitGT EmptyFM split_key = emptyFM; 46.15/22.88 splitGT (Branch key elt _ fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key 46.15/22.88 | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r 46.15/22.88 | otherwise = fm_r; 46.15/22.88 46.15/22.88 splitLT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 46.15/22.88 splitLT EmptyFM split_key = emptyFM; 46.15/22.88 splitLT (Branch key elt _ fm_l fm_r) split_key | split_key < key = splitLT fm_l split_key 46.15/22.88 | split_key > key = mkVBalBranch key elt fm_l (splitLT fm_r split_key) 46.15/22.88 | otherwise = fm_l; 46.15/22.88 46.15/22.88 unitFM :: a -> b -> FiniteMap a b; 46.15/22.88 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 46.15/22.88 46.15/22.88 } 46.15/22.88 module Maybe where { 46.15/22.88 import qualified FiniteMap; 46.15/22.88 import qualified Main; 46.15/22.88 import qualified Prelude; 46.15/22.88 } 46.15/22.88 module Main where { 46.15/22.88 import qualified FiniteMap; 46.15/22.88 import qualified Maybe; 46.15/22.88 import qualified Prelude; 46.15/22.88 } 46.15/22.88 46.15/22.88 ---------------------------------------- 46.15/22.88 46.15/22.88 (1) LR (EQUIVALENT) 46.15/22.88 Lambda Reductions: 46.15/22.88 The following Lambda expression 46.15/22.88 "\oldnew->new" 46.15/22.88 is transformed to 46.15/22.88 "addToFM0 old new = new; 46.15/22.88 " 46.15/22.88 The following Lambda expression 46.15/22.88 "\keyeltrest->(key,elt) : rest" 46.15/22.88 is transformed to 46.15/22.88 "fmToList0 key elt rest = (key,elt) : rest; 46.15/22.88 " 46.15/22.88 46.15/22.88 ---------------------------------------- 46.15/22.88 46.15/22.88 (2) 46.15/22.88 Obligation: 46.15/22.88 mainModule Main 46.15/22.88 module FiniteMap where { 46.15/22.88 import qualified Main; 46.15/22.88 import qualified Maybe; 46.15/22.88 import qualified Prelude; 46.15/22.88 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 46.15/22.88 46.15/22.88 instance (Eq a, Eq b) => Eq FiniteMap b a where { 46.15/22.88 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 46.15/22.88 } 46.15/22.88 addToFM :: Ord a => FiniteMap a b -> a -> b -> FiniteMap a b; 46.15/22.88 addToFM fm key elt = addToFM_C addToFM0 fm key elt; 46.15/22.88 46.15/22.88 addToFM0 old new = new; 46.15/22.88 46.15/22.88 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 46.15/22.88 addToFM_C combiner EmptyFM key elt = unitFM key elt; 46.15/22.88 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r 46.15/22.88 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 46.15/22.88 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 46.15/22.88 46.15/22.88 emptyFM :: FiniteMap a b; 46.15/22.88 emptyFM = EmptyFM; 46.15/22.88 46.15/22.88 findMax :: FiniteMap a b -> (a,b); 46.15/22.88 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 46.15/22.88 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 46.15/22.88 46.15/22.88 findMin :: FiniteMap b a -> (b,a); 46.15/22.88 findMin (Branch key elt _ EmptyFM _) = (key,elt); 46.15/22.88 findMin (Branch key elt _ fm_l _) = findMin fm_l; 46.15/22.88 46.15/22.88 fmToList :: FiniteMap a b -> [(a,b)]; 46.15/22.88 fmToList fm = foldFM fmToList0 [] fm; 46.15/22.88 46.15/22.88 fmToList0 key elt rest = (key,elt) : rest; 46.15/22.88 46.15/22.88 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 46.15/22.88 foldFM k z EmptyFM = z; 46.15/22.88 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 46.15/22.88 46.15/22.88 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 46.15/22.88 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 46.15/22.88 | size_r > sIZE_RATIO * size_l = case fm_R of { 46.15/22.88 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 46.15/22.88 | otherwise -> double_L fm_L fm_R; 46.15/22.88 } 46.15/22.88 | size_l > sIZE_RATIO * size_r = case fm_L of { 46.15/22.88 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 46.15/22.88 | otherwise -> double_R fm_L fm_R; 46.15/22.88 } 46.15/22.88 | otherwise = mkBranch 2 key elt fm_L fm_R where { 46.15/22.88 double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 46.15/22.88 double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 46.15/22.88 single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 46.15/22.88 single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 46.15/22.88 size_l = sizeFM fm_L; 46.15/22.88 size_r = sizeFM fm_R; 46.15/22.88 }; 46.15/22.88 46.15/22.88 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 46.15/22.88 mkBranch which key elt fm_l fm_r = let { 46.15/22.88 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 46.15/22.88 } in result where { 46.15/22.88 balance_ok = True; 46.15/22.88 left_ok = case fm_l of { 46.15/22.88 EmptyFM-> True; 46.15/22.88 Branch left_key _ _ _ _-> let { 46.15/22.88 biggest_left_key = fst (findMax fm_l); 46.15/22.88 } in biggest_left_key < key; 46.15/22.88 } ; 46.15/22.88 left_size = sizeFM fm_l; 46.15/22.88 right_ok = case fm_r of { 46.15/22.88 EmptyFM-> True; 46.15/22.88 Branch right_key _ _ _ _-> let { 46.15/22.88 smallest_right_key = fst (findMin fm_r); 46.15/22.88 } in key < smallest_right_key; 46.15/22.88 } ; 46.15/22.88 right_size = sizeFM fm_r; 46.15/22.88 unbox :: Int -> Int; 46.15/22.88 unbox x = x; 46.15/22.88 }; 46.15/22.88 46.15/22.88 mkVBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 46.15/22.88 mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; 46.15/22.88 mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; 46.15/22.88 mkVBalBranch key elt fm_l@(Branch key_l elt_l _ fm_ll fm_lr) fm_r@(Branch key_r elt_r _ fm_rl fm_rr) | sIZE_RATIO * size_l < size_r = mkBalBranch key_r elt_r (mkVBalBranch key elt fm_l fm_rl) fm_rr 46.15/22.88 | sIZE_RATIO * size_r < size_l = mkBalBranch key_l elt_l fm_ll (mkVBalBranch key elt fm_lr fm_r) 46.15/22.88 | otherwise = mkBranch 13 key elt fm_l fm_r where { 46.15/22.88 size_l = sizeFM fm_l; 46.15/22.88 size_r = sizeFM fm_r; 46.15/22.88 }; 46.15/22.88 46.15/22.88 plusFM :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 46.15/22.88 plusFM EmptyFM fm2 = fm2; 46.15/22.88 plusFM fm1 EmptyFM = fm1; 46.15/22.88 plusFM fm1 (Branch split_key elt1 _ left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { 46.15/22.88 gts = splitGT fm1 split_key; 46.15/22.88 lts = splitLT fm1 split_key; 46.15/22.88 }; 46.15/22.88 46.15/22.88 sIZE_RATIO :: Int; 46.15/22.88 sIZE_RATIO = 5; 46.15/22.88 46.15/22.88 sizeFM :: FiniteMap a b -> Int; 46.15/22.88 sizeFM EmptyFM = 0; 46.15/22.88 sizeFM (Branch _ _ size _ _) = size; 46.15/22.88 46.15/22.88 splitGT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 46.15/22.88 splitGT EmptyFM split_key = emptyFM; 46.15/22.88 splitGT (Branch key elt _ fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key 46.15/22.88 | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r 46.15/22.88 | otherwise = fm_r; 46.15/22.88 46.15/22.88 splitLT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 46.15/22.88 splitLT EmptyFM split_key = emptyFM; 46.15/22.88 splitLT (Branch key elt _ fm_l fm_r) split_key | split_key < key = splitLT fm_l split_key 46.15/22.88 | split_key > key = mkVBalBranch key elt fm_l (splitLT fm_r split_key) 46.15/22.88 | otherwise = fm_l; 46.15/22.88 46.15/22.88 unitFM :: b -> a -> FiniteMap b a; 46.15/22.88 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 46.15/22.88 46.15/22.88 } 46.15/22.88 module Maybe where { 46.15/22.88 import qualified FiniteMap; 46.15/22.88 import qualified Main; 46.15/22.88 import qualified Prelude; 46.15/22.88 } 46.15/22.88 module Main where { 46.15/22.88 import qualified FiniteMap; 46.15/22.88 import qualified Maybe; 46.15/22.88 import qualified Prelude; 46.15/22.88 } 46.15/22.88 46.15/22.88 ---------------------------------------- 46.15/22.88 46.15/22.88 (3) CR (EQUIVALENT) 46.15/22.88 Case Reductions: 46.15/22.88 The following Case expression 46.15/22.88 "case compare x y of { 46.15/22.88 EQ -> o; 46.15/22.88 LT -> LT; 46.15/22.88 GT -> GT} 46.15/22.88 " 46.15/22.88 is transformed to 46.15/22.88 "primCompAux0 o EQ = o; 46.15/22.88 primCompAux0 o LT = LT; 46.15/22.88 primCompAux0 o GT = GT; 46.15/22.88 " 46.15/22.88 The following Case expression 46.15/22.88 "case fm_r of { 46.15/22.88 EmptyFM -> True; 46.15/22.88 Branch right_key _ _ _ _ -> let { 46.15/22.88 smallest_right_key = fst (findMin fm_r); 46.15/22.88 } in key < smallest_right_key} 46.15/22.88 " 46.15/22.88 is transformed to 46.15/22.88 "right_ok0 fm_r key EmptyFM = True; 46.15/22.88 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 46.15/22.88 smallest_right_key = fst (findMin fm_r); 46.15/22.88 } in key < smallest_right_key; 46.15/22.88 " 46.15/22.88 The following Case expression 46.15/22.88 "case fm_l of { 46.15/22.88 EmptyFM -> True; 46.15/22.88 Branch left_key _ _ _ _ -> let { 46.15/22.88 biggest_left_key = fst (findMax fm_l); 46.15/22.88 } in biggest_left_key < key} 46.15/22.88 " 46.15/22.88 is transformed to 46.15/22.88 "left_ok0 fm_l key EmptyFM = True; 46.15/22.88 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 46.15/22.88 biggest_left_key = fst (findMax fm_l); 46.15/22.88 } in biggest_left_key < key; 46.15/22.88 " 46.15/22.88 The following Case expression 46.15/22.88 "case fm_R of { 46.15/22.88 Branch _ _ _ fm_rl fm_rr |sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R} 46.15/22.88 " 46.15/22.88 is transformed to 46.15/22.88 "mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; 46.15/22.88 " 46.15/22.88 The following Case expression 46.15/22.88 "case fm_L of { 46.15/22.88 Branch _ _ _ fm_ll fm_lr |sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R} 46.15/22.88 " 46.15/22.88 is transformed to 46.15/22.88 "mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; 46.15/22.88 " 46.15/22.88 46.15/22.88 ---------------------------------------- 46.15/22.88 46.15/22.88 (4) 46.15/22.88 Obligation: 46.15/22.88 mainModule Main 46.15/22.88 module FiniteMap where { 46.15/22.88 import qualified Main; 46.15/22.88 import qualified Maybe; 46.15/22.88 import qualified Prelude; 46.15/22.88 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 46.15/22.88 46.15/22.88 instance (Eq a, Eq b) => Eq FiniteMap a b where { 46.15/22.88 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 46.15/22.88 } 46.15/22.88 addToFM :: Ord a => FiniteMap a b -> a -> b -> FiniteMap a b; 46.15/22.88 addToFM fm key elt = addToFM_C addToFM0 fm key elt; 46.15/22.88 46.15/22.88 addToFM0 old new = new; 46.15/22.88 46.15/22.88 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 46.15/22.88 addToFM_C combiner EmptyFM key elt = unitFM key elt; 46.15/22.88 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r 46.15/22.88 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 46.15/22.88 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 46.15/22.88 46.15/22.88 emptyFM :: FiniteMap a b; 46.15/22.88 emptyFM = EmptyFM; 46.15/22.88 46.15/22.88 findMax :: FiniteMap b a -> (b,a); 46.15/22.88 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 46.15/22.88 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 46.15/22.88 46.15/22.88 findMin :: FiniteMap a b -> (a,b); 46.15/22.88 findMin (Branch key elt _ EmptyFM _) = (key,elt); 46.15/22.88 findMin (Branch key elt _ fm_l _) = findMin fm_l; 46.99/23.07 46.99/23.07 fmToList :: FiniteMap b a -> [(b,a)]; 46.99/23.07 fmToList fm = foldFM fmToList0 [] fm; 46.99/23.07 46.99/23.07 fmToList0 key elt rest = (key,elt) : rest; 46.99/23.07 46.99/23.07 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 46.99/23.07 foldFM k z EmptyFM = z; 46.99/23.07 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 46.99/23.07 46.99/23.07 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 46.99/23.07 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 46.99/23.07 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 46.99/23.07 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 46.99/23.07 | otherwise = mkBranch 2 key elt fm_L fm_R where { 46.99/23.07 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); 46.99/23.07 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); 46.99/23.07 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 46.99/23.07 | otherwise = double_L fm_L fm_R; 46.99/23.07 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 46.99/23.07 | otherwise = double_R fm_L fm_R; 46.99/23.07 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; 46.99/23.07 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); 46.99/23.07 size_l = sizeFM fm_L; 46.99/23.07 size_r = sizeFM fm_R; 46.99/23.07 }; 46.99/23.07 46.99/23.07 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 46.99/23.07 mkBranch which key elt fm_l fm_r = let { 46.99/23.07 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 46.99/23.07 } in result where { 46.99/23.07 balance_ok = True; 46.99/23.07 left_ok = left_ok0 fm_l key fm_l; 46.99/23.07 left_ok0 fm_l key EmptyFM = True; 46.99/23.07 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 46.99/23.07 biggest_left_key = fst (findMax fm_l); 46.99/23.07 } in biggest_left_key < key; 46.99/23.07 left_size = sizeFM fm_l; 46.99/23.07 right_ok = right_ok0 fm_r key fm_r; 46.99/23.07 right_ok0 fm_r key EmptyFM = True; 46.99/23.07 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 46.99/23.07 smallest_right_key = fst (findMin fm_r); 46.99/23.07 } in key < smallest_right_key; 46.99/23.07 right_size = sizeFM fm_r; 46.99/23.07 unbox :: Int -> Int; 46.99/23.07 unbox x = x; 46.99/23.07 }; 46.99/23.07 46.99/23.07 mkVBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 46.99/23.07 mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; 46.99/23.07 mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; 46.99/23.07 mkVBalBranch key elt fm_l@(Branch key_l elt_l _ fm_ll fm_lr) fm_r@(Branch key_r elt_r _ fm_rl fm_rr) | sIZE_RATIO * size_l < size_r = mkBalBranch key_r elt_r (mkVBalBranch key elt fm_l fm_rl) fm_rr 46.99/23.07 | sIZE_RATIO * size_r < size_l = mkBalBranch key_l elt_l fm_ll (mkVBalBranch key elt fm_lr fm_r) 46.99/23.07 | otherwise = mkBranch 13 key elt fm_l fm_r where { 46.99/23.07 size_l = sizeFM fm_l; 46.99/23.07 size_r = sizeFM fm_r; 46.99/23.07 }; 46.99/23.07 46.99/23.07 plusFM :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 46.99/23.07 plusFM EmptyFM fm2 = fm2; 46.99/23.07 plusFM fm1 EmptyFM = fm1; 46.99/23.07 plusFM fm1 (Branch split_key elt1 _ left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { 46.99/23.07 gts = splitGT fm1 split_key; 46.99/23.07 lts = splitLT fm1 split_key; 46.99/23.07 }; 46.99/23.07 46.99/23.07 sIZE_RATIO :: Int; 46.99/23.07 sIZE_RATIO = 5; 46.99/23.07 46.99/23.07 sizeFM :: FiniteMap a b -> Int; 46.99/23.07 sizeFM EmptyFM = 0; 46.99/23.07 sizeFM (Branch _ _ size _ _) = size; 46.99/23.07 46.99/23.07 splitGT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 46.99/23.07 splitGT EmptyFM split_key = emptyFM; 46.99/23.07 splitGT (Branch key elt _ fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key 46.99/23.07 | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r 46.99/23.07 | otherwise = fm_r; 46.99/23.07 46.99/23.07 splitLT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 46.99/23.07 splitLT EmptyFM split_key = emptyFM; 46.99/23.07 splitLT (Branch key elt _ fm_l fm_r) split_key | split_key < key = splitLT fm_l split_key 46.99/23.07 | split_key > key = mkVBalBranch key elt fm_l (splitLT fm_r split_key) 46.99/23.07 | otherwise = fm_l; 46.99/23.07 46.99/23.07 unitFM :: a -> b -> FiniteMap a b; 46.99/23.07 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 46.99/23.07 46.99/23.07 } 46.99/23.07 module Maybe where { 46.99/23.07 import qualified FiniteMap; 46.99/23.07 import qualified Main; 46.99/23.07 import qualified Prelude; 46.99/23.07 } 46.99/23.07 module Main where { 46.99/23.07 import qualified FiniteMap; 46.99/23.07 import qualified Maybe; 46.99/23.07 import qualified Prelude; 46.99/23.07 } 46.99/23.07 46.99/23.07 ---------------------------------------- 46.99/23.07 46.99/23.07 (5) IFR (EQUIVALENT) 46.99/23.07 If Reductions: 46.99/23.07 The following If expression 46.99/23.07 "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" 46.99/23.07 is transformed to 46.99/23.07 "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); 46.99/23.07 primDivNatS0 x y False = Zero; 46.99/23.07 " 46.99/23.07 The following If expression 46.99/23.07 "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" 46.99/23.07 is transformed to 46.99/23.07 "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); 46.99/23.07 primModNatS0 x y False = Succ x; 46.99/23.07 " 46.99/23.07 46.99/23.07 ---------------------------------------- 46.99/23.07 46.99/23.07 (6) 46.99/23.07 Obligation: 46.99/23.07 mainModule Main 46.99/23.07 module FiniteMap where { 46.99/23.07 import qualified Main; 46.99/23.07 import qualified Maybe; 46.99/23.07 import qualified Prelude; 46.99/23.07 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 46.99/23.07 46.99/23.07 instance (Eq a, Eq b) => Eq FiniteMap a b where { 46.99/23.07 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 46.99/23.07 } 46.99/23.07 addToFM :: Ord a => FiniteMap a b -> a -> b -> FiniteMap a b; 46.99/23.07 addToFM fm key elt = addToFM_C addToFM0 fm key elt; 46.99/23.07 46.99/23.07 addToFM0 old new = new; 46.99/23.07 46.99/23.07 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 46.99/23.07 addToFM_C combiner EmptyFM key elt = unitFM key elt; 46.99/23.07 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 46.99/23.07 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 46.99/23.07 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 46.99/23.07 46.99/23.07 emptyFM :: FiniteMap b a; 46.99/23.07 emptyFM = EmptyFM; 46.99/23.07 46.99/23.07 findMax :: FiniteMap a b -> (a,b); 46.99/23.07 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 46.99/23.07 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 46.99/23.07 46.99/23.07 findMin :: FiniteMap b a -> (b,a); 46.99/23.07 findMin (Branch key elt _ EmptyFM _) = (key,elt); 46.99/23.07 findMin (Branch key elt _ fm_l _) = findMin fm_l; 46.99/23.07 46.99/23.07 fmToList :: FiniteMap b a -> [(b,a)]; 46.99/23.07 fmToList fm = foldFM fmToList0 [] fm; 46.99/23.07 46.99/23.07 fmToList0 key elt rest = (key,elt) : rest; 46.99/23.07 46.99/23.07 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 46.99/23.07 foldFM k z EmptyFM = z; 46.99/23.07 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 46.99/23.07 46.99/23.07 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 46.99/23.07 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 46.99/23.07 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 46.99/23.07 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 46.99/23.07 | otherwise = mkBranch 2 key elt fm_L fm_R where { 46.99/23.07 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); 46.99/23.07 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); 46.99/23.07 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 46.99/23.07 | otherwise = double_L fm_L fm_R; 46.99/23.07 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 46.99/23.07 | otherwise = double_R fm_L fm_R; 46.99/23.07 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; 46.99/23.07 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); 46.99/23.07 size_l = sizeFM fm_L; 46.99/23.07 size_r = sizeFM fm_R; 46.99/23.07 }; 46.99/23.07 46.99/23.07 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 46.99/23.07 mkBranch which key elt fm_l fm_r = let { 46.99/23.07 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 46.99/23.07 } in result where { 46.99/23.07 balance_ok = True; 46.99/23.07 left_ok = left_ok0 fm_l key fm_l; 46.99/23.07 left_ok0 fm_l key EmptyFM = True; 46.99/23.07 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 46.99/23.07 biggest_left_key = fst (findMax fm_l); 46.99/23.07 } in biggest_left_key < key; 46.99/23.07 left_size = sizeFM fm_l; 46.99/23.07 right_ok = right_ok0 fm_r key fm_r; 46.99/23.07 right_ok0 fm_r key EmptyFM = True; 46.99/23.07 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 46.99/23.07 smallest_right_key = fst (findMin fm_r); 46.99/23.07 } in key < smallest_right_key; 46.99/23.07 right_size = sizeFM fm_r; 46.99/23.07 unbox :: Int -> Int; 46.99/23.07 unbox x = x; 46.99/23.07 }; 46.99/23.07 46.99/23.07 mkVBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 46.99/23.07 mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; 46.99/23.07 mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; 46.99/23.07 mkVBalBranch key elt fm_l@(Branch key_l elt_l _ fm_ll fm_lr) fm_r@(Branch key_r elt_r _ fm_rl fm_rr) | sIZE_RATIO * size_l < size_r = mkBalBranch key_r elt_r (mkVBalBranch key elt fm_l fm_rl) fm_rr 46.99/23.07 | sIZE_RATIO * size_r < size_l = mkBalBranch key_l elt_l fm_ll (mkVBalBranch key elt fm_lr fm_r) 46.99/23.07 | otherwise = mkBranch 13 key elt fm_l fm_r where { 46.99/23.07 size_l = sizeFM fm_l; 46.99/23.07 size_r = sizeFM fm_r; 46.99/23.07 }; 46.99/23.07 46.99/23.07 plusFM :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 46.99/23.07 plusFM EmptyFM fm2 = fm2; 46.99/23.07 plusFM fm1 EmptyFM = fm1; 46.99/23.07 plusFM fm1 (Branch split_key elt1 _ left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { 46.99/23.07 gts = splitGT fm1 split_key; 46.99/23.07 lts = splitLT fm1 split_key; 46.99/23.07 }; 46.99/23.07 46.99/23.07 sIZE_RATIO :: Int; 46.99/23.07 sIZE_RATIO = 5; 46.99/23.07 46.99/23.07 sizeFM :: FiniteMap a b -> Int; 46.99/23.07 sizeFM EmptyFM = 0; 46.99/23.07 sizeFM (Branch _ _ size _ _) = size; 46.99/23.07 46.99/23.07 splitGT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 46.99/23.07 splitGT EmptyFM split_key = emptyFM; 46.99/23.07 splitGT (Branch key elt _ fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key 46.99/23.07 | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r 46.99/23.07 | otherwise = fm_r; 46.99/23.07 46.99/23.07 splitLT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 46.99/23.07 splitLT EmptyFM split_key = emptyFM; 46.99/23.07 splitLT (Branch key elt _ fm_l fm_r) split_key | split_key < key = splitLT fm_l split_key 46.99/23.07 | split_key > key = mkVBalBranch key elt fm_l (splitLT fm_r split_key) 46.99/23.07 | otherwise = fm_l; 46.99/23.07 46.99/23.07 unitFM :: a -> b -> FiniteMap a b; 46.99/23.07 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 46.99/23.07 46.99/23.07 } 46.99/23.07 module Maybe where { 46.99/23.07 import qualified FiniteMap; 46.99/23.07 import qualified Main; 46.99/23.07 import qualified Prelude; 46.99/23.07 } 46.99/23.07 module Main where { 46.99/23.07 import qualified FiniteMap; 46.99/23.07 import qualified Maybe; 46.99/23.07 import qualified Prelude; 46.99/23.07 } 46.99/23.07 46.99/23.07 ---------------------------------------- 46.99/23.07 46.99/23.07 (7) BR (EQUIVALENT) 46.99/23.07 Replaced joker patterns by fresh variables and removed binding patterns. 46.99/23.07 46.99/23.07 Binding Reductions: 46.99/23.07 The bind variable of the following binding Pattern 46.99/23.07 "fm_l@(Branch vuv vuw vux vuy vuz)" 46.99/23.07 is replaced by the following term 46.99/23.07 "Branch vuv vuw vux vuy vuz" 46.99/23.07 The bind variable of the following binding Pattern 46.99/23.07 "fm_r@(Branch vvv vvw vvx vvy vvz)" 46.99/23.07 is replaced by the following term 46.99/23.07 "Branch vvv vvw vvx vvy vvz" 46.99/23.07 46.99/23.07 ---------------------------------------- 46.99/23.07 46.99/23.07 (8) 46.99/23.07 Obligation: 46.99/23.07 mainModule Main 46.99/23.07 module FiniteMap where { 46.99/23.07 import qualified Main; 46.99/23.07 import qualified Maybe; 46.99/23.07 import qualified Prelude; 46.99/23.07 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 46.99/23.07 46.99/23.07 instance (Eq a, Eq b) => Eq FiniteMap a b where { 46.99/23.07 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 46.99/23.07 } 46.99/23.07 addToFM :: Ord b => FiniteMap b a -> b -> a -> FiniteMap b a; 46.99/23.07 addToFM fm key elt = addToFM_C addToFM0 fm key elt; 46.99/23.07 46.99/23.07 addToFM0 old new = new; 46.99/23.07 46.99/23.07 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 46.99/23.07 addToFM_C combiner EmptyFM key elt = unitFM key elt; 46.99/23.07 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 46.99/23.07 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 46.99/23.07 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 46.99/23.07 46.99/23.07 emptyFM :: FiniteMap a b; 46.99/23.07 emptyFM = EmptyFM; 46.99/23.07 46.99/23.07 findMax :: FiniteMap a b -> (a,b); 46.99/23.07 findMax (Branch key elt vxy vxz EmptyFM) = (key,elt); 46.99/23.07 findMax (Branch key elt vyu vyv fm_r) = findMax fm_r; 46.99/23.07 46.99/23.07 findMin :: FiniteMap a b -> (a,b); 46.99/23.07 findMin (Branch key elt wvv EmptyFM wvw) = (key,elt); 46.99/23.07 findMin (Branch key elt wvx fm_l wvy) = findMin fm_l; 46.99/23.07 46.99/23.07 fmToList :: FiniteMap a b -> [(a,b)]; 46.99/23.07 fmToList fm = foldFM fmToList0 [] fm; 46.99/23.07 46.99/23.07 fmToList0 key elt rest = (key,elt) : rest; 46.99/23.07 46.99/23.07 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 46.99/23.07 foldFM k z EmptyFM = z; 46.99/23.07 foldFM k z (Branch key elt wuw fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 46.99/23.07 46.99/23.07 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 46.99/23.07 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 46.99/23.07 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 46.99/23.07 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 46.99/23.07 | otherwise = mkBranch 2 key elt fm_L fm_R where { 46.99/23.07 double_L fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx 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); 46.99/23.07 double_R (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy 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); 46.99/23.07 mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 46.99/23.07 | otherwise = double_L fm_L fm_R; 46.99/23.07 mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 46.99/23.07 | otherwise = double_R fm_L fm_R; 46.99/23.07 single_L fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 46.99/23.07 single_R (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 46.99/23.07 size_l = sizeFM fm_L; 46.99/23.07 size_r = sizeFM fm_R; 46.99/23.07 }; 46.99/23.07 46.99/23.07 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 46.99/23.07 mkBranch which key elt fm_l fm_r = let { 46.99/23.07 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 46.99/23.07 } in result where { 46.99/23.07 balance_ok = True; 46.99/23.07 left_ok = left_ok0 fm_l key fm_l; 46.99/23.07 left_ok0 fm_l key EmptyFM = True; 46.99/23.07 left_ok0 fm_l key (Branch left_key vww vwx vwy vwz) = let { 46.99/23.07 biggest_left_key = fst (findMax fm_l); 46.99/23.07 } in biggest_left_key < key; 46.99/23.07 left_size = sizeFM fm_l; 46.99/23.07 right_ok = right_ok0 fm_r key fm_r; 46.99/23.07 right_ok0 fm_r key EmptyFM = True; 46.99/23.07 right_ok0 fm_r key (Branch right_key vxu vxv vxw vxx) = let { 46.99/23.07 smallest_right_key = fst (findMin fm_r); 46.99/23.07 } in key < smallest_right_key; 46.99/23.07 right_size = sizeFM fm_r; 46.99/23.07 unbox :: Int -> Int; 46.99/23.07 unbox x = x; 46.99/23.07 }; 46.99/23.07 46.99/23.07 mkVBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 46.99/23.07 mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; 46.99/23.07 mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; 46.99/23.07 mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) | sIZE_RATIO * size_l < size_r = mkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz 46.99/23.07 | sIZE_RATIO * size_r < size_l = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)) 46.99/23.07 | otherwise = mkBranch 13 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) where { 46.99/23.07 size_l = sizeFM (Branch vuv vuw vux vuy vuz); 46.99/23.07 size_r = sizeFM (Branch vvv vvw vvx vvy vvz); 46.99/23.07 }; 46.99/23.07 46.99/23.07 plusFM :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 46.99/23.07 plusFM EmptyFM fm2 = fm2; 46.99/23.07 plusFM fm1 EmptyFM = fm1; 46.99/23.07 plusFM fm1 (Branch split_key elt1 zz left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { 46.99/23.07 gts = splitGT fm1 split_key; 46.99/23.07 lts = splitLT fm1 split_key; 46.99/23.07 }; 46.99/23.07 46.99/23.07 sIZE_RATIO :: Int; 46.99/23.07 sIZE_RATIO = 5; 46.99/23.07 46.99/23.07 sizeFM :: FiniteMap a b -> Int; 46.99/23.07 sizeFM EmptyFM = 0; 46.99/23.07 sizeFM (Branch wux wuy size wuz wvu) = size; 46.99/23.07 46.99/23.07 splitGT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 46.99/23.07 splitGT EmptyFM split_key = emptyFM; 46.99/23.07 splitGT (Branch key elt vwu fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key 46.99/23.07 | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r 46.99/23.07 | otherwise = fm_r; 46.99/23.07 46.99/23.07 splitLT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 46.99/23.07 splitLT EmptyFM split_key = emptyFM; 46.99/23.07 splitLT (Branch key elt vwv fm_l fm_r) split_key | split_key < key = splitLT fm_l split_key 46.99/23.07 | split_key > key = mkVBalBranch key elt fm_l (splitLT fm_r split_key) 46.99/23.07 | otherwise = fm_l; 46.99/23.07 46.99/23.07 unitFM :: b -> a -> FiniteMap b a; 46.99/23.07 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 46.99/23.07 46.99/23.07 } 46.99/23.07 module Maybe where { 46.99/23.07 import qualified FiniteMap; 46.99/23.07 import qualified Main; 46.99/23.07 import qualified Prelude; 46.99/23.07 } 46.99/23.07 module Main where { 47.25/23.17 import qualified FiniteMap; 47.25/23.17 import qualified Maybe; 47.25/23.17 import qualified Prelude; 47.25/23.17 } 47.25/23.17 47.25/23.17 ---------------------------------------- 47.25/23.17 47.25/23.17 (9) COR (EQUIVALENT) 47.25/23.17 Cond Reductions: 47.25/23.17 The following Function with conditions 47.25/23.17 "compare x y|x == yEQ|x <= yLT|otherwiseGT; 47.25/23.17 " 47.25/23.17 is transformed to 47.25/23.17 "compare x y = compare3 x y; 47.25/23.17 " 47.25/23.17 "compare1 x y True = LT; 47.25/23.17 compare1 x y False = compare0 x y otherwise; 47.25/23.17 " 47.25/23.17 "compare2 x y True = EQ; 47.25/23.17 compare2 x y False = compare1 x y (x <= y); 47.25/23.17 " 47.25/23.17 "compare0 x y True = GT; 47.25/23.17 " 47.25/23.17 "compare3 x y = compare2 x y (x == y); 47.25/23.17 " 47.25/23.17 The following Function with conditions 47.25/23.17 "absReal x|x >= 0x|otherwise`negate` x; 47.25/23.17 " 47.25/23.17 is transformed to 47.25/23.17 "absReal x = absReal2 x; 47.25/23.17 " 47.25/23.17 "absReal1 x True = x; 47.25/23.17 absReal1 x False = absReal0 x otherwise; 47.25/23.17 " 47.25/23.17 "absReal0 x True = `negate` x; 47.25/23.17 " 47.25/23.17 "absReal2 x = absReal1 x (x >= 0); 47.25/23.17 " 47.25/23.17 The following Function with conditions 47.25/23.17 "gcd' x 0 = x; 47.25/23.17 gcd' x y = gcd' y (x `rem` y); 47.25/23.17 " 47.25/23.17 is transformed to 47.25/23.17 "gcd' x wvz = gcd'2 x wvz; 47.25/23.17 gcd' x y = gcd'0 x y; 47.25/23.17 " 47.25/23.17 "gcd'0 x y = gcd' y (x `rem` y); 47.25/23.17 " 47.25/23.17 "gcd'1 True x wvz = x; 47.25/23.17 gcd'1 wwu wwv www = gcd'0 wwv www; 47.25/23.17 " 47.25/23.17 "gcd'2 x wvz = gcd'1 (wvz == 0) x wvz; 47.25/23.17 gcd'2 wwx wwy = gcd'0 wwx wwy; 47.25/23.17 " 47.25/23.17 The following Function with conditions 47.25/23.17 "gcd 0 0 = error []; 47.25/23.17 gcd x y = gcd' (abs x) (abs y) where { 47.25/23.17 gcd' x 0 = x; 47.25/23.17 gcd' x y = gcd' y (x `rem` y); 47.25/23.17 } 47.25/23.17 ; 47.25/23.17 " 47.25/23.17 is transformed to 47.25/23.17 "gcd wwz wxu = gcd3 wwz wxu; 47.25/23.17 gcd x y = gcd0 x y; 47.25/23.17 " 47.25/23.17 "gcd0 x y = gcd' (abs x) (abs y) where { 47.25/23.17 gcd' x wvz = gcd'2 x wvz; 47.25/23.17 gcd' x y = gcd'0 x y; 47.25/23.17 ; 47.25/23.17 gcd'0 x y = gcd' y (x `rem` y); 47.25/23.17 ; 47.25/23.17 gcd'1 True x wvz = x; 47.25/23.17 gcd'1 wwu wwv www = gcd'0 wwv www; 47.25/23.17 ; 47.25/23.17 gcd'2 x wvz = gcd'1 (wvz == 0) x wvz; 47.25/23.17 gcd'2 wwx wwy = gcd'0 wwx wwy; 47.25/23.17 } 47.25/23.17 ; 47.25/23.17 " 47.25/23.17 "gcd1 True wwz wxu = error []; 47.25/23.17 gcd1 wxv wxw wxx = gcd0 wxw wxx; 47.25/23.17 " 47.25/23.17 "gcd2 True wwz wxu = gcd1 (wxu == 0) wwz wxu; 47.25/23.17 gcd2 wxy wxz wyu = gcd0 wxz wyu; 47.25/23.17 " 47.25/23.17 "gcd3 wwz wxu = gcd2 (wwz == 0) wwz wxu; 47.25/23.17 gcd3 wyv wyw = gcd0 wyv wyw; 47.25/23.17 " 47.25/23.17 The following Function with conditions 47.25/23.17 "undefined |Falseundefined; 47.25/23.17 " 47.25/23.17 is transformed to 47.25/23.17 "undefined = undefined1; 47.25/23.17 " 47.25/23.17 "undefined0 True = undefined; 47.25/23.17 " 47.25/23.17 "undefined1 = undefined0 False; 47.25/23.17 " 47.25/23.17 The following Function with conditions 47.25/23.17 "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { 47.25/23.17 d = gcd x y; 47.25/23.17 } 47.25/23.17 ; 47.25/23.17 " 47.25/23.17 is transformed to 47.25/23.17 "reduce x y = reduce2 x y; 47.25/23.17 " 47.25/23.17 "reduce2 x y = reduce1 x y (y == 0) where { 47.25/23.17 d = gcd x y; 47.25/23.17 ; 47.25/23.17 reduce0 x y True = x `quot` d :% (y `quot` d); 47.25/23.17 ; 47.25/23.17 reduce1 x y True = error []; 47.25/23.17 reduce1 x y False = reduce0 x y otherwise; 47.25/23.17 } 47.25/23.17 ; 47.25/23.17 " 47.25/23.17 The following Function with conditions 47.25/23.17 "addToFM_C combiner EmptyFM key elt = unitFM key elt; 47.25/23.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; 47.25/23.17 " 47.25/23.17 is transformed to 47.25/23.17 "addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 47.25/23.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; 47.25/23.17 " 47.25/23.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; 47.25/23.17 " 47.25/23.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); 47.25/23.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; 47.25/23.17 " 47.25/23.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; 47.25/23.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); 47.25/23.17 " 47.25/23.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); 47.25/23.17 " 47.25/23.17 "addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 47.25/23.17 addToFM_C4 wyz wzu wzv wzw = addToFM_C3 wyz wzu wzv wzw; 47.25/23.17 " 47.25/23.17 The following Function with conditions 47.25/23.17 "mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; 47.25/23.17 mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; 47.25/23.17 mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz)|sIZE_RATIO * size_l < size_rmkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz|sIZE_RATIO * size_r < size_lmkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz))|otherwisemkBranch 13 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) where { 47.25/23.17 size_l = sizeFM (Branch vuv vuw vux vuy vuz); 47.25/23.17 ; 47.25/23.17 size_r = sizeFM (Branch vvv vvw vvx vvy vvz); 47.25/23.17 } 47.25/23.17 ; 47.25/23.17 " 47.25/23.17 is transformed to 47.25/23.17 "mkVBalBranch key elt EmptyFM fm_r = mkVBalBranch5 key elt EmptyFM fm_r; 47.25/23.17 mkVBalBranch key elt fm_l EmptyFM = mkVBalBranch4 key elt fm_l EmptyFM; 47.25/23.17 mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); 47.25/23.17 " 47.25/23.17 "mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * size_l < size_r) where { 47.25/23.17 mkVBalBranch0 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBranch 13 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); 47.25/23.17 ; 47.25/23.17 mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)); 47.25/23.17 mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch0 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz otherwise; 47.25/23.17 ; 47.25/23.17 mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz; 47.25/23.17 mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * size_r < size_l); 47.25/23.17 ; 47.25/23.17 size_l = sizeFM (Branch vuv vuw vux vuy vuz); 47.25/23.17 ; 47.25/23.17 size_r = sizeFM (Branch vvv vvw vvx vvy vvz); 47.25/23.17 } 47.25/23.17 ; 47.25/23.17 " 47.25/23.17 "mkVBalBranch4 key elt fm_l EmptyFM = addToFM fm_l key elt; 47.25/23.17 mkVBalBranch4 xuu xuv xuw xux = mkVBalBranch3 xuu xuv xuw xux; 47.25/23.17 " 47.25/23.17 "mkVBalBranch5 key elt EmptyFM fm_r = addToFM fm_r key elt; 47.25/23.17 mkVBalBranch5 xuz xvu xvv xvw = mkVBalBranch4 xuz xvu xvv xvw; 47.25/23.17 " 47.25/23.17 The following Function with conditions 47.25/23.17 "splitGT EmptyFM split_key = emptyFM; 47.25/23.17 splitGT (Branch key elt vwu fm_l fm_r) split_key|split_key > keysplitGT fm_r split_key|split_key < keymkVBalBranch key elt (splitGT fm_l split_key) fm_r|otherwisefm_r; 47.25/23.17 " 47.25/23.17 is transformed to 47.25/23.17 "splitGT EmptyFM split_key = splitGT4 EmptyFM split_key; 47.25/23.17 splitGT (Branch key elt vwu fm_l fm_r) split_key = splitGT3 (Branch key elt vwu fm_l fm_r) split_key; 47.25/23.17 " 47.25/23.17 "splitGT0 key elt vwu fm_l fm_r split_key True = fm_r; 47.25/23.17 " 47.25/23.17 "splitGT1 key elt vwu fm_l fm_r split_key True = mkVBalBranch key elt (splitGT fm_l split_key) fm_r; 47.25/23.17 splitGT1 key elt vwu fm_l fm_r split_key False = splitGT0 key elt vwu fm_l fm_r split_key otherwise; 47.25/23.17 " 47.25/23.17 "splitGT2 key elt vwu fm_l fm_r split_key True = splitGT fm_r split_key; 47.25/23.17 splitGT2 key elt vwu fm_l fm_r split_key False = splitGT1 key elt vwu fm_l fm_r split_key (split_key < key); 47.25/23.17 " 47.25/23.17 "splitGT3 (Branch key elt vwu fm_l fm_r) split_key = splitGT2 key elt vwu fm_l fm_r split_key (split_key > key); 47.25/23.17 " 47.25/23.17 "splitGT4 EmptyFM split_key = emptyFM; 47.25/23.17 splitGT4 xvz xwu = splitGT3 xvz xwu; 47.25/23.17 " 47.25/23.17 The following Function with conditions 47.25/23.17 "splitLT EmptyFM split_key = emptyFM; 47.25/23.17 splitLT (Branch key elt vwv fm_l fm_r) split_key|split_key < keysplitLT fm_l split_key|split_key > keymkVBalBranch key elt fm_l (splitLT fm_r split_key)|otherwisefm_l; 47.25/23.17 " 47.25/23.17 is transformed to 47.25/23.17 "splitLT EmptyFM split_key = splitLT4 EmptyFM split_key; 47.25/23.17 splitLT (Branch key elt vwv fm_l fm_r) split_key = splitLT3 (Branch key elt vwv fm_l fm_r) split_key; 47.25/23.17 " 47.25/23.17 "splitLT1 key elt vwv fm_l fm_r split_key True = mkVBalBranch key elt fm_l (splitLT fm_r split_key); 47.25/23.17 splitLT1 key elt vwv fm_l fm_r split_key False = splitLT0 key elt vwv fm_l fm_r split_key otherwise; 47.25/23.17 " 47.25/23.17 "splitLT2 key elt vwv fm_l fm_r split_key True = splitLT fm_l split_key; 47.25/23.17 splitLT2 key elt vwv fm_l fm_r split_key False = splitLT1 key elt vwv fm_l fm_r split_key (split_key > key); 47.25/23.17 " 47.25/23.17 "splitLT0 key elt vwv fm_l fm_r split_key True = fm_l; 47.25/23.17 " 47.25/23.17 "splitLT3 (Branch key elt vwv fm_l fm_r) split_key = splitLT2 key elt vwv fm_l fm_r split_key (split_key < key); 47.25/23.17 " 47.25/23.17 "splitLT4 EmptyFM split_key = emptyFM; 47.25/23.17 splitLT4 xwx xwy = splitLT3 xwx xwy; 47.25/23.17 " 47.25/23.17 The following Function with conditions 47.25/23.17 "mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; 47.25/23.17 " 47.25/23.17 is transformed to 47.25/23.17 "mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr); 47.25/23.17 " 47.25/23.17 "mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = single_R fm_L fm_R; 47.25/23.17 mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr otherwise; 47.25/23.17 " 47.25/23.17 "mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = double_R fm_L fm_R; 47.25/23.17 " 47.25/23.17 "mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 47.25/23.17 " 47.25/23.17 The following Function with conditions 47.25/23.17 "mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; 47.25/23.17 " 47.25/23.17 is transformed to 47.25/23.17 "mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr); 47.25/23.17 " 47.25/23.17 "mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = double_L fm_L fm_R; 47.25/23.17 " 47.25/23.17 "mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = single_L fm_L fm_R; 47.25/23.17 mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr otherwise; 47.25/23.17 " 47.25/23.17 "mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 47.25/23.17 " 47.25/23.17 The following Function with conditions 47.25/23.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 { 47.25/23.17 double_L fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx 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); 47.25/23.17 ; 47.25/23.17 double_R (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy 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); 47.25/23.17 ; 47.25/23.17 mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; 47.25/23.17 ; 47.25/23.17 mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; 47.25/23.17 ; 47.25/23.17 single_L fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 47.25/23.17 ; 47.25/23.17 single_R (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 47.25/23.17 ; 47.25/23.17 size_l = sizeFM fm_L; 47.25/23.17 ; 47.25/23.17 size_r = sizeFM fm_R; 47.25/23.17 } 47.25/23.17 ; 47.25/23.17 " 47.25/23.17 is transformed to 47.25/23.17 "mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 47.25/23.17 " 47.25/23.17 "mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 47.25/23.17 double_L fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx 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); 47.25/23.17 ; 47.25/23.17 double_R (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy 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); 47.25/23.17 ; 47.25/23.17 mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr); 47.25/23.17 ; 47.25/23.17 mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = double_L fm_L fm_R; 47.25/23.17 ; 47.25/23.17 mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = single_L fm_L fm_R; 47.25/23.17 mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr otherwise; 47.25/23.17 ; 47.25/23.17 mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 47.25/23.17 ; 47.25/23.17 mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr); 47.25/23.17 ; 47.25/23.17 mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = double_R fm_L fm_R; 47.25/23.17 ; 47.25/23.17 mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = single_R fm_L fm_R; 47.25/23.17 mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr otherwise; 47.25/23.17 ; 47.25/23.17 mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 47.25/23.17 ; 47.25/23.17 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 47.25/23.17 ; 47.25/23.17 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 47.25/23.17 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 47.25/23.17 ; 47.25/23.17 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 47.25/23.17 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 47.25/23.17 ; 47.25/23.17 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 47.25/23.17 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 47.25/23.17 ; 47.25/23.17 single_L fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 47.25/23.17 ; 47.25/23.17 single_R (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 47.25/23.17 ; 47.25/23.17 size_l = sizeFM fm_L; 47.25/23.17 ; 47.25/23.17 size_r = sizeFM fm_R; 47.25/23.17 } 47.25/23.17 ; 47.25/23.17 " 47.25/23.17 47.25/23.17 ---------------------------------------- 47.25/23.17 47.25/23.17 (10) 47.25/23.17 Obligation: 47.25/23.17 mainModule Main 47.25/23.17 module FiniteMap where { 47.25/23.17 import qualified Main; 47.25/23.17 import qualified Maybe; 47.25/23.17 import qualified Prelude; 47.25/23.17 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 47.25/23.17 47.25/23.17 instance (Eq a, Eq b) => Eq FiniteMap a b where { 47.25/23.17 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 47.25/23.17 } 47.25/23.17 addToFM :: Ord a => FiniteMap a b -> a -> b -> FiniteMap a b; 47.25/23.17 addToFM fm key elt = addToFM_C addToFM0 fm key elt; 47.25/23.17 47.25/23.17 addToFM0 old new = new; 47.25/23.17 47.25/23.17 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 47.25/23.17 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 47.25/23.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; 47.25/23.17 47.25/23.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; 47.25/23.17 47.25/23.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); 47.25/23.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; 47.25/23.17 47.25/23.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; 47.25/23.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); 47.25/23.17 47.25/23.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); 47.25/23.17 47.25/23.17 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 47.25/23.17 addToFM_C4 wyz wzu wzv wzw = addToFM_C3 wyz wzu wzv wzw; 47.25/23.17 47.25/23.17 emptyFM :: FiniteMap a b; 47.25/23.17 emptyFM = EmptyFM; 47.25/23.17 47.25/23.17 findMax :: FiniteMap a b -> (a,b); 47.25/23.17 findMax (Branch key elt vxy vxz EmptyFM) = (key,elt); 47.25/23.17 findMax (Branch key elt vyu vyv fm_r) = findMax fm_r; 47.25/23.17 47.25/23.17 findMin :: FiniteMap a b -> (a,b); 47.25/23.17 findMin (Branch key elt wvv EmptyFM wvw) = (key,elt); 47.25/23.17 findMin (Branch key elt wvx fm_l wvy) = findMin fm_l; 47.25/23.17 47.25/23.17 fmToList :: FiniteMap a b -> [(a,b)]; 47.25/23.17 fmToList fm = foldFM fmToList0 [] fm; 47.25/23.17 47.25/23.17 fmToList0 key elt rest = (key,elt) : rest; 47.25/23.17 47.25/23.17 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 47.25/23.17 foldFM k z EmptyFM = z; 47.25/23.17 foldFM k z (Branch key elt wuw fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 47.25/23.17 47.25/23.17 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 47.25/23.17 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 47.25/23.17 47.25/23.17 mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 47.25/23.17 double_L fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx 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); 47.25/23.17 double_R (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy 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); 47.25/23.17 mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr); 47.25/23.17 mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = double_L fm_L fm_R; 47.25/23.17 mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = single_L fm_L fm_R; 47.25/23.17 mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr otherwise; 47.25/23.17 mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 47.25/23.17 mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr); 47.25/23.17 mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = double_R fm_L fm_R; 47.25/23.17 mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = single_R fm_L fm_R; 47.25/23.17 mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr otherwise; 47.25/23.17 mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 47.25/23.17 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 47.25/23.17 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 47.25/23.17 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 47.25/23.17 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 47.25/23.17 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 47.25/23.17 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 47.25/23.17 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 47.25/23.17 single_L fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 47.25/23.17 single_R (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 47.25/23.17 size_l = sizeFM fm_L; 47.25/23.17 size_r = sizeFM fm_R; 47.25/23.17 }; 47.25/23.17 47.25/23.17 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 47.25/23.17 mkBranch which key elt fm_l fm_r = let { 47.25/23.17 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 47.25/23.17 } in result where { 47.25/23.17 balance_ok = True; 47.25/23.17 left_ok = left_ok0 fm_l key fm_l; 47.25/23.17 left_ok0 fm_l key EmptyFM = True; 47.25/23.17 left_ok0 fm_l key (Branch left_key vww vwx vwy vwz) = let { 47.25/23.17 biggest_left_key = fst (findMax fm_l); 47.25/23.17 } in biggest_left_key < key; 47.25/23.17 left_size = sizeFM fm_l; 47.25/23.17 right_ok = right_ok0 fm_r key fm_r; 47.25/23.17 right_ok0 fm_r key EmptyFM = True; 47.25/23.17 right_ok0 fm_r key (Branch right_key vxu vxv vxw vxx) = let { 47.25/23.17 smallest_right_key = fst (findMin fm_r); 47.25/23.17 } in key < smallest_right_key; 47.25/23.17 right_size = sizeFM fm_r; 47.25/23.17 unbox :: Int -> Int; 47.25/23.17 unbox x = x; 47.25/23.17 }; 47.25/23.17 47.25/23.17 mkVBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 47.25/23.17 mkVBalBranch key elt EmptyFM fm_r = mkVBalBranch5 key elt EmptyFM fm_r; 47.25/23.17 mkVBalBranch key elt fm_l EmptyFM = mkVBalBranch4 key elt fm_l EmptyFM; 47.25/23.17 mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); 47.25/23.17 47.25/23.17 mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * size_l < size_r) where { 47.25/23.17 mkVBalBranch0 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBranch 13 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); 47.25/23.17 mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)); 47.25/23.17 mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch0 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz otherwise; 47.25/23.17 mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz; 47.25/23.17 mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * size_r < size_l); 47.25/23.17 size_l = sizeFM (Branch vuv vuw vux vuy vuz); 47.25/23.17 size_r = sizeFM (Branch vvv vvw vvx vvy vvz); 47.25/23.17 }; 47.25/23.17 47.25/23.17 mkVBalBranch4 key elt fm_l EmptyFM = addToFM fm_l key elt; 47.25/23.17 mkVBalBranch4 xuu xuv xuw xux = mkVBalBranch3 xuu xuv xuw xux; 47.25/23.17 47.25/23.17 mkVBalBranch5 key elt EmptyFM fm_r = addToFM fm_r key elt; 47.25/23.17 mkVBalBranch5 xuz xvu xvv xvw = mkVBalBranch4 xuz xvu xvv xvw; 47.25/23.17 47.25/23.17 plusFM :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 47.25/23.17 plusFM EmptyFM fm2 = fm2; 47.25/23.17 plusFM fm1 EmptyFM = fm1; 47.25/23.17 plusFM fm1 (Branch split_key elt1 zz left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { 47.25/23.17 gts = splitGT fm1 split_key; 47.25/23.17 lts = splitLT fm1 split_key; 47.25/23.17 }; 47.25/23.17 47.25/23.17 sIZE_RATIO :: Int; 47.25/23.17 sIZE_RATIO = 5; 47.25/23.17 47.25/23.17 sizeFM :: FiniteMap b a -> Int; 47.25/23.17 sizeFM EmptyFM = 0; 47.25/23.17 sizeFM (Branch wux wuy size wuz wvu) = size; 47.25/23.17 47.25/23.17 splitGT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 47.25/23.17 splitGT EmptyFM split_key = splitGT4 EmptyFM split_key; 47.25/23.17 splitGT (Branch key elt vwu fm_l fm_r) split_key = splitGT3 (Branch key elt vwu fm_l fm_r) split_key; 47.25/23.17 47.25/23.17 splitGT0 key elt vwu fm_l fm_r split_key True = fm_r; 47.25/23.17 47.25/23.17 splitGT1 key elt vwu fm_l fm_r split_key True = mkVBalBranch key elt (splitGT fm_l split_key) fm_r; 47.25/23.17 splitGT1 key elt vwu fm_l fm_r split_key False = splitGT0 key elt vwu fm_l fm_r split_key otherwise; 47.25/23.17 47.25/23.17 splitGT2 key elt vwu fm_l fm_r split_key True = splitGT fm_r split_key; 47.25/23.17 splitGT2 key elt vwu fm_l fm_r split_key False = splitGT1 key elt vwu fm_l fm_r split_key (split_key < key); 47.25/23.17 47.25/23.17 splitGT3 (Branch key elt vwu fm_l fm_r) split_key = splitGT2 key elt vwu fm_l fm_r split_key (split_key > key); 47.25/23.17 47.25/23.17 splitGT4 EmptyFM split_key = emptyFM; 47.25/23.17 splitGT4 xvz xwu = splitGT3 xvz xwu; 47.25/23.17 47.25/23.17 splitLT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 47.25/23.17 splitLT EmptyFM split_key = splitLT4 EmptyFM split_key; 47.25/23.17 splitLT (Branch key elt vwv fm_l fm_r) split_key = splitLT3 (Branch key elt vwv fm_l fm_r) split_key; 47.25/23.17 47.25/23.17 splitLT0 key elt vwv fm_l fm_r split_key True = fm_l; 47.25/23.17 47.25/23.17 splitLT1 key elt vwv fm_l fm_r split_key True = mkVBalBranch key elt fm_l (splitLT fm_r split_key); 47.25/23.17 splitLT1 key elt vwv fm_l fm_r split_key False = splitLT0 key elt vwv fm_l fm_r split_key otherwise; 47.25/23.17 47.25/23.17 splitLT2 key elt vwv fm_l fm_r split_key True = splitLT fm_l split_key; 47.25/23.17 splitLT2 key elt vwv fm_l fm_r split_key False = splitLT1 key elt vwv fm_l fm_r split_key (split_key > key); 47.25/23.17 47.25/23.17 splitLT3 (Branch key elt vwv fm_l fm_r) split_key = splitLT2 key elt vwv fm_l fm_r split_key (split_key < key); 47.25/23.17 47.25/23.17 splitLT4 EmptyFM split_key = emptyFM; 47.25/23.17 splitLT4 xwx xwy = splitLT3 xwx xwy; 47.25/23.17 47.25/23.17 unitFM :: b -> a -> FiniteMap b a; 47.25/23.17 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 47.25/23.17 47.25/23.17 } 47.25/23.17 module Maybe where { 47.25/23.17 import qualified FiniteMap; 47.25/23.17 import qualified Main; 47.25/23.17 import qualified Prelude; 47.25/23.17 } 47.25/23.17 module Main where { 47.25/23.17 import qualified FiniteMap; 47.25/23.17 import qualified Maybe; 47.25/23.17 import qualified Prelude; 47.25/23.17 } 47.25/23.17 47.25/23.17 ---------------------------------------- 47.25/23.17 47.25/23.17 (11) LetRed (EQUIVALENT) 47.25/23.17 Let/Where Reductions: 47.25/23.17 The bindings of the following Let/Where expression 47.25/23.17 "gcd' (abs x) (abs y) where { 47.25/23.17 gcd' x wvz = gcd'2 x wvz; 47.25/23.17 gcd' x y = gcd'0 x y; 47.25/23.17 ; 47.25/23.17 gcd'0 x y = gcd' y (x `rem` y); 47.25/23.17 ; 47.25/23.17 gcd'1 True x wvz = x; 47.25/23.17 gcd'1 wwu wwv www = gcd'0 wwv www; 47.25/23.17 ; 47.25/23.17 gcd'2 x wvz = gcd'1 (wvz == 0) x wvz; 47.25/23.17 gcd'2 wwx wwy = gcd'0 wwx wwy; 47.25/23.17 } 47.25/23.17 " 47.25/23.17 are unpacked to the following functions on top level 47.25/23.17 "gcd0Gcd'1 True x wvz = x; 47.25/23.17 gcd0Gcd'1 wwu wwv www = gcd0Gcd'0 wwv www; 47.25/23.17 " 47.25/23.17 "gcd0Gcd' x wvz = gcd0Gcd'2 x wvz; 47.25/23.17 gcd0Gcd' x y = gcd0Gcd'0 x y; 47.25/23.17 " 47.25/23.17 "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); 47.25/23.17 " 47.25/23.17 "gcd0Gcd'2 x wvz = gcd0Gcd'1 (wvz == 0) x wvz; 47.25/23.17 gcd0Gcd'2 wwx wwy = gcd0Gcd'0 wwx wwy; 47.25/23.17 " 47.25/23.17 The bindings of the following Let/Where expression 47.25/23.17 "reduce1 x y (y == 0) where { 47.25/23.17 d = gcd x y; 47.25/23.17 ; 47.25/23.17 reduce0 x y True = x `quot` d :% (y `quot` d); 47.25/23.17 ; 47.25/23.17 reduce1 x y True = error []; 47.25/23.17 reduce1 x y False = reduce0 x y otherwise; 47.25/23.17 } 47.25/23.17 " 47.25/23.17 are unpacked to the following functions on top level 47.25/23.17 "reduce2D xxv xxw = gcd xxv xxw; 47.25/23.17 " 47.25/23.17 "reduce2Reduce1 xxv xxw x y True = error []; 47.25/23.17 reduce2Reduce1 xxv xxw x y False = reduce2Reduce0 xxv xxw x y otherwise; 47.25/23.17 " 47.25/23.17 "reduce2Reduce0 xxv xxw x y True = x `quot` reduce2D xxv xxw :% (y `quot` reduce2D xxv xxw); 47.25/23.17 " 47.25/23.17 The bindings of the following Let/Where expression 47.25/23.17 "mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 47.25/23.19 double_L fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx 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); 47.25/23.19 ; 47.25/23.19 double_R (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy 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); 47.25/23.19 ; 47.25/23.19 mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr); 47.25/23.19 ; 47.25/23.19 mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = double_L fm_L fm_R; 47.25/23.19 ; 47.25/23.19 mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = single_L fm_L fm_R; 47.25/23.19 mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr otherwise; 47.25/23.19 ; 47.25/23.19 mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 47.25/23.19 ; 47.25/23.19 mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr); 47.25/23.19 ; 47.25/23.19 mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = double_R fm_L fm_R; 47.25/23.19 ; 47.25/23.19 mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = single_R fm_L fm_R; 47.25/23.19 mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr otherwise; 47.25/23.19 ; 47.25/23.19 mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 47.25/23.19 ; 47.25/23.19 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 47.25/23.19 ; 47.25/23.19 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 47.25/23.19 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 47.25/23.19 ; 47.25/23.19 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 47.25/23.19 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 47.25/23.19 ; 47.25/23.19 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 47.25/23.19 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 47.25/23.19 ; 47.25/23.19 single_L fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 47.25/23.19 ; 47.25/23.19 single_R (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 47.25/23.19 ; 47.25/23.19 size_l = sizeFM fm_L; 47.25/23.19 ; 47.25/23.19 size_r = sizeFM fm_R; 47.25/23.19 } 47.25/23.19 " 47.25/23.19 are unpacked to the following functions on top level 47.25/23.19 "mkBalBranch6MkBalBranch02 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 47.25/23.19 " 47.25/23.19 "mkBalBranch6MkBalBranch12 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 47.25/23.19 " 47.25/23.19 "mkBalBranch6Single_L xxx xxy xxz xyu fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 xxx xxy fm_l fm_rl) fm_rr; 47.25/23.19 " 47.25/23.19 "mkBalBranch6Single_R xxx xxy xxz xyu (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 xxx xxy fm_lr fm_r); 47.25/23.19 " 47.25/23.19 "mkBalBranch6Double_R xxx xxy xxz xyu (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 xxx xxy fm_lrr fm_r); 47.25/23.19 " 47.25/23.19 "mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr True = mkBalBranch6Single_L xxx xxy xxz xyu fm_L fm_R; 47.25/23.19 mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr False = mkBalBranch6MkBalBranch00 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr otherwise; 47.25/23.19 " 47.25/23.19 "mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 xxx xxy xxz xyu fm_L fm_R fm_L; 47.25/23.19 mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R otherwise; 47.25/23.19 " 47.25/23.19 "mkBalBranch6Size_l xxx xxy xxz xyu = sizeFM xxz; 47.25/23.19 " 47.25/23.19 "mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr True = mkBalBranch6Single_R xxx xxy xxz xyu fm_L fm_R; 47.25/23.19 mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr False = mkBalBranch6MkBalBranch10 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr otherwise; 47.25/23.19 " 47.25/23.19 "mkBalBranch6Double_L xxx xxy xxz xyu fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 xxx xxy fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 47.25/23.19 " 47.25/23.19 "mkBalBranch6MkBalBranch10 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr True = mkBalBranch6Double_R xxx xxy xxz xyu fm_L fm_R; 47.25/23.19 " 47.25/23.19 "mkBalBranch6MkBalBranch0 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch6MkBalBranch02 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr); 47.25/23.19 " 47.25/23.19 "mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 xxx xxy xxz xyu fm_L fm_R fm_R; 47.25/23.19 mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R (mkBalBranch6Size_l xxx xxy xxz xyu > sIZE_RATIO * mkBalBranch6Size_r xxx xxy xxz xyu); 47.25/23.19 " 47.25/23.19 "mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 47.25/23.19 " 47.25/23.19 "mkBalBranch6MkBalBranch00 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr True = mkBalBranch6Double_L xxx xxy xxz xyu fm_L fm_R; 47.25/23.19 " 47.25/23.19 "mkBalBranch6MkBalBranch1 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch6MkBalBranch12 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr); 47.25/23.19 " 47.25/23.19 "mkBalBranch6Size_r xxx xxy xxz xyu = sizeFM xyu; 47.25/23.19 " 47.25/23.19 "mkBalBranch6MkBalBranch5 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 47.25/23.19 mkBalBranch6MkBalBranch5 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R (mkBalBranch6Size_r xxx xxy xxz xyu > sIZE_RATIO * mkBalBranch6Size_l xxx xxy xxz xyu); 47.25/23.19 " 47.25/23.19 The bindings of the following Let/Where expression 47.25/23.19 "let { 47.25/23.19 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 47.25/23.19 } in result where { 47.25/23.19 balance_ok = True; 47.25/23.19 ; 47.25/23.19 left_ok = left_ok0 fm_l key fm_l; 47.25/23.19 ; 47.25/23.19 left_ok0 fm_l key EmptyFM = True; 47.25/23.19 left_ok0 fm_l key (Branch left_key vww vwx vwy vwz) = let { 47.25/23.19 biggest_left_key = fst (findMax fm_l); 47.25/23.19 } in biggest_left_key < key; 47.25/23.19 ; 47.25/23.19 left_size = sizeFM fm_l; 47.25/23.19 ; 47.25/23.19 right_ok = right_ok0 fm_r key fm_r; 47.25/23.19 ; 47.25/23.19 right_ok0 fm_r key EmptyFM = True; 47.25/23.19 right_ok0 fm_r key (Branch right_key vxu vxv vxw vxx) = let { 47.25/23.19 smallest_right_key = fst (findMin fm_r); 47.25/23.19 } in key < smallest_right_key; 47.25/23.19 ; 47.25/23.19 right_size = sizeFM fm_r; 47.25/23.19 ; 47.25/23.19 unbox x = x; 47.25/23.19 } 47.25/23.19 " 47.25/23.19 are unpacked to the following functions on top level 47.25/23.19 "mkBranchRight_ok xyv xyw xyx = mkBranchRight_ok0 xyv xyw xyx xyv xyw xyv; 47.25/23.19 " 47.25/23.19 "mkBranchBalance_ok xyv xyw xyx = True; 47.25/23.19 " 47.25/23.19 "mkBranchLeft_ok xyv xyw xyx = mkBranchLeft_ok0 xyv xyw xyx xyx xyw xyx; 47.25/23.19 " 47.25/23.19 "mkBranchRight_size xyv xyw xyx = sizeFM xyv; 47.25/23.19 " 47.25/23.19 "mkBranchLeft_ok0 xyv xyw xyx fm_l key EmptyFM = True; 47.25/23.19 mkBranchLeft_ok0 xyv xyw xyx fm_l key (Branch left_key vww vwx vwy vwz) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 47.25/23.19 " 47.25/23.19 "mkBranchUnbox xyv xyw xyx x = x; 47.25/23.19 " 47.25/23.19 "mkBranchLeft_size xyv xyw xyx = sizeFM xyx; 47.25/23.19 " 47.25/23.19 "mkBranchRight_ok0 xyv xyw xyx fm_r key EmptyFM = True; 47.25/23.19 mkBranchRight_ok0 xyv xyw xyx fm_r key (Branch right_key vxu vxv vxw vxx) = key < mkBranchRight_ok0Smallest_right_key fm_r; 47.25/23.19 " 47.25/23.19 The bindings of the following Let/Where expression 47.25/23.19 "let { 47.25/23.19 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 47.25/23.19 } in result" 47.25/23.19 are unpacked to the following functions on top level 47.25/23.19 "mkBranchResult xyy xyz xzu xzv = Branch xyy xyz (mkBranchUnbox xzu xyy xzv (1 + mkBranchLeft_size xzu xyy xzv + mkBranchRight_size xzu xyy xzv)) xzv xzu; 47.25/23.19 " 47.25/23.19 The bindings of the following Let/Where expression 47.25/23.19 "mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { 47.25/23.19 gts = splitGT fm1 split_key; 47.25/23.19 ; 47.25/23.19 lts = splitLT fm1 split_key; 47.25/23.19 } 47.25/23.19 " 47.25/23.19 are unpacked to the following functions on top level 47.25/23.19 "plusFMGts xzw xzx = splitGT xzw xzx; 47.25/23.19 " 47.25/23.19 "plusFMLts xzw xzx = splitLT xzw xzx; 47.25/23.19 " 47.25/23.19 The bindings of the following Let/Where expression 47.25/23.19 "mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * size_l < size_r) where { 47.25/23.19 mkVBalBranch0 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBranch 13 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); 47.25/23.19 ; 47.25/23.19 mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)); 47.25/23.19 mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch0 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz otherwise; 47.25/23.19 ; 47.25/23.19 mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz; 47.25/23.19 mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * size_r < size_l); 47.25/23.19 ; 47.25/23.19 size_l = sizeFM (Branch vuv vuw vux vuy vuz); 47.25/23.19 ; 47.25/23.19 size_r = sizeFM (Branch vvv vvw vvx vvy vvz); 47.25/23.19 } 47.25/23.19 " 47.25/23.19 are unpacked to the following functions on top level 47.25/23.19 "mkVBalBranch3MkVBalBranch0 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBranch 13 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); 47.25/23.19 " 47.25/23.19 "mkVBalBranch3Size_r xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch xzy xzz yuu yuv yuw); 47.25/23.19 " 47.25/23.19 "mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)); 47.25/23.19 mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch3MkVBalBranch0 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz otherwise; 47.25/23.19 " 47.25/23.19 "mkVBalBranch3MkVBalBranch2 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz; 47.25/23.19 mkVBalBranch3MkVBalBranch2 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * mkVBalBranch3Size_r xzy xzz yuu yuv yuw yux yuy yuz yvu yvv < mkVBalBranch3Size_l xzy xzz yuu yuv yuw yux yuy yuz yvu yvv); 47.25/23.19 " 47.25/23.19 "mkVBalBranch3Size_l xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch yux yuy yuz yvu yvv); 47.25/23.19 " 47.25/23.19 The bindings of the following Let/Where expression 47.25/23.19 "let { 47.25/23.19 biggest_left_key = fst (findMax fm_l); 47.25/23.19 } in biggest_left_key < key" 47.25/23.19 are unpacked to the following functions on top level 47.25/23.19 "mkBranchLeft_ok0Biggest_left_key yvw = fst (findMax yvw); 47.25/23.19 " 47.25/23.19 The bindings of the following Let/Where expression 47.25/23.19 "let { 47.25/23.19 smallest_right_key = fst (findMin fm_r); 47.25/23.19 } in key < smallest_right_key" 47.25/23.19 are unpacked to the following functions on top level 47.25/23.19 "mkBranchRight_ok0Smallest_right_key yvx = fst (findMin yvx); 47.25/23.19 " 47.25/23.19 47.25/23.19 ---------------------------------------- 47.25/23.19 47.25/23.19 (12) 47.25/23.19 Obligation: 47.25/23.19 mainModule Main 47.25/23.19 module FiniteMap where { 47.25/23.19 import qualified Main; 47.25/23.19 import qualified Maybe; 47.25/23.19 import qualified Prelude; 47.25/23.19 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 47.25/23.19 47.25/23.19 instance (Eq a, Eq b) => Eq FiniteMap a b where { 47.25/23.19 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 47.25/23.19 } 47.25/23.19 addToFM :: Ord a => FiniteMap a b -> a -> b -> FiniteMap a b; 47.25/23.19 addToFM fm key elt = addToFM_C addToFM0 fm key elt; 47.25/23.19 47.25/23.19 addToFM0 old new = new; 47.25/23.19 47.25/23.19 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 47.25/23.19 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 47.25/23.19 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; 47.25/23.19 47.25/23.19 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; 47.25/23.19 47.25/23.19 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); 47.25/23.19 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; 47.25/23.19 47.25/23.19 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; 47.25/23.19 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); 47.25/23.19 47.25/23.19 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); 47.25/23.19 47.25/23.19 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 47.25/23.19 addToFM_C4 wyz wzu wzv wzw = addToFM_C3 wyz wzu wzv wzw; 47.25/23.19 47.25/23.19 emptyFM :: FiniteMap b a; 47.25/23.19 emptyFM = EmptyFM; 47.25/23.19 47.25/23.19 findMax :: FiniteMap b a -> (b,a); 47.25/23.19 findMax (Branch key elt vxy vxz EmptyFM) = (key,elt); 47.25/23.19 findMax (Branch key elt vyu vyv fm_r) = findMax fm_r; 47.25/23.19 47.25/23.19 findMin :: FiniteMap b a -> (b,a); 47.25/23.19 findMin (Branch key elt wvv EmptyFM wvw) = (key,elt); 47.25/23.19 findMin (Branch key elt wvx fm_l wvy) = findMin fm_l; 47.25/23.19 47.25/23.19 fmToList :: FiniteMap b a -> [(b,a)]; 47.25/23.19 fmToList fm = foldFM fmToList0 [] fm; 47.25/23.19 47.25/23.19 fmToList0 key elt rest = (key,elt) : rest; 47.25/23.19 47.25/23.19 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 47.25/23.19 foldFM k z EmptyFM = z; 47.25/23.19 foldFM k z (Branch key elt wuw fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 47.25/23.19 47.25/23.19 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 47.25/23.19 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 47.25/23.19 47.25/23.19 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); 47.25/23.19 47.25/23.19 mkBalBranch6Double_L xxx xxy xxz xyu fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 xxx xxy fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 47.25/23.19 47.25/23.19 mkBalBranch6Double_R xxx xxy xxz xyu (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 xxx xxy fm_lrr fm_r); 47.25/23.19 47.25/23.19 mkBalBranch6MkBalBranch0 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch6MkBalBranch02 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr); 47.25/23.19 47.25/23.19 mkBalBranch6MkBalBranch00 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr True = mkBalBranch6Double_L xxx xxy xxz xyu fm_L fm_R; 47.25/23.19 47.25/23.19 mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr True = mkBalBranch6Single_L xxx xxy xxz xyu fm_L fm_R; 47.25/23.19 mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr False = mkBalBranch6MkBalBranch00 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr otherwise; 47.25/23.19 47.25/23.19 mkBalBranch6MkBalBranch02 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 47.25/23.19 47.25/23.19 mkBalBranch6MkBalBranch1 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch6MkBalBranch12 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr); 47.25/23.19 47.25/23.19 mkBalBranch6MkBalBranch10 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr True = mkBalBranch6Double_R xxx xxy xxz xyu fm_L fm_R; 47.25/23.19 47.25/23.19 mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr True = mkBalBranch6Single_R xxx xxy xxz xyu fm_L fm_R; 47.25/23.19 mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr False = mkBalBranch6MkBalBranch10 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr otherwise; 47.25/23.19 47.25/23.19 mkBalBranch6MkBalBranch12 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 47.25/23.19 47.25/23.19 mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 47.25/23.19 47.25/23.19 mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 xxx xxy xxz xyu fm_L fm_R fm_L; 47.25/23.19 mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R otherwise; 47.25/23.19 47.25/23.19 mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 xxx xxy xxz xyu fm_L fm_R fm_R; 47.25/23.19 mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R (mkBalBranch6Size_l xxx xxy xxz xyu > sIZE_RATIO * mkBalBranch6Size_r xxx xxy xxz xyu); 47.25/23.19 47.25/23.19 mkBalBranch6MkBalBranch5 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 47.25/23.19 mkBalBranch6MkBalBranch5 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R (mkBalBranch6Size_r xxx xxy xxz xyu > sIZE_RATIO * mkBalBranch6Size_l xxx xxy xxz xyu); 47.25/23.19 47.25/23.19 mkBalBranch6Single_L xxx xxy xxz xyu fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 xxx xxy fm_l fm_rl) fm_rr; 47.25/23.19 47.25/23.19 mkBalBranch6Single_R xxx xxy xxz xyu (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 xxx xxy fm_lr fm_r); 47.25/23.19 47.25/23.19 mkBalBranch6Size_l xxx xxy xxz xyu = sizeFM xxz; 47.25/23.19 47.25/23.19 mkBalBranch6Size_r xxx xxy xxz xyu = sizeFM xyu; 47.25/23.19 47.25/23.19 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 47.25/23.19 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; 47.25/23.19 47.25/23.19 mkBranchBalance_ok xyv xyw xyx = True; 47.25/23.19 47.25/23.19 mkBranchLeft_ok xyv xyw xyx = mkBranchLeft_ok0 xyv xyw xyx xyx xyw xyx; 47.25/23.19 47.25/23.19 mkBranchLeft_ok0 xyv xyw xyx fm_l key EmptyFM = True; 47.25/23.19 mkBranchLeft_ok0 xyv xyw xyx fm_l key (Branch left_key vww vwx vwy vwz) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 47.25/23.19 47.25/23.19 mkBranchLeft_ok0Biggest_left_key yvw = fst (findMax yvw); 47.25/23.19 47.25/23.19 mkBranchLeft_size xyv xyw xyx = sizeFM xyx; 47.25/23.19 47.25/23.19 mkBranchResult xyy xyz xzu xzv = Branch xyy xyz (mkBranchUnbox xzu xyy xzv (1 + mkBranchLeft_size xzu xyy xzv + mkBranchRight_size xzu xyy xzv)) xzv xzu; 47.25/23.19 47.25/23.19 mkBranchRight_ok xyv xyw xyx = mkBranchRight_ok0 xyv xyw xyx xyv xyw xyv; 47.25/23.19 47.25/23.19 mkBranchRight_ok0 xyv xyw xyx fm_r key EmptyFM = True; 47.25/23.19 mkBranchRight_ok0 xyv xyw xyx fm_r key (Branch right_key vxu vxv vxw vxx) = key < mkBranchRight_ok0Smallest_right_key fm_r; 47.25/23.19 47.25/23.19 mkBranchRight_ok0Smallest_right_key yvx = fst (findMin yvx); 47.25/23.19 47.25/23.19 mkBranchRight_size xyv xyw xyx = sizeFM xyv; 47.25/23.19 47.25/23.19 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 47.25/23.19 mkBranchUnbox xyv xyw xyx x = x; 47.25/23.19 47.25/23.19 mkVBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 47.25/23.19 mkVBalBranch key elt EmptyFM fm_r = mkVBalBranch5 key elt EmptyFM fm_r; 47.25/23.19 mkVBalBranch key elt fm_l EmptyFM = mkVBalBranch4 key elt fm_l EmptyFM; 47.25/23.19 mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); 47.25/23.19 47.25/23.19 mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch3MkVBalBranch2 vvv vvw vvx vvy vvz vuv vuw vux vuy vuz key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * mkVBalBranch3Size_l vvv vvw vvx vvy vvz vuv vuw vux vuy vuz < mkVBalBranch3Size_r vvv vvw vvx vvy vvz vuv vuw vux vuy vuz); 47.25/23.19 47.25/23.19 mkVBalBranch3MkVBalBranch0 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBranch 13 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); 47.25/23.19 47.25/23.19 mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)); 47.25/23.19 mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch3MkVBalBranch0 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz otherwise; 47.25/23.19 47.25/23.19 mkVBalBranch3MkVBalBranch2 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz; 47.25/23.19 mkVBalBranch3MkVBalBranch2 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * mkVBalBranch3Size_r xzy xzz yuu yuv yuw yux yuy yuz yvu yvv < mkVBalBranch3Size_l xzy xzz yuu yuv yuw yux yuy yuz yvu yvv); 47.25/23.19 47.25/23.19 mkVBalBranch3Size_l xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch yux yuy yuz yvu yvv); 47.25/23.19 47.25/23.19 mkVBalBranch3Size_r xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch xzy xzz yuu yuv yuw); 47.25/23.19 47.25/23.19 mkVBalBranch4 key elt fm_l EmptyFM = addToFM fm_l key elt; 47.25/23.19 mkVBalBranch4 xuu xuv xuw xux = mkVBalBranch3 xuu xuv xuw xux; 47.25/23.19 47.25/23.19 mkVBalBranch5 key elt EmptyFM fm_r = addToFM fm_r key elt; 47.25/23.19 mkVBalBranch5 xuz xvu xvv xvw = mkVBalBranch4 xuz xvu xvv xvw; 47.25/23.19 47.25/23.19 plusFM :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 47.25/23.19 plusFM EmptyFM fm2 = fm2; 47.25/23.19 plusFM fm1 EmptyFM = fm1; 47.25/23.19 plusFM fm1 (Branch split_key elt1 zz left right) = mkVBalBranch split_key elt1 (plusFM (plusFMLts fm1 split_key) left) (plusFM (plusFMGts fm1 split_key) right); 47.25/23.19 47.25/23.19 plusFMGts xzw xzx = splitGT xzw xzx; 47.25/23.19 47.25/23.19 plusFMLts xzw xzx = splitLT xzw xzx; 47.25/23.19 47.25/23.19 sIZE_RATIO :: Int; 47.25/23.19 sIZE_RATIO = 5; 47.25/23.19 47.25/23.19 sizeFM :: FiniteMap a b -> Int; 47.25/23.19 sizeFM EmptyFM = 0; 47.25/23.19 sizeFM (Branch wux wuy size wuz wvu) = size; 47.25/23.19 47.25/23.19 splitGT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 47.25/23.19 splitGT EmptyFM split_key = splitGT4 EmptyFM split_key; 47.25/23.19 splitGT (Branch key elt vwu fm_l fm_r) split_key = splitGT3 (Branch key elt vwu fm_l fm_r) split_key; 47.25/23.19 47.25/23.19 splitGT0 key elt vwu fm_l fm_r split_key True = fm_r; 47.25/23.19 47.25/23.19 splitGT1 key elt vwu fm_l fm_r split_key True = mkVBalBranch key elt (splitGT fm_l split_key) fm_r; 47.25/23.19 splitGT1 key elt vwu fm_l fm_r split_key False = splitGT0 key elt vwu fm_l fm_r split_key otherwise; 47.25/23.19 47.25/23.19 splitGT2 key elt vwu fm_l fm_r split_key True = splitGT fm_r split_key; 47.25/23.19 splitGT2 key elt vwu fm_l fm_r split_key False = splitGT1 key elt vwu fm_l fm_r split_key (split_key < key); 47.25/23.19 47.25/23.19 splitGT3 (Branch key elt vwu fm_l fm_r) split_key = splitGT2 key elt vwu fm_l fm_r split_key (split_key > key); 47.25/23.19 47.25/23.19 splitGT4 EmptyFM split_key = emptyFM; 47.25/23.19 splitGT4 xvz xwu = splitGT3 xvz xwu; 47.25/23.19 47.25/23.19 splitLT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 47.25/23.19 splitLT EmptyFM split_key = splitLT4 EmptyFM split_key; 47.25/23.19 splitLT (Branch key elt vwv fm_l fm_r) split_key = splitLT3 (Branch key elt vwv fm_l fm_r) split_key; 47.25/23.19 47.25/23.19 splitLT0 key elt vwv fm_l fm_r split_key True = fm_l; 47.25/23.19 47.25/23.19 splitLT1 key elt vwv fm_l fm_r split_key True = mkVBalBranch key elt fm_l (splitLT fm_r split_key); 47.25/23.19 splitLT1 key elt vwv fm_l fm_r split_key False = splitLT0 key elt vwv fm_l fm_r split_key otherwise; 47.25/23.19 47.25/23.19 splitLT2 key elt vwv fm_l fm_r split_key True = splitLT fm_l split_key; 47.25/23.19 splitLT2 key elt vwv fm_l fm_r split_key False = splitLT1 key elt vwv fm_l fm_r split_key (split_key > key); 47.25/23.19 47.25/23.19 splitLT3 (Branch key elt vwv fm_l fm_r) split_key = splitLT2 key elt vwv fm_l fm_r split_key (split_key < key); 47.25/23.19 47.25/23.19 splitLT4 EmptyFM split_key = emptyFM; 47.25/23.19 splitLT4 xwx xwy = splitLT3 xwx xwy; 47.25/23.19 47.25/23.19 unitFM :: b -> a -> FiniteMap b a; 47.25/23.19 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 47.25/23.19 47.25/23.19 } 47.25/23.19 module Maybe where { 47.25/23.19 import qualified FiniteMap; 47.25/23.19 import qualified Main; 47.25/23.19 import qualified Prelude; 47.25/23.19 } 47.25/23.19 module Main where { 47.25/23.19 import qualified FiniteMap; 47.25/23.19 import qualified Maybe; 47.25/23.19 import qualified Prelude; 47.25/23.19 } 47.25/23.19 47.25/23.19 ---------------------------------------- 47.25/23.19 47.25/23.19 (13) NumRed (SOUND) 47.25/23.19 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 47.25/23.19 ---------------------------------------- 47.25/23.19 47.25/23.19 (14) 47.25/23.19 Obligation: 47.25/23.19 mainModule Main 47.25/23.19 module FiniteMap where { 47.25/23.19 import qualified Main; 47.25/23.19 import qualified Maybe; 47.25/23.19 import qualified Prelude; 47.25/23.19 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 47.25/23.19 47.25/23.19 instance (Eq a, Eq b) => Eq FiniteMap b a where { 47.25/23.19 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 47.25/23.19 } 47.25/23.19 addToFM :: Ord b => FiniteMap b a -> b -> a -> FiniteMap b a; 47.25/23.19 addToFM fm key elt = addToFM_C addToFM0 fm key elt; 47.25/23.19 47.25/23.19 addToFM0 old new = new; 47.25/23.19 47.25/23.19 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 47.25/23.19 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 47.25/23.19 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; 47.25/23.19 47.25/23.19 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; 47.25/23.19 47.25/23.19 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); 47.25/23.19 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; 47.25/23.19 47.25/23.19 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; 47.25/23.19 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); 47.25/23.19 47.25/23.19 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); 47.25/23.19 47.25/23.19 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 47.25/23.19 addToFM_C4 wyz wzu wzv wzw = addToFM_C3 wyz wzu wzv wzw; 47.25/23.19 47.25/23.19 emptyFM :: FiniteMap a b; 47.25/23.19 emptyFM = EmptyFM; 47.25/23.19 47.25/23.19 findMax :: FiniteMap b a -> (b,a); 47.25/23.19 findMax (Branch key elt vxy vxz EmptyFM) = (key,elt); 47.25/23.19 findMax (Branch key elt vyu vyv fm_r) = findMax fm_r; 47.25/23.19 47.25/23.19 findMin :: FiniteMap b a -> (b,a); 47.25/23.19 findMin (Branch key elt wvv EmptyFM wvw) = (key,elt); 47.25/23.19 findMin (Branch key elt wvx fm_l wvy) = findMin fm_l; 47.25/23.19 47.25/23.19 fmToList :: FiniteMap b a -> [(b,a)]; 47.25/23.19 fmToList fm = foldFM fmToList0 [] fm; 47.25/23.19 47.25/23.19 fmToList0 key elt rest = (key,elt) : rest; 47.25/23.19 47.25/23.19 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 47.25/23.19 foldFM k z EmptyFM = z; 47.25/23.19 foldFM k z (Branch key elt wuw fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 47.25/23.19 47.25/23.19 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 47.25/23.19 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 47.25/23.19 47.25/23.19 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))); 47.25/23.19 47.25/23.19 mkBalBranch6Double_L xxx xxy xxz xyu fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx 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))))))) xxx xxy fm_l fm_rll) (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) key_r elt_r fm_rlr fm_rr); 47.25/23.19 47.25/23.19 mkBalBranch6Double_R xxx xxy xxz xyu (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy 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))))))))))))) xxx xxy fm_lrr fm_r); 47.25/23.19 47.25/23.19 mkBalBranch6MkBalBranch0 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch6MkBalBranch02 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr); 47.25/23.19 47.25/23.19 mkBalBranch6MkBalBranch00 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr True = mkBalBranch6Double_L xxx xxy xxz xyu fm_L fm_R; 47.25/23.19 47.25/23.19 mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr True = mkBalBranch6Single_L xxx xxy xxz xyu fm_L fm_R; 47.25/23.19 mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr False = mkBalBranch6MkBalBranch00 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr otherwise; 47.25/23.19 47.25/23.19 mkBalBranch6MkBalBranch02 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < Pos (Succ (Succ Zero)) * sizeFM fm_rr); 47.25/23.19 47.25/23.19 mkBalBranch6MkBalBranch1 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch6MkBalBranch12 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr); 47.25/23.19 47.25/23.19 mkBalBranch6MkBalBranch10 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr True = mkBalBranch6Double_R xxx xxy xxz xyu fm_L fm_R; 47.25/23.19 47.25/23.19 mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr True = mkBalBranch6Single_R xxx xxy xxz xyu fm_L fm_R; 47.25/23.19 mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr False = mkBalBranch6MkBalBranch10 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr otherwise; 47.25/23.19 47.25/23.19 mkBalBranch6MkBalBranch12 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < Pos (Succ (Succ Zero)) * sizeFM fm_ll); 47.25/23.19 47.25/23.19 mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch (Pos (Succ (Succ Zero))) key elt fm_L fm_R; 47.25/23.19 47.25/23.19 mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 xxx xxy xxz xyu fm_L fm_R fm_L; 47.25/23.19 mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R otherwise; 47.25/23.19 47.25/23.19 mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 xxx xxy xxz xyu fm_L fm_R fm_R; 47.25/23.19 mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R (mkBalBranch6Size_l xxx xxy xxz xyu > sIZE_RATIO * mkBalBranch6Size_r xxx xxy xxz xyu); 47.25/23.19 47.25/23.19 mkBalBranch6MkBalBranch5 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch (Pos (Succ Zero)) key elt fm_L fm_R; 47.25/23.19 mkBalBranch6MkBalBranch5 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R (mkBalBranch6Size_r xxx xxy xxz xyu > sIZE_RATIO * mkBalBranch6Size_l xxx xxy xxz xyu); 47.25/23.19 47.25/23.19 mkBalBranch6Single_L xxx xxy xxz xyu fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch (Pos (Succ (Succ (Succ Zero)))) key_r elt_r (mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xxx xxy fm_l fm_rl) fm_rr; 47.25/23.19 47.25/23.19 mkBalBranch6Single_R xxx xxy xxz xyu (Branch key_l elt_l vyw 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)))))))))) xxx xxy fm_lr fm_r); 47.25/23.19 47.25/23.19 mkBalBranch6Size_l xxx xxy xxz xyu = sizeFM xxz; 47.25/23.19 47.25/23.19 mkBalBranch6Size_r xxx xxy xxz xyu = sizeFM xyu; 47.25/23.19 47.25/23.19 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 47.25/23.19 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; 47.25/23.19 47.25/23.19 mkBranchBalance_ok xyv xyw xyx = True; 47.25/23.19 47.25/23.19 mkBranchLeft_ok xyv xyw xyx = mkBranchLeft_ok0 xyv xyw xyx xyx xyw xyx; 47.25/23.19 47.25/23.19 mkBranchLeft_ok0 xyv xyw xyx fm_l key EmptyFM = True; 47.25/23.19 mkBranchLeft_ok0 xyv xyw xyx fm_l key (Branch left_key vww vwx vwy vwz) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 47.25/23.19 47.25/23.19 mkBranchLeft_ok0Biggest_left_key yvw = fst (findMax yvw); 47.25/23.19 47.25/23.19 mkBranchLeft_size xyv xyw xyx = sizeFM xyx; 47.25/23.19 47.25/23.19 mkBranchResult xyy xyz xzu xzv = Branch xyy xyz (mkBranchUnbox xzu xyy xzv (Pos (Succ Zero) + mkBranchLeft_size xzu xyy xzv + mkBranchRight_size xzu xyy xzv)) xzv xzu; 47.25/23.19 47.25/23.19 mkBranchRight_ok xyv xyw xyx = mkBranchRight_ok0 xyv xyw xyx xyv xyw xyv; 47.25/23.19 47.25/23.19 mkBranchRight_ok0 xyv xyw xyx fm_r key EmptyFM = True; 47.25/23.19 mkBranchRight_ok0 xyv xyw xyx fm_r key (Branch right_key vxu vxv vxw vxx) = key < mkBranchRight_ok0Smallest_right_key fm_r; 47.25/23.19 47.25/23.19 mkBranchRight_ok0Smallest_right_key yvx = fst (findMin yvx); 47.25/23.19 47.25/23.19 mkBranchRight_size xyv xyw xyx = sizeFM xyv; 47.25/23.19 47.25/23.19 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 47.25/23.19 mkBranchUnbox xyv xyw xyx x = x; 47.25/23.19 47.25/23.19 mkVBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 47.25/23.19 mkVBalBranch key elt EmptyFM fm_r = mkVBalBranch5 key elt EmptyFM fm_r; 47.25/23.19 mkVBalBranch key elt fm_l EmptyFM = mkVBalBranch4 key elt fm_l EmptyFM; 47.25/23.19 mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); 47.25/23.19 47.25/23.19 mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch3MkVBalBranch2 vvv vvw vvx vvy vvz vuv vuw vux vuy vuz key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * mkVBalBranch3Size_l vvv vvw vvx vvy vvz vuv vuw vux vuy vuz < mkVBalBranch3Size_r vvv vvw vvx vvy vvz vuv vuw vux vuy vuz); 47.25/23.19 47.25/23.19 mkVBalBranch3MkVBalBranch0 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))))) key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); 47.25/23.19 47.25/23.19 mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)); 47.25/23.19 mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch3MkVBalBranch0 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz otherwise; 47.25/23.19 47.25/23.19 mkVBalBranch3MkVBalBranch2 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz; 47.25/23.19 mkVBalBranch3MkVBalBranch2 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * mkVBalBranch3Size_r xzy xzz yuu yuv yuw yux yuy yuz yvu yvv < mkVBalBranch3Size_l xzy xzz yuu yuv yuw yux yuy yuz yvu yvv); 47.25/23.19 47.25/23.19 mkVBalBranch3Size_l xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch yux yuy yuz yvu yvv); 47.25/23.19 47.25/23.19 mkVBalBranch3Size_r xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch xzy xzz yuu yuv yuw); 47.25/23.19 47.25/23.19 mkVBalBranch4 key elt fm_l EmptyFM = addToFM fm_l key elt; 47.25/23.19 mkVBalBranch4 xuu xuv xuw xux = mkVBalBranch3 xuu xuv xuw xux; 47.25/23.19 47.25/23.19 mkVBalBranch5 key elt EmptyFM fm_r = addToFM fm_r key elt; 47.25/23.19 mkVBalBranch5 xuz xvu xvv xvw = mkVBalBranch4 xuz xvu xvv xvw; 47.25/23.19 47.25/23.19 plusFM :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 47.25/23.19 plusFM EmptyFM fm2 = fm2; 47.25/23.19 plusFM fm1 EmptyFM = fm1; 47.25/23.19 plusFM fm1 (Branch split_key elt1 zz left right) = mkVBalBranch split_key elt1 (plusFM (plusFMLts fm1 split_key) left) (plusFM (plusFMGts fm1 split_key) right); 47.25/23.19 47.25/23.19 plusFMGts xzw xzx = splitGT xzw xzx; 47.25/23.19 47.25/23.19 plusFMLts xzw xzx = splitLT xzw xzx; 47.25/23.19 47.25/23.19 sIZE_RATIO :: Int; 47.25/23.19 sIZE_RATIO = Pos (Succ (Succ (Succ (Succ (Succ Zero))))); 47.25/23.19 47.25/23.19 sizeFM :: FiniteMap a b -> Int; 47.25/23.19 sizeFM EmptyFM = Pos Zero; 47.25/23.19 sizeFM (Branch wux wuy size wuz wvu) = size; 47.25/23.19 47.25/23.19 splitGT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 47.25/23.19 splitGT EmptyFM split_key = splitGT4 EmptyFM split_key; 47.25/23.19 splitGT (Branch key elt vwu fm_l fm_r) split_key = splitGT3 (Branch key elt vwu fm_l fm_r) split_key; 47.25/23.19 47.25/23.19 splitGT0 key elt vwu fm_l fm_r split_key True = fm_r; 47.25/23.19 47.25/23.19 splitGT1 key elt vwu fm_l fm_r split_key True = mkVBalBranch key elt (splitGT fm_l split_key) fm_r; 47.25/23.19 splitGT1 key elt vwu fm_l fm_r split_key False = splitGT0 key elt vwu fm_l fm_r split_key otherwise; 47.25/23.19 47.25/23.19 splitGT2 key elt vwu fm_l fm_r split_key True = splitGT fm_r split_key; 47.25/23.19 splitGT2 key elt vwu fm_l fm_r split_key False = splitGT1 key elt vwu fm_l fm_r split_key (split_key < key); 47.25/23.19 47.25/23.19 splitGT3 (Branch key elt vwu fm_l fm_r) split_key = splitGT2 key elt vwu fm_l fm_r split_key (split_key > key); 47.25/23.19 47.25/23.19 splitGT4 EmptyFM split_key = emptyFM; 47.25/23.19 splitGT4 xvz xwu = splitGT3 xvz xwu; 47.25/23.19 47.25/23.19 splitLT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 47.25/23.19 splitLT EmptyFM split_key = splitLT4 EmptyFM split_key; 47.25/23.19 splitLT (Branch key elt vwv fm_l fm_r) split_key = splitLT3 (Branch key elt vwv fm_l fm_r) split_key; 47.25/23.19 47.25/23.19 splitLT0 key elt vwv fm_l fm_r split_key True = fm_l; 47.25/23.19 47.25/23.19 splitLT1 key elt vwv fm_l fm_r split_key True = mkVBalBranch key elt fm_l (splitLT fm_r split_key); 47.25/23.19 splitLT1 key elt vwv fm_l fm_r split_key False = splitLT0 key elt vwv fm_l fm_r split_key otherwise; 47.25/23.19 47.25/23.19 splitLT2 key elt vwv fm_l fm_r split_key True = splitLT fm_l split_key; 47.25/23.19 splitLT2 key elt vwv fm_l fm_r split_key False = splitLT1 key elt vwv fm_l fm_r split_key (split_key > key); 47.25/23.19 47.25/23.19 splitLT3 (Branch key elt vwv fm_l fm_r) split_key = splitLT2 key elt vwv fm_l fm_r split_key (split_key < key); 47.25/23.19 47.25/23.19 splitLT4 EmptyFM split_key = emptyFM; 47.25/23.19 splitLT4 xwx xwy = splitLT3 xwx xwy; 47.25/23.19 47.25/23.19 unitFM :: b -> a -> FiniteMap b a; 47.25/23.19 unitFM key elt = Branch key elt (Pos (Succ Zero)) emptyFM emptyFM; 47.25/23.19 47.25/23.19 } 47.25/23.19 module Maybe where { 47.25/23.19 import qualified FiniteMap; 47.25/23.19 import qualified Main; 47.25/23.19 import qualified Prelude; 47.25/23.19 } 47.25/23.19 module Main where { 47.25/23.19 import qualified FiniteMap; 47.25/23.19 import qualified Maybe; 47.25/23.19 import qualified Prelude; 47.25/23.19 } 47.25/23.19 47.25/23.19 ---------------------------------------- 47.25/23.19 47.25/23.19 (15) Narrow (SOUND) 47.25/23.19 Haskell To QDPs 47.25/23.19 47.25/23.19 digraph dp_graph { 47.25/23.19 node [outthreshold=100, inthreshold=100];1[label="FiniteMap.plusFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 47.25/23.19 3[label="FiniteMap.plusFM yvy3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 47.25/23.19 4[label="FiniteMap.plusFM yvy3 yvy4",fontsize=16,color="burlywood",shape="triangle"];4536[label="yvy3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4 -> 4536[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4536 -> 5[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4537[label="yvy3/FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34",fontsize=10,color="white",style="solid",shape="box"];4 -> 4537[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4537 -> 6[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 5[label="FiniteMap.plusFM FiniteMap.EmptyFM yvy4",fontsize=16,color="black",shape="box"];5 -> 7[label="",style="solid", color="black", weight=3]; 47.25/23.19 6[label="FiniteMap.plusFM (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy4",fontsize=16,color="burlywood",shape="box"];4538[label="yvy4/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];6 -> 4538[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4538 -> 8[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4539[label="yvy4/FiniteMap.Branch yvy40 yvy41 yvy42 yvy43 yvy44",fontsize=10,color="white",style="solid",shape="box"];6 -> 4539[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4539 -> 9[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 7[label="yvy4",fontsize=16,color="green",shape="box"];8[label="FiniteMap.plusFM (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 47.25/23.19 9[label="FiniteMap.plusFM (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) (FiniteMap.Branch yvy40 yvy41 yvy42 yvy43 yvy44)",fontsize=16,color="black",shape="box"];9 -> 11[label="",style="solid", color="black", weight=3]; 47.25/23.19 10[label="FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34",fontsize=16,color="green",shape="box"];11 -> 12[label="",style="dashed", color="red", weight=0]; 47.25/23.19 11[label="FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.plusFM (FiniteMap.plusFMLts (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40) yvy43) (FiniteMap.plusFM (FiniteMap.plusFMGts (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40) yvy44)",fontsize=16,color="magenta"];11 -> 13[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 11 -> 14[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 13 -> 4[label="",style="dashed", color="red", weight=0]; 47.25/23.19 13[label="FiniteMap.plusFM (FiniteMap.plusFMGts (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40) yvy44",fontsize=16,color="magenta"];13 -> 15[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 13 -> 16[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 14 -> 4[label="",style="dashed", color="red", weight=0]; 47.25/23.19 14[label="FiniteMap.plusFM (FiniteMap.plusFMLts (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40) yvy43",fontsize=16,color="magenta"];14 -> 17[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 14 -> 18[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 12[label="FiniteMap.mkVBalBranch yvy40 yvy41 yvy6 yvy5",fontsize=16,color="burlywood",shape="triangle"];4540[label="yvy6/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];12 -> 4540[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4540 -> 19[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4541[label="yvy6/FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64",fontsize=10,color="white",style="solid",shape="box"];12 -> 4541[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4541 -> 20[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 15[label="FiniteMap.plusFMGts (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40",fontsize=16,color="black",shape="box"];15 -> 21[label="",style="solid", color="black", weight=3]; 47.25/23.19 16[label="yvy44",fontsize=16,color="green",shape="box"];17[label="FiniteMap.plusFMLts (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40",fontsize=16,color="black",shape="box"];17 -> 22[label="",style="solid", color="black", weight=3]; 47.25/23.19 18[label="yvy43",fontsize=16,color="green",shape="box"];19[label="FiniteMap.mkVBalBranch yvy40 yvy41 FiniteMap.EmptyFM yvy5",fontsize=16,color="black",shape="box"];19 -> 23[label="",style="solid", color="black", weight=3]; 47.25/23.19 20[label="FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64) yvy5",fontsize=16,color="burlywood",shape="box"];4542[label="yvy5/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];20 -> 4542[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4542 -> 24[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4543[label="yvy5/FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=10,color="white",style="solid",shape="box"];20 -> 4543[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4543 -> 25[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 21[label="FiniteMap.splitGT (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40",fontsize=16,color="black",shape="box"];21 -> 26[label="",style="solid", color="black", weight=3]; 47.25/23.19 22[label="FiniteMap.splitLT (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40",fontsize=16,color="black",shape="box"];22 -> 27[label="",style="solid", color="black", weight=3]; 47.25/23.19 23[label="FiniteMap.mkVBalBranch5 yvy40 yvy41 FiniteMap.EmptyFM yvy5",fontsize=16,color="black",shape="box"];23 -> 28[label="",style="solid", color="black", weight=3]; 47.25/23.19 24[label="FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64) FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];24 -> 29[label="",style="solid", color="black", weight=3]; 47.25/23.19 25[label="FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64) (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="black",shape="box"];25 -> 30[label="",style="solid", color="black", weight=3]; 47.25/23.19 26[label="FiniteMap.splitGT3 (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40",fontsize=16,color="black",shape="triangle"];26 -> 31[label="",style="solid", color="black", weight=3]; 47.25/23.19 27[label="FiniteMap.splitLT3 (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40",fontsize=16,color="black",shape="triangle"];27 -> 32[label="",style="solid", color="black", weight=3]; 47.25/23.19 28[label="FiniteMap.addToFM yvy5 yvy40 yvy41",fontsize=16,color="black",shape="triangle"];28 -> 33[label="",style="solid", color="black", weight=3]; 47.25/23.19 29[label="FiniteMap.mkVBalBranch4 yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64) FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];29 -> 34[label="",style="solid", color="black", weight=3]; 47.25/23.19 30[label="FiniteMap.mkVBalBranch3 yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64) (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="black",shape="box"];30 -> 35[label="",style="solid", color="black", weight=3]; 47.25/23.19 31[label="FiniteMap.splitGT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (yvy40 > yvy30)",fontsize=16,color="black",shape="box"];31 -> 36[label="",style="solid", color="black", weight=3]; 47.25/23.19 32[label="FiniteMap.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (yvy40 < yvy30)",fontsize=16,color="black",shape="box"];32 -> 37[label="",style="solid", color="black", weight=3]; 47.25/23.19 33[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy5 yvy40 yvy41",fontsize=16,color="burlywood",shape="triangle"];4544[label="yvy5/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];33 -> 4544[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4544 -> 38[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4545[label="yvy5/FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=10,color="white",style="solid",shape="box"];33 -> 4545[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4545 -> 39[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 34 -> 28[label="",style="dashed", color="red", weight=0]; 47.25/23.19 34[label="FiniteMap.addToFM (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64) yvy40 yvy41",fontsize=16,color="magenta"];34 -> 40[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 35[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 yvy62 yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 < FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64)",fontsize=16,color="black",shape="box"];35 -> 41[label="",style="solid", color="black", weight=3]; 47.25/23.19 36[label="FiniteMap.splitGT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (compare yvy40 yvy30 == GT)",fontsize=16,color="black",shape="box"];36 -> 42[label="",style="solid", color="black", weight=3]; 47.25/23.19 37[label="FiniteMap.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (compare yvy40 yvy30 == LT)",fontsize=16,color="black",shape="box"];37 -> 43[label="",style="solid", color="black", weight=3]; 47.25/23.19 38[label="FiniteMap.addToFM_C FiniteMap.addToFM0 FiniteMap.EmptyFM yvy40 yvy41",fontsize=16,color="black",shape="box"];38 -> 44[label="",style="solid", color="black", weight=3]; 47.25/23.19 39[label="FiniteMap.addToFM_C FiniteMap.addToFM0 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54) yvy40 yvy41",fontsize=16,color="black",shape="box"];39 -> 45[label="",style="solid", color="black", weight=3]; 47.25/23.19 40[label="FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64",fontsize=16,color="green",shape="box"];41[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 yvy62 yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (compare (FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64) == LT)",fontsize=16,color="black",shape="box"];41 -> 46[label="",style="solid", color="black", weight=3]; 47.25/23.19 42[label="FiniteMap.splitGT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (compare3 yvy40 yvy30 == GT)",fontsize=16,color="black",shape="box"];42 -> 47[label="",style="solid", color="black", weight=3]; 47.25/23.19 43[label="FiniteMap.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (compare3 yvy40 yvy30 == LT)",fontsize=16,color="black",shape="box"];43 -> 48[label="",style="solid", color="black", weight=3]; 47.25/23.19 44[label="FiniteMap.addToFM_C4 FiniteMap.addToFM0 FiniteMap.EmptyFM yvy40 yvy41",fontsize=16,color="black",shape="box"];44 -> 49[label="",style="solid", color="black", weight=3]; 47.25/23.19 45[label="FiniteMap.addToFM_C3 FiniteMap.addToFM0 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54) yvy40 yvy41",fontsize=16,color="black",shape="box"];45 -> 50[label="",style="solid", color="black", weight=3]; 47.25/23.19 46[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 yvy62 yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (primCmpInt (FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64) == LT)",fontsize=16,color="black",shape="box"];46 -> 51[label="",style="solid", color="black", weight=3]; 47.25/23.19 47[label="FiniteMap.splitGT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (compare2 yvy40 yvy30 (yvy40 == yvy30) == GT)",fontsize=16,color="burlywood",shape="box"];4546[label="yvy40/Nothing",fontsize=10,color="white",style="solid",shape="box"];47 -> 4546[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4546 -> 52[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4547[label="yvy40/Just yvy400",fontsize=10,color="white",style="solid",shape="box"];47 -> 4547[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4547 -> 53[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 48[label="FiniteMap.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (compare2 yvy40 yvy30 (yvy40 == yvy30) == LT)",fontsize=16,color="burlywood",shape="box"];4548[label="yvy40/Nothing",fontsize=10,color="white",style="solid",shape="box"];48 -> 4548[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4548 -> 54[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4549[label="yvy40/Just yvy400",fontsize=10,color="white",style="solid",shape="box"];48 -> 4549[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4549 -> 55[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 49[label="FiniteMap.unitFM yvy40 yvy41",fontsize=16,color="black",shape="box"];49 -> 56[label="",style="solid", color="black", weight=3]; 47.25/23.19 50[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy40 yvy41 (yvy40 < yvy50)",fontsize=16,color="black",shape="box"];50 -> 57[label="",style="solid", color="black", weight=3]; 47.25/23.19 51[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 yvy62 yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (primCmpInt (primMulInt FiniteMap.sIZE_RATIO (FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64)) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64) == LT)",fontsize=16,color="black",shape="box"];51 -> 58[label="",style="solid", color="black", weight=3]; 47.25/23.19 52[label="FiniteMap.splitGT2 yvy30 yvy31 yvy32 yvy33 yvy34 Nothing (compare2 Nothing yvy30 (Nothing == yvy30) == GT)",fontsize=16,color="burlywood",shape="box"];4550[label="yvy30/Nothing",fontsize=10,color="white",style="solid",shape="box"];52 -> 4550[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4550 -> 59[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4551[label="yvy30/Just yvy300",fontsize=10,color="white",style="solid",shape="box"];52 -> 4551[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4551 -> 60[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 53[label="FiniteMap.splitGT2 yvy30 yvy31 yvy32 yvy33 yvy34 (Just yvy400) (compare2 (Just yvy400) yvy30 (Just yvy400 == yvy30) == GT)",fontsize=16,color="burlywood",shape="box"];4552[label="yvy30/Nothing",fontsize=10,color="white",style="solid",shape="box"];53 -> 4552[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4552 -> 61[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4553[label="yvy30/Just yvy300",fontsize=10,color="white",style="solid",shape="box"];53 -> 4553[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4553 -> 62[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 54[label="FiniteMap.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 Nothing (compare2 Nothing yvy30 (Nothing == yvy30) == LT)",fontsize=16,color="burlywood",shape="box"];4554[label="yvy30/Nothing",fontsize=10,color="white",style="solid",shape="box"];54 -> 4554[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4554 -> 63[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4555[label="yvy30/Just yvy300",fontsize=10,color="white",style="solid",shape="box"];54 -> 4555[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4555 -> 64[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 55[label="FiniteMap.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 (Just yvy400) (compare2 (Just yvy400) yvy30 (Just yvy400 == yvy30) == LT)",fontsize=16,color="burlywood",shape="box"];4556[label="yvy30/Nothing",fontsize=10,color="white",style="solid",shape="box"];55 -> 4556[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4556 -> 65[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4557[label="yvy30/Just yvy300",fontsize=10,color="white",style="solid",shape="box"];55 -> 4557[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4557 -> 66[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 56[label="FiniteMap.Branch yvy40 yvy41 (Pos (Succ Zero)) FiniteMap.emptyFM FiniteMap.emptyFM",fontsize=16,color="green",shape="box"];56 -> 67[label="",style="dashed", color="green", weight=3]; 47.25/23.19 56 -> 68[label="",style="dashed", color="green", weight=3]; 47.25/23.19 57[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy40 yvy41 (compare yvy40 yvy50 == LT)",fontsize=16,color="black",shape="box"];57 -> 69[label="",style="solid", color="black", weight=3]; 47.25/23.19 58[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 yvy62 yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (primCmpInt (primMulInt (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) (FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64)) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64) == LT)",fontsize=16,color="black",shape="box"];58 -> 70[label="",style="solid", color="black", weight=3]; 47.25/23.19 59[label="FiniteMap.splitGT2 Nothing yvy31 yvy32 yvy33 yvy34 Nothing (compare2 Nothing Nothing (Nothing == Nothing) == GT)",fontsize=16,color="black",shape="box"];59 -> 71[label="",style="solid", color="black", weight=3]; 47.25/23.19 60[label="FiniteMap.splitGT2 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing (compare2 Nothing (Just yvy300) (Nothing == Just yvy300) == GT)",fontsize=16,color="black",shape="box"];60 -> 72[label="",style="solid", color="black", weight=3]; 47.25/23.19 61[label="FiniteMap.splitGT2 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) (compare2 (Just yvy400) Nothing (Just yvy400 == Nothing) == GT)",fontsize=16,color="black",shape="box"];61 -> 73[label="",style="solid", color="black", weight=3]; 47.25/23.19 62[label="FiniteMap.splitGT2 (Just yvy300) yvy31 yvy32 yvy33 yvy34 (Just yvy400) (compare2 (Just yvy400) (Just yvy300) (Just yvy400 == Just yvy300) == GT)",fontsize=16,color="black",shape="box"];62 -> 74[label="",style="solid", color="black", weight=3]; 47.25/23.19 63[label="FiniteMap.splitLT2 Nothing yvy31 yvy32 yvy33 yvy34 Nothing (compare2 Nothing Nothing (Nothing == Nothing) == LT)",fontsize=16,color="black",shape="box"];63 -> 75[label="",style="solid", color="black", weight=3]; 47.25/23.19 64[label="FiniteMap.splitLT2 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing (compare2 Nothing (Just yvy300) (Nothing == Just yvy300) == LT)",fontsize=16,color="black",shape="box"];64 -> 76[label="",style="solid", color="black", weight=3]; 47.25/23.19 65[label="FiniteMap.splitLT2 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) (compare2 (Just yvy400) Nothing (Just yvy400 == Nothing) == LT)",fontsize=16,color="black",shape="box"];65 -> 77[label="",style="solid", color="black", weight=3]; 47.25/23.19 66[label="FiniteMap.splitLT2 (Just yvy300) yvy31 yvy32 yvy33 yvy34 (Just yvy400) (compare2 (Just yvy400) (Just yvy300) (Just yvy400 == Just yvy300) == LT)",fontsize=16,color="black",shape="box"];66 -> 78[label="",style="solid", color="black", weight=3]; 47.25/23.19 67[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="triangle"];67 -> 79[label="",style="solid", color="black", weight=3]; 47.25/23.19 68 -> 67[label="",style="dashed", color="red", weight=0]; 47.25/23.19 68[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];69[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy40 yvy41 (compare3 yvy40 yvy50 == LT)",fontsize=16,color="black",shape="box"];69 -> 80[label="",style="solid", color="black", weight=3]; 47.25/23.19 70[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 yvy62 yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (primCmpInt (primMulInt (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) (FiniteMap.sizeFM (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64) == LT)",fontsize=16,color="black",shape="box"];70 -> 81[label="",style="solid", color="black", weight=3]; 47.25/23.19 71[label="FiniteMap.splitGT2 Nothing yvy31 yvy32 yvy33 yvy34 Nothing (compare2 Nothing Nothing True == GT)",fontsize=16,color="black",shape="box"];71 -> 82[label="",style="solid", color="black", weight=3]; 47.25/23.19 72 -> 211[label="",style="dashed", color="red", weight=0]; 47.25/23.19 72[label="FiniteMap.splitGT2 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing (compare2 Nothing (Just yvy300) False == GT)",fontsize=16,color="magenta"];72 -> 212[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 73 -> 220[label="",style="dashed", color="red", weight=0]; 47.25/23.19 73[label="FiniteMap.splitGT2 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) (compare2 (Just yvy400) Nothing False == GT)",fontsize=16,color="magenta"];73 -> 221[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 74 -> 266[label="",style="dashed", color="red", weight=0]; 47.25/23.19 74[label="FiniteMap.splitGT2 (Just yvy300) yvy31 yvy32 yvy33 yvy34 (Just yvy400) (compare2 (Just yvy400) (Just yvy300) (yvy400 == yvy300) == GT)",fontsize=16,color="magenta"];74 -> 267[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 74 -> 268[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 74 -> 269[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 74 -> 270[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 74 -> 271[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 74 -> 272[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 74 -> 273[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 75[label="FiniteMap.splitLT2 Nothing yvy31 yvy32 yvy33 yvy34 Nothing (compare2 Nothing Nothing True == LT)",fontsize=16,color="black",shape="box"];75 -> 93[label="",style="solid", color="black", weight=3]; 47.25/23.19 76 -> 178[label="",style="dashed", color="red", weight=0]; 47.25/23.19 76[label="FiniteMap.splitLT2 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing (compare2 Nothing (Just yvy300) False == LT)",fontsize=16,color="magenta"];76 -> 179[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 77 -> 186[label="",style="dashed", color="red", weight=0]; 47.25/23.19 77[label="FiniteMap.splitLT2 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) (compare2 (Just yvy400) Nothing False == LT)",fontsize=16,color="magenta"];77 -> 187[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 78 -> 295[label="",style="dashed", color="red", weight=0]; 47.25/23.19 78[label="FiniteMap.splitLT2 (Just yvy300) yvy31 yvy32 yvy33 yvy34 (Just yvy400) (compare2 (Just yvy400) (Just yvy300) (yvy400 == yvy300) == LT)",fontsize=16,color="magenta"];78 -> 296[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 78 -> 297[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 78 -> 298[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 78 -> 299[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 78 -> 300[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 78 -> 301[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 78 -> 302[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 79[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];80[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy40 yvy41 (compare2 yvy40 yvy50 (yvy40 == yvy50) == LT)",fontsize=16,color="burlywood",shape="box"];4558[label="yvy40/Nothing",fontsize=10,color="white",style="solid",shape="box"];80 -> 4558[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4558 -> 104[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4559[label="yvy40/Just yvy400",fontsize=10,color="white",style="solid",shape="box"];80 -> 4559[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4559 -> 105[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 81[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 yvy62 yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (primCmpInt (primMulInt (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) yvy62) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64) == LT)",fontsize=16,color="burlywood",shape="box"];4560[label="yvy62/Pos yvy620",fontsize=10,color="white",style="solid",shape="box"];81 -> 4560[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4560 -> 106[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4561[label="yvy62/Neg yvy620",fontsize=10,color="white",style="solid",shape="box"];81 -> 4561[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4561 -> 107[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 82[label="FiniteMap.splitGT2 Nothing yvy31 yvy32 yvy33 yvy34 Nothing (EQ == GT)",fontsize=16,color="black",shape="box"];82 -> 108[label="",style="solid", color="black", weight=3]; 47.25/23.19 212 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.19 212[label="compare2 Nothing (Just yvy300) False == GT",fontsize=16,color="magenta"];212 -> 216[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 212 -> 217[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 211[label="FiniteMap.splitGT2 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing yvy41",fontsize=16,color="burlywood",shape="triangle"];4562[label="yvy41/False",fontsize=10,color="white",style="solid",shape="box"];211 -> 4562[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4562 -> 218[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4563[label="yvy41/True",fontsize=10,color="white",style="solid",shape="box"];211 -> 4563[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4563 -> 219[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 221 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.19 221[label="compare2 (Just yvy400) Nothing False == GT",fontsize=16,color="magenta"];221 -> 225[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 221 -> 226[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 220[label="FiniteMap.splitGT2 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) yvy42",fontsize=16,color="burlywood",shape="triangle"];4564[label="yvy42/False",fontsize=10,color="white",style="solid",shape="box"];220 -> 4564[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4564 -> 227[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4565[label="yvy42/True",fontsize=10,color="white",style="solid",shape="box"];220 -> 4565[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4565 -> 228[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 267[label="yvy300",fontsize=16,color="green",shape="box"];268[label="yvy34",fontsize=16,color="green",shape="box"];269[label="yvy32",fontsize=16,color="green",shape="box"];270 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.19 270[label="compare2 (Just yvy400) (Just yvy300) (yvy400 == yvy300) == GT",fontsize=16,color="magenta"];270 -> 277[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 270 -> 278[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 271[label="yvy33",fontsize=16,color="green",shape="box"];272[label="yvy400",fontsize=16,color="green",shape="box"];273[label="yvy31",fontsize=16,color="green",shape="box"];266[label="FiniteMap.splitGT2 (Just yvy15) yvy16 yvy17 yvy18 yvy19 (Just yvy20) yvy43",fontsize=16,color="burlywood",shape="triangle"];4566[label="yvy43/False",fontsize=10,color="white",style="solid",shape="box"];266 -> 4566[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4566 -> 279[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4567[label="yvy43/True",fontsize=10,color="white",style="solid",shape="box"];266 -> 4567[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4567 -> 280[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 93[label="FiniteMap.splitLT2 Nothing yvy31 yvy32 yvy33 yvy34 Nothing (EQ == LT)",fontsize=16,color="black",shape="box"];93 -> 127[label="",style="solid", color="black", weight=3]; 47.25/23.19 179 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.19 179[label="compare2 Nothing (Just yvy300) False == LT",fontsize=16,color="magenta"];179 -> 182[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 179 -> 183[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 178[label="FiniteMap.splitLT2 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing yvy37",fontsize=16,color="burlywood",shape="triangle"];4568[label="yvy37/False",fontsize=10,color="white",style="solid",shape="box"];178 -> 4568[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4568 -> 184[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4569[label="yvy37/True",fontsize=10,color="white",style="solid",shape="box"];178 -> 4569[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4569 -> 185[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 187 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.19 187[label="compare2 (Just yvy400) Nothing False == LT",fontsize=16,color="magenta"];187 -> 190[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 187 -> 191[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 186[label="FiniteMap.splitLT2 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) yvy38",fontsize=16,color="burlywood",shape="triangle"];4570[label="yvy38/False",fontsize=10,color="white",style="solid",shape="box"];186 -> 4570[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4570 -> 192[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4571[label="yvy38/True",fontsize=10,color="white",style="solid",shape="box"];186 -> 4571[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4571 -> 193[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 296[label="yvy32",fontsize=16,color="green",shape="box"];297[label="yvy31",fontsize=16,color="green",shape="box"];298[label="yvy400",fontsize=16,color="green",shape="box"];299[label="yvy300",fontsize=16,color="green",shape="box"];300 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.19 300[label="compare2 (Just yvy400) (Just yvy300) (yvy400 == yvy300) == LT",fontsize=16,color="magenta"];300 -> 306[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 300 -> 307[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 301[label="yvy33",fontsize=16,color="green",shape="box"];302[label="yvy34",fontsize=16,color="green",shape="box"];295[label="FiniteMap.splitLT2 (Just yvy30) yvy31 yvy32 yvy33 yvy34 (Just yvy35) yvy44",fontsize=16,color="burlywood",shape="triangle"];4572[label="yvy44/False",fontsize=10,color="white",style="solid",shape="box"];295 -> 4572[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4572 -> 308[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4573[label="yvy44/True",fontsize=10,color="white",style="solid",shape="box"];295 -> 4573[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4573 -> 309[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 104[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 yvy50 yvy51 yvy52 yvy53 yvy54 Nothing yvy41 (compare2 Nothing yvy50 (Nothing == yvy50) == LT)",fontsize=16,color="burlywood",shape="box"];4574[label="yvy50/Nothing",fontsize=10,color="white",style="solid",shape="box"];104 -> 4574[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4574 -> 146[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4575[label="yvy50/Just yvy500",fontsize=10,color="white",style="solid",shape="box"];104 -> 4575[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4575 -> 147[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 105[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 yvy50 yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 (compare2 (Just yvy400) yvy50 (Just yvy400 == yvy50) == LT)",fontsize=16,color="burlywood",shape="box"];4576[label="yvy50/Nothing",fontsize=10,color="white",style="solid",shape="box"];105 -> 4576[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4576 -> 148[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4577[label="yvy50/Just yvy500",fontsize=10,color="white",style="solid",shape="box"];105 -> 4577[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4577 -> 149[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 106[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (primCmpInt (primMulInt (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) (Pos yvy620)) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64) == LT)",fontsize=16,color="black",shape="box"];106 -> 150[label="",style="solid", color="black", weight=3]; 47.25/23.19 107[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (primCmpInt (primMulInt (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) (Neg yvy620)) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64) == LT)",fontsize=16,color="black",shape="box"];107 -> 151[label="",style="solid", color="black", weight=3]; 47.25/23.19 108[label="FiniteMap.splitGT2 Nothing yvy31 yvy32 yvy33 yvy34 Nothing False",fontsize=16,color="black",shape="box"];108 -> 152[label="",style="solid", color="black", weight=3]; 47.25/23.19 216[label="GT",fontsize=16,color="green",shape="box"];217 -> 2502[label="",style="dashed", color="red", weight=0]; 47.25/23.19 217[label="compare2 Nothing (Just yvy300) False",fontsize=16,color="magenta"];217 -> 2503[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 217 -> 2504[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 217 -> 2505[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 115[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4578[label="yvy400/LT",fontsize=10,color="white",style="solid",shape="box"];115 -> 4578[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4578 -> 161[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4579[label="yvy400/EQ",fontsize=10,color="white",style="solid",shape="box"];115 -> 4579[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4579 -> 162[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4580[label="yvy400/GT",fontsize=10,color="white",style="solid",shape="box"];115 -> 4580[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4580 -> 163[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 218[label="FiniteMap.splitGT2 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing False",fontsize=16,color="black",shape="box"];218 -> 229[label="",style="solid", color="black", weight=3]; 47.25/23.19 219[label="FiniteMap.splitGT2 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing True",fontsize=16,color="black",shape="box"];219 -> 230[label="",style="solid", color="black", weight=3]; 47.25/23.19 225[label="GT",fontsize=16,color="green",shape="box"];226 -> 2502[label="",style="dashed", color="red", weight=0]; 47.25/23.19 226[label="compare2 (Just yvy400) Nothing False",fontsize=16,color="magenta"];226 -> 2506[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 226 -> 2507[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 226 -> 2508[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 227[label="FiniteMap.splitGT2 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) False",fontsize=16,color="black",shape="box"];227 -> 281[label="",style="solid", color="black", weight=3]; 47.25/23.19 228[label="FiniteMap.splitGT2 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) True",fontsize=16,color="black",shape="box"];228 -> 282[label="",style="solid", color="black", weight=3]; 47.25/23.19 277[label="GT",fontsize=16,color="green",shape="box"];278 -> 2502[label="",style="dashed", color="red", weight=0]; 47.25/23.19 278[label="compare2 (Just yvy400) (Just yvy300) (yvy400 == yvy300)",fontsize=16,color="magenta"];278 -> 2509[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 278 -> 2510[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 278 -> 2511[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 279[label="FiniteMap.splitGT2 (Just yvy15) yvy16 yvy17 yvy18 yvy19 (Just yvy20) False",fontsize=16,color="black",shape="box"];279 -> 317[label="",style="solid", color="black", weight=3]; 47.25/23.19 280[label="FiniteMap.splitGT2 (Just yvy15) yvy16 yvy17 yvy18 yvy19 (Just yvy20) True",fontsize=16,color="black",shape="box"];280 -> 318[label="",style="solid", color="black", weight=3]; 47.25/23.19 127[label="FiniteMap.splitLT2 Nothing yvy31 yvy32 yvy33 yvy34 Nothing False",fontsize=16,color="black",shape="box"];127 -> 177[label="",style="solid", color="black", weight=3]; 47.25/23.19 182[label="LT",fontsize=16,color="green",shape="box"];183 -> 2502[label="",style="dashed", color="red", weight=0]; 47.25/23.19 183[label="compare2 Nothing (Just yvy300) False",fontsize=16,color="magenta"];183 -> 2512[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 183 -> 2513[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 183 -> 2514[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 184[label="FiniteMap.splitLT2 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing False",fontsize=16,color="black",shape="box"];184 -> 195[label="",style="solid", color="black", weight=3]; 47.25/23.19 185[label="FiniteMap.splitLT2 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing True",fontsize=16,color="black",shape="box"];185 -> 196[label="",style="solid", color="black", weight=3]; 47.25/23.19 190[label="LT",fontsize=16,color="green",shape="box"];191 -> 2502[label="",style="dashed", color="red", weight=0]; 47.25/23.19 191[label="compare2 (Just yvy400) Nothing False",fontsize=16,color="magenta"];191 -> 2515[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 191 -> 2516[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 191 -> 2517[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 192[label="FiniteMap.splitLT2 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) False",fontsize=16,color="black",shape="box"];192 -> 206[label="",style="solid", color="black", weight=3]; 47.25/23.19 193[label="FiniteMap.splitLT2 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) True",fontsize=16,color="black",shape="box"];193 -> 207[label="",style="solid", color="black", weight=3]; 47.25/23.19 306[label="LT",fontsize=16,color="green",shape="box"];307 -> 2502[label="",style="dashed", color="red", weight=0]; 47.25/23.19 307[label="compare2 (Just yvy400) (Just yvy300) (yvy400 == yvy300)",fontsize=16,color="magenta"];307 -> 2518[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 307 -> 2519[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 307 -> 2520[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 308[label="FiniteMap.splitLT2 (Just yvy30) yvy31 yvy32 yvy33 yvy34 (Just yvy35) False",fontsize=16,color="black",shape="box"];308 -> 319[label="",style="solid", color="black", weight=3]; 47.25/23.19 309[label="FiniteMap.splitLT2 (Just yvy30) yvy31 yvy32 yvy33 yvy34 (Just yvy35) True",fontsize=16,color="black",shape="box"];309 -> 320[label="",style="solid", color="black", weight=3]; 47.25/23.19 146[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 Nothing yvy41 (compare2 Nothing Nothing (Nothing == Nothing) == LT)",fontsize=16,color="black",shape="box"];146 -> 199[label="",style="solid", color="black", weight=3]; 47.25/23.19 147[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 Nothing yvy41 (compare2 Nothing (Just yvy500) (Nothing == Just yvy500) == LT)",fontsize=16,color="black",shape="box"];147 -> 200[label="",style="solid", color="black", weight=3]; 47.25/23.19 148[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 (compare2 (Just yvy400) Nothing (Just yvy400 == Nothing) == LT)",fontsize=16,color="black",shape="box"];148 -> 201[label="",style="solid", color="black", weight=3]; 47.25/23.19 149[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 (compare2 (Just yvy400) (Just yvy500) (Just yvy400 == Just yvy500) == LT)",fontsize=16,color="black",shape="box"];149 -> 202[label="",style="solid", color="black", weight=3]; 47.25/23.19 150 -> 203[label="",style="dashed", color="red", weight=0]; 47.25/23.19 150[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (primCmpInt (Pos (primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) yvy620)) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64) == LT)",fontsize=16,color="magenta"];150 -> 204[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 151 -> 208[label="",style="dashed", color="red", weight=0]; 47.25/23.19 151[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (primCmpInt (Neg (primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) yvy620)) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64) == LT)",fontsize=16,color="magenta"];151 -> 209[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 152 -> 376[label="",style="dashed", color="red", weight=0]; 47.25/23.19 152[label="FiniteMap.splitGT1 Nothing yvy31 yvy32 yvy33 yvy34 Nothing (Nothing < Nothing)",fontsize=16,color="magenta"];152 -> 377[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 2503[label="Just yvy300",fontsize=16,color="green",shape="box"];2504[label="False",fontsize=16,color="green",shape="box"];2505[label="Nothing",fontsize=16,color="green",shape="box"];2502[label="compare2 yvy490 yvy500 yvy170",fontsize=16,color="burlywood",shape="triangle"];4581[label="yvy170/False",fontsize=10,color="white",style="solid",shape="box"];2502 -> 4581[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4581 -> 2558[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4582[label="yvy170/True",fontsize=10,color="white",style="solid",shape="box"];2502 -> 4582[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4582 -> 2559[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 161[label="LT == yvy300",fontsize=16,color="burlywood",shape="box"];4583[label="yvy300/LT",fontsize=10,color="white",style="solid",shape="box"];161 -> 4583[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4583 -> 231[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4584[label="yvy300/EQ",fontsize=10,color="white",style="solid",shape="box"];161 -> 4584[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4584 -> 232[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4585[label="yvy300/GT",fontsize=10,color="white",style="solid",shape="box"];161 -> 4585[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4585 -> 233[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 162[label="EQ == yvy300",fontsize=16,color="burlywood",shape="box"];4586[label="yvy300/LT",fontsize=10,color="white",style="solid",shape="box"];162 -> 4586[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4586 -> 234[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4587[label="yvy300/EQ",fontsize=10,color="white",style="solid",shape="box"];162 -> 4587[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4587 -> 235[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4588[label="yvy300/GT",fontsize=10,color="white",style="solid",shape="box"];162 -> 4588[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4588 -> 236[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 163[label="GT == yvy300",fontsize=16,color="burlywood",shape="box"];4589[label="yvy300/LT",fontsize=10,color="white",style="solid",shape="box"];163 -> 4589[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4589 -> 237[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4590[label="yvy300/EQ",fontsize=10,color="white",style="solid",shape="box"];163 -> 4590[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4590 -> 238[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4591[label="yvy300/GT",fontsize=10,color="white",style="solid",shape="box"];163 -> 4591[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4591 -> 239[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 229 -> 391[label="",style="dashed", color="red", weight=0]; 47.25/23.19 229[label="FiniteMap.splitGT1 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing (Nothing < Just yvy300)",fontsize=16,color="magenta"];229 -> 392[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 230[label="FiniteMap.splitGT yvy34 Nothing",fontsize=16,color="burlywood",shape="triangle"];4592[label="yvy34/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];230 -> 4592[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4592 -> 284[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4593[label="yvy34/FiniteMap.Branch yvy340 yvy341 yvy342 yvy343 yvy344",fontsize=10,color="white",style="solid",shape="box"];230 -> 4593[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4593 -> 285[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2506[label="Nothing",fontsize=16,color="green",shape="box"];2507[label="False",fontsize=16,color="green",shape="box"];2508[label="Just yvy400",fontsize=16,color="green",shape="box"];281 -> 399[label="",style="dashed", color="red", weight=0]; 47.25/23.19 281[label="FiniteMap.splitGT1 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) (Just yvy400 < Nothing)",fontsize=16,color="magenta"];281 -> 400[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 282[label="FiniteMap.splitGT yvy34 (Just yvy400)",fontsize=16,color="burlywood",shape="triangle"];4594[label="yvy34/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];282 -> 4594[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4594 -> 322[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4595[label="yvy34/FiniteMap.Branch yvy340 yvy341 yvy342 yvy343 yvy344",fontsize=10,color="white",style="solid",shape="box"];282 -> 4595[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4595 -> 323[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2509[label="Just yvy300",fontsize=16,color="green",shape="box"];2510[label="yvy400 == yvy300",fontsize=16,color="blue",shape="box"];4596[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 4596[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4596 -> 2560[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4597[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 4597[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4597 -> 2561[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4598[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 4598[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4598 -> 2562[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4599[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 4599[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4599 -> 2563[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4600[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 4600[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4600 -> 2564[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4601[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 4601[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4601 -> 2565[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4602[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 4602[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4602 -> 2566[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4603[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 4603[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4603 -> 2567[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4604[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 4604[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4604 -> 2568[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4605[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 4605[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4605 -> 2569[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4606[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 4606[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4606 -> 2570[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4607[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 4607[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4607 -> 2571[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4608[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 4608[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4608 -> 2572[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4609[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 4609[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4609 -> 2573[label="",style="solid", color="blue", weight=3]; 47.25/23.19 2511[label="Just yvy400",fontsize=16,color="green",shape="box"];317 -> 426[label="",style="dashed", color="red", weight=0]; 47.25/23.19 317[label="FiniteMap.splitGT1 (Just yvy15) yvy16 yvy17 yvy18 yvy19 (Just yvy20) (Just yvy20 < Just yvy15)",fontsize=16,color="magenta"];317 -> 427[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 318 -> 282[label="",style="dashed", color="red", weight=0]; 47.25/23.19 318[label="FiniteMap.splitGT yvy19 (Just yvy20)",fontsize=16,color="magenta"];318 -> 357[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 318 -> 358[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 177 -> 432[label="",style="dashed", color="red", weight=0]; 47.25/23.19 177[label="FiniteMap.splitLT1 Nothing yvy31 yvy32 yvy33 yvy34 Nothing (Nothing > Nothing)",fontsize=16,color="magenta"];177 -> 433[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 2512[label="Just yvy300",fontsize=16,color="green",shape="box"];2513[label="False",fontsize=16,color="green",shape="box"];2514[label="Nothing",fontsize=16,color="green",shape="box"];195 -> 439[label="",style="dashed", color="red", weight=0]; 47.25/23.19 195[label="FiniteMap.splitLT1 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing (Nothing > Just yvy300)",fontsize=16,color="magenta"];195 -> 440[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 196[label="FiniteMap.splitLT yvy33 Nothing",fontsize=16,color="burlywood",shape="triangle"];4610[label="yvy33/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];196 -> 4610[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4610 -> 289[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4611[label="yvy33/FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334",fontsize=10,color="white",style="solid",shape="box"];196 -> 4611[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4611 -> 290[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2515[label="Nothing",fontsize=16,color="green",shape="box"];2516[label="False",fontsize=16,color="green",shape="box"];2517[label="Just yvy400",fontsize=16,color="green",shape="box"];206 -> 448[label="",style="dashed", color="red", weight=0]; 47.25/23.19 206[label="FiniteMap.splitLT1 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) (Just yvy400 > Nothing)",fontsize=16,color="magenta"];206 -> 449[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 207[label="FiniteMap.splitLT yvy33 (Just yvy400)",fontsize=16,color="burlywood",shape="triangle"];4612[label="yvy33/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];207 -> 4612[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4612 -> 293[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4613[label="yvy33/FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334",fontsize=10,color="white",style="solid",shape="box"];207 -> 4613[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4613 -> 294[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2518[label="Just yvy300",fontsize=16,color="green",shape="box"];2519[label="yvy400 == yvy300",fontsize=16,color="blue",shape="box"];4614[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2519 -> 4614[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4614 -> 2574[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4615[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2519 -> 4615[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4615 -> 2575[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4616[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2519 -> 4616[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4616 -> 2576[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4617[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2519 -> 4617[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4617 -> 2577[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4618[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2519 -> 4618[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4618 -> 2578[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4619[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2519 -> 4619[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4619 -> 2579[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4620[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2519 -> 4620[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4620 -> 2580[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4621[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2519 -> 4621[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4621 -> 2581[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4622[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2519 -> 4622[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4622 -> 2582[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4623[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2519 -> 4623[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4623 -> 2583[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4624[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2519 -> 4624[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4624 -> 2584[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4625[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2519 -> 4625[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4625 -> 2585[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4626[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2519 -> 4626[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4626 -> 2586[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4627[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2519 -> 4627[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4627 -> 2587[label="",style="solid", color="blue", weight=3]; 47.25/23.19 2520[label="Just yvy400",fontsize=16,color="green",shape="box"];319 -> 456[label="",style="dashed", color="red", weight=0]; 47.25/23.19 319[label="FiniteMap.splitLT1 (Just yvy30) yvy31 yvy32 yvy33 yvy34 (Just yvy35) (Just yvy35 > Just yvy30)",fontsize=16,color="magenta"];319 -> 457[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 320 -> 207[label="",style="dashed", color="red", weight=0]; 47.25/23.19 320[label="FiniteMap.splitLT yvy33 (Just yvy35)",fontsize=16,color="magenta"];320 -> 360[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 320 -> 361[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 199 -> 354[label="",style="dashed", color="red", weight=0]; 47.25/23.19 199[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 Nothing yvy41 (compare2 Nothing Nothing True == LT)",fontsize=16,color="magenta"];199 -> 355[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 200 -> 362[label="",style="dashed", color="red", weight=0]; 47.25/23.19 200[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 Nothing yvy41 (compare2 Nothing (Just yvy500) False == LT)",fontsize=16,color="magenta"];200 -> 363[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 201 -> 364[label="",style="dashed", color="red", weight=0]; 47.25/23.19 201[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 (compare2 (Just yvy400) Nothing False == LT)",fontsize=16,color="magenta"];201 -> 365[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 202 -> 366[label="",style="dashed", color="red", weight=0]; 47.25/23.19 202[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 (compare2 (Just yvy400) (Just yvy500) (yvy400 == yvy500) == LT)",fontsize=16,color="magenta"];202 -> 367[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 204 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.19 204[label="primCmpInt (Pos (primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) yvy620)) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64) == LT",fontsize=16,color="magenta"];204 -> 368[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 204 -> 369[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 203[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 yvy39",fontsize=16,color="burlywood",shape="triangle"];4628[label="yvy39/False",fontsize=10,color="white",style="solid",shape="box"];203 -> 4628[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4628 -> 370[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4629[label="yvy39/True",fontsize=10,color="white",style="solid",shape="box"];203 -> 4629[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4629 -> 371[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 209 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.19 209[label="primCmpInt (Neg (primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) yvy620)) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64) == LT",fontsize=16,color="magenta"];209 -> 372[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 209 -> 373[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 208[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 yvy40",fontsize=16,color="burlywood",shape="triangle"];4630[label="yvy40/False",fontsize=10,color="white",style="solid",shape="box"];208 -> 4630[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4630 -> 374[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4631[label="yvy40/True",fontsize=10,color="white",style="solid",shape="box"];208 -> 4631[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4631 -> 375[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 377[label="Nothing < Nothing",fontsize=16,color="black",shape="box"];377 -> 379[label="",style="solid", color="black", weight=3]; 47.25/23.19 376[label="FiniteMap.splitGT1 Nothing yvy31 yvy32 yvy33 yvy34 Nothing yvy59",fontsize=16,color="burlywood",shape="triangle"];4632[label="yvy59/False",fontsize=10,color="white",style="solid",shape="box"];376 -> 4632[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4632 -> 380[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4633[label="yvy59/True",fontsize=10,color="white",style="solid",shape="box"];376 -> 4633[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4633 -> 381[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2558[label="compare2 yvy490 yvy500 False",fontsize=16,color="black",shape="box"];2558 -> 2613[label="",style="solid", color="black", weight=3]; 47.25/23.19 2559[label="compare2 yvy490 yvy500 True",fontsize=16,color="black",shape="box"];2559 -> 2614[label="",style="solid", color="black", weight=3]; 47.25/23.19 231[label="LT == LT",fontsize=16,color="black",shape="box"];231 -> 382[label="",style="solid", color="black", weight=3]; 47.25/23.19 232[label="LT == EQ",fontsize=16,color="black",shape="box"];232 -> 383[label="",style="solid", color="black", weight=3]; 47.25/23.19 233[label="LT == GT",fontsize=16,color="black",shape="box"];233 -> 384[label="",style="solid", color="black", weight=3]; 47.25/23.19 234[label="EQ == LT",fontsize=16,color="black",shape="box"];234 -> 385[label="",style="solid", color="black", weight=3]; 47.25/23.19 235[label="EQ == EQ",fontsize=16,color="black",shape="box"];235 -> 386[label="",style="solid", color="black", weight=3]; 47.25/23.19 236[label="EQ == GT",fontsize=16,color="black",shape="box"];236 -> 387[label="",style="solid", color="black", weight=3]; 47.25/23.19 237[label="GT == LT",fontsize=16,color="black",shape="box"];237 -> 388[label="",style="solid", color="black", weight=3]; 47.25/23.19 238[label="GT == EQ",fontsize=16,color="black",shape="box"];238 -> 389[label="",style="solid", color="black", weight=3]; 47.25/23.19 239[label="GT == GT",fontsize=16,color="black",shape="box"];239 -> 390[label="",style="solid", color="black", weight=3]; 47.25/23.19 392[label="Nothing < Just yvy300",fontsize=16,color="black",shape="box"];392 -> 394[label="",style="solid", color="black", weight=3]; 47.25/23.19 391[label="FiniteMap.splitGT1 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing yvy60",fontsize=16,color="burlywood",shape="triangle"];4634[label="yvy60/False",fontsize=10,color="white",style="solid",shape="box"];391 -> 4634[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4634 -> 395[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4635[label="yvy60/True",fontsize=10,color="white",style="solid",shape="box"];391 -> 4635[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4635 -> 396[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 284[label="FiniteMap.splitGT FiniteMap.EmptyFM Nothing",fontsize=16,color="black",shape="box"];284 -> 397[label="",style="solid", color="black", weight=3]; 47.25/23.19 285[label="FiniteMap.splitGT (FiniteMap.Branch yvy340 yvy341 yvy342 yvy343 yvy344) Nothing",fontsize=16,color="black",shape="box"];285 -> 398[label="",style="solid", color="black", weight=3]; 47.25/23.19 400[label="Just yvy400 < Nothing",fontsize=16,color="black",shape="box"];400 -> 402[label="",style="solid", color="black", weight=3]; 47.25/23.19 399[label="FiniteMap.splitGT1 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) yvy61",fontsize=16,color="burlywood",shape="triangle"];4636[label="yvy61/False",fontsize=10,color="white",style="solid",shape="box"];399 -> 4636[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4636 -> 403[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4637[label="yvy61/True",fontsize=10,color="white",style="solid",shape="box"];399 -> 4637[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4637 -> 404[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 322[label="FiniteMap.splitGT FiniteMap.EmptyFM (Just yvy400)",fontsize=16,color="black",shape="box"];322 -> 405[label="",style="solid", color="black", weight=3]; 47.25/23.19 323[label="FiniteMap.splitGT (FiniteMap.Branch yvy340 yvy341 yvy342 yvy343 yvy344) (Just yvy400)",fontsize=16,color="black",shape="box"];323 -> 406[label="",style="solid", color="black", weight=3]; 47.25/23.19 2560[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4638[label="yvy400/(yvy4000,yvy4001,yvy4002)",fontsize=10,color="white",style="solid",shape="box"];2560 -> 4638[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4638 -> 2615[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2561[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4639[label="yvy400/Integer yvy4000",fontsize=10,color="white",style="solid",shape="box"];2561 -> 4639[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4639 -> 2616[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2562[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4640[label="yvy400/False",fontsize=10,color="white",style="solid",shape="box"];2562 -> 4640[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4640 -> 2617[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4641[label="yvy400/True",fontsize=10,color="white",style="solid",shape="box"];2562 -> 4641[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4641 -> 2618[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2563[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4642[label="yvy400/Nothing",fontsize=10,color="white",style="solid",shape="box"];2563 -> 4642[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4642 -> 2619[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4643[label="yvy400/Just yvy4000",fontsize=10,color="white",style="solid",shape="box"];2563 -> 4643[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4643 -> 2620[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2564 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.19 2564[label="yvy400 == yvy300",fontsize=16,color="magenta"];2565[label="yvy400 == yvy300",fontsize=16,color="black",shape="triangle"];2565 -> 2621[label="",style="solid", color="black", weight=3]; 47.25/23.19 2566[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4644[label="yvy400/(yvy4000,yvy4001)",fontsize=10,color="white",style="solid",shape="box"];2566 -> 4644[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4644 -> 2622[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2567[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4645[label="yvy400/()",fontsize=10,color="white",style="solid",shape="box"];2567 -> 4645[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4645 -> 2623[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2568[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4646[label="yvy400/yvy4000 :% yvy4001",fontsize=10,color="white",style="solid",shape="box"];2568 -> 4646[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4646 -> 2624[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2569[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4647[label="yvy400/Left yvy4000",fontsize=10,color="white",style="solid",shape="box"];2569 -> 4647[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4647 -> 2625[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4648[label="yvy400/Right yvy4000",fontsize=10,color="white",style="solid",shape="box"];2569 -> 4648[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4648 -> 2626[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2570[label="yvy400 == yvy300",fontsize=16,color="black",shape="triangle"];2570 -> 2627[label="",style="solid", color="black", weight=3]; 47.25/23.19 2571[label="yvy400 == yvy300",fontsize=16,color="black",shape="triangle"];2571 -> 2628[label="",style="solid", color="black", weight=3]; 47.25/23.19 2572[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4649[label="yvy400/yvy4000 : yvy4001",fontsize=10,color="white",style="solid",shape="box"];2572 -> 4649[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4649 -> 2629[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4650[label="yvy400/[]",fontsize=10,color="white",style="solid",shape="box"];2572 -> 4650[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4650 -> 2630[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2573[label="yvy400 == yvy300",fontsize=16,color="black",shape="triangle"];2573 -> 2631[label="",style="solid", color="black", weight=3]; 47.25/23.19 427[label="Just yvy20 < Just yvy15",fontsize=16,color="black",shape="box"];427 -> 429[label="",style="solid", color="black", weight=3]; 47.25/23.19 426[label="FiniteMap.splitGT1 (Just yvy15) yvy16 yvy17 yvy18 yvy19 (Just yvy20) yvy62",fontsize=16,color="burlywood",shape="triangle"];4651[label="yvy62/False",fontsize=10,color="white",style="solid",shape="box"];426 -> 4651[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4651 -> 430[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4652[label="yvy62/True",fontsize=10,color="white",style="solid",shape="box"];426 -> 4652[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4652 -> 431[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 357[label="yvy19",fontsize=16,color="green",shape="box"];358[label="yvy20",fontsize=16,color="green",shape="box"];433[label="Nothing > Nothing",fontsize=16,color="black",shape="triangle"];433 -> 435[label="",style="solid", color="black", weight=3]; 47.25/23.19 432[label="FiniteMap.splitLT1 Nothing yvy31 yvy32 yvy33 yvy34 Nothing yvy63",fontsize=16,color="burlywood",shape="triangle"];4653[label="yvy63/False",fontsize=10,color="white",style="solid",shape="box"];432 -> 4653[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4653 -> 436[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4654[label="yvy63/True",fontsize=10,color="white",style="solid",shape="box"];432 -> 4654[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4654 -> 437[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 440[label="Nothing > Just yvy300",fontsize=16,color="black",shape="triangle"];440 -> 442[label="",style="solid", color="black", weight=3]; 47.25/23.19 439[label="FiniteMap.splitLT1 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing yvy64",fontsize=16,color="burlywood",shape="triangle"];4655[label="yvy64/False",fontsize=10,color="white",style="solid",shape="box"];439 -> 4655[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4655 -> 443[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4656[label="yvy64/True",fontsize=10,color="white",style="solid",shape="box"];439 -> 4656[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4656 -> 444[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 289[label="FiniteMap.splitLT FiniteMap.EmptyFM Nothing",fontsize=16,color="black",shape="box"];289 -> 445[label="",style="solid", color="black", weight=3]; 47.25/23.19 290[label="FiniteMap.splitLT (FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334) Nothing",fontsize=16,color="black",shape="box"];290 -> 446[label="",style="solid", color="black", weight=3]; 47.25/23.19 449[label="Just yvy400 > Nothing",fontsize=16,color="black",shape="triangle"];449 -> 451[label="",style="solid", color="black", weight=3]; 47.25/23.19 448[label="FiniteMap.splitLT1 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) yvy65",fontsize=16,color="burlywood",shape="triangle"];4657[label="yvy65/False",fontsize=10,color="white",style="solid",shape="box"];448 -> 4657[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4657 -> 452[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4658[label="yvy65/True",fontsize=10,color="white",style="solid",shape="box"];448 -> 4658[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4658 -> 453[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 293[label="FiniteMap.splitLT FiniteMap.EmptyFM (Just yvy400)",fontsize=16,color="black",shape="box"];293 -> 454[label="",style="solid", color="black", weight=3]; 47.25/23.19 294[label="FiniteMap.splitLT (FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334) (Just yvy400)",fontsize=16,color="black",shape="box"];294 -> 455[label="",style="solid", color="black", weight=3]; 47.25/23.19 2574 -> 2560[label="",style="dashed", color="red", weight=0]; 47.25/23.19 2574[label="yvy400 == yvy300",fontsize=16,color="magenta"];2575 -> 2561[label="",style="dashed", color="red", weight=0]; 47.25/23.19 2575[label="yvy400 == yvy300",fontsize=16,color="magenta"];2576 -> 2562[label="",style="dashed", color="red", weight=0]; 47.25/23.19 2576[label="yvy400 == yvy300",fontsize=16,color="magenta"];2577 -> 2563[label="",style="dashed", color="red", weight=0]; 47.25/23.19 2577[label="yvy400 == yvy300",fontsize=16,color="magenta"];2578 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.19 2578[label="yvy400 == yvy300",fontsize=16,color="magenta"];2579 -> 2565[label="",style="dashed", color="red", weight=0]; 47.25/23.19 2579[label="yvy400 == yvy300",fontsize=16,color="magenta"];2580 -> 2566[label="",style="dashed", color="red", weight=0]; 47.25/23.19 2580[label="yvy400 == yvy300",fontsize=16,color="magenta"];2581 -> 2567[label="",style="dashed", color="red", weight=0]; 47.25/23.19 2581[label="yvy400 == yvy300",fontsize=16,color="magenta"];2582 -> 2568[label="",style="dashed", color="red", weight=0]; 47.25/23.19 2582[label="yvy400 == yvy300",fontsize=16,color="magenta"];2583 -> 2569[label="",style="dashed", color="red", weight=0]; 47.25/23.19 2583[label="yvy400 == yvy300",fontsize=16,color="magenta"];2584 -> 2570[label="",style="dashed", color="red", weight=0]; 47.25/23.19 2584[label="yvy400 == yvy300",fontsize=16,color="magenta"];2585 -> 2571[label="",style="dashed", color="red", weight=0]; 47.25/23.19 2585[label="yvy400 == yvy300",fontsize=16,color="magenta"];2586 -> 2572[label="",style="dashed", color="red", weight=0]; 47.25/23.19 2586[label="yvy400 == yvy300",fontsize=16,color="magenta"];2587 -> 2573[label="",style="dashed", color="red", weight=0]; 47.25/23.19 2587[label="yvy400 == yvy300",fontsize=16,color="magenta"];457[label="Just yvy35 > Just yvy30",fontsize=16,color="black",shape="triangle"];457 -> 459[label="",style="solid", color="black", weight=3]; 47.25/23.19 456[label="FiniteMap.splitLT1 (Just yvy30) yvy31 yvy32 yvy33 yvy34 (Just yvy35) yvy66",fontsize=16,color="burlywood",shape="triangle"];4659[label="yvy66/False",fontsize=10,color="white",style="solid",shape="box"];456 -> 4659[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4659 -> 460[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4660[label="yvy66/True",fontsize=10,color="white",style="solid",shape="box"];456 -> 4660[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4660 -> 461[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 360[label="yvy35",fontsize=16,color="green",shape="box"];361[label="yvy33",fontsize=16,color="green",shape="box"];355 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.19 355[label="compare2 Nothing Nothing True == LT",fontsize=16,color="magenta"];355 -> 462[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 355 -> 463[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 354[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 Nothing yvy41 yvy52",fontsize=16,color="burlywood",shape="triangle"];4661[label="yvy52/False",fontsize=10,color="white",style="solid",shape="box"];354 -> 4661[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4661 -> 464[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4662[label="yvy52/True",fontsize=10,color="white",style="solid",shape="box"];354 -> 4662[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4662 -> 465[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 363 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.19 363[label="compare2 Nothing (Just yvy500) False == LT",fontsize=16,color="magenta"];363 -> 466[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 363 -> 467[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 362[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 Nothing yvy41 yvy53",fontsize=16,color="burlywood",shape="triangle"];4663[label="yvy53/False",fontsize=10,color="white",style="solid",shape="box"];362 -> 4663[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4663 -> 468[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4664[label="yvy53/True",fontsize=10,color="white",style="solid",shape="box"];362 -> 4664[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4664 -> 469[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 365 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.19 365[label="compare2 (Just yvy400) Nothing False == LT",fontsize=16,color="magenta"];365 -> 470[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 365 -> 471[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 364[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 yvy55",fontsize=16,color="burlywood",shape="triangle"];4665[label="yvy55/False",fontsize=10,color="white",style="solid",shape="box"];364 -> 4665[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4665 -> 472[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4666[label="yvy55/True",fontsize=10,color="white",style="solid",shape="box"];364 -> 4666[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4666 -> 473[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 367 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.19 367[label="compare2 (Just yvy400) (Just yvy500) (yvy400 == yvy500) == LT",fontsize=16,color="magenta"];367 -> 474[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 367 -> 475[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 366[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 yvy57",fontsize=16,color="burlywood",shape="triangle"];4667[label="yvy57/False",fontsize=10,color="white",style="solid",shape="box"];366 -> 4667[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4667 -> 476[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4668[label="yvy57/True",fontsize=10,color="white",style="solid",shape="box"];366 -> 4668[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4668 -> 477[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 368[label="LT",fontsize=16,color="green",shape="box"];369[label="primCmpInt (Pos (primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) yvy620)) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64)",fontsize=16,color="burlywood",shape="box"];4669[label="yvy620/Succ yvy6200",fontsize=10,color="white",style="solid",shape="box"];369 -> 4669[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4669 -> 478[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4670[label="yvy620/Zero",fontsize=10,color="white",style="solid",shape="box"];369 -> 4670[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4670 -> 479[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 370[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 False",fontsize=16,color="black",shape="box"];370 -> 480[label="",style="solid", color="black", weight=3]; 47.25/23.19 371[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 True",fontsize=16,color="black",shape="box"];371 -> 481[label="",style="solid", color="black", weight=3]; 47.25/23.19 372[label="LT",fontsize=16,color="green",shape="box"];373[label="primCmpInt (Neg (primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) yvy620)) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64)",fontsize=16,color="burlywood",shape="box"];4671[label="yvy620/Succ yvy6200",fontsize=10,color="white",style="solid",shape="box"];373 -> 4671[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4671 -> 482[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4672[label="yvy620/Zero",fontsize=10,color="white",style="solid",shape="box"];373 -> 4672[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4672 -> 483[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 374[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 False",fontsize=16,color="black",shape="box"];374 -> 484[label="",style="solid", color="black", weight=3]; 47.25/23.19 375[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 True",fontsize=16,color="black",shape="box"];375 -> 485[label="",style="solid", color="black", weight=3]; 47.25/23.19 379 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.19 379[label="compare Nothing Nothing == LT",fontsize=16,color="magenta"];379 -> 486[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 379 -> 487[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 380[label="FiniteMap.splitGT1 Nothing yvy31 yvy32 yvy33 yvy34 Nothing False",fontsize=16,color="black",shape="box"];380 -> 488[label="",style="solid", color="black", weight=3]; 47.25/23.19 381[label="FiniteMap.splitGT1 Nothing yvy31 yvy32 yvy33 yvy34 Nothing True",fontsize=16,color="black",shape="box"];381 -> 489[label="",style="solid", color="black", weight=3]; 47.25/23.19 2613[label="compare1 yvy490 yvy500 (yvy490 <= yvy500)",fontsize=16,color="burlywood",shape="box"];4673[label="yvy490/Nothing",fontsize=10,color="white",style="solid",shape="box"];2613 -> 4673[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4673 -> 2684[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4674[label="yvy490/Just yvy4900",fontsize=10,color="white",style="solid",shape="box"];2613 -> 4674[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4674 -> 2685[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2614[label="EQ",fontsize=16,color="green",shape="box"];382[label="True",fontsize=16,color="green",shape="box"];383[label="False",fontsize=16,color="green",shape="box"];384[label="False",fontsize=16,color="green",shape="box"];385[label="False",fontsize=16,color="green",shape="box"];386[label="True",fontsize=16,color="green",shape="box"];387[label="False",fontsize=16,color="green",shape="box"];388[label="False",fontsize=16,color="green",shape="box"];389[label="False",fontsize=16,color="green",shape="box"];390[label="True",fontsize=16,color="green",shape="box"];394 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.19 394[label="compare Nothing (Just yvy300) == LT",fontsize=16,color="magenta"];394 -> 490[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 394 -> 491[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 395[label="FiniteMap.splitGT1 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing False",fontsize=16,color="black",shape="box"];395 -> 492[label="",style="solid", color="black", weight=3]; 47.25/23.19 396[label="FiniteMap.splitGT1 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing True",fontsize=16,color="black",shape="box"];396 -> 493[label="",style="solid", color="black", weight=3]; 47.25/23.19 397[label="FiniteMap.splitGT4 FiniteMap.EmptyFM Nothing",fontsize=16,color="black",shape="box"];397 -> 494[label="",style="solid", color="black", weight=3]; 47.25/23.19 398 -> 26[label="",style="dashed", color="red", weight=0]; 47.25/23.19 398[label="FiniteMap.splitGT3 (FiniteMap.Branch yvy340 yvy341 yvy342 yvy343 yvy344) Nothing",fontsize=16,color="magenta"];398 -> 495[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 398 -> 496[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 398 -> 497[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 398 -> 498[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 398 -> 499[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 398 -> 500[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 402 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.19 402[label="compare (Just yvy400) Nothing == LT",fontsize=16,color="magenta"];402 -> 501[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 402 -> 502[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 403[label="FiniteMap.splitGT1 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) False",fontsize=16,color="black",shape="box"];403 -> 503[label="",style="solid", color="black", weight=3]; 47.25/23.19 404[label="FiniteMap.splitGT1 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) True",fontsize=16,color="black",shape="box"];404 -> 504[label="",style="solid", color="black", weight=3]; 47.25/23.19 405[label="FiniteMap.splitGT4 FiniteMap.EmptyFM (Just yvy400)",fontsize=16,color="black",shape="box"];405 -> 505[label="",style="solid", color="black", weight=3]; 47.25/23.19 406 -> 26[label="",style="dashed", color="red", weight=0]; 47.25/23.19 406[label="FiniteMap.splitGT3 (FiniteMap.Branch yvy340 yvy341 yvy342 yvy343 yvy344) (Just yvy400)",fontsize=16,color="magenta"];406 -> 506[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 406 -> 507[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 406 -> 508[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 406 -> 509[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 406 -> 510[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 406 -> 511[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 2615[label="(yvy4000,yvy4001,yvy4002) == yvy300",fontsize=16,color="burlywood",shape="box"];4675[label="yvy300/(yvy3000,yvy3001,yvy3002)",fontsize=10,color="white",style="solid",shape="box"];2615 -> 4675[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4675 -> 2686[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2616[label="Integer yvy4000 == yvy300",fontsize=16,color="burlywood",shape="box"];4676[label="yvy300/Integer yvy3000",fontsize=10,color="white",style="solid",shape="box"];2616 -> 4676[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4676 -> 2687[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2617[label="False == yvy300",fontsize=16,color="burlywood",shape="box"];4677[label="yvy300/False",fontsize=10,color="white",style="solid",shape="box"];2617 -> 4677[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4677 -> 2688[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4678[label="yvy300/True",fontsize=10,color="white",style="solid",shape="box"];2617 -> 4678[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4678 -> 2689[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2618[label="True == yvy300",fontsize=16,color="burlywood",shape="box"];4679[label="yvy300/False",fontsize=10,color="white",style="solid",shape="box"];2618 -> 4679[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4679 -> 2690[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4680[label="yvy300/True",fontsize=10,color="white",style="solid",shape="box"];2618 -> 4680[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4680 -> 2691[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2619[label="Nothing == yvy300",fontsize=16,color="burlywood",shape="box"];4681[label="yvy300/Nothing",fontsize=10,color="white",style="solid",shape="box"];2619 -> 4681[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4681 -> 2692[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4682[label="yvy300/Just yvy3000",fontsize=10,color="white",style="solid",shape="box"];2619 -> 4682[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4682 -> 2693[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2620[label="Just yvy4000 == yvy300",fontsize=16,color="burlywood",shape="box"];4683[label="yvy300/Nothing",fontsize=10,color="white",style="solid",shape="box"];2620 -> 4683[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4683 -> 2694[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4684[label="yvy300/Just yvy3000",fontsize=10,color="white",style="solid",shape="box"];2620 -> 4684[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4684 -> 2695[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2621[label="primEqFloat yvy400 yvy300",fontsize=16,color="burlywood",shape="box"];4685[label="yvy400/Float yvy4000 yvy4001",fontsize=10,color="white",style="solid",shape="box"];2621 -> 4685[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4685 -> 2696[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2622[label="(yvy4000,yvy4001) == yvy300",fontsize=16,color="burlywood",shape="box"];4686[label="yvy300/(yvy3000,yvy3001)",fontsize=10,color="white",style="solid",shape="box"];2622 -> 4686[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4686 -> 2697[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2623[label="() == yvy300",fontsize=16,color="burlywood",shape="box"];4687[label="yvy300/()",fontsize=10,color="white",style="solid",shape="box"];2623 -> 4687[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4687 -> 2698[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2624[label="yvy4000 :% yvy4001 == yvy300",fontsize=16,color="burlywood",shape="box"];4688[label="yvy300/yvy3000 :% yvy3001",fontsize=10,color="white",style="solid",shape="box"];2624 -> 4688[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4688 -> 2699[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2625[label="Left yvy4000 == yvy300",fontsize=16,color="burlywood",shape="box"];4689[label="yvy300/Left yvy3000",fontsize=10,color="white",style="solid",shape="box"];2625 -> 4689[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4689 -> 2700[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4690[label="yvy300/Right yvy3000",fontsize=10,color="white",style="solid",shape="box"];2625 -> 4690[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4690 -> 2701[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2626[label="Right yvy4000 == yvy300",fontsize=16,color="burlywood",shape="box"];4691[label="yvy300/Left yvy3000",fontsize=10,color="white",style="solid",shape="box"];2626 -> 4691[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4691 -> 2702[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4692[label="yvy300/Right yvy3000",fontsize=10,color="white",style="solid",shape="box"];2626 -> 4692[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4692 -> 2703[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2627[label="primEqInt yvy400 yvy300",fontsize=16,color="burlywood",shape="triangle"];4693[label="yvy400/Pos yvy4000",fontsize=10,color="white",style="solid",shape="box"];2627 -> 4693[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4693 -> 2704[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4694[label="yvy400/Neg yvy4000",fontsize=10,color="white",style="solid",shape="box"];2627 -> 4694[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4694 -> 2705[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2628[label="primEqChar yvy400 yvy300",fontsize=16,color="burlywood",shape="box"];4695[label="yvy400/Char yvy4000",fontsize=10,color="white",style="solid",shape="box"];2628 -> 4695[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4695 -> 2706[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2629[label="yvy4000 : yvy4001 == yvy300",fontsize=16,color="burlywood",shape="box"];4696[label="yvy300/yvy3000 : yvy3001",fontsize=10,color="white",style="solid",shape="box"];2629 -> 4696[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4696 -> 2707[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4697[label="yvy300/[]",fontsize=10,color="white",style="solid",shape="box"];2629 -> 4697[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4697 -> 2708[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2630[label="[] == yvy300",fontsize=16,color="burlywood",shape="box"];4698[label="yvy300/yvy3000 : yvy3001",fontsize=10,color="white",style="solid",shape="box"];2630 -> 4698[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4698 -> 2709[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4699[label="yvy300/[]",fontsize=10,color="white",style="solid",shape="box"];2630 -> 4699[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4699 -> 2710[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2631[label="primEqDouble yvy400 yvy300",fontsize=16,color="burlywood",shape="box"];4700[label="yvy400/Double yvy4000 yvy4001",fontsize=10,color="white",style="solid",shape="box"];2631 -> 4700[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4700 -> 2711[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 429 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.19 429[label="compare (Just yvy20) (Just yvy15) == LT",fontsize=16,color="magenta"];429 -> 539[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 429 -> 540[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 430[label="FiniteMap.splitGT1 (Just yvy15) yvy16 yvy17 yvy18 yvy19 (Just yvy20) False",fontsize=16,color="black",shape="box"];430 -> 541[label="",style="solid", color="black", weight=3]; 47.25/23.19 431[label="FiniteMap.splitGT1 (Just yvy15) yvy16 yvy17 yvy18 yvy19 (Just yvy20) True",fontsize=16,color="black",shape="box"];431 -> 542[label="",style="solid", color="black", weight=3]; 47.25/23.19 435 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.19 435[label="compare Nothing Nothing == GT",fontsize=16,color="magenta"];435 -> 543[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 435 -> 544[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 436[label="FiniteMap.splitLT1 Nothing yvy31 yvy32 yvy33 yvy34 Nothing False",fontsize=16,color="black",shape="box"];436 -> 545[label="",style="solid", color="black", weight=3]; 47.25/23.19 437[label="FiniteMap.splitLT1 Nothing yvy31 yvy32 yvy33 yvy34 Nothing True",fontsize=16,color="black",shape="box"];437 -> 546[label="",style="solid", color="black", weight=3]; 47.25/23.19 442 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.19 442[label="compare Nothing (Just yvy300) == GT",fontsize=16,color="magenta"];442 -> 547[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 442 -> 548[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 443[label="FiniteMap.splitLT1 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing False",fontsize=16,color="black",shape="box"];443 -> 549[label="",style="solid", color="black", weight=3]; 47.25/23.19 444[label="FiniteMap.splitLT1 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing True",fontsize=16,color="black",shape="box"];444 -> 550[label="",style="solid", color="black", weight=3]; 47.25/23.19 445[label="FiniteMap.splitLT4 FiniteMap.EmptyFM Nothing",fontsize=16,color="black",shape="box"];445 -> 551[label="",style="solid", color="black", weight=3]; 47.25/23.19 446 -> 27[label="",style="dashed", color="red", weight=0]; 47.25/23.19 446[label="FiniteMap.splitLT3 (FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334) Nothing",fontsize=16,color="magenta"];446 -> 552[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 446 -> 553[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 446 -> 554[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 446 -> 555[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 446 -> 556[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 446 -> 557[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 451 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.19 451[label="compare (Just yvy400) Nothing == GT",fontsize=16,color="magenta"];451 -> 559[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 451 -> 560[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 452[label="FiniteMap.splitLT1 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) False",fontsize=16,color="black",shape="box"];452 -> 561[label="",style="solid", color="black", weight=3]; 47.25/23.19 453[label="FiniteMap.splitLT1 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) True",fontsize=16,color="black",shape="box"];453 -> 562[label="",style="solid", color="black", weight=3]; 47.25/23.19 454[label="FiniteMap.splitLT4 FiniteMap.EmptyFM (Just yvy400)",fontsize=16,color="black",shape="box"];454 -> 563[label="",style="solid", color="black", weight=3]; 47.25/23.19 455 -> 27[label="",style="dashed", color="red", weight=0]; 47.25/23.19 455[label="FiniteMap.splitLT3 (FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334) (Just yvy400)",fontsize=16,color="magenta"];455 -> 564[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 455 -> 565[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 455 -> 566[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 455 -> 567[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 455 -> 568[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 455 -> 569[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 459 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.19 459[label="compare (Just yvy35) (Just yvy30) == GT",fontsize=16,color="magenta"];459 -> 570[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 459 -> 571[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 460[label="FiniteMap.splitLT1 (Just yvy30) yvy31 yvy32 yvy33 yvy34 (Just yvy35) False",fontsize=16,color="black",shape="box"];460 -> 572[label="",style="solid", color="black", weight=3]; 47.25/23.19 461[label="FiniteMap.splitLT1 (Just yvy30) yvy31 yvy32 yvy33 yvy34 (Just yvy35) True",fontsize=16,color="black",shape="box"];461 -> 573[label="",style="solid", color="black", weight=3]; 47.25/23.19 462[label="LT",fontsize=16,color="green",shape="box"];463 -> 2502[label="",style="dashed", color="red", weight=0]; 47.25/23.19 463[label="compare2 Nothing Nothing True",fontsize=16,color="magenta"];463 -> 2530[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 463 -> 2531[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 463 -> 2532[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 464[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 Nothing yvy41 False",fontsize=16,color="black",shape="box"];464 -> 575[label="",style="solid", color="black", weight=3]; 47.25/23.19 465[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 Nothing yvy41 True",fontsize=16,color="black",shape="box"];465 -> 576[label="",style="solid", color="black", weight=3]; 47.25/23.19 466[label="LT",fontsize=16,color="green",shape="box"];467 -> 2502[label="",style="dashed", color="red", weight=0]; 47.25/23.19 467[label="compare2 Nothing (Just yvy500) False",fontsize=16,color="magenta"];467 -> 2533[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 467 -> 2534[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 467 -> 2535[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 468[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 Nothing yvy41 False",fontsize=16,color="black",shape="box"];468 -> 578[label="",style="solid", color="black", weight=3]; 47.25/23.19 469[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 Nothing yvy41 True",fontsize=16,color="black",shape="box"];469 -> 579[label="",style="solid", color="black", weight=3]; 47.25/23.19 470[label="LT",fontsize=16,color="green",shape="box"];471 -> 2502[label="",style="dashed", color="red", weight=0]; 47.25/23.19 471[label="compare2 (Just yvy400) Nothing False",fontsize=16,color="magenta"];471 -> 2536[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 471 -> 2537[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 471 -> 2538[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 472[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 False",fontsize=16,color="black",shape="box"];472 -> 580[label="",style="solid", color="black", weight=3]; 47.25/23.19 473[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 True",fontsize=16,color="black",shape="box"];473 -> 581[label="",style="solid", color="black", weight=3]; 47.25/23.19 474[label="LT",fontsize=16,color="green",shape="box"];475 -> 2502[label="",style="dashed", color="red", weight=0]; 47.25/23.19 475[label="compare2 (Just yvy400) (Just yvy500) (yvy400 == yvy500)",fontsize=16,color="magenta"];475 -> 2539[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 475 -> 2540[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 475 -> 2541[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 476[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 False",fontsize=16,color="black",shape="box"];476 -> 585[label="",style="solid", color="black", weight=3]; 47.25/23.19 477[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 True",fontsize=16,color="black",shape="box"];477 -> 586[label="",style="solid", color="black", weight=3]; 47.25/23.19 478[label="primCmpInt (Pos (primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="black",shape="box"];478 -> 587[label="",style="solid", color="black", weight=3]; 47.25/23.19 479[label="primCmpInt (Pos (primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) Zero)) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64)",fontsize=16,color="black",shape="box"];479 -> 588[label="",style="solid", color="black", weight=3]; 47.25/23.19 480 -> 713[label="",style="dashed", color="red", weight=0]; 47.25/23.19 480[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 < FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64)",fontsize=16,color="magenta"];480 -> 714[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 481 -> 590[label="",style="dashed", color="red", weight=0]; 47.25/23.19 481[label="FiniteMap.mkBalBranch yvy50 yvy51 (FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64) yvy53) yvy54",fontsize=16,color="magenta"];481 -> 591[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 482[label="primCmpInt (Neg (primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="black",shape="box"];482 -> 601[label="",style="solid", color="black", weight=3]; 47.25/23.19 483[label="primCmpInt (Neg (primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) Zero)) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64)",fontsize=16,color="black",shape="box"];483 -> 602[label="",style="solid", color="black", weight=3]; 47.25/23.19 484 -> 724[label="",style="dashed", color="red", weight=0]; 47.25/23.19 484[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 < FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64)",fontsize=16,color="magenta"];484 -> 725[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 485 -> 590[label="",style="dashed", color="red", weight=0]; 47.25/23.19 485[label="FiniteMap.mkBalBranch yvy50 yvy51 (FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64) yvy53) yvy54",fontsize=16,color="magenta"];485 -> 592[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 486[label="LT",fontsize=16,color="green",shape="box"];487[label="compare Nothing Nothing",fontsize=16,color="black",shape="triangle"];487 -> 604[label="",style="solid", color="black", weight=3]; 47.25/23.19 488[label="FiniteMap.splitGT0 Nothing yvy31 yvy32 yvy33 yvy34 Nothing otherwise",fontsize=16,color="black",shape="box"];488 -> 605[label="",style="solid", color="black", weight=3]; 47.25/23.19 489 -> 12[label="",style="dashed", color="red", weight=0]; 47.25/23.19 489[label="FiniteMap.mkVBalBranch Nothing yvy31 (FiniteMap.splitGT yvy33 Nothing) yvy34",fontsize=16,color="magenta"];489 -> 606[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 489 -> 607[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 489 -> 608[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 489 -> 609[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 2684[label="compare1 Nothing yvy500 (Nothing <= yvy500)",fontsize=16,color="burlywood",shape="box"];4701[label="yvy500/Nothing",fontsize=10,color="white",style="solid",shape="box"];2684 -> 4701[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4701 -> 2750[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4702[label="yvy500/Just yvy5000",fontsize=10,color="white",style="solid",shape="box"];2684 -> 4702[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4702 -> 2751[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2685[label="compare1 (Just yvy4900) yvy500 (Just yvy4900 <= yvy500)",fontsize=16,color="burlywood",shape="box"];4703[label="yvy500/Nothing",fontsize=10,color="white",style="solid",shape="box"];2685 -> 4703[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4703 -> 2752[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4704[label="yvy500/Just yvy5000",fontsize=10,color="white",style="solid",shape="box"];2685 -> 4704[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4704 -> 2753[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 490[label="LT",fontsize=16,color="green",shape="box"];491[label="compare Nothing (Just yvy300)",fontsize=16,color="black",shape="triangle"];491 -> 610[label="",style="solid", color="black", weight=3]; 47.25/23.19 492[label="FiniteMap.splitGT0 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing otherwise",fontsize=16,color="black",shape="box"];492 -> 611[label="",style="solid", color="black", weight=3]; 47.25/23.19 493 -> 12[label="",style="dashed", color="red", weight=0]; 47.25/23.19 493[label="FiniteMap.mkVBalBranch (Just yvy300) yvy31 (FiniteMap.splitGT yvy33 Nothing) yvy34",fontsize=16,color="magenta"];493 -> 612[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 493 -> 613[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 493 -> 614[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 493 -> 615[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 494 -> 67[label="",style="dashed", color="red", weight=0]; 47.25/23.19 494[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];495[label="Nothing",fontsize=16,color="green",shape="box"];496[label="yvy341",fontsize=16,color="green",shape="box"];497[label="yvy344",fontsize=16,color="green",shape="box"];498[label="yvy340",fontsize=16,color="green",shape="box"];499[label="yvy342",fontsize=16,color="green",shape="box"];500[label="yvy343",fontsize=16,color="green",shape="box"];501[label="LT",fontsize=16,color="green",shape="box"];502[label="compare (Just yvy400) Nothing",fontsize=16,color="black",shape="triangle"];502 -> 616[label="",style="solid", color="black", weight=3]; 47.25/23.19 503[label="FiniteMap.splitGT0 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) otherwise",fontsize=16,color="black",shape="box"];503 -> 617[label="",style="solid", color="black", weight=3]; 47.25/23.19 504 -> 12[label="",style="dashed", color="red", weight=0]; 47.25/23.19 504[label="FiniteMap.mkVBalBranch Nothing yvy31 (FiniteMap.splitGT yvy33 (Just yvy400)) yvy34",fontsize=16,color="magenta"];504 -> 618[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 504 -> 619[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 504 -> 620[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 504 -> 621[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 505 -> 67[label="",style="dashed", color="red", weight=0]; 47.25/23.19 505[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];506[label="Just yvy400",fontsize=16,color="green",shape="box"];507[label="yvy341",fontsize=16,color="green",shape="box"];508[label="yvy344",fontsize=16,color="green",shape="box"];509[label="yvy340",fontsize=16,color="green",shape="box"];510[label="yvy342",fontsize=16,color="green",shape="box"];511[label="yvy343",fontsize=16,color="green",shape="box"];2686[label="(yvy4000,yvy4001,yvy4002) == (yvy3000,yvy3001,yvy3002)",fontsize=16,color="black",shape="box"];2686 -> 2754[label="",style="solid", color="black", weight=3]; 47.25/23.19 2687[label="Integer yvy4000 == Integer yvy3000",fontsize=16,color="black",shape="box"];2687 -> 2755[label="",style="solid", color="black", weight=3]; 47.25/23.19 2688[label="False == False",fontsize=16,color="black",shape="box"];2688 -> 2756[label="",style="solid", color="black", weight=3]; 47.25/23.19 2689[label="False == True",fontsize=16,color="black",shape="box"];2689 -> 2757[label="",style="solid", color="black", weight=3]; 47.25/23.19 2690[label="True == False",fontsize=16,color="black",shape="box"];2690 -> 2758[label="",style="solid", color="black", weight=3]; 47.25/23.19 2691[label="True == True",fontsize=16,color="black",shape="box"];2691 -> 2759[label="",style="solid", color="black", weight=3]; 47.25/23.19 2692[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];2692 -> 2760[label="",style="solid", color="black", weight=3]; 47.25/23.19 2693[label="Nothing == Just yvy3000",fontsize=16,color="black",shape="box"];2693 -> 2761[label="",style="solid", color="black", weight=3]; 47.25/23.19 2694[label="Just yvy4000 == Nothing",fontsize=16,color="black",shape="box"];2694 -> 2762[label="",style="solid", color="black", weight=3]; 47.25/23.19 2695[label="Just yvy4000 == Just yvy3000",fontsize=16,color="black",shape="box"];2695 -> 2763[label="",style="solid", color="black", weight=3]; 47.25/23.19 2696[label="primEqFloat (Float yvy4000 yvy4001) yvy300",fontsize=16,color="burlywood",shape="box"];4705[label="yvy300/Float yvy3000 yvy3001",fontsize=10,color="white",style="solid",shape="box"];2696 -> 4705[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4705 -> 2764[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2697[label="(yvy4000,yvy4001) == (yvy3000,yvy3001)",fontsize=16,color="black",shape="box"];2697 -> 2765[label="",style="solid", color="black", weight=3]; 47.25/23.19 2698[label="() == ()",fontsize=16,color="black",shape="box"];2698 -> 2766[label="",style="solid", color="black", weight=3]; 47.25/23.19 2699[label="yvy4000 :% yvy4001 == yvy3000 :% yvy3001",fontsize=16,color="black",shape="box"];2699 -> 2767[label="",style="solid", color="black", weight=3]; 47.25/23.19 2700[label="Left yvy4000 == Left yvy3000",fontsize=16,color="black",shape="box"];2700 -> 2768[label="",style="solid", color="black", weight=3]; 47.25/23.19 2701[label="Left yvy4000 == Right yvy3000",fontsize=16,color="black",shape="box"];2701 -> 2769[label="",style="solid", color="black", weight=3]; 47.25/23.19 2702[label="Right yvy4000 == Left yvy3000",fontsize=16,color="black",shape="box"];2702 -> 2770[label="",style="solid", color="black", weight=3]; 47.25/23.19 2703[label="Right yvy4000 == Right yvy3000",fontsize=16,color="black",shape="box"];2703 -> 2771[label="",style="solid", color="black", weight=3]; 47.25/23.19 2704[label="primEqInt (Pos yvy4000) yvy300",fontsize=16,color="burlywood",shape="box"];4706[label="yvy4000/Succ yvy40000",fontsize=10,color="white",style="solid",shape="box"];2704 -> 4706[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4706 -> 2772[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4707[label="yvy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2704 -> 4707[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4707 -> 2773[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2705[label="primEqInt (Neg yvy4000) yvy300",fontsize=16,color="burlywood",shape="box"];4708[label="yvy4000/Succ yvy40000",fontsize=10,color="white",style="solid",shape="box"];2705 -> 4708[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4708 -> 2774[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4709[label="yvy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2705 -> 4709[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4709 -> 2775[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2706[label="primEqChar (Char yvy4000) yvy300",fontsize=16,color="burlywood",shape="box"];4710[label="yvy300/Char yvy3000",fontsize=10,color="white",style="solid",shape="box"];2706 -> 4710[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4710 -> 2776[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2707[label="yvy4000 : yvy4001 == yvy3000 : yvy3001",fontsize=16,color="black",shape="box"];2707 -> 2777[label="",style="solid", color="black", weight=3]; 47.25/23.19 2708[label="yvy4000 : yvy4001 == []",fontsize=16,color="black",shape="box"];2708 -> 2778[label="",style="solid", color="black", weight=3]; 47.25/23.19 2709[label="[] == yvy3000 : yvy3001",fontsize=16,color="black",shape="box"];2709 -> 2779[label="",style="solid", color="black", weight=3]; 47.25/23.19 2710[label="[] == []",fontsize=16,color="black",shape="box"];2710 -> 2780[label="",style="solid", color="black", weight=3]; 47.25/23.19 2711[label="primEqDouble (Double yvy4000 yvy4001) yvy300",fontsize=16,color="burlywood",shape="box"];4711[label="yvy300/Double yvy3000 yvy3001",fontsize=10,color="white",style="solid",shape="box"];2711 -> 4711[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4711 -> 2781[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 539[label="LT",fontsize=16,color="green",shape="box"];540[label="compare (Just yvy20) (Just yvy15)",fontsize=16,color="black",shape="triangle"];540 -> 660[label="",style="solid", color="black", weight=3]; 47.25/23.19 541[label="FiniteMap.splitGT0 (Just yvy15) yvy16 yvy17 yvy18 yvy19 (Just yvy20) otherwise",fontsize=16,color="black",shape="box"];541 -> 661[label="",style="solid", color="black", weight=3]; 47.25/23.19 542 -> 12[label="",style="dashed", color="red", weight=0]; 47.25/23.19 542[label="FiniteMap.mkVBalBranch (Just yvy15) yvy16 (FiniteMap.splitGT yvy18 (Just yvy20)) yvy19",fontsize=16,color="magenta"];542 -> 662[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 542 -> 663[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 542 -> 664[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 542 -> 665[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 543[label="GT",fontsize=16,color="green",shape="box"];544 -> 487[label="",style="dashed", color="red", weight=0]; 47.25/23.19 544[label="compare Nothing Nothing",fontsize=16,color="magenta"];545[label="FiniteMap.splitLT0 Nothing yvy31 yvy32 yvy33 yvy34 Nothing otherwise",fontsize=16,color="black",shape="box"];545 -> 666[label="",style="solid", color="black", weight=3]; 47.25/23.19 546 -> 12[label="",style="dashed", color="red", weight=0]; 47.25/23.19 546[label="FiniteMap.mkVBalBranch Nothing yvy31 yvy33 (FiniteMap.splitLT yvy34 Nothing)",fontsize=16,color="magenta"];546 -> 667[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 546 -> 668[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 546 -> 669[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 546 -> 670[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 547[label="GT",fontsize=16,color="green",shape="box"];548 -> 491[label="",style="dashed", color="red", weight=0]; 47.25/23.19 548[label="compare Nothing (Just yvy300)",fontsize=16,color="magenta"];549[label="FiniteMap.splitLT0 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing otherwise",fontsize=16,color="black",shape="box"];549 -> 671[label="",style="solid", color="black", weight=3]; 47.25/23.19 550 -> 12[label="",style="dashed", color="red", weight=0]; 47.25/23.19 550[label="FiniteMap.mkVBalBranch (Just yvy300) yvy31 yvy33 (FiniteMap.splitLT yvy34 Nothing)",fontsize=16,color="magenta"];550 -> 672[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 550 -> 673[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 550 -> 674[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 550 -> 675[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 551 -> 67[label="",style="dashed", color="red", weight=0]; 47.25/23.19 551[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];552[label="Nothing",fontsize=16,color="green",shape="box"];553[label="yvy331",fontsize=16,color="green",shape="box"];554[label="yvy334",fontsize=16,color="green",shape="box"];555[label="yvy330",fontsize=16,color="green",shape="box"];556[label="yvy332",fontsize=16,color="green",shape="box"];557[label="yvy333",fontsize=16,color="green",shape="box"];559[label="GT",fontsize=16,color="green",shape="box"];560 -> 502[label="",style="dashed", color="red", weight=0]; 47.25/23.19 560[label="compare (Just yvy400) Nothing",fontsize=16,color="magenta"];561[label="FiniteMap.splitLT0 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) otherwise",fontsize=16,color="black",shape="box"];561 -> 677[label="",style="solid", color="black", weight=3]; 47.25/23.19 562 -> 12[label="",style="dashed", color="red", weight=0]; 47.25/23.19 562[label="FiniteMap.mkVBalBranch Nothing yvy31 yvy33 (FiniteMap.splitLT yvy34 (Just yvy400))",fontsize=16,color="magenta"];562 -> 678[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 562 -> 679[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 562 -> 680[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 562 -> 681[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 563 -> 67[label="",style="dashed", color="red", weight=0]; 47.25/23.19 563[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];564[label="Just yvy400",fontsize=16,color="green",shape="box"];565[label="yvy331",fontsize=16,color="green",shape="box"];566[label="yvy334",fontsize=16,color="green",shape="box"];567[label="yvy330",fontsize=16,color="green",shape="box"];568[label="yvy332",fontsize=16,color="green",shape="box"];569[label="yvy333",fontsize=16,color="green",shape="box"];570[label="GT",fontsize=16,color="green",shape="box"];571 -> 540[label="",style="dashed", color="red", weight=0]; 47.25/23.19 571[label="compare (Just yvy35) (Just yvy30)",fontsize=16,color="magenta"];571 -> 682[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 571 -> 683[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 572[label="FiniteMap.splitLT0 (Just yvy30) yvy31 yvy32 yvy33 yvy34 (Just yvy35) otherwise",fontsize=16,color="black",shape="box"];572 -> 684[label="",style="solid", color="black", weight=3]; 47.25/23.19 573 -> 12[label="",style="dashed", color="red", weight=0]; 47.25/23.19 573[label="FiniteMap.mkVBalBranch (Just yvy30) yvy31 yvy33 (FiniteMap.splitLT yvy34 (Just yvy35))",fontsize=16,color="magenta"];573 -> 685[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 573 -> 686[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 573 -> 687[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 573 -> 688[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 2530[label="Nothing",fontsize=16,color="green",shape="box"];2531[label="True",fontsize=16,color="green",shape="box"];2532[label="Nothing",fontsize=16,color="green",shape="box"];575 -> 689[label="",style="dashed", color="red", weight=0]; 47.25/23.19 575[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 Nothing yvy41 (Nothing > Nothing)",fontsize=16,color="magenta"];575 -> 690[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 576 -> 590[label="",style="dashed", color="red", weight=0]; 47.25/23.19 576[label="FiniteMap.mkBalBranch Nothing yvy51 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy53 Nothing yvy41) yvy54",fontsize=16,color="magenta"];576 -> 593[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 576 -> 594[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 2533[label="Just yvy500",fontsize=16,color="green",shape="box"];2534[label="False",fontsize=16,color="green",shape="box"];2535[label="Nothing",fontsize=16,color="green",shape="box"];578 -> 691[label="",style="dashed", color="red", weight=0]; 47.25/23.19 578[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 Nothing yvy41 (Nothing > Just yvy500)",fontsize=16,color="magenta"];578 -> 692[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 579 -> 590[label="",style="dashed", color="red", weight=0]; 47.25/23.19 579[label="FiniteMap.mkBalBranch (Just yvy500) yvy51 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy53 Nothing yvy41) yvy54",fontsize=16,color="magenta"];579 -> 595[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 579 -> 596[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 2536[label="Nothing",fontsize=16,color="green",shape="box"];2537[label="False",fontsize=16,color="green",shape="box"];2538[label="Just yvy400",fontsize=16,color="green",shape="box"];580 -> 693[label="",style="dashed", color="red", weight=0]; 47.25/23.19 580[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 (Just yvy400 > Nothing)",fontsize=16,color="magenta"];580 -> 694[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 581 -> 590[label="",style="dashed", color="red", weight=0]; 47.25/23.19 581[label="FiniteMap.mkBalBranch Nothing yvy51 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy53 (Just yvy400) yvy41) yvy54",fontsize=16,color="magenta"];581 -> 597[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 581 -> 598[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 2539[label="Just yvy500",fontsize=16,color="green",shape="box"];2540[label="yvy400 == yvy500",fontsize=16,color="blue",shape="box"];4712[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 4712[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4712 -> 2588[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4713[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 4713[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4713 -> 2589[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4714[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 4714[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4714 -> 2590[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4715[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 4715[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4715 -> 2591[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4716[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 4716[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4716 -> 2592[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4717[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 4717[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4717 -> 2593[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4718[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 4718[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4718 -> 2594[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4719[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 4719[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4719 -> 2595[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4720[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 4720[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4720 -> 2596[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4721[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 4721[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4721 -> 2597[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4722[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 4722[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4722 -> 2598[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4723[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 4723[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4723 -> 2599[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4724[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 4724[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4724 -> 2600[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4725[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 4725[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4725 -> 2601[label="",style="solid", color="blue", weight=3]; 47.25/23.19 2541[label="Just yvy400",fontsize=16,color="green",shape="box"];585 -> 709[label="",style="dashed", color="red", weight=0]; 47.25/23.19 585[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 (Just yvy400 > Just yvy500)",fontsize=16,color="magenta"];585 -> 710[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 586 -> 590[label="",style="dashed", color="red", weight=0]; 47.25/23.19 586[label="FiniteMap.mkBalBranch (Just yvy500) yvy51 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy53 (Just yvy400) yvy41) yvy54",fontsize=16,color="magenta"];586 -> 599[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 586 -> 600[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 587[label="primCmpInt (Pos (primPlusNat (primMulNat (Succ (Succ (Succ (Succ Zero)))) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="black",shape="box"];587 -> 711[label="",style="solid", color="black", weight=3]; 47.25/23.19 588[label="primCmpInt (Pos Zero) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64)",fontsize=16,color="black",shape="box"];588 -> 712[label="",style="solid", color="black", weight=3]; 47.25/23.19 714 -> 3335[label="",style="dashed", color="red", weight=0]; 47.25/23.19 714[label="FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 < FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="magenta"];714 -> 3336[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 714 -> 3337[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 713[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 yvy79",fontsize=16,color="burlywood",shape="triangle"];4726[label="yvy79/False",fontsize=10,color="white",style="solid",shape="box"];713 -> 4726[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4726 -> 717[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4727[label="yvy79/True",fontsize=10,color="white",style="solid",shape="box"];713 -> 4727[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4727 -> 718[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 591 -> 12[label="",style="dashed", color="red", weight=0]; 47.25/23.19 591[label="FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64) yvy53",fontsize=16,color="magenta"];591 -> 719[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 591 -> 720[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 590[label="FiniteMap.mkBalBranch yvy50 yvy51 yvy67 yvy54",fontsize=16,color="black",shape="triangle"];590 -> 721[label="",style="solid", color="black", weight=3]; 47.25/23.19 601[label="primCmpInt (Neg (primPlusNat (primMulNat (Succ (Succ (Succ (Succ Zero)))) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="black",shape="box"];601 -> 722[label="",style="solid", color="black", weight=3]; 47.25/23.19 602[label="primCmpInt (Neg Zero) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64)",fontsize=16,color="black",shape="box"];602 -> 723[label="",style="solid", color="black", weight=3]; 47.25/23.19 725 -> 3335[label="",style="dashed", color="red", weight=0]; 47.25/23.19 725[label="FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 < FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="magenta"];725 -> 3338[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 725 -> 3339[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 724[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 yvy80",fontsize=16,color="burlywood",shape="triangle"];4728[label="yvy80/False",fontsize=10,color="white",style="solid",shape="box"];724 -> 4728[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4728 -> 728[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4729[label="yvy80/True",fontsize=10,color="white",style="solid",shape="box"];724 -> 4729[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4729 -> 729[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 592 -> 12[label="",style="dashed", color="red", weight=0]; 47.25/23.19 592[label="FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64) yvy53",fontsize=16,color="magenta"];592 -> 730[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 592 -> 731[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 604[label="compare3 Nothing Nothing",fontsize=16,color="black",shape="box"];604 -> 732[label="",style="solid", color="black", weight=3]; 47.25/23.19 605[label="FiniteMap.splitGT0 Nothing yvy31 yvy32 yvy33 yvy34 Nothing True",fontsize=16,color="black",shape="box"];605 -> 733[label="",style="solid", color="black", weight=3]; 47.25/23.19 606[label="Nothing",fontsize=16,color="green",shape="box"];607[label="yvy34",fontsize=16,color="green",shape="box"];608 -> 230[label="",style="dashed", color="red", weight=0]; 47.25/23.19 608[label="FiniteMap.splitGT yvy33 Nothing",fontsize=16,color="magenta"];608 -> 734[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 609[label="yvy31",fontsize=16,color="green",shape="box"];2750[label="compare1 Nothing Nothing (Nothing <= Nothing)",fontsize=16,color="black",shape="box"];2750 -> 2815[label="",style="solid", color="black", weight=3]; 47.25/23.19 2751[label="compare1 Nothing (Just yvy5000) (Nothing <= Just yvy5000)",fontsize=16,color="black",shape="box"];2751 -> 2816[label="",style="solid", color="black", weight=3]; 47.25/23.19 2752[label="compare1 (Just yvy4900) Nothing (Just yvy4900 <= Nothing)",fontsize=16,color="black",shape="box"];2752 -> 2817[label="",style="solid", color="black", weight=3]; 47.25/23.19 2753[label="compare1 (Just yvy4900) (Just yvy5000) (Just yvy4900 <= Just yvy5000)",fontsize=16,color="black",shape="box"];2753 -> 2818[label="",style="solid", color="black", weight=3]; 47.25/23.19 610[label="compare3 Nothing (Just yvy300)",fontsize=16,color="black",shape="box"];610 -> 735[label="",style="solid", color="black", weight=3]; 47.25/23.19 611[label="FiniteMap.splitGT0 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing True",fontsize=16,color="black",shape="box"];611 -> 736[label="",style="solid", color="black", weight=3]; 47.25/23.19 612[label="Just yvy300",fontsize=16,color="green",shape="box"];613[label="yvy34",fontsize=16,color="green",shape="box"];614 -> 230[label="",style="dashed", color="red", weight=0]; 47.25/23.19 614[label="FiniteMap.splitGT yvy33 Nothing",fontsize=16,color="magenta"];614 -> 737[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 615[label="yvy31",fontsize=16,color="green",shape="box"];616[label="compare3 (Just yvy400) Nothing",fontsize=16,color="black",shape="box"];616 -> 738[label="",style="solid", color="black", weight=3]; 47.25/23.19 617[label="FiniteMap.splitGT0 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) True",fontsize=16,color="black",shape="box"];617 -> 739[label="",style="solid", color="black", weight=3]; 47.25/23.19 618[label="Nothing",fontsize=16,color="green",shape="box"];619[label="yvy34",fontsize=16,color="green",shape="box"];620 -> 282[label="",style="dashed", color="red", weight=0]; 47.25/23.19 620[label="FiniteMap.splitGT yvy33 (Just yvy400)",fontsize=16,color="magenta"];620 -> 740[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 621[label="yvy31",fontsize=16,color="green",shape="box"];2754 -> 2911[label="",style="dashed", color="red", weight=0]; 47.25/23.19 2754[label="yvy4000 == yvy3000 && yvy4001 == yvy3001 && yvy4002 == yvy3002",fontsize=16,color="magenta"];2754 -> 2912[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 2754 -> 2913[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 2755 -> 2627[label="",style="dashed", color="red", weight=0]; 47.25/23.19 2755[label="primEqInt yvy4000 yvy3000",fontsize=16,color="magenta"];2755 -> 2825[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 2755 -> 2826[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 2756[label="True",fontsize=16,color="green",shape="box"];2757[label="False",fontsize=16,color="green",shape="box"];2758[label="False",fontsize=16,color="green",shape="box"];2759[label="True",fontsize=16,color="green",shape="box"];2760[label="True",fontsize=16,color="green",shape="box"];2761[label="False",fontsize=16,color="green",shape="box"];2762[label="False",fontsize=16,color="green",shape="box"];2763[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4730[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2763 -> 4730[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4730 -> 2827[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4731[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2763 -> 4731[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4731 -> 2828[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4732[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2763 -> 4732[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4732 -> 2829[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4733[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2763 -> 4733[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4733 -> 2830[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4734[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2763 -> 4734[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4734 -> 2831[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4735[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2763 -> 4735[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4735 -> 2832[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4736[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2763 -> 4736[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4736 -> 2833[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4737[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2763 -> 4737[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4737 -> 2834[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4738[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2763 -> 4738[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4738 -> 2835[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4739[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2763 -> 4739[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4739 -> 2836[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4740[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2763 -> 4740[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4740 -> 2837[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4741[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2763 -> 4741[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4741 -> 2838[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4742[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2763 -> 4742[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4742 -> 2839[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4743[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2763 -> 4743[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4743 -> 2840[label="",style="solid", color="blue", weight=3]; 47.25/23.19 2764[label="primEqFloat (Float yvy4000 yvy4001) (Float yvy3000 yvy3001)",fontsize=16,color="black",shape="box"];2764 -> 2841[label="",style="solid", color="black", weight=3]; 47.25/23.19 2765 -> 2911[label="",style="dashed", color="red", weight=0]; 47.25/23.19 2765[label="yvy4000 == yvy3000 && yvy4001 == yvy3001",fontsize=16,color="magenta"];2765 -> 2914[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 2765 -> 2915[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 2766[label="True",fontsize=16,color="green",shape="box"];2767 -> 2911[label="",style="dashed", color="red", weight=0]; 47.25/23.19 2767[label="yvy4000 == yvy3000 && yvy4001 == yvy3001",fontsize=16,color="magenta"];2767 -> 2916[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 2767 -> 2917[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 2768[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4744[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4744[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4744 -> 2852[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4745[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4745[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4745 -> 2853[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4746[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4746[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4746 -> 2854[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4747[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4747[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4747 -> 2855[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4748[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4748[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4748 -> 2856[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4749[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4749[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4749 -> 2857[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4750[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4750[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4750 -> 2858[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4751[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4751[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4751 -> 2859[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4752[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4752[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4752 -> 2860[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4753[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4753[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4753 -> 2861[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4754[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4754[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4754 -> 2862[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4755[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4755[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4755 -> 2863[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4756[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4756[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4756 -> 2864[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4757[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4757[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4757 -> 2865[label="",style="solid", color="blue", weight=3]; 47.25/23.19 2769[label="False",fontsize=16,color="green",shape="box"];2770[label="False",fontsize=16,color="green",shape="box"];2771[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4758[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 4758[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4758 -> 2866[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4759[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 4759[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4759 -> 2867[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4760[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 4760[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4760 -> 2868[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4761[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 4761[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4761 -> 2869[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4762[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 4762[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4762 -> 2870[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4763[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 4763[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4763 -> 2871[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4764[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 4764[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4764 -> 2872[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4765[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 4765[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4765 -> 2873[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4766[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 4766[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4766 -> 2874[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4767[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 4767[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4767 -> 2875[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4768[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 4768[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4768 -> 2876[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4769[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 4769[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4769 -> 2877[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4770[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 4770[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4770 -> 2878[label="",style="solid", color="blue", weight=3]; 47.25/23.19 4771[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 4771[label="",style="solid", color="blue", weight=9]; 47.25/23.19 4771 -> 2879[label="",style="solid", color="blue", weight=3]; 47.25/23.19 2772[label="primEqInt (Pos (Succ yvy40000)) yvy300",fontsize=16,color="burlywood",shape="box"];4772[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];2772 -> 4772[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4772 -> 2880[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4773[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];2772 -> 4773[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4773 -> 2881[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2773[label="primEqInt (Pos Zero) yvy300",fontsize=16,color="burlywood",shape="box"];4774[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];2773 -> 4774[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4774 -> 2882[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4775[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];2773 -> 4775[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4775 -> 2883[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2774[label="primEqInt (Neg (Succ yvy40000)) yvy300",fontsize=16,color="burlywood",shape="box"];4776[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];2774 -> 4776[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4776 -> 2884[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4777[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];2774 -> 4777[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4777 -> 2885[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2775[label="primEqInt (Neg Zero) yvy300",fontsize=16,color="burlywood",shape="box"];4778[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];2775 -> 4778[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4778 -> 2886[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4779[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];2775 -> 4779[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4779 -> 2887[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 2776[label="primEqChar (Char yvy4000) (Char yvy3000)",fontsize=16,color="black",shape="box"];2776 -> 2888[label="",style="solid", color="black", weight=3]; 47.25/23.19 2777 -> 2911[label="",style="dashed", color="red", weight=0]; 47.25/23.19 2777[label="yvy4000 == yvy3000 && yvy4001 == yvy3001",fontsize=16,color="magenta"];2777 -> 2918[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 2777 -> 2919[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 2778[label="False",fontsize=16,color="green",shape="box"];2779[label="False",fontsize=16,color="green",shape="box"];2780[label="True",fontsize=16,color="green",shape="box"];2781[label="primEqDouble (Double yvy4000 yvy4001) (Double yvy3000 yvy3001)",fontsize=16,color="black",shape="box"];2781 -> 2889[label="",style="solid", color="black", weight=3]; 47.25/23.19 660[label="compare3 (Just yvy20) (Just yvy15)",fontsize=16,color="black",shape="box"];660 -> 828[label="",style="solid", color="black", weight=3]; 47.25/23.19 661[label="FiniteMap.splitGT0 (Just yvy15) yvy16 yvy17 yvy18 yvy19 (Just yvy20) True",fontsize=16,color="black",shape="box"];661 -> 829[label="",style="solid", color="black", weight=3]; 47.25/23.19 662[label="Just yvy15",fontsize=16,color="green",shape="box"];663[label="yvy19",fontsize=16,color="green",shape="box"];664 -> 282[label="",style="dashed", color="red", weight=0]; 47.25/23.19 664[label="FiniteMap.splitGT yvy18 (Just yvy20)",fontsize=16,color="magenta"];664 -> 830[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 664 -> 831[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 665[label="yvy16",fontsize=16,color="green",shape="box"];666[label="FiniteMap.splitLT0 Nothing yvy31 yvy32 yvy33 yvy34 Nothing True",fontsize=16,color="black",shape="box"];666 -> 832[label="",style="solid", color="black", weight=3]; 47.25/23.19 667[label="Nothing",fontsize=16,color="green",shape="box"];668 -> 196[label="",style="dashed", color="red", weight=0]; 47.25/23.19 668[label="FiniteMap.splitLT yvy34 Nothing",fontsize=16,color="magenta"];668 -> 833[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 669[label="yvy33",fontsize=16,color="green",shape="box"];670[label="yvy31",fontsize=16,color="green",shape="box"];671[label="FiniteMap.splitLT0 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing True",fontsize=16,color="black",shape="box"];671 -> 834[label="",style="solid", color="black", weight=3]; 47.25/23.19 672[label="Just yvy300",fontsize=16,color="green",shape="box"];673 -> 196[label="",style="dashed", color="red", weight=0]; 47.25/23.19 673[label="FiniteMap.splitLT yvy34 Nothing",fontsize=16,color="magenta"];673 -> 835[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 674[label="yvy33",fontsize=16,color="green",shape="box"];675[label="yvy31",fontsize=16,color="green",shape="box"];677[label="FiniteMap.splitLT0 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) True",fontsize=16,color="black",shape="box"];677 -> 836[label="",style="solid", color="black", weight=3]; 47.25/23.19 678[label="Nothing",fontsize=16,color="green",shape="box"];679 -> 207[label="",style="dashed", color="red", weight=0]; 47.25/23.19 679[label="FiniteMap.splitLT yvy34 (Just yvy400)",fontsize=16,color="magenta"];679 -> 837[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 680[label="yvy33",fontsize=16,color="green",shape="box"];681[label="yvy31",fontsize=16,color="green",shape="box"];682[label="yvy30",fontsize=16,color="green",shape="box"];683[label="yvy35",fontsize=16,color="green",shape="box"];684[label="FiniteMap.splitLT0 (Just yvy30) yvy31 yvy32 yvy33 yvy34 (Just yvy35) True",fontsize=16,color="black",shape="box"];684 -> 838[label="",style="solid", color="black", weight=3]; 47.25/23.19 685[label="Just yvy30",fontsize=16,color="green",shape="box"];686 -> 207[label="",style="dashed", color="red", weight=0]; 47.25/23.19 686[label="FiniteMap.splitLT yvy34 (Just yvy35)",fontsize=16,color="magenta"];686 -> 839[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 686 -> 840[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 687[label="yvy33",fontsize=16,color="green",shape="box"];688[label="yvy31",fontsize=16,color="green",shape="box"];690 -> 433[label="",style="dashed", color="red", weight=0]; 47.25/23.19 690[label="Nothing > Nothing",fontsize=16,color="magenta"];689[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 Nothing yvy41 yvy75",fontsize=16,color="burlywood",shape="triangle"];4780[label="yvy75/False",fontsize=10,color="white",style="solid",shape="box"];689 -> 4780[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4780 -> 841[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4781[label="yvy75/True",fontsize=10,color="white",style="solid",shape="box"];689 -> 4781[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4781 -> 842[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 593[label="Nothing",fontsize=16,color="green",shape="box"];594 -> 33[label="",style="dashed", color="red", weight=0]; 47.25/23.19 594[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy53 Nothing yvy41",fontsize=16,color="magenta"];594 -> 843[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 594 -> 844[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 692 -> 440[label="",style="dashed", color="red", weight=0]; 47.25/23.19 692[label="Nothing > Just yvy500",fontsize=16,color="magenta"];692 -> 845[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 691[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 Nothing yvy41 yvy76",fontsize=16,color="burlywood",shape="triangle"];4782[label="yvy76/False",fontsize=10,color="white",style="solid",shape="box"];691 -> 4782[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4782 -> 846[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4783[label="yvy76/True",fontsize=10,color="white",style="solid",shape="box"];691 -> 4783[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4783 -> 847[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 595[label="Just yvy500",fontsize=16,color="green",shape="box"];596 -> 33[label="",style="dashed", color="red", weight=0]; 47.25/23.19 596[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy53 Nothing yvy41",fontsize=16,color="magenta"];596 -> 848[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 596 -> 849[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 694 -> 449[label="",style="dashed", color="red", weight=0]; 47.25/23.19 694[label="Just yvy400 > Nothing",fontsize=16,color="magenta"];693[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 yvy77",fontsize=16,color="burlywood",shape="triangle"];4784[label="yvy77/False",fontsize=10,color="white",style="solid",shape="box"];693 -> 4784[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4784 -> 850[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4785[label="yvy77/True",fontsize=10,color="white",style="solid",shape="box"];693 -> 4785[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4785 -> 851[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 597[label="Nothing",fontsize=16,color="green",shape="box"];598 -> 33[label="",style="dashed", color="red", weight=0]; 47.25/23.19 598[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy53 (Just yvy400) yvy41",fontsize=16,color="magenta"];598 -> 852[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 598 -> 853[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 2588 -> 2560[label="",style="dashed", color="red", weight=0]; 47.25/23.19 2588[label="yvy400 == yvy500",fontsize=16,color="magenta"];2588 -> 2632[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 2589 -> 2561[label="",style="dashed", color="red", weight=0]; 47.25/23.19 2589[label="yvy400 == yvy500",fontsize=16,color="magenta"];2589 -> 2633[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 2590 -> 2562[label="",style="dashed", color="red", weight=0]; 47.25/23.19 2590[label="yvy400 == yvy500",fontsize=16,color="magenta"];2590 -> 2634[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 2591 -> 2563[label="",style="dashed", color="red", weight=0]; 47.25/23.19 2591[label="yvy400 == yvy500",fontsize=16,color="magenta"];2591 -> 2635[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 2592 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.19 2592[label="yvy400 == yvy500",fontsize=16,color="magenta"];2592 -> 2636[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 2593 -> 2565[label="",style="dashed", color="red", weight=0]; 47.25/23.19 2593[label="yvy400 == yvy500",fontsize=16,color="magenta"];2593 -> 2637[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 2594 -> 2566[label="",style="dashed", color="red", weight=0]; 47.25/23.19 2594[label="yvy400 == yvy500",fontsize=16,color="magenta"];2594 -> 2638[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 2595 -> 2567[label="",style="dashed", color="red", weight=0]; 47.25/23.19 2595[label="yvy400 == yvy500",fontsize=16,color="magenta"];2595 -> 2639[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 2596 -> 2568[label="",style="dashed", color="red", weight=0]; 47.25/23.19 2596[label="yvy400 == yvy500",fontsize=16,color="magenta"];2596 -> 2640[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 2597 -> 2569[label="",style="dashed", color="red", weight=0]; 47.25/23.19 2597[label="yvy400 == yvy500",fontsize=16,color="magenta"];2597 -> 2641[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 2598 -> 2570[label="",style="dashed", color="red", weight=0]; 47.25/23.19 2598[label="yvy400 == yvy500",fontsize=16,color="magenta"];2598 -> 2642[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 2599 -> 2571[label="",style="dashed", color="red", weight=0]; 47.25/23.19 2599[label="yvy400 == yvy500",fontsize=16,color="magenta"];2599 -> 2643[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 2600 -> 2572[label="",style="dashed", color="red", weight=0]; 47.25/23.19 2600[label="yvy400 == yvy500",fontsize=16,color="magenta"];2600 -> 2644[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 2601 -> 2573[label="",style="dashed", color="red", weight=0]; 47.25/23.19 2601[label="yvy400 == yvy500",fontsize=16,color="magenta"];2601 -> 2645[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 710 -> 457[label="",style="dashed", color="red", weight=0]; 47.25/23.19 710[label="Just yvy400 > Just yvy500",fontsize=16,color="magenta"];710 -> 868[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 710 -> 869[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 709[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 yvy78",fontsize=16,color="burlywood",shape="triangle"];4786[label="yvy78/False",fontsize=10,color="white",style="solid",shape="box"];709 -> 4786[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4786 -> 870[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 4787[label="yvy78/True",fontsize=10,color="white",style="solid",shape="box"];709 -> 4787[label="",style="solid", color="burlywood", weight=9]; 47.25/23.19 4787 -> 871[label="",style="solid", color="burlywood", weight=3]; 47.25/23.19 599[label="Just yvy500",fontsize=16,color="green",shape="box"];600 -> 33[label="",style="dashed", color="red", weight=0]; 47.25/23.19 600[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy53 (Just yvy400) yvy41",fontsize=16,color="magenta"];600 -> 872[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 600 -> 873[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 711[label="primCmpInt (Pos (primPlusNat (primPlusNat (primMulNat (Succ (Succ (Succ Zero))) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="black",shape="box"];711 -> 874[label="",style="solid", color="black", weight=3]; 47.25/23.19 712[label="primCmpInt (Pos Zero) (FiniteMap.sizeFM (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54))",fontsize=16,color="black",shape="box"];712 -> 875[label="",style="solid", color="black", weight=3]; 47.25/23.19 3336 -> 986[label="",style="dashed", color="red", weight=0]; 47.25/23.19 3336[label="FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="magenta"];3336 -> 3344[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 3336 -> 3345[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 3337[label="FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="black",shape="box"];3337 -> 3346[label="",style="solid", color="black", weight=3]; 47.25/23.19 3335[label="yvy205 < yvy204",fontsize=16,color="black",shape="triangle"];3335 -> 3347[label="",style="solid", color="black", weight=3]; 47.25/23.19 717[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 False",fontsize=16,color="black",shape="box"];717 -> 878[label="",style="solid", color="black", weight=3]; 47.25/23.19 718[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 True",fontsize=16,color="black",shape="box"];718 -> 879[label="",style="solid", color="black", weight=3]; 47.25/23.19 719[label="yvy53",fontsize=16,color="green",shape="box"];720[label="FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="green",shape="box"];721[label="FiniteMap.mkBalBranch6 yvy50 yvy51 yvy67 yvy54",fontsize=16,color="black",shape="box"];721 -> 880[label="",style="solid", color="black", weight=3]; 47.25/23.19 722[label="primCmpInt (Neg (primPlusNat (primPlusNat (primMulNat (Succ (Succ (Succ Zero))) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="black",shape="box"];722 -> 881[label="",style="solid", color="black", weight=3]; 47.25/23.19 723[label="primCmpInt (Neg Zero) (FiniteMap.sizeFM (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54))",fontsize=16,color="black",shape="box"];723 -> 882[label="",style="solid", color="black", weight=3]; 47.25/23.19 3338 -> 986[label="",style="dashed", color="red", weight=0]; 47.25/23.19 3338[label="FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="magenta"];3338 -> 3348[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 3338 -> 3349[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 3339[label="FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="black",shape="box"];3339 -> 3350[label="",style="solid", color="black", weight=3]; 47.25/23.19 728[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 False",fontsize=16,color="black",shape="box"];728 -> 885[label="",style="solid", color="black", weight=3]; 47.25/23.19 729[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 True",fontsize=16,color="black",shape="box"];729 -> 886[label="",style="solid", color="black", weight=3]; 47.25/23.19 730[label="yvy53",fontsize=16,color="green",shape="box"];731[label="FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="green",shape="box"];732 -> 2502[label="",style="dashed", color="red", weight=0]; 47.25/23.19 732[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="magenta"];732 -> 2545[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 732 -> 2546[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 732 -> 2547[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 733[label="yvy34",fontsize=16,color="green",shape="box"];734[label="yvy33",fontsize=16,color="green",shape="box"];2815[label="compare1 Nothing Nothing True",fontsize=16,color="black",shape="box"];2815 -> 2890[label="",style="solid", color="black", weight=3]; 47.25/23.19 2816[label="compare1 Nothing (Just yvy5000) True",fontsize=16,color="black",shape="box"];2816 -> 2891[label="",style="solid", color="black", weight=3]; 47.25/23.19 2817[label="compare1 (Just yvy4900) Nothing False",fontsize=16,color="black",shape="box"];2817 -> 2892[label="",style="solid", color="black", weight=3]; 47.25/23.19 2818 -> 2893[label="",style="dashed", color="red", weight=0]; 47.25/23.19 2818[label="compare1 (Just yvy4900) (Just yvy5000) (yvy4900 <= yvy5000)",fontsize=16,color="magenta"];2818 -> 2894[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 2818 -> 2895[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 2818 -> 2896[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 735 -> 2502[label="",style="dashed", color="red", weight=0]; 47.25/23.19 735[label="compare2 Nothing (Just yvy300) (Nothing == Just yvy300)",fontsize=16,color="magenta"];735 -> 2548[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 735 -> 2549[label="",style="dashed", color="magenta", weight=3]; 47.25/23.19 735 -> 2550[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 736[label="yvy34",fontsize=16,color="green",shape="box"];737[label="yvy33",fontsize=16,color="green",shape="box"];738 -> 2502[label="",style="dashed", color="red", weight=0]; 47.25/23.20 738[label="compare2 (Just yvy400) Nothing (Just yvy400 == Nothing)",fontsize=16,color="magenta"];738 -> 2551[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 738 -> 2552[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 738 -> 2553[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 739[label="yvy34",fontsize=16,color="green",shape="box"];740[label="yvy33",fontsize=16,color="green",shape="box"];2912 -> 2911[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2912[label="yvy4001 == yvy3001 && yvy4002 == yvy3002",fontsize=16,color="magenta"];2912 -> 2923[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2912 -> 2924[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2913[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4788[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4788[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4788 -> 2925[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4789[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4789[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4789 -> 2926[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4790[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4790[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4790 -> 2927[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4791[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4791[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4791 -> 2928[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4792[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4792[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4792 -> 2929[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4793[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4793[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4793 -> 2930[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4794[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4794[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4794 -> 2931[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4795[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4795[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4795 -> 2932[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4796[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4796[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4796 -> 2933[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4797[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4797[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4797 -> 2934[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4798[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4798[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4798 -> 2935[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4799[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4799[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4799 -> 2936[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4800[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4800[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4800 -> 2937[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4801[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4801[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4801 -> 2938[label="",style="solid", color="blue", weight=3]; 47.25/23.20 2911[label="yvy182 && yvy201",fontsize=16,color="burlywood",shape="triangle"];4802[label="yvy182/False",fontsize=10,color="white",style="solid",shape="box"];2911 -> 4802[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4802 -> 2939[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4803[label="yvy182/True",fontsize=10,color="white",style="solid",shape="box"];2911 -> 4803[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4803 -> 2940[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 2825[label="yvy3000",fontsize=16,color="green",shape="box"];2826[label="yvy4000",fontsize=16,color="green",shape="box"];2827 -> 2560[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2827[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2827 -> 2941[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2827 -> 2942[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2828 -> 2561[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2828[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2828 -> 2943[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2828 -> 2944[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2829 -> 2562[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2829[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2829 -> 2945[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2829 -> 2946[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2830 -> 2563[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2830[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2830 -> 2947[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2830 -> 2948[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2831 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2831[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2831 -> 2949[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2831 -> 2950[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2832 -> 2565[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2832[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2832 -> 2951[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2832 -> 2952[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2833 -> 2566[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2833[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2833 -> 2953[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2833 -> 2954[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2834 -> 2567[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2834[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2834 -> 2955[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2834 -> 2956[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2835 -> 2568[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2835[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2835 -> 2957[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2835 -> 2958[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2836 -> 2569[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2836[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2836 -> 2959[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2836 -> 2960[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2837 -> 2570[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2837[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2837 -> 2961[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2837 -> 2962[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2838 -> 2571[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2838[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2838 -> 2963[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2838 -> 2964[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2839 -> 2572[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2839[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2839 -> 2965[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2839 -> 2966[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2840 -> 2573[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2840[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2840 -> 2967[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2840 -> 2968[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2841 -> 2570[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2841[label="yvy4000 * yvy3001 == yvy4001 * yvy3000",fontsize=16,color="magenta"];2841 -> 2969[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2841 -> 2970[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2914[label="yvy4001 == yvy3001",fontsize=16,color="blue",shape="box"];4804[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4804[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4804 -> 2971[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4805[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4805[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4805 -> 2972[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4806[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4806[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4806 -> 2973[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4807[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4807[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4807 -> 2974[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4808[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4808[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4808 -> 2975[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4809[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4809[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4809 -> 2976[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4810[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4810[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4810 -> 2977[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4811[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4811[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4811 -> 2978[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4812[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4812[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4812 -> 2979[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4813[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4813[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4813 -> 2980[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4814[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4814[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4814 -> 2981[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4815[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4815[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4815 -> 2982[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4816[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4816[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4816 -> 2983[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4817[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4817[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4817 -> 2984[label="",style="solid", color="blue", weight=3]; 47.25/23.20 2915[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4818[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4818[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4818 -> 2985[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4819[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4819[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4819 -> 2986[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4820[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4820[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4820 -> 2987[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4821[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4821[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4821 -> 2988[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4822[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4822[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4822 -> 2989[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4823[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4823[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4823 -> 2990[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4824[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4824[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4824 -> 2991[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4825[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4825[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4825 -> 2992[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4826[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4826[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4826 -> 2993[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4827[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4827[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4827 -> 2994[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4828[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4828[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4828 -> 2995[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4829[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4829[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4829 -> 2996[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4830[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4830[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4830 -> 2997[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4831[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4831[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4831 -> 2998[label="",style="solid", color="blue", weight=3]; 47.25/23.20 2916[label="yvy4001 == yvy3001",fontsize=16,color="blue",shape="box"];4832[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2916 -> 4832[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4832 -> 2999[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4833[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2916 -> 4833[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4833 -> 3000[label="",style="solid", color="blue", weight=3]; 47.25/23.20 2917[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4834[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2917 -> 4834[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4834 -> 3001[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4835[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2917 -> 4835[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4835 -> 3002[label="",style="solid", color="blue", weight=3]; 47.25/23.20 2852 -> 2560[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2852[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2852 -> 3003[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2852 -> 3004[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2853 -> 2561[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2853[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2853 -> 3005[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2853 -> 3006[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2854 -> 2562[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2854[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2854 -> 3007[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2854 -> 3008[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2855 -> 2563[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2855[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2855 -> 3009[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2855 -> 3010[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2856 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2856[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2856 -> 3011[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2856 -> 3012[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2857 -> 2565[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2857[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2857 -> 3013[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2857 -> 3014[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2858 -> 2566[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2858[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2858 -> 3015[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2858 -> 3016[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2859 -> 2567[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2859[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2859 -> 3017[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2859 -> 3018[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2860 -> 2568[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2860[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2860 -> 3019[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2860 -> 3020[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2861 -> 2569[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2861[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2861 -> 3021[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2861 -> 3022[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2862 -> 2570[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2862[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2862 -> 3023[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2862 -> 3024[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2863 -> 2571[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2863[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2863 -> 3025[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2863 -> 3026[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2864 -> 2572[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2864[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2864 -> 3027[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2864 -> 3028[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2865 -> 2573[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2865[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2865 -> 3029[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2865 -> 3030[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2866 -> 2560[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2866[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2866 -> 3031[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2866 -> 3032[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2867 -> 2561[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2867[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2867 -> 3033[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2867 -> 3034[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2868 -> 2562[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2868[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2868 -> 3035[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2868 -> 3036[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2869 -> 2563[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2869[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2869 -> 3037[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2869 -> 3038[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2870 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2870[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2870 -> 3039[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2870 -> 3040[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2871 -> 2565[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2871[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2871 -> 3041[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2871 -> 3042[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2872 -> 2566[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2872[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2872 -> 3043[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2872 -> 3044[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2873 -> 2567[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2873[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2873 -> 3045[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2873 -> 3046[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2874 -> 2568[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2874[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2874 -> 3047[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2874 -> 3048[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2875 -> 2569[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2875[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2875 -> 3049[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2875 -> 3050[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2876 -> 2570[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2876[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2876 -> 3051[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2876 -> 3052[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2877 -> 2571[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2877[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2877 -> 3053[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2877 -> 3054[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2878 -> 2572[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2878[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2878 -> 3055[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2878 -> 3056[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2879 -> 2573[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2879[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2879 -> 3057[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2879 -> 3058[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2880[label="primEqInt (Pos (Succ yvy40000)) (Pos yvy3000)",fontsize=16,color="burlywood",shape="box"];4836[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2880 -> 4836[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4836 -> 3059[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4837[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2880 -> 4837[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4837 -> 3060[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 2881[label="primEqInt (Pos (Succ yvy40000)) (Neg yvy3000)",fontsize=16,color="black",shape="box"];2881 -> 3061[label="",style="solid", color="black", weight=3]; 47.25/23.20 2882[label="primEqInt (Pos Zero) (Pos yvy3000)",fontsize=16,color="burlywood",shape="box"];4838[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2882 -> 4838[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4838 -> 3062[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4839[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2882 -> 4839[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4839 -> 3063[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 2883[label="primEqInt (Pos Zero) (Neg yvy3000)",fontsize=16,color="burlywood",shape="box"];4840[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2883 -> 4840[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4840 -> 3064[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4841[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2883 -> 4841[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4841 -> 3065[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 2884[label="primEqInt (Neg (Succ yvy40000)) (Pos yvy3000)",fontsize=16,color="black",shape="box"];2884 -> 3066[label="",style="solid", color="black", weight=3]; 47.25/23.20 2885[label="primEqInt (Neg (Succ yvy40000)) (Neg yvy3000)",fontsize=16,color="burlywood",shape="box"];4842[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2885 -> 4842[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4842 -> 3067[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4843[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2885 -> 4843[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4843 -> 3068[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 2886[label="primEqInt (Neg Zero) (Pos yvy3000)",fontsize=16,color="burlywood",shape="box"];4844[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2886 -> 4844[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4844 -> 3069[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4845[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2886 -> 4845[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4845 -> 3070[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 2887[label="primEqInt (Neg Zero) (Neg yvy3000)",fontsize=16,color="burlywood",shape="box"];4846[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2887 -> 4846[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4846 -> 3071[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4847[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2887 -> 4847[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4847 -> 3072[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 2888[label="primEqNat yvy4000 yvy3000",fontsize=16,color="burlywood",shape="triangle"];4848[label="yvy4000/Succ yvy40000",fontsize=10,color="white",style="solid",shape="box"];2888 -> 4848[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4848 -> 3073[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4849[label="yvy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2888 -> 4849[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4849 -> 3074[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 2918 -> 2572[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2918[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2918 -> 3075[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2918 -> 3076[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2919[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4850[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4850[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4850 -> 3077[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4851[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4851[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4851 -> 3078[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4852[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4852[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4852 -> 3079[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4853[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4853[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4853 -> 3080[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4854[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4854[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4854 -> 3081[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4855[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4855[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4855 -> 3082[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4856[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4856[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4856 -> 3083[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4857[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4857[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4857 -> 3084[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4858[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4858[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4858 -> 3085[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4859[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4859[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4859 -> 3086[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4860[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4860[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4860 -> 3087[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4861[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4861[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4861 -> 3088[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4862[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4862[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4862 -> 3089[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4863[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4863[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4863 -> 3090[label="",style="solid", color="blue", weight=3]; 47.25/23.20 2889 -> 2570[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2889[label="yvy4000 * yvy3001 == yvy4001 * yvy3000",fontsize=16,color="magenta"];2889 -> 3091[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2889 -> 3092[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 828 -> 2502[label="",style="dashed", color="red", weight=0]; 47.25/23.20 828[label="compare2 (Just yvy20) (Just yvy15) (Just yvy20 == Just yvy15)",fontsize=16,color="magenta"];828 -> 2554[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 828 -> 2555[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 828 -> 2556[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 829[label="yvy19",fontsize=16,color="green",shape="box"];830[label="yvy18",fontsize=16,color="green",shape="box"];831[label="yvy20",fontsize=16,color="green",shape="box"];832[label="yvy33",fontsize=16,color="green",shape="box"];833[label="yvy34",fontsize=16,color="green",shape="box"];834[label="yvy33",fontsize=16,color="green",shape="box"];835[label="yvy34",fontsize=16,color="green",shape="box"];836[label="yvy33",fontsize=16,color="green",shape="box"];837[label="yvy34",fontsize=16,color="green",shape="box"];838[label="yvy33",fontsize=16,color="green",shape="box"];839[label="yvy35",fontsize=16,color="green",shape="box"];840[label="yvy34",fontsize=16,color="green",shape="box"];841[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 Nothing yvy41 False",fontsize=16,color="black",shape="box"];841 -> 1142[label="",style="solid", color="black", weight=3]; 47.25/23.20 842[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 Nothing yvy41 True",fontsize=16,color="black",shape="box"];842 -> 1143[label="",style="solid", color="black", weight=3]; 47.25/23.20 843[label="Nothing",fontsize=16,color="green",shape="box"];844[label="yvy53",fontsize=16,color="green",shape="box"];845[label="yvy500",fontsize=16,color="green",shape="box"];846[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 Nothing yvy41 False",fontsize=16,color="black",shape="box"];846 -> 1144[label="",style="solid", color="black", weight=3]; 47.25/23.20 847[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 Nothing yvy41 True",fontsize=16,color="black",shape="box"];847 -> 1145[label="",style="solid", color="black", weight=3]; 47.25/23.20 848[label="Nothing",fontsize=16,color="green",shape="box"];849[label="yvy53",fontsize=16,color="green",shape="box"];850[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 False",fontsize=16,color="black",shape="box"];850 -> 1146[label="",style="solid", color="black", weight=3]; 47.25/23.20 851[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 True",fontsize=16,color="black",shape="box"];851 -> 1147[label="",style="solid", color="black", weight=3]; 47.25/23.20 852[label="Just yvy400",fontsize=16,color="green",shape="box"];853[label="yvy53",fontsize=16,color="green",shape="box"];2632[label="yvy500",fontsize=16,color="green",shape="box"];2633[label="yvy500",fontsize=16,color="green",shape="box"];2634[label="yvy500",fontsize=16,color="green",shape="box"];2635[label="yvy500",fontsize=16,color="green",shape="box"];2636[label="yvy500",fontsize=16,color="green",shape="box"];2637[label="yvy500",fontsize=16,color="green",shape="box"];2638[label="yvy500",fontsize=16,color="green",shape="box"];2639[label="yvy500",fontsize=16,color="green",shape="box"];2640[label="yvy500",fontsize=16,color="green",shape="box"];2641[label="yvy500",fontsize=16,color="green",shape="box"];2642[label="yvy500",fontsize=16,color="green",shape="box"];2643[label="yvy500",fontsize=16,color="green",shape="box"];2644[label="yvy500",fontsize=16,color="green",shape="box"];2645[label="yvy500",fontsize=16,color="green",shape="box"];868[label="yvy400",fontsize=16,color="green",shape="box"];869[label="yvy500",fontsize=16,color="green",shape="box"];870[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 False",fontsize=16,color="black",shape="box"];870 -> 1148[label="",style="solid", color="black", weight=3]; 47.25/23.20 871[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 True",fontsize=16,color="black",shape="box"];871 -> 1149[label="",style="solid", color="black", weight=3]; 47.25/23.20 872[label="Just yvy400",fontsize=16,color="green",shape="box"];873[label="yvy53",fontsize=16,color="green",shape="box"];874[label="primCmpInt (Pos (primPlusNat (primPlusNat (primPlusNat (primMulNat (Succ (Succ Zero)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="black",shape="box"];874 -> 1150[label="",style="solid", color="black", weight=3]; 47.25/23.20 875[label="primCmpInt (Pos Zero) yvy52",fontsize=16,color="burlywood",shape="box"];4864[label="yvy52/Pos yvy520",fontsize=10,color="white",style="solid",shape="box"];875 -> 4864[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4864 -> 1151[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4865[label="yvy52/Neg yvy520",fontsize=10,color="white",style="solid",shape="box"];875 -> 4865[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4865 -> 1152[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3344 -> 1563[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3344[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];3345 -> 1564[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3345[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="magenta"];986[label="yvy4001 * yvy3000",fontsize=16,color="black",shape="triangle"];986 -> 1233[label="",style="solid", color="black", weight=3]; 47.25/23.20 3346 -> 2434[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3346[label="FiniteMap.sizeFM (FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64)",fontsize=16,color="magenta"];3346 -> 3430[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3347 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3347[label="compare yvy205 yvy204 == LT",fontsize=16,color="magenta"];3347 -> 3431[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3347 -> 3432[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 878[label="FiniteMap.mkVBalBranch3MkVBalBranch0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 otherwise",fontsize=16,color="black",shape="box"];878 -> 1154[label="",style="solid", color="black", weight=3]; 47.25/23.20 879 -> 590[label="",style="dashed", color="red", weight=0]; 47.25/23.20 879[label="FiniteMap.mkBalBranch yvy60 yvy61 yvy63 (FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54))",fontsize=16,color="magenta"];879 -> 1155[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 879 -> 1156[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 879 -> 1157[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 879 -> 1158[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 880 -> 1419[label="",style="dashed", color="red", weight=0]; 47.25/23.20 880[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy50 yvy51 yvy67 yvy54 yvy50 yvy51 yvy67 yvy54 (FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy67 yvy54 + FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy67 yvy54 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];880 -> 1420[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 881[label="primCmpInt (Neg (primPlusNat (primPlusNat (primPlusNat (primMulNat (Succ (Succ Zero)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="black",shape="box"];881 -> 1160[label="",style="solid", color="black", weight=3]; 47.25/23.20 882[label="primCmpInt (Neg Zero) yvy52",fontsize=16,color="burlywood",shape="box"];4866[label="yvy52/Pos yvy520",fontsize=10,color="white",style="solid",shape="box"];882 -> 4866[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4866 -> 1161[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4867[label="yvy52/Neg yvy520",fontsize=10,color="white",style="solid",shape="box"];882 -> 4867[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4867 -> 1162[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3348 -> 1563[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3348[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];3349 -> 1591[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3349[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="magenta"];3350 -> 2434[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3350[label="FiniteMap.sizeFM (FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64)",fontsize=16,color="magenta"];3350 -> 3433[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 885[label="FiniteMap.mkVBalBranch3MkVBalBranch0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 otherwise",fontsize=16,color="black",shape="box"];885 -> 1164[label="",style="solid", color="black", weight=3]; 47.25/23.20 886 -> 590[label="",style="dashed", color="red", weight=0]; 47.25/23.20 886[label="FiniteMap.mkBalBranch yvy60 yvy61 yvy63 (FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54))",fontsize=16,color="magenta"];886 -> 1165[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 886 -> 1166[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 886 -> 1167[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 886 -> 1168[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2545[label="Nothing",fontsize=16,color="green",shape="box"];2546[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];2546 -> 2602[label="",style="solid", color="black", weight=3]; 47.25/23.20 2547[label="Nothing",fontsize=16,color="green",shape="box"];2890[label="LT",fontsize=16,color="green",shape="box"];2891[label="LT",fontsize=16,color="green",shape="box"];2892[label="compare0 (Just yvy4900) Nothing otherwise",fontsize=16,color="black",shape="box"];2892 -> 3093[label="",style="solid", color="black", weight=3]; 47.25/23.20 2894[label="yvy5000",fontsize=16,color="green",shape="box"];2895[label="yvy4900 <= yvy5000",fontsize=16,color="blue",shape="box"];4868[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4868[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4868 -> 3094[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4869[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4869[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4869 -> 3095[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4870[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4870[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4870 -> 3096[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4871[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4871[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4871 -> 3097[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4872[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4872[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4872 -> 3098[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4873[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4873[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4873 -> 3099[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4874[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4874[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4874 -> 3100[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4875[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4875[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4875 -> 3101[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4876[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4876[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4876 -> 3102[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4877[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4877[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4877 -> 3103[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4878[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4878[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4878 -> 3104[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4879[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4879[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4879 -> 3105[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4880[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4880[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4880 -> 3106[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4881[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4881[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4881 -> 3107[label="",style="solid", color="blue", weight=3]; 47.25/23.20 2896[label="yvy4900",fontsize=16,color="green",shape="box"];2893[label="compare1 (Just yvy198) (Just yvy199) yvy200",fontsize=16,color="burlywood",shape="triangle"];4882[label="yvy200/False",fontsize=10,color="white",style="solid",shape="box"];2893 -> 4882[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4882 -> 3108[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4883[label="yvy200/True",fontsize=10,color="white",style="solid",shape="box"];2893 -> 4883[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4883 -> 3109[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 2548[label="Just yvy300",fontsize=16,color="green",shape="box"];2549[label="Nothing == Just yvy300",fontsize=16,color="black",shape="box"];2549 -> 2603[label="",style="solid", color="black", weight=3]; 47.25/23.20 2550[label="Nothing",fontsize=16,color="green",shape="box"];2551[label="Nothing",fontsize=16,color="green",shape="box"];2552[label="Just yvy400 == Nothing",fontsize=16,color="black",shape="box"];2552 -> 2604[label="",style="solid", color="black", weight=3]; 47.25/23.20 2553[label="Just yvy400",fontsize=16,color="green",shape="box"];2923[label="yvy4002 == yvy3002",fontsize=16,color="blue",shape="box"];4884[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4884[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4884 -> 3135[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4885[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4885[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4885 -> 3136[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4886[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4886[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4886 -> 3137[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4887[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4887[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4887 -> 3138[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4888[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4888[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4888 -> 3139[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4889[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4889[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4889 -> 3140[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4890[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4890[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4890 -> 3141[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4891[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4891[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4891 -> 3142[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4892[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4892[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4892 -> 3143[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4893[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4893[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4893 -> 3144[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4894[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4894[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4894 -> 3145[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4895[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4895[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4895 -> 3146[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4896[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4896[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4896 -> 3147[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4897[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4897[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4897 -> 3148[label="",style="solid", color="blue", weight=3]; 47.25/23.20 2924[label="yvy4001 == yvy3001",fontsize=16,color="blue",shape="box"];4898[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4898[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4898 -> 3149[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4899[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4899[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4899 -> 3150[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4900[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4900[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4900 -> 3151[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4901[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4901[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4901 -> 3152[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4902[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4902[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4902 -> 3153[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4903[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4903[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4903 -> 3154[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4904[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4904[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4904 -> 3155[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4905[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4905[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4905 -> 3156[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4906[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4906[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4906 -> 3157[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4907[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4907[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4907 -> 3158[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4908[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4908[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4908 -> 3159[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4909[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4909[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4909 -> 3160[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4910[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4910[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4910 -> 3161[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4911[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4911[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4911 -> 3162[label="",style="solid", color="blue", weight=3]; 47.25/23.20 2925 -> 2560[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2925[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2925 -> 3163[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2925 -> 3164[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2926 -> 2561[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2926[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2926 -> 3165[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2926 -> 3166[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2927 -> 2562[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2927[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2927 -> 3167[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2927 -> 3168[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2928 -> 2563[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2928[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2928 -> 3169[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2928 -> 3170[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2929 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2929[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2929 -> 3171[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2929 -> 3172[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2930 -> 2565[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2930[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2930 -> 3173[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2930 -> 3174[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2931 -> 2566[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2931[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2931 -> 3175[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2931 -> 3176[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2932 -> 2567[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2932[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2932 -> 3177[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2932 -> 3178[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2933 -> 2568[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2933[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2933 -> 3179[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2933 -> 3180[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2934 -> 2569[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2934[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2934 -> 3181[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2934 -> 3182[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2935 -> 2570[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2935[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2935 -> 3183[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2935 -> 3184[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2936 -> 2571[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2936[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2936 -> 3185[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2936 -> 3186[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2937 -> 2572[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2937[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2937 -> 3187[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2937 -> 3188[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2938 -> 2573[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2938[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2938 -> 3189[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2938 -> 3190[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2939[label="False && yvy201",fontsize=16,color="black",shape="box"];2939 -> 3191[label="",style="solid", color="black", weight=3]; 47.25/23.20 2940[label="True && yvy201",fontsize=16,color="black",shape="box"];2940 -> 3192[label="",style="solid", color="black", weight=3]; 47.25/23.20 2941[label="yvy3000",fontsize=16,color="green",shape="box"];2942[label="yvy4000",fontsize=16,color="green",shape="box"];2943[label="yvy3000",fontsize=16,color="green",shape="box"];2944[label="yvy4000",fontsize=16,color="green",shape="box"];2945[label="yvy3000",fontsize=16,color="green",shape="box"];2946[label="yvy4000",fontsize=16,color="green",shape="box"];2947[label="yvy3000",fontsize=16,color="green",shape="box"];2948[label="yvy4000",fontsize=16,color="green",shape="box"];2949[label="yvy3000",fontsize=16,color="green",shape="box"];2950[label="yvy4000",fontsize=16,color="green",shape="box"];2951[label="yvy3000",fontsize=16,color="green",shape="box"];2952[label="yvy4000",fontsize=16,color="green",shape="box"];2953[label="yvy3000",fontsize=16,color="green",shape="box"];2954[label="yvy4000",fontsize=16,color="green",shape="box"];2955[label="yvy3000",fontsize=16,color="green",shape="box"];2956[label="yvy4000",fontsize=16,color="green",shape="box"];2957[label="yvy3000",fontsize=16,color="green",shape="box"];2958[label="yvy4000",fontsize=16,color="green",shape="box"];2959[label="yvy3000",fontsize=16,color="green",shape="box"];2960[label="yvy4000",fontsize=16,color="green",shape="box"];2961[label="yvy3000",fontsize=16,color="green",shape="box"];2962[label="yvy4000",fontsize=16,color="green",shape="box"];2963[label="yvy3000",fontsize=16,color="green",shape="box"];2964[label="yvy4000",fontsize=16,color="green",shape="box"];2965[label="yvy3000",fontsize=16,color="green",shape="box"];2966[label="yvy4000",fontsize=16,color="green",shape="box"];2967[label="yvy3000",fontsize=16,color="green",shape="box"];2968[label="yvy4000",fontsize=16,color="green",shape="box"];2969 -> 986[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2969[label="yvy4001 * yvy3000",fontsize=16,color="magenta"];2970 -> 986[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2970[label="yvy4000 * yvy3001",fontsize=16,color="magenta"];2970 -> 3193[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2970 -> 3194[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2971 -> 2560[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2971[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2971 -> 3195[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2971 -> 3196[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2972 -> 2561[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2972[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2972 -> 3197[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2972 -> 3198[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2973 -> 2562[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2973[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2973 -> 3199[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2973 -> 3200[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2974 -> 2563[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2974[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2974 -> 3201[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2974 -> 3202[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2975 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2975[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2975 -> 3203[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2975 -> 3204[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2976 -> 2565[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2976[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2976 -> 3205[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2976 -> 3206[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2977 -> 2566[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2977[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2977 -> 3207[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2977 -> 3208[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2978 -> 2567[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2978[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2978 -> 3209[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2978 -> 3210[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2979 -> 2568[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2979[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2979 -> 3211[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2979 -> 3212[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2980 -> 2569[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2980[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2980 -> 3213[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2980 -> 3214[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2981 -> 2570[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2981[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2981 -> 3215[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2981 -> 3216[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2982 -> 2571[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2982[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2982 -> 3217[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2982 -> 3218[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2983 -> 2572[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2983[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2983 -> 3219[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2983 -> 3220[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2984 -> 2573[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2984[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2984 -> 3221[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2984 -> 3222[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2985 -> 2560[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2985[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2985 -> 3223[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2985 -> 3224[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2986 -> 2561[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2986[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2986 -> 3225[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2986 -> 3226[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2987 -> 2562[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2987[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2987 -> 3227[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2987 -> 3228[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2988 -> 2563[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2988[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2988 -> 3229[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2988 -> 3230[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2989 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2989[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2989 -> 3231[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2989 -> 3232[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2990 -> 2565[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2990[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2990 -> 3233[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2990 -> 3234[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2991 -> 2566[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2991[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2991 -> 3235[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2991 -> 3236[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2992 -> 2567[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2992[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2992 -> 3237[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2992 -> 3238[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2993 -> 2568[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2993[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2993 -> 3239[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2993 -> 3240[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2994 -> 2569[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2994[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2994 -> 3241[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2994 -> 3242[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2995 -> 2570[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2995[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2995 -> 3243[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2995 -> 3244[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2996 -> 2571[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2996[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2996 -> 3245[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2996 -> 3246[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2997 -> 2572[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2997[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2997 -> 3247[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2997 -> 3248[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2998 -> 2573[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2998[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2998 -> 3249[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2998 -> 3250[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2999 -> 2561[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2999[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2999 -> 3251[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2999 -> 3252[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3000 -> 2570[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3000[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3000 -> 3253[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3000 -> 3254[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3001 -> 2561[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3001[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3001 -> 3255[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3001 -> 3256[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3002 -> 2570[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3002[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3002 -> 3257[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3002 -> 3258[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3003[label="yvy3000",fontsize=16,color="green",shape="box"];3004[label="yvy4000",fontsize=16,color="green",shape="box"];3005[label="yvy3000",fontsize=16,color="green",shape="box"];3006[label="yvy4000",fontsize=16,color="green",shape="box"];3007[label="yvy3000",fontsize=16,color="green",shape="box"];3008[label="yvy4000",fontsize=16,color="green",shape="box"];3009[label="yvy3000",fontsize=16,color="green",shape="box"];3010[label="yvy4000",fontsize=16,color="green",shape="box"];3011[label="yvy3000",fontsize=16,color="green",shape="box"];3012[label="yvy4000",fontsize=16,color="green",shape="box"];3013[label="yvy3000",fontsize=16,color="green",shape="box"];3014[label="yvy4000",fontsize=16,color="green",shape="box"];3015[label="yvy3000",fontsize=16,color="green",shape="box"];3016[label="yvy4000",fontsize=16,color="green",shape="box"];3017[label="yvy3000",fontsize=16,color="green",shape="box"];3018[label="yvy4000",fontsize=16,color="green",shape="box"];3019[label="yvy3000",fontsize=16,color="green",shape="box"];3020[label="yvy4000",fontsize=16,color="green",shape="box"];3021[label="yvy3000",fontsize=16,color="green",shape="box"];3022[label="yvy4000",fontsize=16,color="green",shape="box"];3023[label="yvy3000",fontsize=16,color="green",shape="box"];3024[label="yvy4000",fontsize=16,color="green",shape="box"];3025[label="yvy3000",fontsize=16,color="green",shape="box"];3026[label="yvy4000",fontsize=16,color="green",shape="box"];3027[label="yvy3000",fontsize=16,color="green",shape="box"];3028[label="yvy4000",fontsize=16,color="green",shape="box"];3029[label="yvy3000",fontsize=16,color="green",shape="box"];3030[label="yvy4000",fontsize=16,color="green",shape="box"];3031[label="yvy3000",fontsize=16,color="green",shape="box"];3032[label="yvy4000",fontsize=16,color="green",shape="box"];3033[label="yvy3000",fontsize=16,color="green",shape="box"];3034[label="yvy4000",fontsize=16,color="green",shape="box"];3035[label="yvy3000",fontsize=16,color="green",shape="box"];3036[label="yvy4000",fontsize=16,color="green",shape="box"];3037[label="yvy3000",fontsize=16,color="green",shape="box"];3038[label="yvy4000",fontsize=16,color="green",shape="box"];3039[label="yvy3000",fontsize=16,color="green",shape="box"];3040[label="yvy4000",fontsize=16,color="green",shape="box"];3041[label="yvy3000",fontsize=16,color="green",shape="box"];3042[label="yvy4000",fontsize=16,color="green",shape="box"];3043[label="yvy3000",fontsize=16,color="green",shape="box"];3044[label="yvy4000",fontsize=16,color="green",shape="box"];3045[label="yvy3000",fontsize=16,color="green",shape="box"];3046[label="yvy4000",fontsize=16,color="green",shape="box"];3047[label="yvy3000",fontsize=16,color="green",shape="box"];3048[label="yvy4000",fontsize=16,color="green",shape="box"];3049[label="yvy3000",fontsize=16,color="green",shape="box"];3050[label="yvy4000",fontsize=16,color="green",shape="box"];3051[label="yvy3000",fontsize=16,color="green",shape="box"];3052[label="yvy4000",fontsize=16,color="green",shape="box"];3053[label="yvy3000",fontsize=16,color="green",shape="box"];3054[label="yvy4000",fontsize=16,color="green",shape="box"];3055[label="yvy3000",fontsize=16,color="green",shape="box"];3056[label="yvy4000",fontsize=16,color="green",shape="box"];3057[label="yvy3000",fontsize=16,color="green",shape="box"];3058[label="yvy4000",fontsize=16,color="green",shape="box"];3059[label="primEqInt (Pos (Succ yvy40000)) (Pos (Succ yvy30000))",fontsize=16,color="black",shape="box"];3059 -> 3259[label="",style="solid", color="black", weight=3]; 47.25/23.20 3060[label="primEqInt (Pos (Succ yvy40000)) (Pos Zero)",fontsize=16,color="black",shape="box"];3060 -> 3260[label="",style="solid", color="black", weight=3]; 47.25/23.20 3061[label="False",fontsize=16,color="green",shape="box"];3062[label="primEqInt (Pos Zero) (Pos (Succ yvy30000))",fontsize=16,color="black",shape="box"];3062 -> 3261[label="",style="solid", color="black", weight=3]; 47.25/23.20 3063[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];3063 -> 3262[label="",style="solid", color="black", weight=3]; 47.25/23.20 3064[label="primEqInt (Pos Zero) (Neg (Succ yvy30000))",fontsize=16,color="black",shape="box"];3064 -> 3263[label="",style="solid", color="black", weight=3]; 47.25/23.20 3065[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];3065 -> 3264[label="",style="solid", color="black", weight=3]; 47.25/23.20 3066[label="False",fontsize=16,color="green",shape="box"];3067[label="primEqInt (Neg (Succ yvy40000)) (Neg (Succ yvy30000))",fontsize=16,color="black",shape="box"];3067 -> 3265[label="",style="solid", color="black", weight=3]; 47.25/23.20 3068[label="primEqInt (Neg (Succ yvy40000)) (Neg Zero)",fontsize=16,color="black",shape="box"];3068 -> 3266[label="",style="solid", color="black", weight=3]; 47.25/23.20 3069[label="primEqInt (Neg Zero) (Pos (Succ yvy30000))",fontsize=16,color="black",shape="box"];3069 -> 3267[label="",style="solid", color="black", weight=3]; 47.25/23.20 3070[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];3070 -> 3268[label="",style="solid", color="black", weight=3]; 47.25/23.20 3071[label="primEqInt (Neg Zero) (Neg (Succ yvy30000))",fontsize=16,color="black",shape="box"];3071 -> 3269[label="",style="solid", color="black", weight=3]; 47.25/23.20 3072[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];3072 -> 3270[label="",style="solid", color="black", weight=3]; 47.25/23.20 3073[label="primEqNat (Succ yvy40000) yvy3000",fontsize=16,color="burlywood",shape="box"];4912[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];3073 -> 4912[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4912 -> 3271[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4913[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];3073 -> 4913[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4913 -> 3272[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3074[label="primEqNat Zero yvy3000",fontsize=16,color="burlywood",shape="box"];4914[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];3074 -> 4914[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4914 -> 3273[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4915[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];3074 -> 4915[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4915 -> 3274[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3075[label="yvy3001",fontsize=16,color="green",shape="box"];3076[label="yvy4001",fontsize=16,color="green",shape="box"];3077 -> 2560[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3077[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3077 -> 3275[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3077 -> 3276[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3078 -> 2561[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3078[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3078 -> 3277[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3078 -> 3278[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3079 -> 2562[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3079[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3079 -> 3279[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3079 -> 3280[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3080 -> 2563[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3080[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3080 -> 3281[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3080 -> 3282[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3081 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3081[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3081 -> 3283[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3081 -> 3284[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3082 -> 2565[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3082[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3082 -> 3285[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3082 -> 3286[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3083 -> 2566[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3083[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3083 -> 3287[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3083 -> 3288[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3084 -> 2567[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3084[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3084 -> 3289[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3084 -> 3290[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3085 -> 2568[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3085[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3085 -> 3291[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3085 -> 3292[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3086 -> 2569[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3086[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3086 -> 3293[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3086 -> 3294[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3087 -> 2570[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3087[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3087 -> 3295[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3087 -> 3296[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3088 -> 2571[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3088[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3088 -> 3297[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3088 -> 3298[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3089 -> 2572[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3089[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3089 -> 3299[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3089 -> 3300[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3090 -> 2573[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3090[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3090 -> 3301[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3090 -> 3302[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3091 -> 986[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3091[label="yvy4001 * yvy3000",fontsize=16,color="magenta"];3091 -> 3303[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3091 -> 3304[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3092 -> 986[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3092[label="yvy4000 * yvy3001",fontsize=16,color="magenta"];3092 -> 3305[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3092 -> 3306[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2554[label="Just yvy15",fontsize=16,color="green",shape="box"];2555[label="Just yvy20 == Just yvy15",fontsize=16,color="black",shape="box"];2555 -> 2605[label="",style="solid", color="black", weight=3]; 47.25/23.20 2556[label="Just yvy20",fontsize=16,color="green",shape="box"];1142[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 Nothing yvy41 otherwise",fontsize=16,color="black",shape="box"];1142 -> 1388[label="",style="solid", color="black", weight=3]; 47.25/23.20 1143 -> 590[label="",style="dashed", color="red", weight=0]; 47.25/23.20 1143[label="FiniteMap.mkBalBranch Nothing yvy51 yvy53 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 Nothing yvy41)",fontsize=16,color="magenta"];1143 -> 1389[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1143 -> 1390[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1143 -> 1391[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1144[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 Nothing yvy41 otherwise",fontsize=16,color="black",shape="box"];1144 -> 1392[label="",style="solid", color="black", weight=3]; 47.25/23.20 1145 -> 590[label="",style="dashed", color="red", weight=0]; 47.25/23.20 1145[label="FiniteMap.mkBalBranch (Just yvy500) yvy51 yvy53 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 Nothing yvy41)",fontsize=16,color="magenta"];1145 -> 1393[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1145 -> 1394[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1145 -> 1395[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1146[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 otherwise",fontsize=16,color="black",shape="box"];1146 -> 1396[label="",style="solid", color="black", weight=3]; 47.25/23.20 1147 -> 590[label="",style="dashed", color="red", weight=0]; 47.25/23.20 1147[label="FiniteMap.mkBalBranch Nothing yvy51 yvy53 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 (Just yvy400) yvy41)",fontsize=16,color="magenta"];1147 -> 1397[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1147 -> 1398[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1147 -> 1399[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1148[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 otherwise",fontsize=16,color="black",shape="box"];1148 -> 1400[label="",style="solid", color="black", weight=3]; 47.25/23.20 1149 -> 590[label="",style="dashed", color="red", weight=0]; 47.25/23.20 1149[label="FiniteMap.mkBalBranch (Just yvy500) yvy51 yvy53 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 (Just yvy400) yvy41)",fontsize=16,color="magenta"];1149 -> 1401[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1149 -> 1402[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1149 -> 1403[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1150[label="primCmpInt (Pos (primPlusNat (primPlusNat (primPlusNat (primPlusNat (primMulNat (Succ Zero) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="black",shape="box"];1150 -> 1404[label="",style="solid", color="black", weight=3]; 47.25/23.20 1151[label="primCmpInt (Pos Zero) (Pos yvy520)",fontsize=16,color="burlywood",shape="box"];4916[label="yvy520/Succ yvy5200",fontsize=10,color="white",style="solid",shape="box"];1151 -> 4916[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4916 -> 1405[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4917[label="yvy520/Zero",fontsize=10,color="white",style="solid",shape="box"];1151 -> 4917[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4917 -> 1406[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 1152[label="primCmpInt (Pos Zero) (Neg yvy520)",fontsize=16,color="burlywood",shape="box"];4918[label="yvy520/Succ yvy5200",fontsize=10,color="white",style="solid",shape="box"];1152 -> 4918[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4918 -> 1407[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4919[label="yvy520/Zero",fontsize=10,color="white",style="solid",shape="box"];1152 -> 4919[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4919 -> 1408[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 1563[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];1563 -> 1700[label="",style="solid", color="black", weight=3]; 47.25/23.20 1564[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="black",shape="triangle"];1564 -> 1701[label="",style="solid", color="black", weight=3]; 47.25/23.20 1233[label="primMulInt yvy4001 yvy3000",fontsize=16,color="burlywood",shape="triangle"];4920[label="yvy4001/Pos yvy40010",fontsize=10,color="white",style="solid",shape="box"];1233 -> 4920[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4920 -> 1506[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4921[label="yvy4001/Neg yvy40010",fontsize=10,color="white",style="solid",shape="box"];1233 -> 4921[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4921 -> 1507[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3430[label="FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="green",shape="box"];2434[label="FiniteMap.sizeFM yvy54",fontsize=16,color="burlywood",shape="triangle"];4922[label="yvy54/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2434 -> 4922[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4922 -> 2456[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4923[label="yvy54/FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544",fontsize=10,color="white",style="solid",shape="box"];2434 -> 4923[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4923 -> 2457[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3431[label="LT",fontsize=16,color="green",shape="box"];3432 -> 1649[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3432[label="compare yvy205 yvy204",fontsize=16,color="magenta"];3432 -> 3445[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3432 -> 3446[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1154[label="FiniteMap.mkVBalBranch3MkVBalBranch0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 True",fontsize=16,color="black",shape="box"];1154 -> 1416[label="",style="solid", color="black", weight=3]; 47.25/23.20 1155[label="yvy60",fontsize=16,color="green",shape="box"];1156 -> 12[label="",style="dashed", color="red", weight=0]; 47.25/23.20 1156[label="FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];1156 -> 1417[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1156 -> 1418[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1157[label="yvy63",fontsize=16,color="green",shape="box"];1158[label="yvy61",fontsize=16,color="green",shape="box"];1420 -> 3335[label="",style="dashed", color="red", weight=0]; 47.25/23.20 1420[label="FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy67 yvy54 + FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy67 yvy54 < Pos (Succ (Succ Zero))",fontsize=16,color="magenta"];1420 -> 3340[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1420 -> 3341[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1419[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy50 yvy51 yvy67 yvy54 yvy50 yvy51 yvy67 yvy54 yvy106",fontsize=16,color="burlywood",shape="triangle"];4924[label="yvy106/False",fontsize=10,color="white",style="solid",shape="box"];1419 -> 4924[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4924 -> 1424[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4925[label="yvy106/True",fontsize=10,color="white",style="solid",shape="box"];1419 -> 4925[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4925 -> 1425[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 1160[label="primCmpInt (Neg (primPlusNat (primPlusNat (primPlusNat (primPlusNat (primMulNat (Succ Zero) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="black",shape="box"];1160 -> 1426[label="",style="solid", color="black", weight=3]; 47.25/23.20 1161[label="primCmpInt (Neg Zero) (Pos yvy520)",fontsize=16,color="burlywood",shape="box"];4926[label="yvy520/Succ yvy5200",fontsize=10,color="white",style="solid",shape="box"];1161 -> 4926[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4926 -> 1427[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4927[label="yvy520/Zero",fontsize=10,color="white",style="solid",shape="box"];1161 -> 4927[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4927 -> 1428[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 1162[label="primCmpInt (Neg Zero) (Neg yvy520)",fontsize=16,color="burlywood",shape="box"];4928[label="yvy520/Succ yvy5200",fontsize=10,color="white",style="solid",shape="box"];1162 -> 4928[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4928 -> 1429[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4929[label="yvy520/Zero",fontsize=10,color="white",style="solid",shape="box"];1162 -> 4929[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4929 -> 1430[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 1591[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="black",shape="triangle"];1591 -> 1713[label="",style="solid", color="black", weight=3]; 47.25/23.20 3433[label="FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="green",shape="box"];1164[label="FiniteMap.mkVBalBranch3MkVBalBranch0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 True",fontsize=16,color="black",shape="box"];1164 -> 1433[label="",style="solid", color="black", weight=3]; 47.25/23.20 1165[label="yvy60",fontsize=16,color="green",shape="box"];1166 -> 12[label="",style="dashed", color="red", weight=0]; 47.25/23.20 1166[label="FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];1166 -> 1434[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1166 -> 1435[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1167[label="yvy63",fontsize=16,color="green",shape="box"];1168[label="yvy61",fontsize=16,color="green",shape="box"];2602[label="True",fontsize=16,color="green",shape="box"];3093[label="compare0 (Just yvy4900) Nothing True",fontsize=16,color="black",shape="box"];3093 -> 3307[label="",style="solid", color="black", weight=3]; 47.25/23.20 3094[label="yvy4900 <= yvy5000",fontsize=16,color="black",shape="triangle"];3094 -> 3308[label="",style="solid", color="black", weight=3]; 47.25/23.20 3095[label="yvy4900 <= yvy5000",fontsize=16,color="black",shape="triangle"];3095 -> 3309[label="",style="solid", color="black", weight=3]; 47.25/23.20 3096[label="yvy4900 <= yvy5000",fontsize=16,color="black",shape="triangle"];3096 -> 3310[label="",style="solid", color="black", weight=3]; 47.25/23.20 3097[label="yvy4900 <= yvy5000",fontsize=16,color="black",shape="triangle"];3097 -> 3311[label="",style="solid", color="black", weight=3]; 47.25/23.20 3098[label="yvy4900 <= yvy5000",fontsize=16,color="black",shape="triangle"];3098 -> 3312[label="",style="solid", color="black", weight=3]; 47.25/23.20 3099[label="yvy4900 <= yvy5000",fontsize=16,color="black",shape="triangle"];3099 -> 3313[label="",style="solid", color="black", weight=3]; 47.25/23.20 3100[label="yvy4900 <= yvy5000",fontsize=16,color="burlywood",shape="triangle"];4930[label="yvy4900/(yvy49000,yvy49001)",fontsize=10,color="white",style="solid",shape="box"];3100 -> 4930[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4930 -> 3314[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3101[label="yvy4900 <= yvy5000",fontsize=16,color="burlywood",shape="triangle"];4931[label="yvy4900/(yvy49000,yvy49001,yvy49002)",fontsize=10,color="white",style="solid",shape="box"];3101 -> 4931[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4931 -> 3315[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3102[label="yvy4900 <= yvy5000",fontsize=16,color="burlywood",shape="triangle"];4932[label="yvy4900/False",fontsize=10,color="white",style="solid",shape="box"];3102 -> 4932[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4932 -> 3316[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4933[label="yvy4900/True",fontsize=10,color="white",style="solid",shape="box"];3102 -> 4933[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4933 -> 3317[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3103[label="yvy4900 <= yvy5000",fontsize=16,color="burlywood",shape="triangle"];4934[label="yvy4900/Nothing",fontsize=10,color="white",style="solid",shape="box"];3103 -> 4934[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4934 -> 3318[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4935[label="yvy4900/Just yvy49000",fontsize=10,color="white",style="solid",shape="box"];3103 -> 4935[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4935 -> 3319[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3104[label="yvy4900 <= yvy5000",fontsize=16,color="burlywood",shape="triangle"];4936[label="yvy4900/Left yvy49000",fontsize=10,color="white",style="solid",shape="box"];3104 -> 4936[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4936 -> 3320[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4937[label="yvy4900/Right yvy49000",fontsize=10,color="white",style="solid",shape="box"];3104 -> 4937[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4937 -> 3321[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3105[label="yvy4900 <= yvy5000",fontsize=16,color="burlywood",shape="triangle"];4938[label="yvy4900/LT",fontsize=10,color="white",style="solid",shape="box"];3105 -> 4938[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4938 -> 3322[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4939[label="yvy4900/EQ",fontsize=10,color="white",style="solid",shape="box"];3105 -> 4939[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4939 -> 3323[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4940[label="yvy4900/GT",fontsize=10,color="white",style="solid",shape="box"];3105 -> 4940[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4940 -> 3324[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3106[label="yvy4900 <= yvy5000",fontsize=16,color="black",shape="triangle"];3106 -> 3325[label="",style="solid", color="black", weight=3]; 47.25/23.20 3107[label="yvy4900 <= yvy5000",fontsize=16,color="black",shape="triangle"];3107 -> 3326[label="",style="solid", color="black", weight=3]; 47.25/23.20 3108[label="compare1 (Just yvy198) (Just yvy199) False",fontsize=16,color="black",shape="box"];3108 -> 3327[label="",style="solid", color="black", weight=3]; 47.25/23.20 3109[label="compare1 (Just yvy198) (Just yvy199) True",fontsize=16,color="black",shape="box"];3109 -> 3328[label="",style="solid", color="black", weight=3]; 47.25/23.20 2603[label="False",fontsize=16,color="green",shape="box"];2604[label="False",fontsize=16,color="green",shape="box"];3135 -> 2560[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3135[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3135 -> 3351[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3135 -> 3352[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3136 -> 2561[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3136[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3136 -> 3353[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3136 -> 3354[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3137 -> 2562[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3137[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3137 -> 3355[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3137 -> 3356[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3138 -> 2563[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3138[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3138 -> 3357[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3138 -> 3358[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3139 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3139[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3139 -> 3359[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3139 -> 3360[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3140 -> 2565[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3140[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3140 -> 3361[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3140 -> 3362[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3141 -> 2566[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3141[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3141 -> 3363[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3141 -> 3364[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3142 -> 2567[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3142[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3142 -> 3365[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3142 -> 3366[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3143 -> 2568[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3143[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3143 -> 3367[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3143 -> 3368[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3144 -> 2569[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3144[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3144 -> 3369[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3144 -> 3370[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3145 -> 2570[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3145[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3145 -> 3371[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3145 -> 3372[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3146 -> 2571[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3146[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3146 -> 3373[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3146 -> 3374[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3147 -> 2572[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3147[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3147 -> 3375[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3147 -> 3376[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3148 -> 2573[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3148[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3148 -> 3377[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3148 -> 3378[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3149 -> 2560[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3149[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3149 -> 3379[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3149 -> 3380[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3150 -> 2561[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3150[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3150 -> 3381[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3150 -> 3382[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3151 -> 2562[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3151[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3151 -> 3383[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3151 -> 3384[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3152 -> 2563[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3152[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3152 -> 3385[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3152 -> 3386[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3153 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3153[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3153 -> 3387[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3153 -> 3388[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3154 -> 2565[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3154[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3154 -> 3389[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3154 -> 3390[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3155 -> 2566[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3155[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3155 -> 3391[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3155 -> 3392[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3156 -> 2567[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3156[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3156 -> 3393[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3156 -> 3394[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3157 -> 2568[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3157[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3157 -> 3395[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3157 -> 3396[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3158 -> 2569[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3158[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3158 -> 3397[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3158 -> 3398[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3159 -> 2570[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3159[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3159 -> 3399[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3159 -> 3400[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3160 -> 2571[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3160[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3160 -> 3401[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3160 -> 3402[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3161 -> 2572[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3161[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3161 -> 3403[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3161 -> 3404[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3162 -> 2573[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3162[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3162 -> 3405[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3162 -> 3406[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3163[label="yvy3000",fontsize=16,color="green",shape="box"];3164[label="yvy4000",fontsize=16,color="green",shape="box"];3165[label="yvy3000",fontsize=16,color="green",shape="box"];3166[label="yvy4000",fontsize=16,color="green",shape="box"];3167[label="yvy3000",fontsize=16,color="green",shape="box"];3168[label="yvy4000",fontsize=16,color="green",shape="box"];3169[label="yvy3000",fontsize=16,color="green",shape="box"];3170[label="yvy4000",fontsize=16,color="green",shape="box"];3171[label="yvy3000",fontsize=16,color="green",shape="box"];3172[label="yvy4000",fontsize=16,color="green",shape="box"];3173[label="yvy3000",fontsize=16,color="green",shape="box"];3174[label="yvy4000",fontsize=16,color="green",shape="box"];3175[label="yvy3000",fontsize=16,color="green",shape="box"];3176[label="yvy4000",fontsize=16,color="green",shape="box"];3177[label="yvy3000",fontsize=16,color="green",shape="box"];3178[label="yvy4000",fontsize=16,color="green",shape="box"];3179[label="yvy3000",fontsize=16,color="green",shape="box"];3180[label="yvy4000",fontsize=16,color="green",shape="box"];3181[label="yvy3000",fontsize=16,color="green",shape="box"];3182[label="yvy4000",fontsize=16,color="green",shape="box"];3183[label="yvy3000",fontsize=16,color="green",shape="box"];3184[label="yvy4000",fontsize=16,color="green",shape="box"];3185[label="yvy3000",fontsize=16,color="green",shape="box"];3186[label="yvy4000",fontsize=16,color="green",shape="box"];3187[label="yvy3000",fontsize=16,color="green",shape="box"];3188[label="yvy4000",fontsize=16,color="green",shape="box"];3189[label="yvy3000",fontsize=16,color="green",shape="box"];3190[label="yvy4000",fontsize=16,color="green",shape="box"];3191[label="False",fontsize=16,color="green",shape="box"];3192[label="yvy201",fontsize=16,color="green",shape="box"];3193[label="yvy4000",fontsize=16,color="green",shape="box"];3194[label="yvy3001",fontsize=16,color="green",shape="box"];3195[label="yvy3001",fontsize=16,color="green",shape="box"];3196[label="yvy4001",fontsize=16,color="green",shape="box"];3197[label="yvy3001",fontsize=16,color="green",shape="box"];3198[label="yvy4001",fontsize=16,color="green",shape="box"];3199[label="yvy3001",fontsize=16,color="green",shape="box"];3200[label="yvy4001",fontsize=16,color="green",shape="box"];3201[label="yvy3001",fontsize=16,color="green",shape="box"];3202[label="yvy4001",fontsize=16,color="green",shape="box"];3203[label="yvy3001",fontsize=16,color="green",shape="box"];3204[label="yvy4001",fontsize=16,color="green",shape="box"];3205[label="yvy3001",fontsize=16,color="green",shape="box"];3206[label="yvy4001",fontsize=16,color="green",shape="box"];3207[label="yvy3001",fontsize=16,color="green",shape="box"];3208[label="yvy4001",fontsize=16,color="green",shape="box"];3209[label="yvy3001",fontsize=16,color="green",shape="box"];3210[label="yvy4001",fontsize=16,color="green",shape="box"];3211[label="yvy3001",fontsize=16,color="green",shape="box"];3212[label="yvy4001",fontsize=16,color="green",shape="box"];3213[label="yvy3001",fontsize=16,color="green",shape="box"];3214[label="yvy4001",fontsize=16,color="green",shape="box"];3215[label="yvy3001",fontsize=16,color="green",shape="box"];3216[label="yvy4001",fontsize=16,color="green",shape="box"];3217[label="yvy3001",fontsize=16,color="green",shape="box"];3218[label="yvy4001",fontsize=16,color="green",shape="box"];3219[label="yvy3001",fontsize=16,color="green",shape="box"];3220[label="yvy4001",fontsize=16,color="green",shape="box"];3221[label="yvy3001",fontsize=16,color="green",shape="box"];3222[label="yvy4001",fontsize=16,color="green",shape="box"];3223[label="yvy3000",fontsize=16,color="green",shape="box"];3224[label="yvy4000",fontsize=16,color="green",shape="box"];3225[label="yvy3000",fontsize=16,color="green",shape="box"];3226[label="yvy4000",fontsize=16,color="green",shape="box"];3227[label="yvy3000",fontsize=16,color="green",shape="box"];3228[label="yvy4000",fontsize=16,color="green",shape="box"];3229[label="yvy3000",fontsize=16,color="green",shape="box"];3230[label="yvy4000",fontsize=16,color="green",shape="box"];3231[label="yvy3000",fontsize=16,color="green",shape="box"];3232[label="yvy4000",fontsize=16,color="green",shape="box"];3233[label="yvy3000",fontsize=16,color="green",shape="box"];3234[label="yvy4000",fontsize=16,color="green",shape="box"];3235[label="yvy3000",fontsize=16,color="green",shape="box"];3236[label="yvy4000",fontsize=16,color="green",shape="box"];3237[label="yvy3000",fontsize=16,color="green",shape="box"];3238[label="yvy4000",fontsize=16,color="green",shape="box"];3239[label="yvy3000",fontsize=16,color="green",shape="box"];3240[label="yvy4000",fontsize=16,color="green",shape="box"];3241[label="yvy3000",fontsize=16,color="green",shape="box"];3242[label="yvy4000",fontsize=16,color="green",shape="box"];3243[label="yvy3000",fontsize=16,color="green",shape="box"];3244[label="yvy4000",fontsize=16,color="green",shape="box"];3245[label="yvy3000",fontsize=16,color="green",shape="box"];3246[label="yvy4000",fontsize=16,color="green",shape="box"];3247[label="yvy3000",fontsize=16,color="green",shape="box"];3248[label="yvy4000",fontsize=16,color="green",shape="box"];3249[label="yvy3000",fontsize=16,color="green",shape="box"];3250[label="yvy4000",fontsize=16,color="green",shape="box"];3251[label="yvy3001",fontsize=16,color="green",shape="box"];3252[label="yvy4001",fontsize=16,color="green",shape="box"];3253[label="yvy3001",fontsize=16,color="green",shape="box"];3254[label="yvy4001",fontsize=16,color="green",shape="box"];3255[label="yvy3000",fontsize=16,color="green",shape="box"];3256[label="yvy4000",fontsize=16,color="green",shape="box"];3257[label="yvy3000",fontsize=16,color="green",shape="box"];3258[label="yvy4000",fontsize=16,color="green",shape="box"];3259 -> 2888[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3259[label="primEqNat yvy40000 yvy30000",fontsize=16,color="magenta"];3259 -> 3407[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3259 -> 3408[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3260[label="False",fontsize=16,color="green",shape="box"];3261[label="False",fontsize=16,color="green",shape="box"];3262[label="True",fontsize=16,color="green",shape="box"];3263[label="False",fontsize=16,color="green",shape="box"];3264[label="True",fontsize=16,color="green",shape="box"];3265 -> 2888[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3265[label="primEqNat yvy40000 yvy30000",fontsize=16,color="magenta"];3265 -> 3409[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3265 -> 3410[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3266[label="False",fontsize=16,color="green",shape="box"];3267[label="False",fontsize=16,color="green",shape="box"];3268[label="True",fontsize=16,color="green",shape="box"];3269[label="False",fontsize=16,color="green",shape="box"];3270[label="True",fontsize=16,color="green",shape="box"];3271[label="primEqNat (Succ yvy40000) (Succ yvy30000)",fontsize=16,color="black",shape="box"];3271 -> 3411[label="",style="solid", color="black", weight=3]; 47.25/23.20 3272[label="primEqNat (Succ yvy40000) Zero",fontsize=16,color="black",shape="box"];3272 -> 3412[label="",style="solid", color="black", weight=3]; 47.25/23.20 3273[label="primEqNat Zero (Succ yvy30000)",fontsize=16,color="black",shape="box"];3273 -> 3413[label="",style="solid", color="black", weight=3]; 47.25/23.20 3274[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];3274 -> 3414[label="",style="solid", color="black", weight=3]; 47.25/23.20 3275[label="yvy3000",fontsize=16,color="green",shape="box"];3276[label="yvy4000",fontsize=16,color="green",shape="box"];3277[label="yvy3000",fontsize=16,color="green",shape="box"];3278[label="yvy4000",fontsize=16,color="green",shape="box"];3279[label="yvy3000",fontsize=16,color="green",shape="box"];3280[label="yvy4000",fontsize=16,color="green",shape="box"];3281[label="yvy3000",fontsize=16,color="green",shape="box"];3282[label="yvy4000",fontsize=16,color="green",shape="box"];3283[label="yvy3000",fontsize=16,color="green",shape="box"];3284[label="yvy4000",fontsize=16,color="green",shape="box"];3285[label="yvy3000",fontsize=16,color="green",shape="box"];3286[label="yvy4000",fontsize=16,color="green",shape="box"];3287[label="yvy3000",fontsize=16,color="green",shape="box"];3288[label="yvy4000",fontsize=16,color="green",shape="box"];3289[label="yvy3000",fontsize=16,color="green",shape="box"];3290[label="yvy4000",fontsize=16,color="green",shape="box"];3291[label="yvy3000",fontsize=16,color="green",shape="box"];3292[label="yvy4000",fontsize=16,color="green",shape="box"];3293[label="yvy3000",fontsize=16,color="green",shape="box"];3294[label="yvy4000",fontsize=16,color="green",shape="box"];3295[label="yvy3000",fontsize=16,color="green",shape="box"];3296[label="yvy4000",fontsize=16,color="green",shape="box"];3297[label="yvy3000",fontsize=16,color="green",shape="box"];3298[label="yvy4000",fontsize=16,color="green",shape="box"];3299[label="yvy3000",fontsize=16,color="green",shape="box"];3300[label="yvy4000",fontsize=16,color="green",shape="box"];3301[label="yvy3000",fontsize=16,color="green",shape="box"];3302[label="yvy4000",fontsize=16,color="green",shape="box"];3303[label="yvy4001",fontsize=16,color="green",shape="box"];3304[label="yvy3000",fontsize=16,color="green",shape="box"];3305[label="yvy4000",fontsize=16,color="green",shape="box"];3306[label="yvy3001",fontsize=16,color="green",shape="box"];2605[label="yvy20 == yvy15",fontsize=16,color="blue",shape="box"];4941[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2605 -> 4941[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4941 -> 2646[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4942[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2605 -> 4942[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4942 -> 2647[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4943[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2605 -> 4943[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4943 -> 2648[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4944[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2605 -> 4944[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4944 -> 2649[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4945[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2605 -> 4945[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4945 -> 2650[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4946[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2605 -> 4946[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4946 -> 2651[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4947[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2605 -> 4947[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4947 -> 2652[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4948[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2605 -> 4948[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4948 -> 2653[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4949[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2605 -> 4949[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4949 -> 2654[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4950[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2605 -> 4950[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4950 -> 2655[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4951[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2605 -> 4951[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4951 -> 2656[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4952[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2605 -> 4952[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4952 -> 2657[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4953[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2605 -> 4953[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4953 -> 2658[label="",style="solid", color="blue", weight=3]; 47.25/23.20 4954[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2605 -> 4954[label="",style="solid", color="blue", weight=9]; 47.25/23.20 4954 -> 2659[label="",style="solid", color="blue", weight=3]; 47.25/23.20 1388[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 Nothing yvy41 True",fontsize=16,color="black",shape="box"];1388 -> 1546[label="",style="solid", color="black", weight=3]; 47.25/23.20 1389[label="Nothing",fontsize=16,color="green",shape="box"];1390 -> 33[label="",style="dashed", color="red", weight=0]; 47.25/23.20 1390[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 Nothing yvy41",fontsize=16,color="magenta"];1390 -> 1547[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1390 -> 1548[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1391[label="yvy53",fontsize=16,color="green",shape="box"];1392[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 Nothing yvy41 True",fontsize=16,color="black",shape="box"];1392 -> 1549[label="",style="solid", color="black", weight=3]; 47.25/23.20 1393[label="Just yvy500",fontsize=16,color="green",shape="box"];1394 -> 33[label="",style="dashed", color="red", weight=0]; 47.25/23.20 1394[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 Nothing yvy41",fontsize=16,color="magenta"];1394 -> 1550[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1394 -> 1551[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1395[label="yvy53",fontsize=16,color="green",shape="box"];1396[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 True",fontsize=16,color="black",shape="box"];1396 -> 1552[label="",style="solid", color="black", weight=3]; 47.25/23.20 1397[label="Nothing",fontsize=16,color="green",shape="box"];1398 -> 33[label="",style="dashed", color="red", weight=0]; 47.25/23.20 1398[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 (Just yvy400) yvy41",fontsize=16,color="magenta"];1398 -> 1553[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1398 -> 1554[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1399[label="yvy53",fontsize=16,color="green",shape="box"];1400[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 True",fontsize=16,color="black",shape="box"];1400 -> 1555[label="",style="solid", color="black", weight=3]; 47.25/23.20 1401[label="Just yvy500",fontsize=16,color="green",shape="box"];1402 -> 33[label="",style="dashed", color="red", weight=0]; 47.25/23.20 1402[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 (Just yvy400) yvy41",fontsize=16,color="magenta"];1402 -> 1556[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1402 -> 1557[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1403[label="yvy53",fontsize=16,color="green",shape="box"];1404[label="primCmpInt (Pos (primPlusNat (primPlusNat (primPlusNat (primPlusNat (primPlusNat (primMulNat Zero (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="black",shape="box"];1404 -> 1558[label="",style="solid", color="black", weight=3]; 47.25/23.20 1405[label="primCmpInt (Pos Zero) (Pos (Succ yvy5200))",fontsize=16,color="black",shape="box"];1405 -> 1559[label="",style="solid", color="black", weight=3]; 47.25/23.20 1406[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1406 -> 1560[label="",style="solid", color="black", weight=3]; 47.25/23.20 1407[label="primCmpInt (Pos Zero) (Neg (Succ yvy5200))",fontsize=16,color="black",shape="box"];1407 -> 1561[label="",style="solid", color="black", weight=3]; 47.25/23.20 1408[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1408 -> 1562[label="",style="solid", color="black", weight=3]; 47.25/23.20 1700[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];1701[label="FiniteMap.sizeFM (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="black",shape="triangle"];1701 -> 1837[label="",style="solid", color="black", weight=3]; 47.25/23.20 1506[label="primMulInt (Pos yvy40010) yvy3000",fontsize=16,color="burlywood",shape="box"];4955[label="yvy3000/Pos yvy30000",fontsize=10,color="white",style="solid",shape="box"];1506 -> 4955[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4955 -> 1636[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4956[label="yvy3000/Neg yvy30000",fontsize=10,color="white",style="solid",shape="box"];1506 -> 4956[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4956 -> 1637[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 1507[label="primMulInt (Neg yvy40010) yvy3000",fontsize=16,color="burlywood",shape="box"];4957[label="yvy3000/Pos yvy30000",fontsize=10,color="white",style="solid",shape="box"];1507 -> 4957[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4957 -> 1638[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4958[label="yvy3000/Neg yvy30000",fontsize=10,color="white",style="solid",shape="box"];1507 -> 4958[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4958 -> 1639[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 2456[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2456 -> 2491[label="",style="solid", color="black", weight=3]; 47.25/23.20 2457[label="FiniteMap.sizeFM (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="black",shape="box"];2457 -> 2492[label="",style="solid", color="black", weight=3]; 47.25/23.20 3445[label="yvy205",fontsize=16,color="green",shape="box"];3446[label="yvy204",fontsize=16,color="green",shape="box"];1649[label="compare yvy49 yvy50",fontsize=16,color="black",shape="triangle"];1649 -> 1727[label="",style="solid", color="black", weight=3]; 47.25/23.20 1416 -> 4372[label="",style="dashed", color="red", weight=0]; 47.25/23.20 1416[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))))) yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64) (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];1416 -> 4373[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1416 -> 4374[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1416 -> 4375[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1416 -> 4376[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1416 -> 4377[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1417[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];1418[label="yvy64",fontsize=16,color="green",shape="box"];3340 -> 3415[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3340[label="FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy67 yvy54 + FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy67 yvy54",fontsize=16,color="magenta"];3340 -> 3416[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3340 -> 3417[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3341[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1424[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy50 yvy51 yvy67 yvy54 yvy50 yvy51 yvy67 yvy54 False",fontsize=16,color="black",shape="box"];1424 -> 1583[label="",style="solid", color="black", weight=3]; 47.25/23.20 1425[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy50 yvy51 yvy67 yvy54 yvy50 yvy51 yvy67 yvy54 True",fontsize=16,color="black",shape="box"];1425 -> 1584[label="",style="solid", color="black", weight=3]; 47.25/23.20 1426[label="primCmpInt (Neg (primPlusNat (primPlusNat (primPlusNat (primPlusNat (primPlusNat (primMulNat Zero (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="black",shape="box"];1426 -> 1585[label="",style="solid", color="black", weight=3]; 47.25/23.20 1427[label="primCmpInt (Neg Zero) (Pos (Succ yvy5200))",fontsize=16,color="black",shape="box"];1427 -> 1586[label="",style="solid", color="black", weight=3]; 47.25/23.20 1428[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1428 -> 1587[label="",style="solid", color="black", weight=3]; 47.25/23.20 1429[label="primCmpInt (Neg Zero) (Neg (Succ yvy5200))",fontsize=16,color="black",shape="box"];1429 -> 1588[label="",style="solid", color="black", weight=3]; 47.25/23.20 1430[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1430 -> 1589[label="",style="solid", color="black", weight=3]; 47.25/23.20 1713 -> 1701[label="",style="dashed", color="red", weight=0]; 47.25/23.20 1713[label="FiniteMap.sizeFM (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];1433 -> 4372[label="",style="dashed", color="red", weight=0]; 47.25/23.20 1433[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))))) yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64) (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];1433 -> 4378[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1433 -> 4379[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1433 -> 4380[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1433 -> 4381[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1433 -> 4382[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1434[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];1435[label="yvy64",fontsize=16,color="green",shape="box"];3307[label="GT",fontsize=16,color="green",shape="box"];3308 -> 3436[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3308[label="compare yvy4900 yvy5000 /= GT",fontsize=16,color="magenta"];3308 -> 3437[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3309 -> 3436[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3309[label="compare yvy4900 yvy5000 /= GT",fontsize=16,color="magenta"];3309 -> 3438[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3310 -> 3436[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3310[label="compare yvy4900 yvy5000 /= GT",fontsize=16,color="magenta"];3310 -> 3439[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3311 -> 3436[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3311[label="compare yvy4900 yvy5000 /= GT",fontsize=16,color="magenta"];3311 -> 3440[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3312 -> 3436[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3312[label="compare yvy4900 yvy5000 /= GT",fontsize=16,color="magenta"];3312 -> 3441[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3313 -> 3436[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3313[label="compare yvy4900 yvy5000 /= GT",fontsize=16,color="magenta"];3313 -> 3442[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3314[label="(yvy49000,yvy49001) <= yvy5000",fontsize=16,color="burlywood",shape="box"];4959[label="yvy5000/(yvy50000,yvy50001)",fontsize=10,color="white",style="solid",shape="box"];3314 -> 4959[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4959 -> 3447[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3315[label="(yvy49000,yvy49001,yvy49002) <= yvy5000",fontsize=16,color="burlywood",shape="box"];4960[label="yvy5000/(yvy50000,yvy50001,yvy50002)",fontsize=10,color="white",style="solid",shape="box"];3315 -> 4960[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4960 -> 3448[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3316[label="False <= yvy5000",fontsize=16,color="burlywood",shape="box"];4961[label="yvy5000/False",fontsize=10,color="white",style="solid",shape="box"];3316 -> 4961[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4961 -> 3449[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4962[label="yvy5000/True",fontsize=10,color="white",style="solid",shape="box"];3316 -> 4962[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4962 -> 3450[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3317[label="True <= yvy5000",fontsize=16,color="burlywood",shape="box"];4963[label="yvy5000/False",fontsize=10,color="white",style="solid",shape="box"];3317 -> 4963[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4963 -> 3451[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4964[label="yvy5000/True",fontsize=10,color="white",style="solid",shape="box"];3317 -> 4964[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4964 -> 3452[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3318[label="Nothing <= yvy5000",fontsize=16,color="burlywood",shape="box"];4965[label="yvy5000/Nothing",fontsize=10,color="white",style="solid",shape="box"];3318 -> 4965[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4965 -> 3453[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4966[label="yvy5000/Just yvy50000",fontsize=10,color="white",style="solid",shape="box"];3318 -> 4966[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4966 -> 3454[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3319[label="Just yvy49000 <= yvy5000",fontsize=16,color="burlywood",shape="box"];4967[label="yvy5000/Nothing",fontsize=10,color="white",style="solid",shape="box"];3319 -> 4967[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4967 -> 3455[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4968[label="yvy5000/Just yvy50000",fontsize=10,color="white",style="solid",shape="box"];3319 -> 4968[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4968 -> 3456[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3320[label="Left yvy49000 <= yvy5000",fontsize=16,color="burlywood",shape="box"];4969[label="yvy5000/Left yvy50000",fontsize=10,color="white",style="solid",shape="box"];3320 -> 4969[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4969 -> 3457[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4970[label="yvy5000/Right yvy50000",fontsize=10,color="white",style="solid",shape="box"];3320 -> 4970[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4970 -> 3458[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3321[label="Right yvy49000 <= yvy5000",fontsize=16,color="burlywood",shape="box"];4971[label="yvy5000/Left yvy50000",fontsize=10,color="white",style="solid",shape="box"];3321 -> 4971[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4971 -> 3459[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4972[label="yvy5000/Right yvy50000",fontsize=10,color="white",style="solid",shape="box"];3321 -> 4972[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4972 -> 3460[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3322[label="LT <= yvy5000",fontsize=16,color="burlywood",shape="box"];4973[label="yvy5000/LT",fontsize=10,color="white",style="solid",shape="box"];3322 -> 4973[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4973 -> 3461[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4974[label="yvy5000/EQ",fontsize=10,color="white",style="solid",shape="box"];3322 -> 4974[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4974 -> 3462[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4975[label="yvy5000/GT",fontsize=10,color="white",style="solid",shape="box"];3322 -> 4975[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4975 -> 3463[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3323[label="EQ <= yvy5000",fontsize=16,color="burlywood",shape="box"];4976[label="yvy5000/LT",fontsize=10,color="white",style="solid",shape="box"];3323 -> 4976[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4976 -> 3464[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4977[label="yvy5000/EQ",fontsize=10,color="white",style="solid",shape="box"];3323 -> 4977[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4977 -> 3465[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4978[label="yvy5000/GT",fontsize=10,color="white",style="solid",shape="box"];3323 -> 4978[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4978 -> 3466[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3324[label="GT <= yvy5000",fontsize=16,color="burlywood",shape="box"];4979[label="yvy5000/LT",fontsize=10,color="white",style="solid",shape="box"];3324 -> 4979[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4979 -> 3467[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4980[label="yvy5000/EQ",fontsize=10,color="white",style="solid",shape="box"];3324 -> 4980[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4980 -> 3468[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4981[label="yvy5000/GT",fontsize=10,color="white",style="solid",shape="box"];3324 -> 4981[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4981 -> 3469[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3325 -> 3436[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3325[label="compare yvy4900 yvy5000 /= GT",fontsize=16,color="magenta"];3325 -> 3443[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3326 -> 3436[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3326[label="compare yvy4900 yvy5000 /= GT",fontsize=16,color="magenta"];3326 -> 3444[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3327[label="compare0 (Just yvy198) (Just yvy199) otherwise",fontsize=16,color="black",shape="box"];3327 -> 3470[label="",style="solid", color="black", weight=3]; 47.25/23.20 3328[label="LT",fontsize=16,color="green",shape="box"];3351[label="yvy3002",fontsize=16,color="green",shape="box"];3352[label="yvy4002",fontsize=16,color="green",shape="box"];3353[label="yvy3002",fontsize=16,color="green",shape="box"];3354[label="yvy4002",fontsize=16,color="green",shape="box"];3355[label="yvy3002",fontsize=16,color="green",shape="box"];3356[label="yvy4002",fontsize=16,color="green",shape="box"];3357[label="yvy3002",fontsize=16,color="green",shape="box"];3358[label="yvy4002",fontsize=16,color="green",shape="box"];3359[label="yvy3002",fontsize=16,color="green",shape="box"];3360[label="yvy4002",fontsize=16,color="green",shape="box"];3361[label="yvy3002",fontsize=16,color="green",shape="box"];3362[label="yvy4002",fontsize=16,color="green",shape="box"];3363[label="yvy3002",fontsize=16,color="green",shape="box"];3364[label="yvy4002",fontsize=16,color="green",shape="box"];3365[label="yvy3002",fontsize=16,color="green",shape="box"];3366[label="yvy4002",fontsize=16,color="green",shape="box"];3367[label="yvy3002",fontsize=16,color="green",shape="box"];3368[label="yvy4002",fontsize=16,color="green",shape="box"];3369[label="yvy3002",fontsize=16,color="green",shape="box"];3370[label="yvy4002",fontsize=16,color="green",shape="box"];3371[label="yvy3002",fontsize=16,color="green",shape="box"];3372[label="yvy4002",fontsize=16,color="green",shape="box"];3373[label="yvy3002",fontsize=16,color="green",shape="box"];3374[label="yvy4002",fontsize=16,color="green",shape="box"];3375[label="yvy3002",fontsize=16,color="green",shape="box"];3376[label="yvy4002",fontsize=16,color="green",shape="box"];3377[label="yvy3002",fontsize=16,color="green",shape="box"];3378[label="yvy4002",fontsize=16,color="green",shape="box"];3379[label="yvy3001",fontsize=16,color="green",shape="box"];3380[label="yvy4001",fontsize=16,color="green",shape="box"];3381[label="yvy3001",fontsize=16,color="green",shape="box"];3382[label="yvy4001",fontsize=16,color="green",shape="box"];3383[label="yvy3001",fontsize=16,color="green",shape="box"];3384[label="yvy4001",fontsize=16,color="green",shape="box"];3385[label="yvy3001",fontsize=16,color="green",shape="box"];3386[label="yvy4001",fontsize=16,color="green",shape="box"];3387[label="yvy3001",fontsize=16,color="green",shape="box"];3388[label="yvy4001",fontsize=16,color="green",shape="box"];3389[label="yvy3001",fontsize=16,color="green",shape="box"];3390[label="yvy4001",fontsize=16,color="green",shape="box"];3391[label="yvy3001",fontsize=16,color="green",shape="box"];3392[label="yvy4001",fontsize=16,color="green",shape="box"];3393[label="yvy3001",fontsize=16,color="green",shape="box"];3394[label="yvy4001",fontsize=16,color="green",shape="box"];3395[label="yvy3001",fontsize=16,color="green",shape="box"];3396[label="yvy4001",fontsize=16,color="green",shape="box"];3397[label="yvy3001",fontsize=16,color="green",shape="box"];3398[label="yvy4001",fontsize=16,color="green",shape="box"];3399[label="yvy3001",fontsize=16,color="green",shape="box"];3400[label="yvy4001",fontsize=16,color="green",shape="box"];3401[label="yvy3001",fontsize=16,color="green",shape="box"];3402[label="yvy4001",fontsize=16,color="green",shape="box"];3403[label="yvy3001",fontsize=16,color="green",shape="box"];3404[label="yvy4001",fontsize=16,color="green",shape="box"];3405[label="yvy3001",fontsize=16,color="green",shape="box"];3406[label="yvy4001",fontsize=16,color="green",shape="box"];3407[label="yvy30000",fontsize=16,color="green",shape="box"];3408[label="yvy40000",fontsize=16,color="green",shape="box"];3409[label="yvy30000",fontsize=16,color="green",shape="box"];3410[label="yvy40000",fontsize=16,color="green",shape="box"];3411 -> 2888[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3411[label="primEqNat yvy40000 yvy30000",fontsize=16,color="magenta"];3411 -> 3471[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3411 -> 3472[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3412[label="False",fontsize=16,color="green",shape="box"];3413[label="False",fontsize=16,color="green",shape="box"];3414[label="True",fontsize=16,color="green",shape="box"];2646 -> 2560[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2646[label="yvy20 == yvy15",fontsize=16,color="magenta"];2646 -> 2712[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2646 -> 2713[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2647 -> 2561[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2647[label="yvy20 == yvy15",fontsize=16,color="magenta"];2647 -> 2714[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2647 -> 2715[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2648 -> 2562[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2648[label="yvy20 == yvy15",fontsize=16,color="magenta"];2648 -> 2716[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2648 -> 2717[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2649 -> 2563[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2649[label="yvy20 == yvy15",fontsize=16,color="magenta"];2649 -> 2718[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2649 -> 2719[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2650 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2650[label="yvy20 == yvy15",fontsize=16,color="magenta"];2650 -> 2720[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2650 -> 2721[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2651 -> 2565[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2651[label="yvy20 == yvy15",fontsize=16,color="magenta"];2651 -> 2722[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2651 -> 2723[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2652 -> 2566[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2652[label="yvy20 == yvy15",fontsize=16,color="magenta"];2652 -> 2724[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2652 -> 2725[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2653 -> 2567[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2653[label="yvy20 == yvy15",fontsize=16,color="magenta"];2653 -> 2726[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2653 -> 2727[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2654 -> 2568[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2654[label="yvy20 == yvy15",fontsize=16,color="magenta"];2654 -> 2728[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2654 -> 2729[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2655 -> 2569[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2655[label="yvy20 == yvy15",fontsize=16,color="magenta"];2655 -> 2730[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2655 -> 2731[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2656 -> 2570[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2656[label="yvy20 == yvy15",fontsize=16,color="magenta"];2656 -> 2732[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2656 -> 2733[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2657 -> 2571[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2657[label="yvy20 == yvy15",fontsize=16,color="magenta"];2657 -> 2734[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2657 -> 2735[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2658 -> 2572[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2658[label="yvy20 == yvy15",fontsize=16,color="magenta"];2658 -> 2736[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2658 -> 2737[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2659 -> 2573[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2659[label="yvy20 == yvy15",fontsize=16,color="magenta"];2659 -> 2738[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2659 -> 2739[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1546[label="FiniteMap.Branch Nothing (FiniteMap.addToFM0 yvy51 yvy41) yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];1546 -> 1694[label="",style="dashed", color="green", weight=3]; 47.25/23.20 1547[label="Nothing",fontsize=16,color="green",shape="box"];1548[label="yvy54",fontsize=16,color="green",shape="box"];1549[label="FiniteMap.Branch Nothing (FiniteMap.addToFM0 yvy51 yvy41) yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];1549 -> 1695[label="",style="dashed", color="green", weight=3]; 47.25/23.20 1550[label="Nothing",fontsize=16,color="green",shape="box"];1551[label="yvy54",fontsize=16,color="green",shape="box"];1552[label="FiniteMap.Branch (Just yvy400) (FiniteMap.addToFM0 yvy51 yvy41) yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];1552 -> 1696[label="",style="dashed", color="green", weight=3]; 47.25/23.20 1553[label="Just yvy400",fontsize=16,color="green",shape="box"];1554[label="yvy54",fontsize=16,color="green",shape="box"];1555[label="FiniteMap.Branch (Just yvy400) (FiniteMap.addToFM0 yvy51 yvy41) yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];1555 -> 1697[label="",style="dashed", color="green", weight=3]; 47.25/23.20 1556[label="Just yvy400",fontsize=16,color="green",shape="box"];1557[label="yvy54",fontsize=16,color="green",shape="box"];1558[label="primCmpInt (Pos (primPlusNat (primPlusNat (primPlusNat (primPlusNat (primPlusNat Zero (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="black",shape="box"];1558 -> 1698[label="",style="solid", color="black", weight=3]; 47.25/23.20 1559[label="primCmpNat Zero (Succ yvy5200)",fontsize=16,color="black",shape="box"];1559 -> 1699[label="",style="solid", color="black", weight=3]; 47.25/23.20 1560[label="EQ",fontsize=16,color="green",shape="box"];1561[label="GT",fontsize=16,color="green",shape="box"];1562[label="EQ",fontsize=16,color="green",shape="box"];1837[label="yvy52",fontsize=16,color="green",shape="box"];1636[label="primMulInt (Pos yvy40010) (Pos yvy30000)",fontsize=16,color="black",shape="box"];1636 -> 1719[label="",style="solid", color="black", weight=3]; 47.25/23.20 1637[label="primMulInt (Pos yvy40010) (Neg yvy30000)",fontsize=16,color="black",shape="box"];1637 -> 1720[label="",style="solid", color="black", weight=3]; 47.25/23.20 1638[label="primMulInt (Neg yvy40010) (Pos yvy30000)",fontsize=16,color="black",shape="box"];1638 -> 1721[label="",style="solid", color="black", weight=3]; 47.25/23.20 1639[label="primMulInt (Neg yvy40010) (Neg yvy30000)",fontsize=16,color="black",shape="box"];1639 -> 1722[label="",style="solid", color="black", weight=3]; 47.25/23.20 2491[label="Pos Zero",fontsize=16,color="green",shape="box"];2492[label="yvy542",fontsize=16,color="green",shape="box"];1727[label="primCmpInt yvy49 yvy50",fontsize=16,color="burlywood",shape="triangle"];4982[label="yvy49/Pos yvy490",fontsize=10,color="white",style="solid",shape="box"];1727 -> 4982[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4982 -> 1861[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4983[label="yvy49/Neg yvy490",fontsize=10,color="white",style="solid",shape="box"];1727 -> 4983[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4983 -> 1862[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4373[label="yvy41",fontsize=16,color="green",shape="box"];4374[label="yvy40",fontsize=16,color="green",shape="box"];4375[label="FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="green",shape="box"];4376[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))",fontsize=16,color="green",shape="box"];4377[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];4372[label="FiniteMap.mkBranch (Pos (Succ yvy242)) yvy243 yvy244 yvy245 yvy246",fontsize=16,color="black",shape="triangle"];4372 -> 4428[label="",style="solid", color="black", weight=3]; 47.25/23.20 3416 -> 2432[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3416[label="FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy67 yvy54",fontsize=16,color="magenta"];3417 -> 2428[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3417[label="FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy67 yvy54",fontsize=16,color="magenta"];3415[label="yvy208 + yvy207",fontsize=16,color="black",shape="triangle"];3415 -> 3473[label="",style="solid", color="black", weight=3]; 47.25/23.20 1583 -> 1974[label="",style="dashed", color="red", weight=0]; 47.25/23.20 1583[label="FiniteMap.mkBalBranch6MkBalBranch4 yvy50 yvy51 yvy67 yvy54 yvy50 yvy51 yvy67 yvy54 (FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy67 yvy54 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy67 yvy54)",fontsize=16,color="magenta"];1583 -> 1975[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1584 -> 4372[label="",style="dashed", color="red", weight=0]; 47.25/23.20 1584[label="FiniteMap.mkBranch (Pos (Succ Zero)) yvy50 yvy51 yvy67 yvy54",fontsize=16,color="magenta"];1584 -> 4388[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1584 -> 4389[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1584 -> 4390[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1584 -> 4391[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1584 -> 4392[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1585[label="primCmpInt (Neg (primPlusNat (primPlusNat (primPlusNat (primPlusNat (primPlusNat Zero (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="black",shape="box"];1585 -> 1711[label="",style="solid", color="black", weight=3]; 47.25/23.20 1586[label="LT",fontsize=16,color="green",shape="box"];1587[label="EQ",fontsize=16,color="green",shape="box"];1588[label="primCmpNat (Succ yvy5200) Zero",fontsize=16,color="black",shape="box"];1588 -> 1712[label="",style="solid", color="black", weight=3]; 47.25/23.20 1589[label="EQ",fontsize=16,color="green",shape="box"];4378[label="yvy41",fontsize=16,color="green",shape="box"];4379[label="yvy40",fontsize=16,color="green",shape="box"];4380[label="FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="green",shape="box"];4381[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))",fontsize=16,color="green",shape="box"];4382[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];3437[label="compare yvy4900 yvy5000",fontsize=16,color="black",shape="triangle"];3437 -> 3474[label="",style="solid", color="black", weight=3]; 47.25/23.20 3436[label="yvy209 /= GT",fontsize=16,color="black",shape="triangle"];3436 -> 3475[label="",style="solid", color="black", weight=3]; 47.25/23.20 3438[label="compare yvy4900 yvy5000",fontsize=16,color="black",shape="triangle"];3438 -> 3476[label="",style="solid", color="black", weight=3]; 47.25/23.20 3439 -> 1649[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3439[label="compare yvy4900 yvy5000",fontsize=16,color="magenta"];3439 -> 3477[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3439 -> 3478[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3440[label="compare yvy4900 yvy5000",fontsize=16,color="burlywood",shape="triangle"];4984[label="yvy4900/yvy49000 : yvy49001",fontsize=10,color="white",style="solid",shape="box"];3440 -> 4984[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4984 -> 3479[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4985[label="yvy4900/[]",fontsize=10,color="white",style="solid",shape="box"];3440 -> 4985[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4985 -> 3480[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3441[label="compare yvy4900 yvy5000",fontsize=16,color="burlywood",shape="triangle"];4986[label="yvy4900/()",fontsize=10,color="white",style="solid",shape="box"];3441 -> 4986[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4986 -> 3481[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3442[label="compare yvy4900 yvy5000",fontsize=16,color="burlywood",shape="triangle"];4987[label="yvy4900/Integer yvy49000",fontsize=10,color="white",style="solid",shape="box"];3442 -> 4987[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4987 -> 3482[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3447[label="(yvy49000,yvy49001) <= (yvy50000,yvy50001)",fontsize=16,color="black",shape="box"];3447 -> 3505[label="",style="solid", color="black", weight=3]; 47.25/23.20 3448[label="(yvy49000,yvy49001,yvy49002) <= (yvy50000,yvy50001,yvy50002)",fontsize=16,color="black",shape="box"];3448 -> 3506[label="",style="solid", color="black", weight=3]; 47.25/23.20 3449[label="False <= False",fontsize=16,color="black",shape="box"];3449 -> 3507[label="",style="solid", color="black", weight=3]; 47.25/23.20 3450[label="False <= True",fontsize=16,color="black",shape="box"];3450 -> 3508[label="",style="solid", color="black", weight=3]; 47.25/23.20 3451[label="True <= False",fontsize=16,color="black",shape="box"];3451 -> 3509[label="",style="solid", color="black", weight=3]; 47.25/23.20 3452[label="True <= True",fontsize=16,color="black",shape="box"];3452 -> 3510[label="",style="solid", color="black", weight=3]; 47.25/23.20 3453[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];3453 -> 3511[label="",style="solid", color="black", weight=3]; 47.25/23.20 3454[label="Nothing <= Just yvy50000",fontsize=16,color="black",shape="box"];3454 -> 3512[label="",style="solid", color="black", weight=3]; 47.25/23.20 3455[label="Just yvy49000 <= Nothing",fontsize=16,color="black",shape="box"];3455 -> 3513[label="",style="solid", color="black", weight=3]; 47.25/23.20 3456[label="Just yvy49000 <= Just yvy50000",fontsize=16,color="black",shape="box"];3456 -> 3514[label="",style="solid", color="black", weight=3]; 47.25/23.20 3457[label="Left yvy49000 <= Left yvy50000",fontsize=16,color="black",shape="box"];3457 -> 3515[label="",style="solid", color="black", weight=3]; 47.25/23.20 3458[label="Left yvy49000 <= Right yvy50000",fontsize=16,color="black",shape="box"];3458 -> 3516[label="",style="solid", color="black", weight=3]; 47.25/23.20 3459[label="Right yvy49000 <= Left yvy50000",fontsize=16,color="black",shape="box"];3459 -> 3517[label="",style="solid", color="black", weight=3]; 47.25/23.20 3460[label="Right yvy49000 <= Right yvy50000",fontsize=16,color="black",shape="box"];3460 -> 3518[label="",style="solid", color="black", weight=3]; 47.25/23.20 3461[label="LT <= LT",fontsize=16,color="black",shape="box"];3461 -> 3519[label="",style="solid", color="black", weight=3]; 47.25/23.20 3462[label="LT <= EQ",fontsize=16,color="black",shape="box"];3462 -> 3520[label="",style="solid", color="black", weight=3]; 47.25/23.20 3463[label="LT <= GT",fontsize=16,color="black",shape="box"];3463 -> 3521[label="",style="solid", color="black", weight=3]; 47.25/23.20 3464[label="EQ <= LT",fontsize=16,color="black",shape="box"];3464 -> 3522[label="",style="solid", color="black", weight=3]; 47.25/23.20 3465[label="EQ <= EQ",fontsize=16,color="black",shape="box"];3465 -> 3523[label="",style="solid", color="black", weight=3]; 47.25/23.20 3466[label="EQ <= GT",fontsize=16,color="black",shape="box"];3466 -> 3524[label="",style="solid", color="black", weight=3]; 47.25/23.20 3467[label="GT <= LT",fontsize=16,color="black",shape="box"];3467 -> 3525[label="",style="solid", color="black", weight=3]; 47.25/23.20 3468[label="GT <= EQ",fontsize=16,color="black",shape="box"];3468 -> 3526[label="",style="solid", color="black", weight=3]; 47.25/23.20 3469[label="GT <= GT",fontsize=16,color="black",shape="box"];3469 -> 3527[label="",style="solid", color="black", weight=3]; 47.25/23.20 3443[label="compare yvy4900 yvy5000",fontsize=16,color="black",shape="triangle"];3443 -> 3483[label="",style="solid", color="black", weight=3]; 47.25/23.20 3444[label="compare yvy4900 yvy5000",fontsize=16,color="burlywood",shape="triangle"];4988[label="yvy4900/yvy49000 :% yvy49001",fontsize=10,color="white",style="solid",shape="box"];3444 -> 4988[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4988 -> 3484[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3470[label="compare0 (Just yvy198) (Just yvy199) True",fontsize=16,color="black",shape="box"];3470 -> 3528[label="",style="solid", color="black", weight=3]; 47.25/23.20 3471[label="yvy30000",fontsize=16,color="green",shape="box"];3472[label="yvy40000",fontsize=16,color="green",shape="box"];2712[label="yvy15",fontsize=16,color="green",shape="box"];2713[label="yvy20",fontsize=16,color="green",shape="box"];2714[label="yvy15",fontsize=16,color="green",shape="box"];2715[label="yvy20",fontsize=16,color="green",shape="box"];2716[label="yvy15",fontsize=16,color="green",shape="box"];2717[label="yvy20",fontsize=16,color="green",shape="box"];2718[label="yvy15",fontsize=16,color="green",shape="box"];2719[label="yvy20",fontsize=16,color="green",shape="box"];2720[label="yvy15",fontsize=16,color="green",shape="box"];2721[label="yvy20",fontsize=16,color="green",shape="box"];2722[label="yvy15",fontsize=16,color="green",shape="box"];2723[label="yvy20",fontsize=16,color="green",shape="box"];2724[label="yvy15",fontsize=16,color="green",shape="box"];2725[label="yvy20",fontsize=16,color="green",shape="box"];2726[label="yvy15",fontsize=16,color="green",shape="box"];2727[label="yvy20",fontsize=16,color="green",shape="box"];2728[label="yvy15",fontsize=16,color="green",shape="box"];2729[label="yvy20",fontsize=16,color="green",shape="box"];2730[label="yvy15",fontsize=16,color="green",shape="box"];2731[label="yvy20",fontsize=16,color="green",shape="box"];2732[label="yvy15",fontsize=16,color="green",shape="box"];2733[label="yvy20",fontsize=16,color="green",shape="box"];2734[label="yvy15",fontsize=16,color="green",shape="box"];2735[label="yvy20",fontsize=16,color="green",shape="box"];2736[label="yvy15",fontsize=16,color="green",shape="box"];2737[label="yvy20",fontsize=16,color="green",shape="box"];2738[label="yvy15",fontsize=16,color="green",shape="box"];2739[label="yvy20",fontsize=16,color="green",shape="box"];1694[label="FiniteMap.addToFM0 yvy51 yvy41",fontsize=16,color="black",shape="triangle"];1694 -> 1834[label="",style="solid", color="black", weight=3]; 47.25/23.20 1695 -> 1694[label="",style="dashed", color="red", weight=0]; 47.25/23.20 1695[label="FiniteMap.addToFM0 yvy51 yvy41",fontsize=16,color="magenta"];1696 -> 1694[label="",style="dashed", color="red", weight=0]; 47.25/23.20 1696[label="FiniteMap.addToFM0 yvy51 yvy41",fontsize=16,color="magenta"];1697 -> 1694[label="",style="dashed", color="red", weight=0]; 47.25/23.20 1697[label="FiniteMap.addToFM0 yvy51 yvy41",fontsize=16,color="magenta"];1698 -> 1835[label="",style="dashed", color="red", weight=0]; 47.25/23.20 1698[label="primCmpInt (Pos (primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="magenta"];1698 -> 1836[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1699[label="LT",fontsize=16,color="green",shape="box"];1719[label="Pos (primMulNat yvy40010 yvy30000)",fontsize=16,color="green",shape="box"];1719 -> 1855[label="",style="dashed", color="green", weight=3]; 47.25/23.20 1720[label="Neg (primMulNat yvy40010 yvy30000)",fontsize=16,color="green",shape="box"];1720 -> 1856[label="",style="dashed", color="green", weight=3]; 47.25/23.20 1721[label="Neg (primMulNat yvy40010 yvy30000)",fontsize=16,color="green",shape="box"];1721 -> 1857[label="",style="dashed", color="green", weight=3]; 47.25/23.20 1722[label="Pos (primMulNat yvy40010 yvy30000)",fontsize=16,color="green",shape="box"];1722 -> 1858[label="",style="dashed", color="green", weight=3]; 47.25/23.20 1861[label="primCmpInt (Pos yvy490) yvy50",fontsize=16,color="burlywood",shape="box"];4989[label="yvy490/Succ yvy4900",fontsize=10,color="white",style="solid",shape="box"];1861 -> 4989[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4989 -> 2007[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4990[label="yvy490/Zero",fontsize=10,color="white",style="solid",shape="box"];1861 -> 4990[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4990 -> 2008[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 1862[label="primCmpInt (Neg yvy490) yvy50",fontsize=16,color="burlywood",shape="box"];4991[label="yvy490/Succ yvy4900",fontsize=10,color="white",style="solid",shape="box"];1862 -> 4991[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4991 -> 2009[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4992[label="yvy490/Zero",fontsize=10,color="white",style="solid",shape="box"];1862 -> 4992[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4992 -> 2010[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4428[label="FiniteMap.mkBranchResult yvy243 yvy244 yvy246 yvy245",fontsize=16,color="black",shape="box"];4428 -> 4433[label="",style="solid", color="black", weight=3]; 47.25/23.20 2432[label="FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy67 yvy54",fontsize=16,color="black",shape="triangle"];2432 -> 2440[label="",style="solid", color="black", weight=3]; 47.25/23.20 2428[label="FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy67 yvy54",fontsize=16,color="black",shape="triangle"];2428 -> 2434[label="",style="solid", color="black", weight=3]; 47.25/23.20 3473[label="primPlusInt yvy208 yvy207",fontsize=16,color="burlywood",shape="box"];4993[label="yvy208/Pos yvy2080",fontsize=10,color="white",style="solid",shape="box"];3473 -> 4993[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4993 -> 3529[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4994[label="yvy208/Neg yvy2080",fontsize=10,color="white",style="solid",shape="box"];3473 -> 4994[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4994 -> 3530[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 1975 -> 2427[label="",style="dashed", color="red", weight=0]; 47.25/23.20 1975[label="FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy67 yvy54 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy67 yvy54",fontsize=16,color="magenta"];1975 -> 2428[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1975 -> 2429[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1974[label="FiniteMap.mkBalBranch6MkBalBranch4 yvy50 yvy51 yvy67 yvy54 yvy50 yvy51 yvy67 yvy54 yvy147",fontsize=16,color="burlywood",shape="triangle"];4995[label="yvy147/False",fontsize=10,color="white",style="solid",shape="box"];1974 -> 4995[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4995 -> 1980[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4996[label="yvy147/True",fontsize=10,color="white",style="solid",shape="box"];1974 -> 4996[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4996 -> 1981[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4388[label="yvy51",fontsize=16,color="green",shape="box"];4389[label="yvy50",fontsize=16,color="green",shape="box"];4390[label="yvy67",fontsize=16,color="green",shape="box"];4391[label="Zero",fontsize=16,color="green",shape="box"];4392[label="yvy54",fontsize=16,color="green",shape="box"];1711 -> 1848[label="",style="dashed", color="red", weight=0]; 47.25/23.20 1711[label="primCmpInt (Neg (primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="magenta"];1711 -> 1849[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1712[label="GT",fontsize=16,color="green",shape="box"];3474[label="primCmpFloat yvy4900 yvy5000",fontsize=16,color="burlywood",shape="box"];4997[label="yvy4900/Float yvy49000 yvy49001",fontsize=10,color="white",style="solid",shape="box"];3474 -> 4997[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4997 -> 3531[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3475 -> 3532[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3475[label="not (yvy209 == GT)",fontsize=16,color="magenta"];3475 -> 3533[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3476[label="primCmpChar yvy4900 yvy5000",fontsize=16,color="burlywood",shape="box"];4998[label="yvy4900/Char yvy49000",fontsize=10,color="white",style="solid",shape="box"];3476 -> 4998[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4998 -> 3534[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3477[label="yvy4900",fontsize=16,color="green",shape="box"];3478[label="yvy5000",fontsize=16,color="green",shape="box"];3479[label="compare (yvy49000 : yvy49001) yvy5000",fontsize=16,color="burlywood",shape="box"];4999[label="yvy5000/yvy50000 : yvy50001",fontsize=10,color="white",style="solid",shape="box"];3479 -> 4999[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 4999 -> 3535[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 5000[label="yvy5000/[]",fontsize=10,color="white",style="solid",shape="box"];3479 -> 5000[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5000 -> 3536[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3480[label="compare [] yvy5000",fontsize=16,color="burlywood",shape="box"];5001[label="yvy5000/yvy50000 : yvy50001",fontsize=10,color="white",style="solid",shape="box"];3480 -> 5001[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5001 -> 3537[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 5002[label="yvy5000/[]",fontsize=10,color="white",style="solid",shape="box"];3480 -> 5002[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5002 -> 3538[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3481[label="compare () yvy5000",fontsize=16,color="burlywood",shape="box"];5003[label="yvy5000/()",fontsize=10,color="white",style="solid",shape="box"];3481 -> 5003[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5003 -> 3539[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3482[label="compare (Integer yvy49000) yvy5000",fontsize=16,color="burlywood",shape="box"];5004[label="yvy5000/Integer yvy50000",fontsize=10,color="white",style="solid",shape="box"];3482 -> 5004[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5004 -> 3540[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3505 -> 3609[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3505[label="yvy49000 < yvy50000 || yvy49000 == yvy50000 && yvy49001 <= yvy50001",fontsize=16,color="magenta"];3505 -> 3610[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3505 -> 3611[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3506 -> 3609[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3506[label="yvy49000 < yvy50000 || yvy49000 == yvy50000 && (yvy49001 < yvy50001 || yvy49001 == yvy50001 && yvy49002 <= yvy50002)",fontsize=16,color="magenta"];3506 -> 3612[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3506 -> 3613[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3507[label="True",fontsize=16,color="green",shape="box"];3508[label="True",fontsize=16,color="green",shape="box"];3509[label="False",fontsize=16,color="green",shape="box"];3510[label="True",fontsize=16,color="green",shape="box"];3511[label="True",fontsize=16,color="green",shape="box"];3512[label="True",fontsize=16,color="green",shape="box"];3513[label="False",fontsize=16,color="green",shape="box"];3514[label="yvy49000 <= yvy50000",fontsize=16,color="blue",shape="box"];5005[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3514 -> 5005[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5005 -> 3546[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5006[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3514 -> 5006[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5006 -> 3547[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5007[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3514 -> 5007[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5007 -> 3548[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5008[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3514 -> 5008[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5008 -> 3549[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5009[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3514 -> 5009[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5009 -> 3550[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5010[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3514 -> 5010[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5010 -> 3551[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5011[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3514 -> 5011[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5011 -> 3552[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5012[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3514 -> 5012[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5012 -> 3553[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5013[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3514 -> 5013[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5013 -> 3554[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5014[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3514 -> 5014[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5014 -> 3555[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5015[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3514 -> 5015[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5015 -> 3556[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5016[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3514 -> 5016[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5016 -> 3557[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5017[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3514 -> 5017[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5017 -> 3558[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5018[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3514 -> 5018[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5018 -> 3559[label="",style="solid", color="blue", weight=3]; 47.25/23.20 3515[label="yvy49000 <= yvy50000",fontsize=16,color="blue",shape="box"];5019[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3515 -> 5019[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5019 -> 3560[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5020[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3515 -> 5020[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5020 -> 3561[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5021[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3515 -> 5021[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5021 -> 3562[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5022[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3515 -> 5022[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5022 -> 3563[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5023[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3515 -> 5023[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5023 -> 3564[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5024[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3515 -> 5024[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5024 -> 3565[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5025[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3515 -> 5025[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5025 -> 3566[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5026[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3515 -> 5026[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5026 -> 3567[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5027[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3515 -> 5027[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5027 -> 3568[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5028[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3515 -> 5028[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5028 -> 3569[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5029[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3515 -> 5029[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5029 -> 3570[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5030[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3515 -> 5030[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5030 -> 3571[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5031[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3515 -> 5031[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5031 -> 3572[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5032[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3515 -> 5032[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5032 -> 3573[label="",style="solid", color="blue", weight=3]; 47.25/23.20 3516[label="True",fontsize=16,color="green",shape="box"];3517[label="False",fontsize=16,color="green",shape="box"];3518[label="yvy49000 <= yvy50000",fontsize=16,color="blue",shape="box"];5033[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3518 -> 5033[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5033 -> 3574[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5034[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3518 -> 5034[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5034 -> 3575[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5035[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3518 -> 5035[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5035 -> 3576[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5036[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3518 -> 5036[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5036 -> 3577[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5037[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3518 -> 5037[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5037 -> 3578[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5038[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3518 -> 5038[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5038 -> 3579[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5039[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3518 -> 5039[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5039 -> 3580[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5040[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3518 -> 5040[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5040 -> 3581[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5041[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3518 -> 5041[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5041 -> 3582[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5042[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3518 -> 5042[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5042 -> 3583[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5043[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3518 -> 5043[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5043 -> 3584[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5044[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3518 -> 5044[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5044 -> 3585[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5045[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3518 -> 5045[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5045 -> 3586[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5046[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3518 -> 5046[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5046 -> 3587[label="",style="solid", color="blue", weight=3]; 47.25/23.20 3519[label="True",fontsize=16,color="green",shape="box"];3520[label="True",fontsize=16,color="green",shape="box"];3521[label="True",fontsize=16,color="green",shape="box"];3522[label="False",fontsize=16,color="green",shape="box"];3523[label="True",fontsize=16,color="green",shape="box"];3524[label="True",fontsize=16,color="green",shape="box"];3525[label="False",fontsize=16,color="green",shape="box"];3526[label="False",fontsize=16,color="green",shape="box"];3527[label="True",fontsize=16,color="green",shape="box"];3483[label="primCmpDouble yvy4900 yvy5000",fontsize=16,color="burlywood",shape="box"];5047[label="yvy4900/Double yvy49000 yvy49001",fontsize=10,color="white",style="solid",shape="box"];3483 -> 5047[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5047 -> 3588[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3484[label="compare (yvy49000 :% yvy49001) yvy5000",fontsize=16,color="burlywood",shape="box"];5048[label="yvy5000/yvy50000 :% yvy50001",fontsize=10,color="white",style="solid",shape="box"];3484 -> 5048[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5048 -> 3589[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3528[label="GT",fontsize=16,color="green",shape="box"];1834[label="yvy41",fontsize=16,color="green",shape="box"];1836 -> 1564[label="",style="dashed", color="red", weight=0]; 47.25/23.20 1836[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64",fontsize=16,color="magenta"];1836 -> 1959[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1835 -> 1727[label="",style="dashed", color="red", weight=0]; 47.25/23.20 1835[label="primCmpInt (Pos (primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) yvy145",fontsize=16,color="magenta"];1835 -> 1960[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1835 -> 1961[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1855[label="primMulNat yvy40010 yvy30000",fontsize=16,color="burlywood",shape="triangle"];5049[label="yvy40010/Succ yvy400100",fontsize=10,color="white",style="solid",shape="box"];1855 -> 5049[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5049 -> 1998[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 5050[label="yvy40010/Zero",fontsize=10,color="white",style="solid",shape="box"];1855 -> 5050[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5050 -> 1999[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 1856 -> 1855[label="",style="dashed", color="red", weight=0]; 47.25/23.20 1856[label="primMulNat yvy40010 yvy30000",fontsize=16,color="magenta"];1856 -> 2000[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1857 -> 1855[label="",style="dashed", color="red", weight=0]; 47.25/23.20 1857[label="primMulNat yvy40010 yvy30000",fontsize=16,color="magenta"];1857 -> 2001[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1858 -> 1855[label="",style="dashed", color="red", weight=0]; 47.25/23.20 1858[label="primMulNat yvy40010 yvy30000",fontsize=16,color="magenta"];1858 -> 2002[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1858 -> 2003[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2007[label="primCmpInt (Pos (Succ yvy4900)) yvy50",fontsize=16,color="burlywood",shape="box"];5051[label="yvy50/Pos yvy500",fontsize=10,color="white",style="solid",shape="box"];2007 -> 5051[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5051 -> 2206[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 5052[label="yvy50/Neg yvy500",fontsize=10,color="white",style="solid",shape="box"];2007 -> 5052[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5052 -> 2207[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 2008[label="primCmpInt (Pos Zero) yvy50",fontsize=16,color="burlywood",shape="box"];5053[label="yvy50/Pos yvy500",fontsize=10,color="white",style="solid",shape="box"];2008 -> 5053[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5053 -> 2208[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 5054[label="yvy50/Neg yvy500",fontsize=10,color="white",style="solid",shape="box"];2008 -> 5054[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5054 -> 2209[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 2009[label="primCmpInt (Neg (Succ yvy4900)) yvy50",fontsize=16,color="burlywood",shape="box"];5055[label="yvy50/Pos yvy500",fontsize=10,color="white",style="solid",shape="box"];2009 -> 5055[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5055 -> 2210[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 5056[label="yvy50/Neg yvy500",fontsize=10,color="white",style="solid",shape="box"];2009 -> 5056[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5056 -> 2211[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 2010[label="primCmpInt (Neg Zero) yvy50",fontsize=16,color="burlywood",shape="box"];5057[label="yvy50/Pos yvy500",fontsize=10,color="white",style="solid",shape="box"];2010 -> 5057[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5057 -> 2212[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 5058[label="yvy50/Neg yvy500",fontsize=10,color="white",style="solid",shape="box"];2010 -> 5058[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5058 -> 2213[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4433[label="FiniteMap.Branch yvy243 yvy244 (FiniteMap.mkBranchUnbox yvy246 yvy243 yvy245 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy246 yvy243 yvy245 + FiniteMap.mkBranchRight_size yvy246 yvy243 yvy245)) yvy245 yvy246",fontsize=16,color="green",shape="box"];4433 -> 4436[label="",style="dashed", color="green", weight=3]; 47.25/23.20 2440 -> 2434[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2440[label="FiniteMap.sizeFM yvy67",fontsize=16,color="magenta"];2440 -> 2495[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3529[label="primPlusInt (Pos yvy2080) yvy207",fontsize=16,color="burlywood",shape="box"];5059[label="yvy207/Pos yvy2070",fontsize=10,color="white",style="solid",shape="box"];3529 -> 5059[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5059 -> 3590[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 5060[label="yvy207/Neg yvy2070",fontsize=10,color="white",style="solid",shape="box"];3529 -> 5060[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5060 -> 3591[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3530[label="primPlusInt (Neg yvy2080) yvy207",fontsize=16,color="burlywood",shape="box"];5061[label="yvy207/Pos yvy2070",fontsize=10,color="white",style="solid",shape="box"];3530 -> 5061[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5061 -> 3592[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 5062[label="yvy207/Neg yvy2070",fontsize=10,color="white",style="solid",shape="box"];3530 -> 5062[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5062 -> 3593[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 2429 -> 986[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2429[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy67 yvy54",fontsize=16,color="magenta"];2429 -> 2435[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2429 -> 2436[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2427[label="yvy158 > yvy157",fontsize=16,color="black",shape="triangle"];2427 -> 2437[label="",style="solid", color="black", weight=3]; 47.25/23.20 1980[label="FiniteMap.mkBalBranch6MkBalBranch4 yvy50 yvy51 yvy67 yvy54 yvy50 yvy51 yvy67 yvy54 False",fontsize=16,color="black",shape="box"];1980 -> 2171[label="",style="solid", color="black", weight=3]; 47.25/23.20 1981[label="FiniteMap.mkBalBranch6MkBalBranch4 yvy50 yvy51 yvy67 yvy54 yvy50 yvy51 yvy67 yvy54 True",fontsize=16,color="black",shape="box"];1981 -> 2172[label="",style="solid", color="black", weight=3]; 47.25/23.20 1849 -> 1591[label="",style="dashed", color="red", weight=0]; 47.25/23.20 1849[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64",fontsize=16,color="magenta"];1849 -> 1986[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1848 -> 1727[label="",style="dashed", color="red", weight=0]; 47.25/23.20 1848[label="primCmpInt (Neg (primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) yvy146",fontsize=16,color="magenta"];1848 -> 1987[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 1848 -> 1988[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3531[label="primCmpFloat (Float yvy49000 yvy49001) yvy5000",fontsize=16,color="burlywood",shape="box"];5063[label="yvy49001/Pos yvy490010",fontsize=10,color="white",style="solid",shape="box"];3531 -> 5063[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5063 -> 3594[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 5064[label="yvy49001/Neg yvy490010",fontsize=10,color="white",style="solid",shape="box"];3531 -> 5064[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5064 -> 3595[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3533 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3533[label="yvy209 == GT",fontsize=16,color="magenta"];3533 -> 3596[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3533 -> 3597[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3532[label="not yvy214",fontsize=16,color="burlywood",shape="triangle"];5065[label="yvy214/False",fontsize=10,color="white",style="solid",shape="box"];3532 -> 5065[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5065 -> 3598[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 5066[label="yvy214/True",fontsize=10,color="white",style="solid",shape="box"];3532 -> 5066[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5066 -> 3599[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3534[label="primCmpChar (Char yvy49000) yvy5000",fontsize=16,color="burlywood",shape="box"];5067[label="yvy5000/Char yvy50000",fontsize=10,color="white",style="solid",shape="box"];3534 -> 5067[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5067 -> 3600[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3535[label="compare (yvy49000 : yvy49001) (yvy50000 : yvy50001)",fontsize=16,color="black",shape="box"];3535 -> 3601[label="",style="solid", color="black", weight=3]; 47.25/23.20 3536[label="compare (yvy49000 : yvy49001) []",fontsize=16,color="black",shape="box"];3536 -> 3602[label="",style="solid", color="black", weight=3]; 47.25/23.20 3537[label="compare [] (yvy50000 : yvy50001)",fontsize=16,color="black",shape="box"];3537 -> 3603[label="",style="solid", color="black", weight=3]; 47.25/23.20 3538[label="compare [] []",fontsize=16,color="black",shape="box"];3538 -> 3604[label="",style="solid", color="black", weight=3]; 47.25/23.20 3539[label="compare () ()",fontsize=16,color="black",shape="box"];3539 -> 3605[label="",style="solid", color="black", weight=3]; 47.25/23.20 3540[label="compare (Integer yvy49000) (Integer yvy50000)",fontsize=16,color="black",shape="box"];3540 -> 3606[label="",style="solid", color="black", weight=3]; 47.25/23.20 3610[label="yvy49000 < yvy50000",fontsize=16,color="blue",shape="box"];5068[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3610 -> 5068[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5068 -> 3616[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5069[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3610 -> 5069[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5069 -> 3617[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5070[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3610 -> 5070[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5070 -> 3618[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5071[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3610 -> 5071[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5071 -> 3619[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5072[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3610 -> 5072[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5072 -> 3620[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5073[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3610 -> 5073[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5073 -> 3621[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5074[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3610 -> 5074[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5074 -> 3622[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5075[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3610 -> 5075[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5075 -> 3623[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5076[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3610 -> 5076[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5076 -> 3624[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5077[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3610 -> 5077[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5077 -> 3625[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5078[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3610 -> 5078[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5078 -> 3626[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5079[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3610 -> 5079[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5079 -> 3627[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5080[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3610 -> 5080[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5080 -> 3628[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5081[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3610 -> 5081[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5081 -> 3629[label="",style="solid", color="blue", weight=3]; 47.25/23.20 3611 -> 2911[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3611[label="yvy49000 == yvy50000 && yvy49001 <= yvy50001",fontsize=16,color="magenta"];3611 -> 3630[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3611 -> 3631[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3609[label="yvy219 || yvy220",fontsize=16,color="burlywood",shape="triangle"];5082[label="yvy219/False",fontsize=10,color="white",style="solid",shape="box"];3609 -> 5082[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5082 -> 3632[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 5083[label="yvy219/True",fontsize=10,color="white",style="solid",shape="box"];3609 -> 5083[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5083 -> 3633[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3612[label="yvy49000 < yvy50000",fontsize=16,color="blue",shape="box"];5084[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3612 -> 5084[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5084 -> 3634[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5085[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3612 -> 5085[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5085 -> 3635[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5086[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3612 -> 5086[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5086 -> 3636[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5087[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3612 -> 5087[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5087 -> 3637[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5088[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3612 -> 5088[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5088 -> 3638[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5089[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3612 -> 5089[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5089 -> 3639[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5090[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3612 -> 5090[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5090 -> 3640[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5091[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3612 -> 5091[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5091 -> 3641[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5092[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3612 -> 5092[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5092 -> 3642[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5093[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3612 -> 5093[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5093 -> 3643[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5094[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3612 -> 5094[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5094 -> 3644[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5095[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3612 -> 5095[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5095 -> 3645[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5096[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3612 -> 5096[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5096 -> 3646[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5097[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3612 -> 5097[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5097 -> 3647[label="",style="solid", color="blue", weight=3]; 47.25/23.20 3613 -> 2911[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3613[label="yvy49000 == yvy50000 && (yvy49001 < yvy50001 || yvy49001 == yvy50001 && yvy49002 <= yvy50002)",fontsize=16,color="magenta"];3613 -> 3648[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3613 -> 3649[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3546 -> 3094[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3546[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3546 -> 3650[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3546 -> 3651[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3547 -> 3095[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3547[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3547 -> 3652[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3547 -> 3653[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3548 -> 3096[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3548[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3548 -> 3654[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3548 -> 3655[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3549 -> 3097[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3549[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3549 -> 3656[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3549 -> 3657[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3550 -> 3098[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3550[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3550 -> 3658[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3550 -> 3659[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3551 -> 3099[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3551[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3551 -> 3660[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3551 -> 3661[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3552 -> 3100[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3552[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3552 -> 3662[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3552 -> 3663[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3553 -> 3101[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3553[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3553 -> 3664[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3553 -> 3665[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3554 -> 3102[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3554[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3554 -> 3666[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3554 -> 3667[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3555 -> 3103[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3555[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3555 -> 3668[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3555 -> 3669[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3556 -> 3104[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3556[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3556 -> 3670[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3556 -> 3671[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3557 -> 3105[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3557[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3557 -> 3672[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3557 -> 3673[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3558 -> 3106[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3558[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3558 -> 3674[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3558 -> 3675[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3559 -> 3107[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3559[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3559 -> 3676[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3559 -> 3677[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3560 -> 3094[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3560[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3560 -> 3678[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3560 -> 3679[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3561 -> 3095[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3561[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3561 -> 3680[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3561 -> 3681[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3562 -> 3096[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3562[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3562 -> 3682[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3562 -> 3683[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3563 -> 3097[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3563[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3563 -> 3684[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3563 -> 3685[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3564 -> 3098[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3564[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3564 -> 3686[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3564 -> 3687[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3565 -> 3099[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3565[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3565 -> 3688[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3565 -> 3689[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3566 -> 3100[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3566[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3566 -> 3690[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3566 -> 3691[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3567 -> 3101[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3567[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3567 -> 3692[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3567 -> 3693[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3568 -> 3102[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3568[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3568 -> 3694[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3568 -> 3695[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3569 -> 3103[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3569[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3569 -> 3696[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3569 -> 3697[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3570 -> 3104[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3570[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3570 -> 3698[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3570 -> 3699[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3571 -> 3105[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3571[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3571 -> 3700[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3571 -> 3701[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3572 -> 3106[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3572[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3572 -> 3702[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3572 -> 3703[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3573 -> 3107[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3573[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3573 -> 3704[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3573 -> 3705[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3574 -> 3094[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3574[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3574 -> 3706[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3574 -> 3707[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3575 -> 3095[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3575[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3575 -> 3708[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3575 -> 3709[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3576 -> 3096[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3576[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3576 -> 3710[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3576 -> 3711[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3577 -> 3097[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3577[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3577 -> 3712[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3577 -> 3713[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3578 -> 3098[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3578[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3578 -> 3714[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3578 -> 3715[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3579 -> 3099[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3579[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3579 -> 3716[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3579 -> 3717[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3580 -> 3100[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3580[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3580 -> 3718[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3580 -> 3719[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3581 -> 3101[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3581[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3581 -> 3720[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3581 -> 3721[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3582 -> 3102[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3582[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3582 -> 3722[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3582 -> 3723[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3583 -> 3103[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3583[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3583 -> 3724[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3583 -> 3725[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3584 -> 3104[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3584[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3584 -> 3726[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3584 -> 3727[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3585 -> 3105[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3585[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3585 -> 3728[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3585 -> 3729[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3586 -> 3106[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3586[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3586 -> 3730[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3586 -> 3731[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3587 -> 3107[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3587[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3587 -> 3732[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3587 -> 3733[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3588[label="primCmpDouble (Double yvy49000 yvy49001) yvy5000",fontsize=16,color="burlywood",shape="box"];5098[label="yvy49001/Pos yvy490010",fontsize=10,color="white",style="solid",shape="box"];3588 -> 5098[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5098 -> 3734[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 5099[label="yvy49001/Neg yvy490010",fontsize=10,color="white",style="solid",shape="box"];3588 -> 5099[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5099 -> 3735[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3589[label="compare (yvy49000 :% yvy49001) (yvy50000 :% yvy50001)",fontsize=16,color="black",shape="box"];3589 -> 3736[label="",style="solid", color="black", weight=3]; 47.25/23.20 1959[label="Succ yvy6200",fontsize=16,color="green",shape="box"];1960[label="Pos (primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))",fontsize=16,color="green",shape="box"];1960 -> 2148[label="",style="dashed", color="green", weight=3]; 47.25/23.20 1961[label="yvy145",fontsize=16,color="green",shape="box"];1998[label="primMulNat (Succ yvy400100) yvy30000",fontsize=16,color="burlywood",shape="box"];5100[label="yvy30000/Succ yvy300000",fontsize=10,color="white",style="solid",shape="box"];1998 -> 5100[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5100 -> 2199[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 5101[label="yvy30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1998 -> 5101[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5101 -> 2200[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 1999[label="primMulNat Zero yvy30000",fontsize=16,color="burlywood",shape="box"];5102[label="yvy30000/Succ yvy300000",fontsize=10,color="white",style="solid",shape="box"];1999 -> 5102[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5102 -> 2201[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 5103[label="yvy30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1999 -> 5103[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5103 -> 2202[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 2000[label="yvy30000",fontsize=16,color="green",shape="box"];2001[label="yvy40010",fontsize=16,color="green",shape="box"];2002[label="yvy40010",fontsize=16,color="green",shape="box"];2003[label="yvy30000",fontsize=16,color="green",shape="box"];2206[label="primCmpInt (Pos (Succ yvy4900)) (Pos yvy500)",fontsize=16,color="black",shape="box"];2206 -> 2329[label="",style="solid", color="black", weight=3]; 47.25/23.20 2207[label="primCmpInt (Pos (Succ yvy4900)) (Neg yvy500)",fontsize=16,color="black",shape="box"];2207 -> 2330[label="",style="solid", color="black", weight=3]; 47.25/23.20 2208[label="primCmpInt (Pos Zero) (Pos yvy500)",fontsize=16,color="burlywood",shape="box"];5104[label="yvy500/Succ yvy5000",fontsize=10,color="white",style="solid",shape="box"];2208 -> 5104[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5104 -> 2331[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 5105[label="yvy500/Zero",fontsize=10,color="white",style="solid",shape="box"];2208 -> 5105[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5105 -> 2332[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 2209[label="primCmpInt (Pos Zero) (Neg yvy500)",fontsize=16,color="burlywood",shape="box"];5106[label="yvy500/Succ yvy5000",fontsize=10,color="white",style="solid",shape="box"];2209 -> 5106[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5106 -> 2333[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 5107[label="yvy500/Zero",fontsize=10,color="white",style="solid",shape="box"];2209 -> 5107[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5107 -> 2334[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 2210[label="primCmpInt (Neg (Succ yvy4900)) (Pos yvy500)",fontsize=16,color="black",shape="box"];2210 -> 2335[label="",style="solid", color="black", weight=3]; 47.25/23.20 2211[label="primCmpInt (Neg (Succ yvy4900)) (Neg yvy500)",fontsize=16,color="black",shape="box"];2211 -> 2336[label="",style="solid", color="black", weight=3]; 47.25/23.20 2212[label="primCmpInt (Neg Zero) (Pos yvy500)",fontsize=16,color="burlywood",shape="box"];5108[label="yvy500/Succ yvy5000",fontsize=10,color="white",style="solid",shape="box"];2212 -> 5108[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5108 -> 2337[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 5109[label="yvy500/Zero",fontsize=10,color="white",style="solid",shape="box"];2212 -> 5109[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5109 -> 2338[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 2213[label="primCmpInt (Neg Zero) (Neg yvy500)",fontsize=16,color="burlywood",shape="box"];5110[label="yvy500/Succ yvy5000",fontsize=10,color="white",style="solid",shape="box"];2213 -> 5110[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5110 -> 2339[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 5111[label="yvy500/Zero",fontsize=10,color="white",style="solid",shape="box"];2213 -> 5111[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5111 -> 2340[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 4436 -> 4439[label="",style="dashed", color="red", weight=0]; 47.25/23.20 4436[label="FiniteMap.mkBranchUnbox yvy246 yvy243 yvy245 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy246 yvy243 yvy245 + FiniteMap.mkBranchRight_size yvy246 yvy243 yvy245)",fontsize=16,color="magenta"];4436 -> 4440[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2495[label="yvy67",fontsize=16,color="green",shape="box"];3590[label="primPlusInt (Pos yvy2080) (Pos yvy2070)",fontsize=16,color="black",shape="box"];3590 -> 3737[label="",style="solid", color="black", weight=3]; 47.25/23.20 3591[label="primPlusInt (Pos yvy2080) (Neg yvy2070)",fontsize=16,color="black",shape="box"];3591 -> 3738[label="",style="solid", color="black", weight=3]; 47.25/23.20 3592[label="primPlusInt (Neg yvy2080) (Pos yvy2070)",fontsize=16,color="black",shape="box"];3592 -> 3739[label="",style="solid", color="black", weight=3]; 47.25/23.20 3593[label="primPlusInt (Neg yvy2080) (Neg yvy2070)",fontsize=16,color="black",shape="box"];3593 -> 3740[label="",style="solid", color="black", weight=3]; 47.25/23.20 2435 -> 1563[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2435[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];2436 -> 2432[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2436[label="FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy67 yvy54",fontsize=16,color="magenta"];2437 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2437[label="compare yvy158 yvy157 == GT",fontsize=16,color="magenta"];2437 -> 2458[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2437 -> 2459[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2171 -> 2423[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2171[label="FiniteMap.mkBalBranch6MkBalBranch3 yvy50 yvy51 yvy67 yvy54 yvy50 yvy51 yvy67 yvy54 (FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy67 yvy54 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy67 yvy54)",fontsize=16,color="magenta"];2171 -> 2424[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2172[label="FiniteMap.mkBalBranch6MkBalBranch0 yvy50 yvy51 yvy67 yvy54 yvy67 yvy54 yvy54",fontsize=16,color="burlywood",shape="box"];5112[label="yvy54/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2172 -> 5112[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5112 -> 2219[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 5113[label="yvy54/FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544",fontsize=10,color="white",style="solid",shape="box"];2172 -> 5113[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5113 -> 2220[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 1986[label="Succ yvy6200",fontsize=16,color="green",shape="box"];1987[label="Neg (primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))",fontsize=16,color="green",shape="box"];1987 -> 2177[label="",style="dashed", color="green", weight=3]; 47.25/23.20 1988[label="yvy146",fontsize=16,color="green",shape="box"];3594[label="primCmpFloat (Float yvy49000 (Pos yvy490010)) yvy5000",fontsize=16,color="burlywood",shape="box"];5114[label="yvy5000/Float yvy50000 yvy50001",fontsize=10,color="white",style="solid",shape="box"];3594 -> 5114[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5114 -> 3741[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3595[label="primCmpFloat (Float yvy49000 (Neg yvy490010)) yvy5000",fontsize=16,color="burlywood",shape="box"];5115[label="yvy5000/Float yvy50000 yvy50001",fontsize=10,color="white",style="solid",shape="box"];3595 -> 5115[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5115 -> 3742[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3596[label="GT",fontsize=16,color="green",shape="box"];3597[label="yvy209",fontsize=16,color="green",shape="box"];3598[label="not False",fontsize=16,color="black",shape="box"];3598 -> 3743[label="",style="solid", color="black", weight=3]; 47.25/23.20 3599[label="not True",fontsize=16,color="black",shape="box"];3599 -> 3744[label="",style="solid", color="black", weight=3]; 47.25/23.20 3600[label="primCmpChar (Char yvy49000) (Char yvy50000)",fontsize=16,color="black",shape="box"];3600 -> 3745[label="",style="solid", color="black", weight=3]; 47.25/23.20 3601 -> 3746[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3601[label="primCompAux yvy49000 yvy50000 (compare yvy49001 yvy50001)",fontsize=16,color="magenta"];3601 -> 3747[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3602[label="GT",fontsize=16,color="green",shape="box"];3603[label="LT",fontsize=16,color="green",shape="box"];3604[label="EQ",fontsize=16,color="green",shape="box"];3605[label="EQ",fontsize=16,color="green",shape="box"];3606 -> 1727[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3606[label="primCmpInt yvy49000 yvy50000",fontsize=16,color="magenta"];3606 -> 3748[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3606 -> 3749[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3616[label="yvy49000 < yvy50000",fontsize=16,color="black",shape="triangle"];3616 -> 3750[label="",style="solid", color="black", weight=3]; 47.25/23.20 3617[label="yvy49000 < yvy50000",fontsize=16,color="black",shape="triangle"];3617 -> 3751[label="",style="solid", color="black", weight=3]; 47.25/23.20 3618 -> 3335[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3618[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3618 -> 3752[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3618 -> 3753[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3619[label="yvy49000 < yvy50000",fontsize=16,color="black",shape="triangle"];3619 -> 3754[label="",style="solid", color="black", weight=3]; 47.25/23.20 3620[label="yvy49000 < yvy50000",fontsize=16,color="black",shape="triangle"];3620 -> 3755[label="",style="solid", color="black", weight=3]; 47.25/23.20 3621[label="yvy49000 < yvy50000",fontsize=16,color="black",shape="triangle"];3621 -> 3756[label="",style="solid", color="black", weight=3]; 47.25/23.20 3622[label="yvy49000 < yvy50000",fontsize=16,color="black",shape="triangle"];3622 -> 3757[label="",style="solid", color="black", weight=3]; 47.25/23.20 3623[label="yvy49000 < yvy50000",fontsize=16,color="black",shape="triangle"];3623 -> 3758[label="",style="solid", color="black", weight=3]; 47.25/23.20 3624[label="yvy49000 < yvy50000",fontsize=16,color="black",shape="triangle"];3624 -> 3759[label="",style="solid", color="black", weight=3]; 47.25/23.20 3625[label="yvy49000 < yvy50000",fontsize=16,color="black",shape="triangle"];3625 -> 3760[label="",style="solid", color="black", weight=3]; 47.25/23.20 3626[label="yvy49000 < yvy50000",fontsize=16,color="black",shape="triangle"];3626 -> 3761[label="",style="solid", color="black", weight=3]; 47.25/23.20 3627[label="yvy49000 < yvy50000",fontsize=16,color="black",shape="triangle"];3627 -> 3762[label="",style="solid", color="black", weight=3]; 47.25/23.20 3628[label="yvy49000 < yvy50000",fontsize=16,color="black",shape="triangle"];3628 -> 3763[label="",style="solid", color="black", weight=3]; 47.25/23.20 3629[label="yvy49000 < yvy50000",fontsize=16,color="black",shape="triangle"];3629 -> 3764[label="",style="solid", color="black", weight=3]; 47.25/23.20 3630[label="yvy49001 <= yvy50001",fontsize=16,color="blue",shape="box"];5116[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3630 -> 5116[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5116 -> 3765[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5117[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3630 -> 5117[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5117 -> 3766[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5118[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3630 -> 5118[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5118 -> 3767[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5119[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3630 -> 5119[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5119 -> 3768[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5120[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3630 -> 5120[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5120 -> 3769[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5121[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3630 -> 5121[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5121 -> 3770[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5122[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3630 -> 5122[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5122 -> 3771[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5123[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3630 -> 5123[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5123 -> 3772[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5124[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3630 -> 5124[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5124 -> 3773[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5125[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3630 -> 5125[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5125 -> 3774[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5126[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3630 -> 5126[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5126 -> 3775[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5127[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3630 -> 5127[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5127 -> 3776[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5128[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3630 -> 5128[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5128 -> 3777[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5129[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3630 -> 5129[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5129 -> 3778[label="",style="solid", color="blue", weight=3]; 47.25/23.20 3631[label="yvy49000 == yvy50000",fontsize=16,color="blue",shape="box"];5130[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3631 -> 5130[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5130 -> 3779[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5131[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3631 -> 5131[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5131 -> 3780[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5132[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3631 -> 5132[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5132 -> 3781[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5133[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3631 -> 5133[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5133 -> 3782[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5134[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3631 -> 5134[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5134 -> 3783[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5135[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3631 -> 5135[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5135 -> 3784[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5136[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3631 -> 5136[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5136 -> 3785[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5137[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3631 -> 5137[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5137 -> 3786[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5138[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3631 -> 5138[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5138 -> 3787[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5139[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3631 -> 5139[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5139 -> 3788[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5140[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3631 -> 5140[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5140 -> 3789[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5141[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3631 -> 5141[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5141 -> 3790[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5142[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3631 -> 5142[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5142 -> 3791[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5143[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3631 -> 5143[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5143 -> 3792[label="",style="solid", color="blue", weight=3]; 47.25/23.20 3632[label="False || yvy220",fontsize=16,color="black",shape="box"];3632 -> 3793[label="",style="solid", color="black", weight=3]; 47.25/23.20 3633[label="True || yvy220",fontsize=16,color="black",shape="box"];3633 -> 3794[label="",style="solid", color="black", weight=3]; 47.25/23.20 3634 -> 3616[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3634[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3634 -> 3795[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3634 -> 3796[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3635 -> 3617[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3635[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3635 -> 3797[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3635 -> 3798[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3636 -> 3335[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3636[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3636 -> 3799[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3636 -> 3800[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3637 -> 3619[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3637[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3637 -> 3801[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3637 -> 3802[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3638 -> 3620[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3638[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3638 -> 3803[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3638 -> 3804[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3639 -> 3621[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3639[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3639 -> 3805[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3639 -> 3806[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3640 -> 3622[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3640[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3640 -> 3807[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3640 -> 3808[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3641 -> 3623[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3641[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3641 -> 3809[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3641 -> 3810[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3642 -> 3624[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3642[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3642 -> 3811[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3642 -> 3812[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3643 -> 3625[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3643[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3643 -> 3813[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3643 -> 3814[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3644 -> 3626[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3644[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3644 -> 3815[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3644 -> 3816[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3645 -> 3627[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3645[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3645 -> 3817[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3645 -> 3818[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3646 -> 3628[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3646[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3646 -> 3819[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3646 -> 3820[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3647 -> 3629[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3647[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3647 -> 3821[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3647 -> 3822[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3648 -> 3609[label="",style="dashed", color="red", weight=0]; 47.25/23.20 3648[label="yvy49001 < yvy50001 || yvy49001 == yvy50001 && yvy49002 <= yvy50002",fontsize=16,color="magenta"];3648 -> 3823[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3648 -> 3824[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 3649[label="yvy49000 == yvy50000",fontsize=16,color="blue",shape="box"];5144[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3649 -> 5144[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5144 -> 3825[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5145[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3649 -> 5145[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5145 -> 3826[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5146[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3649 -> 5146[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5146 -> 3827[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5147[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3649 -> 5147[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5147 -> 3828[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5148[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3649 -> 5148[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5148 -> 3829[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5149[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3649 -> 5149[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5149 -> 3830[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5150[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3649 -> 5150[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5150 -> 3831[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5151[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3649 -> 5151[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5151 -> 3832[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5152[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3649 -> 5152[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5152 -> 3833[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5153[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3649 -> 5153[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5153 -> 3834[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5154[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3649 -> 5154[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5154 -> 3835[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5155[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3649 -> 5155[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5155 -> 3836[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5156[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3649 -> 5156[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5156 -> 3837[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5157[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3649 -> 5157[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5157 -> 3838[label="",style="solid", color="blue", weight=3]; 47.25/23.20 3650[label="yvy49000",fontsize=16,color="green",shape="box"];3651[label="yvy50000",fontsize=16,color="green",shape="box"];3652[label="yvy49000",fontsize=16,color="green",shape="box"];3653[label="yvy50000",fontsize=16,color="green",shape="box"];3654[label="yvy49000",fontsize=16,color="green",shape="box"];3655[label="yvy50000",fontsize=16,color="green",shape="box"];3656[label="yvy49000",fontsize=16,color="green",shape="box"];3657[label="yvy50000",fontsize=16,color="green",shape="box"];3658[label="yvy49000",fontsize=16,color="green",shape="box"];3659[label="yvy50000",fontsize=16,color="green",shape="box"];3660[label="yvy49000",fontsize=16,color="green",shape="box"];3661[label="yvy50000",fontsize=16,color="green",shape="box"];3662[label="yvy49000",fontsize=16,color="green",shape="box"];3663[label="yvy50000",fontsize=16,color="green",shape="box"];3664[label="yvy49000",fontsize=16,color="green",shape="box"];3665[label="yvy50000",fontsize=16,color="green",shape="box"];3666[label="yvy49000",fontsize=16,color="green",shape="box"];3667[label="yvy50000",fontsize=16,color="green",shape="box"];3668[label="yvy49000",fontsize=16,color="green",shape="box"];3669[label="yvy50000",fontsize=16,color="green",shape="box"];3670[label="yvy49000",fontsize=16,color="green",shape="box"];3671[label="yvy50000",fontsize=16,color="green",shape="box"];3672[label="yvy49000",fontsize=16,color="green",shape="box"];3673[label="yvy50000",fontsize=16,color="green",shape="box"];3674[label="yvy49000",fontsize=16,color="green",shape="box"];3675[label="yvy50000",fontsize=16,color="green",shape="box"];3676[label="yvy49000",fontsize=16,color="green",shape="box"];3677[label="yvy50000",fontsize=16,color="green",shape="box"];3678[label="yvy49000",fontsize=16,color="green",shape="box"];3679[label="yvy50000",fontsize=16,color="green",shape="box"];3680[label="yvy49000",fontsize=16,color="green",shape="box"];3681[label="yvy50000",fontsize=16,color="green",shape="box"];3682[label="yvy49000",fontsize=16,color="green",shape="box"];3683[label="yvy50000",fontsize=16,color="green",shape="box"];3684[label="yvy49000",fontsize=16,color="green",shape="box"];3685[label="yvy50000",fontsize=16,color="green",shape="box"];3686[label="yvy49000",fontsize=16,color="green",shape="box"];3687[label="yvy50000",fontsize=16,color="green",shape="box"];3688[label="yvy49000",fontsize=16,color="green",shape="box"];3689[label="yvy50000",fontsize=16,color="green",shape="box"];3690[label="yvy49000",fontsize=16,color="green",shape="box"];3691[label="yvy50000",fontsize=16,color="green",shape="box"];3692[label="yvy49000",fontsize=16,color="green",shape="box"];3693[label="yvy50000",fontsize=16,color="green",shape="box"];3694[label="yvy49000",fontsize=16,color="green",shape="box"];3695[label="yvy50000",fontsize=16,color="green",shape="box"];3696[label="yvy49000",fontsize=16,color="green",shape="box"];3697[label="yvy50000",fontsize=16,color="green",shape="box"];3698[label="yvy49000",fontsize=16,color="green",shape="box"];3699[label="yvy50000",fontsize=16,color="green",shape="box"];3700[label="yvy49000",fontsize=16,color="green",shape="box"];3701[label="yvy50000",fontsize=16,color="green",shape="box"];3702[label="yvy49000",fontsize=16,color="green",shape="box"];3703[label="yvy50000",fontsize=16,color="green",shape="box"];3704[label="yvy49000",fontsize=16,color="green",shape="box"];3705[label="yvy50000",fontsize=16,color="green",shape="box"];3706[label="yvy49000",fontsize=16,color="green",shape="box"];3707[label="yvy50000",fontsize=16,color="green",shape="box"];3708[label="yvy49000",fontsize=16,color="green",shape="box"];3709[label="yvy50000",fontsize=16,color="green",shape="box"];3710[label="yvy49000",fontsize=16,color="green",shape="box"];3711[label="yvy50000",fontsize=16,color="green",shape="box"];3712[label="yvy49000",fontsize=16,color="green",shape="box"];3713[label="yvy50000",fontsize=16,color="green",shape="box"];3714[label="yvy49000",fontsize=16,color="green",shape="box"];3715[label="yvy50000",fontsize=16,color="green",shape="box"];3716[label="yvy49000",fontsize=16,color="green",shape="box"];3717[label="yvy50000",fontsize=16,color="green",shape="box"];3718[label="yvy49000",fontsize=16,color="green",shape="box"];3719[label="yvy50000",fontsize=16,color="green",shape="box"];3720[label="yvy49000",fontsize=16,color="green",shape="box"];3721[label="yvy50000",fontsize=16,color="green",shape="box"];3722[label="yvy49000",fontsize=16,color="green",shape="box"];3723[label="yvy50000",fontsize=16,color="green",shape="box"];3724[label="yvy49000",fontsize=16,color="green",shape="box"];3725[label="yvy50000",fontsize=16,color="green",shape="box"];3726[label="yvy49000",fontsize=16,color="green",shape="box"];3727[label="yvy50000",fontsize=16,color="green",shape="box"];3728[label="yvy49000",fontsize=16,color="green",shape="box"];3729[label="yvy50000",fontsize=16,color="green",shape="box"];3730[label="yvy49000",fontsize=16,color="green",shape="box"];3731[label="yvy50000",fontsize=16,color="green",shape="box"];3732[label="yvy49000",fontsize=16,color="green",shape="box"];3733[label="yvy50000",fontsize=16,color="green",shape="box"];3734[label="primCmpDouble (Double yvy49000 (Pos yvy490010)) yvy5000",fontsize=16,color="burlywood",shape="box"];5158[label="yvy5000/Double yvy50000 yvy50001",fontsize=10,color="white",style="solid",shape="box"];3734 -> 5158[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5158 -> 3839[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3735[label="primCmpDouble (Double yvy49000 (Neg yvy490010)) yvy5000",fontsize=16,color="burlywood",shape="box"];5159[label="yvy5000/Double yvy50000 yvy50001",fontsize=10,color="white",style="solid",shape="box"];3735 -> 5159[label="",style="solid", color="burlywood", weight=9]; 47.25/23.20 5159 -> 3840[label="",style="solid", color="burlywood", weight=3]; 47.25/23.20 3736[label="compare (yvy49000 * yvy50001) (yvy50000 * yvy49001)",fontsize=16,color="blue",shape="box"];5160[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3736 -> 5160[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5160 -> 3841[label="",style="solid", color="blue", weight=3]; 47.25/23.20 5161[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3736 -> 5161[label="",style="solid", color="blue", weight=9]; 47.25/23.20 5161 -> 3842[label="",style="solid", color="blue", weight=3]; 47.25/23.20 2148 -> 2446[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2148[label="primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)",fontsize=16,color="magenta"];2148 -> 2447[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2148 -> 2448[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2199[label="primMulNat (Succ yvy400100) (Succ yvy300000)",fontsize=16,color="black",shape="box"];2199 -> 2319[label="",style="solid", color="black", weight=3]; 47.25/23.20 2200[label="primMulNat (Succ yvy400100) Zero",fontsize=16,color="black",shape="box"];2200 -> 2320[label="",style="solid", color="black", weight=3]; 47.25/23.20 2201[label="primMulNat Zero (Succ yvy300000)",fontsize=16,color="black",shape="box"];2201 -> 2321[label="",style="solid", color="black", weight=3]; 47.25/23.20 2202[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];2202 -> 2322[label="",style="solid", color="black", weight=3]; 47.25/23.20 2329 -> 2205[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2329[label="primCmpNat (Succ yvy4900) yvy500",fontsize=16,color="magenta"];2329 -> 2476[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2329 -> 2477[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2330[label="GT",fontsize=16,color="green",shape="box"];2331[label="primCmpInt (Pos Zero) (Pos (Succ yvy5000))",fontsize=16,color="black",shape="box"];2331 -> 2478[label="",style="solid", color="black", weight=3]; 47.25/23.20 2332[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2332 -> 2479[label="",style="solid", color="black", weight=3]; 47.25/23.20 2333[label="primCmpInt (Pos Zero) (Neg (Succ yvy5000))",fontsize=16,color="black",shape="box"];2333 -> 2480[label="",style="solid", color="black", weight=3]; 47.25/23.20 2334[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2334 -> 2481[label="",style="solid", color="black", weight=3]; 47.25/23.20 2335[label="LT",fontsize=16,color="green",shape="box"];2336 -> 2205[label="",style="dashed", color="red", weight=0]; 47.25/23.20 2336[label="primCmpNat yvy500 (Succ yvy4900)",fontsize=16,color="magenta"];2336 -> 2482[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2336 -> 2483[label="",style="dashed", color="magenta", weight=3]; 47.25/23.20 2337[label="primCmpInt (Neg Zero) (Pos (Succ yvy5000))",fontsize=16,color="black",shape="box"];2337 -> 2484[label="",style="solid", color="black", weight=3]; 47.25/23.20 2338[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2338 -> 2485[label="",style="solid", color="black", weight=3]; 47.25/23.21 2339[label="primCmpInt (Neg Zero) (Neg (Succ yvy5000))",fontsize=16,color="black",shape="box"];2339 -> 2486[label="",style="solid", color="black", weight=3]; 47.25/23.21 2340[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2340 -> 2487[label="",style="solid", color="black", weight=3]; 47.25/23.21 4440 -> 3415[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4440[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy246 yvy243 yvy245 + FiniteMap.mkBranchRight_size yvy246 yvy243 yvy245",fontsize=16,color="magenta"];4440 -> 4441[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4440 -> 4442[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4439[label="FiniteMap.mkBranchUnbox yvy246 yvy243 yvy245 yvy250",fontsize=16,color="black",shape="triangle"];4439 -> 4443[label="",style="solid", color="black", weight=3]; 47.25/23.21 3737[label="Pos (primPlusNat yvy2080 yvy2070)",fontsize=16,color="green",shape="box"];3737 -> 3843[label="",style="dashed", color="green", weight=3]; 47.25/23.21 3738[label="primMinusNat yvy2080 yvy2070",fontsize=16,color="burlywood",shape="triangle"];5162[label="yvy2080/Succ yvy20800",fontsize=10,color="white",style="solid",shape="box"];3738 -> 5162[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5162 -> 3844[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 5163[label="yvy2080/Zero",fontsize=10,color="white",style="solid",shape="box"];3738 -> 5163[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5163 -> 3845[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 3739 -> 3738[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3739[label="primMinusNat yvy2070 yvy2080",fontsize=16,color="magenta"];3739 -> 3846[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3739 -> 3847[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3740[label="Neg (primPlusNat yvy2080 yvy2070)",fontsize=16,color="green",shape="box"];3740 -> 3848[label="",style="dashed", color="green", weight=3]; 47.25/23.21 2458[label="GT",fontsize=16,color="green",shape="box"];2459 -> 1649[label="",style="dashed", color="red", weight=0]; 47.25/23.21 2459[label="compare yvy158 yvy157",fontsize=16,color="magenta"];2459 -> 2493[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 2459 -> 2494[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 2424 -> 2427[label="",style="dashed", color="red", weight=0]; 47.25/23.21 2424[label="FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy67 yvy54 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy67 yvy54",fontsize=16,color="magenta"];2424 -> 2432[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 2424 -> 2433[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 2423[label="FiniteMap.mkBalBranch6MkBalBranch3 yvy50 yvy51 yvy67 yvy54 yvy50 yvy51 yvy67 yvy54 yvy155",fontsize=16,color="burlywood",shape="triangle"];5164[label="yvy155/False",fontsize=10,color="white",style="solid",shape="box"];2423 -> 5164[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5164 -> 2438[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 5165[label="yvy155/True",fontsize=10,color="white",style="solid",shape="box"];2423 -> 5165[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5165 -> 2439[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 2219[label="FiniteMap.mkBalBranch6MkBalBranch0 yvy50 yvy51 yvy67 FiniteMap.EmptyFM yvy67 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2219 -> 2344[label="",style="solid", color="black", weight=3]; 47.25/23.21 2220[label="FiniteMap.mkBalBranch6MkBalBranch0 yvy50 yvy51 yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="black",shape="box"];2220 -> 2345[label="",style="solid", color="black", weight=3]; 47.25/23.21 2177 -> 2446[label="",style="dashed", color="red", weight=0]; 47.25/23.21 2177[label="primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)",fontsize=16,color="magenta"];2177 -> 2449[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 2177 -> 2450[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3741[label="primCmpFloat (Float yvy49000 (Pos yvy490010)) (Float yvy50000 yvy50001)",fontsize=16,color="burlywood",shape="box"];5166[label="yvy50001/Pos yvy500010",fontsize=10,color="white",style="solid",shape="box"];3741 -> 5166[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5166 -> 3849[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 5167[label="yvy50001/Neg yvy500010",fontsize=10,color="white",style="solid",shape="box"];3741 -> 5167[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5167 -> 3850[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 3742[label="primCmpFloat (Float yvy49000 (Neg yvy490010)) (Float yvy50000 yvy50001)",fontsize=16,color="burlywood",shape="box"];5168[label="yvy50001/Pos yvy500010",fontsize=10,color="white",style="solid",shape="box"];3742 -> 5168[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5168 -> 3851[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 5169[label="yvy50001/Neg yvy500010",fontsize=10,color="white",style="solid",shape="box"];3742 -> 5169[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5169 -> 3852[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 3743[label="True",fontsize=16,color="green",shape="box"];3744[label="False",fontsize=16,color="green",shape="box"];3745 -> 2205[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3745[label="primCmpNat yvy49000 yvy50000",fontsize=16,color="magenta"];3745 -> 3853[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3745 -> 3854[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3747 -> 3440[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3747[label="compare yvy49001 yvy50001",fontsize=16,color="magenta"];3747 -> 3855[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3747 -> 3856[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3746[label="primCompAux yvy49000 yvy50000 yvy221",fontsize=16,color="black",shape="triangle"];3746 -> 3857[label="",style="solid", color="black", weight=3]; 47.25/23.21 3748[label="yvy49000",fontsize=16,color="green",shape="box"];3749[label="yvy50000",fontsize=16,color="green",shape="box"];3750 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3750[label="compare yvy49000 yvy50000 == LT",fontsize=16,color="magenta"];3750 -> 3880[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3750 -> 3881[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3751 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3751[label="compare yvy49000 yvy50000 == LT",fontsize=16,color="magenta"];3751 -> 3882[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3751 -> 3883[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3752[label="yvy49000",fontsize=16,color="green",shape="box"];3753[label="yvy50000",fontsize=16,color="green",shape="box"];3754 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3754[label="compare yvy49000 yvy50000 == LT",fontsize=16,color="magenta"];3754 -> 3884[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3754 -> 3885[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3755 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3755[label="compare yvy49000 yvy50000 == LT",fontsize=16,color="magenta"];3755 -> 3886[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3755 -> 3887[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3756 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3756[label="compare yvy49000 yvy50000 == LT",fontsize=16,color="magenta"];3756 -> 3888[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3756 -> 3889[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3757 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3757[label="compare yvy49000 yvy50000 == LT",fontsize=16,color="magenta"];3757 -> 3890[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3757 -> 3891[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3758 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3758[label="compare yvy49000 yvy50000 == LT",fontsize=16,color="magenta"];3758 -> 3892[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3758 -> 3893[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3759 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3759[label="compare yvy49000 yvy50000 == LT",fontsize=16,color="magenta"];3759 -> 3894[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3759 -> 3895[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3760 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3760[label="compare yvy49000 yvy50000 == LT",fontsize=16,color="magenta"];3760 -> 3896[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3760 -> 3897[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3761 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3761[label="compare yvy49000 yvy50000 == LT",fontsize=16,color="magenta"];3761 -> 3898[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3761 -> 3899[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3762 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3762[label="compare yvy49000 yvy50000 == LT",fontsize=16,color="magenta"];3762 -> 3900[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3762 -> 3901[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3763 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3763[label="compare yvy49000 yvy50000 == LT",fontsize=16,color="magenta"];3763 -> 3902[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3763 -> 3903[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3764 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3764[label="compare yvy49000 yvy50000 == LT",fontsize=16,color="magenta"];3764 -> 3904[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3764 -> 3905[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3765 -> 3094[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3765[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3765 -> 3906[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3765 -> 3907[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3766 -> 3095[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3766[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3766 -> 3908[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3766 -> 3909[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3767 -> 3096[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3767[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3767 -> 3910[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3767 -> 3911[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3768 -> 3097[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3768[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3768 -> 3912[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3768 -> 3913[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3769 -> 3098[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3769[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3769 -> 3914[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3769 -> 3915[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3770 -> 3099[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3770[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3770 -> 3916[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3770 -> 3917[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3771 -> 3100[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3771[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3771 -> 3918[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3771 -> 3919[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3772 -> 3101[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3772[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3772 -> 3920[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3772 -> 3921[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3773 -> 3102[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3773[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3773 -> 3922[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3773 -> 3923[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3774 -> 3103[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3774[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3774 -> 3924[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3774 -> 3925[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3775 -> 3104[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3775[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3775 -> 3926[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3775 -> 3927[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3776 -> 3105[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3776[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3776 -> 3928[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3776 -> 3929[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3777 -> 3106[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3777[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3777 -> 3930[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3777 -> 3931[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3778 -> 3107[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3778[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3778 -> 3932[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3778 -> 3933[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3779 -> 2565[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3779[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3779 -> 3934[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3779 -> 3935[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3780 -> 2571[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3780[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3780 -> 3936[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3780 -> 3937[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3781 -> 2570[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3781[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3781 -> 3938[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3781 -> 3939[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3782 -> 2572[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3782[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3782 -> 3940[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3782 -> 3941[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3783 -> 2567[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3783[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3783 -> 3942[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3783 -> 3943[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3784 -> 2561[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3784[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3784 -> 3944[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3784 -> 3945[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3785 -> 2566[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3785[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3785 -> 3946[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3785 -> 3947[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3786 -> 2560[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3786[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3786 -> 3948[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3786 -> 3949[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3787 -> 2562[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3787[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3787 -> 3950[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3787 -> 3951[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3788 -> 2563[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3788[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3788 -> 3952[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3788 -> 3953[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3789 -> 2569[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3789[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3789 -> 3954[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3789 -> 3955[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3790 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3790[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3790 -> 3956[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3790 -> 3957[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3791 -> 2573[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3791[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3791 -> 3958[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3791 -> 3959[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3792 -> 2568[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3792[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3792 -> 3960[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3792 -> 3961[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3793[label="yvy220",fontsize=16,color="green",shape="box"];3794[label="True",fontsize=16,color="green",shape="box"];3795[label="yvy50000",fontsize=16,color="green",shape="box"];3796[label="yvy49000",fontsize=16,color="green",shape="box"];3797[label="yvy50000",fontsize=16,color="green",shape="box"];3798[label="yvy49000",fontsize=16,color="green",shape="box"];3799[label="yvy49000",fontsize=16,color="green",shape="box"];3800[label="yvy50000",fontsize=16,color="green",shape="box"];3801[label="yvy50000",fontsize=16,color="green",shape="box"];3802[label="yvy49000",fontsize=16,color="green",shape="box"];3803[label="yvy50000",fontsize=16,color="green",shape="box"];3804[label="yvy49000",fontsize=16,color="green",shape="box"];3805[label="yvy50000",fontsize=16,color="green",shape="box"];3806[label="yvy49000",fontsize=16,color="green",shape="box"];3807[label="yvy50000",fontsize=16,color="green",shape="box"];3808[label="yvy49000",fontsize=16,color="green",shape="box"];3809[label="yvy50000",fontsize=16,color="green",shape="box"];3810[label="yvy49000",fontsize=16,color="green",shape="box"];3811[label="yvy50000",fontsize=16,color="green",shape="box"];3812[label="yvy49000",fontsize=16,color="green",shape="box"];3813[label="yvy50000",fontsize=16,color="green",shape="box"];3814[label="yvy49000",fontsize=16,color="green",shape="box"];3815[label="yvy50000",fontsize=16,color="green",shape="box"];3816[label="yvy49000",fontsize=16,color="green",shape="box"];3817[label="yvy50000",fontsize=16,color="green",shape="box"];3818[label="yvy49000",fontsize=16,color="green",shape="box"];3819[label="yvy50000",fontsize=16,color="green",shape="box"];3820[label="yvy49000",fontsize=16,color="green",shape="box"];3821[label="yvy50000",fontsize=16,color="green",shape="box"];3822[label="yvy49000",fontsize=16,color="green",shape="box"];3823[label="yvy49001 < yvy50001",fontsize=16,color="blue",shape="box"];5170[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3823 -> 5170[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5170 -> 3962[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5171[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3823 -> 5171[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5171 -> 3963[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5172[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3823 -> 5172[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5172 -> 3964[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5173[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3823 -> 5173[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5173 -> 3965[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5174[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3823 -> 5174[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5174 -> 3966[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5175[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3823 -> 5175[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5175 -> 3967[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5176[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3823 -> 5176[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5176 -> 3968[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5177[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3823 -> 5177[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5177 -> 3969[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5178[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3823 -> 5178[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5178 -> 3970[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5179[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3823 -> 5179[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5179 -> 3971[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5180[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3823 -> 5180[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5180 -> 3972[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5181[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3823 -> 5181[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5181 -> 3973[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5182[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3823 -> 5182[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5182 -> 3974[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5183[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3823 -> 5183[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5183 -> 3975[label="",style="solid", color="blue", weight=3]; 47.25/23.21 3824 -> 2911[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3824[label="yvy49001 == yvy50001 && yvy49002 <= yvy50002",fontsize=16,color="magenta"];3824 -> 3976[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3824 -> 3977[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3825 -> 2565[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3825[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3825 -> 3978[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3825 -> 3979[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3826 -> 2571[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3826[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3826 -> 3980[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3826 -> 3981[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3827 -> 2570[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3827[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3827 -> 3982[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3827 -> 3983[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3828 -> 2572[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3828[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3828 -> 3984[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3828 -> 3985[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3829 -> 2567[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3829[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3829 -> 3986[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3829 -> 3987[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3830 -> 2561[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3830[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3830 -> 3988[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3830 -> 3989[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3831 -> 2566[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3831[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3831 -> 3990[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3831 -> 3991[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3832 -> 2560[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3832[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3832 -> 3992[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3832 -> 3993[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3833 -> 2562[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3833[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3833 -> 3994[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3833 -> 3995[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3834 -> 2563[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3834[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3834 -> 3996[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3834 -> 3997[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3835 -> 2569[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3835[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3835 -> 3998[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3835 -> 3999[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3836 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3836[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3836 -> 4000[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3836 -> 4001[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3837 -> 2573[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3837[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3837 -> 4002[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3837 -> 4003[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3838 -> 2568[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3838[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3838 -> 4004[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3838 -> 4005[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3839[label="primCmpDouble (Double yvy49000 (Pos yvy490010)) (Double yvy50000 yvy50001)",fontsize=16,color="burlywood",shape="box"];5184[label="yvy50001/Pos yvy500010",fontsize=10,color="white",style="solid",shape="box"];3839 -> 5184[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5184 -> 4006[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 5185[label="yvy50001/Neg yvy500010",fontsize=10,color="white",style="solid",shape="box"];3839 -> 5185[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5185 -> 4007[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 3840[label="primCmpDouble (Double yvy49000 (Neg yvy490010)) (Double yvy50000 yvy50001)",fontsize=16,color="burlywood",shape="box"];5186[label="yvy50001/Pos yvy500010",fontsize=10,color="white",style="solid",shape="box"];3840 -> 5186[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5186 -> 4008[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 5187[label="yvy50001/Neg yvy500010",fontsize=10,color="white",style="solid",shape="box"];3840 -> 5187[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5187 -> 4009[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 3841 -> 1649[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3841[label="compare (yvy49000 * yvy50001) (yvy50000 * yvy49001)",fontsize=16,color="magenta"];3841 -> 4010[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3841 -> 4011[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3842 -> 3442[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3842[label="compare (yvy49000 * yvy50001) (yvy50000 * yvy49001)",fontsize=16,color="magenta"];3842 -> 4012[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3842 -> 4013[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 2447 -> 2446[label="",style="dashed", color="red", weight=0]; 47.25/23.21 2447[label="primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)",fontsize=16,color="magenta"];2447 -> 2460[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 2447 -> 2461[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 2448[label="yvy6200",fontsize=16,color="green",shape="box"];2446[label="primPlusNat yvy161 (Succ yvy300000)",fontsize=16,color="burlywood",shape="triangle"];5188[label="yvy161/Succ yvy1610",fontsize=10,color="white",style="solid",shape="box"];2446 -> 5188[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5188 -> 2462[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 5189[label="yvy161/Zero",fontsize=10,color="white",style="solid",shape="box"];2446 -> 5189[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5189 -> 2463[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 2319 -> 2446[label="",style="dashed", color="red", weight=0]; 47.25/23.21 2319[label="primPlusNat (primMulNat yvy400100 (Succ yvy300000)) (Succ yvy300000)",fontsize=16,color="magenta"];2319 -> 2453[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 2320[label="Zero",fontsize=16,color="green",shape="box"];2321[label="Zero",fontsize=16,color="green",shape="box"];2322[label="Zero",fontsize=16,color="green",shape="box"];2476[label="yvy500",fontsize=16,color="green",shape="box"];2477[label="Succ yvy4900",fontsize=16,color="green",shape="box"];2205[label="primCmpNat yvy490 yvy500",fontsize=16,color="burlywood",shape="triangle"];5190[label="yvy490/Succ yvy4900",fontsize=10,color="white",style="solid",shape="box"];2205 -> 5190[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5190 -> 2327[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 5191[label="yvy490/Zero",fontsize=10,color="white",style="solid",shape="box"];2205 -> 5191[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5191 -> 2328[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 2478 -> 2205[label="",style="dashed", color="red", weight=0]; 47.25/23.21 2478[label="primCmpNat Zero (Succ yvy5000)",fontsize=16,color="magenta"];2478 -> 2805[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 2478 -> 2806[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 2479[label="EQ",fontsize=16,color="green",shape="box"];2480[label="GT",fontsize=16,color="green",shape="box"];2481[label="EQ",fontsize=16,color="green",shape="box"];2482[label="Succ yvy4900",fontsize=16,color="green",shape="box"];2483[label="yvy500",fontsize=16,color="green",shape="box"];2484[label="LT",fontsize=16,color="green",shape="box"];2485[label="EQ",fontsize=16,color="green",shape="box"];2486 -> 2205[label="",style="dashed", color="red", weight=0]; 47.25/23.21 2486[label="primCmpNat (Succ yvy5000) Zero",fontsize=16,color="magenta"];2486 -> 2807[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 2486 -> 2808[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 2487[label="EQ",fontsize=16,color="green",shape="box"];4441 -> 3415[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4441[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy246 yvy243 yvy245",fontsize=16,color="magenta"];4441 -> 4446[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4441 -> 4447[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4442[label="FiniteMap.mkBranchRight_size yvy246 yvy243 yvy245",fontsize=16,color="black",shape="box"];4442 -> 4448[label="",style="solid", color="black", weight=3]; 47.25/23.21 4443[label="yvy250",fontsize=16,color="green",shape="box"];3843 -> 2794[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3843[label="primPlusNat yvy2080 yvy2070",fontsize=16,color="magenta"];3843 -> 4014[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3843 -> 4015[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3844[label="primMinusNat (Succ yvy20800) yvy2070",fontsize=16,color="burlywood",shape="box"];5192[label="yvy2070/Succ yvy20700",fontsize=10,color="white",style="solid",shape="box"];3844 -> 5192[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5192 -> 4016[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 5193[label="yvy2070/Zero",fontsize=10,color="white",style="solid",shape="box"];3844 -> 5193[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5193 -> 4017[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 3845[label="primMinusNat Zero yvy2070",fontsize=16,color="burlywood",shape="box"];5194[label="yvy2070/Succ yvy20700",fontsize=10,color="white",style="solid",shape="box"];3845 -> 5194[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5194 -> 4018[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 5195[label="yvy2070/Zero",fontsize=10,color="white",style="solid",shape="box"];3845 -> 5195[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5195 -> 4019[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 3846[label="yvy2070",fontsize=16,color="green",shape="box"];3847[label="yvy2080",fontsize=16,color="green",shape="box"];3848 -> 2794[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3848[label="primPlusNat yvy2080 yvy2070",fontsize=16,color="magenta"];3848 -> 4020[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3848 -> 4021[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 2493[label="yvy158",fontsize=16,color="green",shape="box"];2494[label="yvy157",fontsize=16,color="green",shape="box"];2433 -> 986[label="",style="dashed", color="red", weight=0]; 47.25/23.21 2433[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy67 yvy54",fontsize=16,color="magenta"];2433 -> 2441[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 2433 -> 2442[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 2438[label="FiniteMap.mkBalBranch6MkBalBranch3 yvy50 yvy51 yvy67 yvy54 yvy50 yvy51 yvy67 yvy54 False",fontsize=16,color="black",shape="box"];2438 -> 2464[label="",style="solid", color="black", weight=3]; 47.25/23.21 2439[label="FiniteMap.mkBalBranch6MkBalBranch3 yvy50 yvy51 yvy67 yvy54 yvy50 yvy51 yvy67 yvy54 True",fontsize=16,color="black",shape="box"];2439 -> 2465[label="",style="solid", color="black", weight=3]; 47.25/23.21 2344[label="error []",fontsize=16,color="red",shape="box"];2345[label="FiniteMap.mkBalBranch6MkBalBranch02 yvy50 yvy51 yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="black",shape="box"];2345 -> 2443[label="",style="solid", color="black", weight=3]; 47.25/23.21 2449 -> 2446[label="",style="dashed", color="red", weight=0]; 47.25/23.21 2449[label="primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)",fontsize=16,color="magenta"];2449 -> 2466[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 2449 -> 2467[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 2450[label="yvy6200",fontsize=16,color="green",shape="box"];3849[label="primCmpFloat (Float yvy49000 (Pos yvy490010)) (Float yvy50000 (Pos yvy500010))",fontsize=16,color="black",shape="box"];3849 -> 4022[label="",style="solid", color="black", weight=3]; 47.25/23.21 3850[label="primCmpFloat (Float yvy49000 (Pos yvy490010)) (Float yvy50000 (Neg yvy500010))",fontsize=16,color="black",shape="box"];3850 -> 4023[label="",style="solid", color="black", weight=3]; 47.25/23.21 3851[label="primCmpFloat (Float yvy49000 (Neg yvy490010)) (Float yvy50000 (Pos yvy500010))",fontsize=16,color="black",shape="box"];3851 -> 4024[label="",style="solid", color="black", weight=3]; 47.25/23.21 3852[label="primCmpFloat (Float yvy49000 (Neg yvy490010)) (Float yvy50000 (Neg yvy500010))",fontsize=16,color="black",shape="box"];3852 -> 4025[label="",style="solid", color="black", weight=3]; 47.25/23.21 3853[label="yvy50000",fontsize=16,color="green",shape="box"];3854[label="yvy49000",fontsize=16,color="green",shape="box"];3855[label="yvy49001",fontsize=16,color="green",shape="box"];3856[label="yvy50001",fontsize=16,color="green",shape="box"];3857 -> 4026[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3857[label="primCompAux0 yvy221 (compare yvy49000 yvy50000)",fontsize=16,color="magenta"];3857 -> 4027[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3857 -> 4028[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3880[label="LT",fontsize=16,color="green",shape="box"];3881 -> 3437[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3881[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];3881 -> 4029[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3881 -> 4030[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3882[label="LT",fontsize=16,color="green",shape="box"];3883 -> 3438[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3883[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];3883 -> 4031[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3883 -> 4032[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3884[label="LT",fontsize=16,color="green",shape="box"];3885 -> 3440[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3885[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];3885 -> 4033[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3885 -> 4034[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3886[label="LT",fontsize=16,color="green",shape="box"];3887 -> 3441[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3887[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];3887 -> 4035[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3887 -> 4036[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3888[label="LT",fontsize=16,color="green",shape="box"];3889 -> 3442[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3889[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];3889 -> 4037[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3889 -> 4038[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3890[label="LT",fontsize=16,color="green",shape="box"];3891[label="compare yvy49000 yvy50000",fontsize=16,color="black",shape="triangle"];3891 -> 4039[label="",style="solid", color="black", weight=3]; 47.25/23.21 3892[label="LT",fontsize=16,color="green",shape="box"];3893[label="compare yvy49000 yvy50000",fontsize=16,color="black",shape="triangle"];3893 -> 4040[label="",style="solid", color="black", weight=3]; 47.25/23.21 3894[label="LT",fontsize=16,color="green",shape="box"];3895[label="compare yvy49000 yvy50000",fontsize=16,color="black",shape="triangle"];3895 -> 4041[label="",style="solid", color="black", weight=3]; 47.25/23.21 3896[label="LT",fontsize=16,color="green",shape="box"];3897[label="compare yvy49000 yvy50000",fontsize=16,color="black",shape="triangle"];3897 -> 4042[label="",style="solid", color="black", weight=3]; 47.25/23.21 3898[label="LT",fontsize=16,color="green",shape="box"];3899[label="compare yvy49000 yvy50000",fontsize=16,color="black",shape="triangle"];3899 -> 4043[label="",style="solid", color="black", weight=3]; 47.25/23.21 3900[label="LT",fontsize=16,color="green",shape="box"];3901[label="compare yvy49000 yvy50000",fontsize=16,color="black",shape="triangle"];3901 -> 4044[label="",style="solid", color="black", weight=3]; 47.25/23.21 3902[label="LT",fontsize=16,color="green",shape="box"];3903 -> 3443[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3903[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];3903 -> 4045[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3903 -> 4046[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3904[label="LT",fontsize=16,color="green",shape="box"];3905 -> 3444[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3905[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];3905 -> 4047[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3905 -> 4048[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3906[label="yvy49001",fontsize=16,color="green",shape="box"];3907[label="yvy50001",fontsize=16,color="green",shape="box"];3908[label="yvy49001",fontsize=16,color="green",shape="box"];3909[label="yvy50001",fontsize=16,color="green",shape="box"];3910[label="yvy49001",fontsize=16,color="green",shape="box"];3911[label="yvy50001",fontsize=16,color="green",shape="box"];3912[label="yvy49001",fontsize=16,color="green",shape="box"];3913[label="yvy50001",fontsize=16,color="green",shape="box"];3914[label="yvy49001",fontsize=16,color="green",shape="box"];3915[label="yvy50001",fontsize=16,color="green",shape="box"];3916[label="yvy49001",fontsize=16,color="green",shape="box"];3917[label="yvy50001",fontsize=16,color="green",shape="box"];3918[label="yvy49001",fontsize=16,color="green",shape="box"];3919[label="yvy50001",fontsize=16,color="green",shape="box"];3920[label="yvy49001",fontsize=16,color="green",shape="box"];3921[label="yvy50001",fontsize=16,color="green",shape="box"];3922[label="yvy49001",fontsize=16,color="green",shape="box"];3923[label="yvy50001",fontsize=16,color="green",shape="box"];3924[label="yvy49001",fontsize=16,color="green",shape="box"];3925[label="yvy50001",fontsize=16,color="green",shape="box"];3926[label="yvy49001",fontsize=16,color="green",shape="box"];3927[label="yvy50001",fontsize=16,color="green",shape="box"];3928[label="yvy49001",fontsize=16,color="green",shape="box"];3929[label="yvy50001",fontsize=16,color="green",shape="box"];3930[label="yvy49001",fontsize=16,color="green",shape="box"];3931[label="yvy50001",fontsize=16,color="green",shape="box"];3932[label="yvy49001",fontsize=16,color="green",shape="box"];3933[label="yvy50001",fontsize=16,color="green",shape="box"];3934[label="yvy50000",fontsize=16,color="green",shape="box"];3935[label="yvy49000",fontsize=16,color="green",shape="box"];3936[label="yvy50000",fontsize=16,color="green",shape="box"];3937[label="yvy49000",fontsize=16,color="green",shape="box"];3938[label="yvy50000",fontsize=16,color="green",shape="box"];3939[label="yvy49000",fontsize=16,color="green",shape="box"];3940[label="yvy50000",fontsize=16,color="green",shape="box"];3941[label="yvy49000",fontsize=16,color="green",shape="box"];3942[label="yvy50000",fontsize=16,color="green",shape="box"];3943[label="yvy49000",fontsize=16,color="green",shape="box"];3944[label="yvy50000",fontsize=16,color="green",shape="box"];3945[label="yvy49000",fontsize=16,color="green",shape="box"];3946[label="yvy50000",fontsize=16,color="green",shape="box"];3947[label="yvy49000",fontsize=16,color="green",shape="box"];3948[label="yvy50000",fontsize=16,color="green",shape="box"];3949[label="yvy49000",fontsize=16,color="green",shape="box"];3950[label="yvy50000",fontsize=16,color="green",shape="box"];3951[label="yvy49000",fontsize=16,color="green",shape="box"];3952[label="yvy50000",fontsize=16,color="green",shape="box"];3953[label="yvy49000",fontsize=16,color="green",shape="box"];3954[label="yvy50000",fontsize=16,color="green",shape="box"];3955[label="yvy49000",fontsize=16,color="green",shape="box"];3956[label="yvy50000",fontsize=16,color="green",shape="box"];3957[label="yvy49000",fontsize=16,color="green",shape="box"];3958[label="yvy50000",fontsize=16,color="green",shape="box"];3959[label="yvy49000",fontsize=16,color="green",shape="box"];3960[label="yvy50000",fontsize=16,color="green",shape="box"];3961[label="yvy49000",fontsize=16,color="green",shape="box"];3962 -> 3616[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3962[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3962 -> 4049[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3962 -> 4050[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3963 -> 3617[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3963[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3963 -> 4051[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3963 -> 4052[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3964 -> 3335[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3964[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3964 -> 4053[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3964 -> 4054[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3965 -> 3619[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3965[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3965 -> 4055[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3965 -> 4056[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3966 -> 3620[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3966[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3966 -> 4057[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3966 -> 4058[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3967 -> 3621[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3967[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3967 -> 4059[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3967 -> 4060[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3968 -> 3622[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3968[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3968 -> 4061[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3968 -> 4062[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3969 -> 3623[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3969[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3969 -> 4063[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3969 -> 4064[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3970 -> 3624[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3970[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3970 -> 4065[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3970 -> 4066[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3971 -> 3625[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3971[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3971 -> 4067[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3971 -> 4068[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3972 -> 3626[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3972[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3972 -> 4069[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3972 -> 4070[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3973 -> 3627[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3973[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3973 -> 4071[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3973 -> 4072[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3974 -> 3628[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3974[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3974 -> 4073[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3974 -> 4074[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3975 -> 3629[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3975[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3975 -> 4075[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3975 -> 4076[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3976[label="yvy49002 <= yvy50002",fontsize=16,color="blue",shape="box"];5196[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3976 -> 5196[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5196 -> 4077[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5197[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3976 -> 5197[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5197 -> 4078[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5198[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3976 -> 5198[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5198 -> 4079[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5199[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3976 -> 5199[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5199 -> 4080[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5200[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3976 -> 5200[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5200 -> 4081[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5201[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3976 -> 5201[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5201 -> 4082[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5202[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3976 -> 5202[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5202 -> 4083[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5203[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3976 -> 5203[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5203 -> 4084[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5204[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3976 -> 5204[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5204 -> 4085[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5205[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3976 -> 5205[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5205 -> 4086[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5206[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3976 -> 5206[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5206 -> 4087[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5207[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3976 -> 5207[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5207 -> 4088[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5208[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3976 -> 5208[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5208 -> 4089[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5209[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3976 -> 5209[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5209 -> 4090[label="",style="solid", color="blue", weight=3]; 47.25/23.21 3977[label="yvy49001 == yvy50001",fontsize=16,color="blue",shape="box"];5210[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3977 -> 5210[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5210 -> 4091[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5211[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3977 -> 5211[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5211 -> 4092[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5212[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3977 -> 5212[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5212 -> 4093[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5213[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3977 -> 5213[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5213 -> 4094[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5214[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3977 -> 5214[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5214 -> 4095[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5215[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3977 -> 5215[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5215 -> 4096[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5216[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3977 -> 5216[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5216 -> 4097[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5217[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3977 -> 5217[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5217 -> 4098[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5218[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3977 -> 5218[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5218 -> 4099[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5219[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3977 -> 5219[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5219 -> 4100[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5220[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3977 -> 5220[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5220 -> 4101[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5221[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3977 -> 5221[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5221 -> 4102[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5222[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3977 -> 5222[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5222 -> 4103[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5223[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3977 -> 5223[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5223 -> 4104[label="",style="solid", color="blue", weight=3]; 47.25/23.21 3978[label="yvy50000",fontsize=16,color="green",shape="box"];3979[label="yvy49000",fontsize=16,color="green",shape="box"];3980[label="yvy50000",fontsize=16,color="green",shape="box"];3981[label="yvy49000",fontsize=16,color="green",shape="box"];3982[label="yvy50000",fontsize=16,color="green",shape="box"];3983[label="yvy49000",fontsize=16,color="green",shape="box"];3984[label="yvy50000",fontsize=16,color="green",shape="box"];3985[label="yvy49000",fontsize=16,color="green",shape="box"];3986[label="yvy50000",fontsize=16,color="green",shape="box"];3987[label="yvy49000",fontsize=16,color="green",shape="box"];3988[label="yvy50000",fontsize=16,color="green",shape="box"];3989[label="yvy49000",fontsize=16,color="green",shape="box"];3990[label="yvy50000",fontsize=16,color="green",shape="box"];3991[label="yvy49000",fontsize=16,color="green",shape="box"];3992[label="yvy50000",fontsize=16,color="green",shape="box"];3993[label="yvy49000",fontsize=16,color="green",shape="box"];3994[label="yvy50000",fontsize=16,color="green",shape="box"];3995[label="yvy49000",fontsize=16,color="green",shape="box"];3996[label="yvy50000",fontsize=16,color="green",shape="box"];3997[label="yvy49000",fontsize=16,color="green",shape="box"];3998[label="yvy50000",fontsize=16,color="green",shape="box"];3999[label="yvy49000",fontsize=16,color="green",shape="box"];4000[label="yvy50000",fontsize=16,color="green",shape="box"];4001[label="yvy49000",fontsize=16,color="green",shape="box"];4002[label="yvy50000",fontsize=16,color="green",shape="box"];4003[label="yvy49000",fontsize=16,color="green",shape="box"];4004[label="yvy50000",fontsize=16,color="green",shape="box"];4005[label="yvy49000",fontsize=16,color="green",shape="box"];4006[label="primCmpDouble (Double yvy49000 (Pos yvy490010)) (Double yvy50000 (Pos yvy500010))",fontsize=16,color="black",shape="box"];4006 -> 4105[label="",style="solid", color="black", weight=3]; 47.25/23.21 4007[label="primCmpDouble (Double yvy49000 (Pos yvy490010)) (Double yvy50000 (Neg yvy500010))",fontsize=16,color="black",shape="box"];4007 -> 4106[label="",style="solid", color="black", weight=3]; 47.25/23.21 4008[label="primCmpDouble (Double yvy49000 (Neg yvy490010)) (Double yvy50000 (Pos yvy500010))",fontsize=16,color="black",shape="box"];4008 -> 4107[label="",style="solid", color="black", weight=3]; 47.25/23.21 4009[label="primCmpDouble (Double yvy49000 (Neg yvy490010)) (Double yvy50000 (Neg yvy500010))",fontsize=16,color="black",shape="box"];4009 -> 4108[label="",style="solid", color="black", weight=3]; 47.25/23.21 4010 -> 986[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4010[label="yvy49000 * yvy50001",fontsize=16,color="magenta"];4010 -> 4109[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4010 -> 4110[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4011 -> 986[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4011[label="yvy50000 * yvy49001",fontsize=16,color="magenta"];4011 -> 4111[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4011 -> 4112[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4012[label="yvy49000 * yvy50001",fontsize=16,color="burlywood",shape="triangle"];5224[label="yvy49000/Integer yvy490000",fontsize=10,color="white",style="solid",shape="box"];4012 -> 5224[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5224 -> 4113[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 4013 -> 4012[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4013[label="yvy50000 * yvy49001",fontsize=16,color="magenta"];4013 -> 4114[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4013 -> 4115[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 2460 -> 2446[label="",style="dashed", color="red", weight=0]; 47.25/23.21 2460[label="primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)",fontsize=16,color="magenta"];2460 -> 2606[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 2460 -> 2607[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 2461[label="yvy6200",fontsize=16,color="green",shape="box"];2462[label="primPlusNat (Succ yvy1610) (Succ yvy300000)",fontsize=16,color="black",shape="box"];2462 -> 2608[label="",style="solid", color="black", weight=3]; 47.25/23.21 2463[label="primPlusNat Zero (Succ yvy300000)",fontsize=16,color="black",shape="box"];2463 -> 2609[label="",style="solid", color="black", weight=3]; 47.25/23.21 2453 -> 1855[label="",style="dashed", color="red", weight=0]; 47.25/23.21 2453[label="primMulNat yvy400100 (Succ yvy300000)",fontsize=16,color="magenta"];2453 -> 2809[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 2453 -> 2810[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 2327[label="primCmpNat (Succ yvy4900) yvy500",fontsize=16,color="burlywood",shape="box"];5225[label="yvy500/Succ yvy5000",fontsize=10,color="white",style="solid",shape="box"];2327 -> 5225[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5225 -> 2472[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 5226[label="yvy500/Zero",fontsize=10,color="white",style="solid",shape="box"];2327 -> 5226[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5226 -> 2473[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 2328[label="primCmpNat Zero yvy500",fontsize=16,color="burlywood",shape="box"];5227[label="yvy500/Succ yvy5000",fontsize=10,color="white",style="solid",shape="box"];2328 -> 5227[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5227 -> 2474[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 5228[label="yvy500/Zero",fontsize=10,color="white",style="solid",shape="box"];2328 -> 5228[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5228 -> 2475[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 2805[label="Succ yvy5000",fontsize=16,color="green",shape="box"];2806[label="Zero",fontsize=16,color="green",shape="box"];2807[label="Zero",fontsize=16,color="green",shape="box"];2808[label="Succ yvy5000",fontsize=16,color="green",shape="box"];4446[label="Pos (Succ Zero)",fontsize=16,color="green",shape="box"];4447[label="FiniteMap.mkBranchLeft_size yvy246 yvy243 yvy245",fontsize=16,color="black",shape="box"];4447 -> 4451[label="",style="solid", color="black", weight=3]; 47.25/23.21 4448[label="FiniteMap.sizeFM yvy246",fontsize=16,color="burlywood",shape="triangle"];5229[label="yvy246/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4448 -> 5229[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5229 -> 4452[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 5230[label="yvy246/FiniteMap.Branch yvy2460 yvy2461 yvy2462 yvy2463 yvy2464",fontsize=10,color="white",style="solid",shape="box"];4448 -> 5230[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5230 -> 4453[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 4014[label="yvy2080",fontsize=16,color="green",shape="box"];4015[label="yvy2070",fontsize=16,color="green",shape="box"];2794[label="primPlusNat yvy1610 yvy300000",fontsize=16,color="burlywood",shape="triangle"];5231[label="yvy1610/Succ yvy16100",fontsize=10,color="white",style="solid",shape="box"];2794 -> 5231[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5231 -> 3125[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 5232[label="yvy1610/Zero",fontsize=10,color="white",style="solid",shape="box"];2794 -> 5232[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5232 -> 3126[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 4016[label="primMinusNat (Succ yvy20800) (Succ yvy20700)",fontsize=16,color="black",shape="box"];4016 -> 4116[label="",style="solid", color="black", weight=3]; 47.25/23.21 4017[label="primMinusNat (Succ yvy20800) Zero",fontsize=16,color="black",shape="box"];4017 -> 4117[label="",style="solid", color="black", weight=3]; 47.25/23.21 4018[label="primMinusNat Zero (Succ yvy20700)",fontsize=16,color="black",shape="box"];4018 -> 4118[label="",style="solid", color="black", weight=3]; 47.25/23.21 4019[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];4019 -> 4119[label="",style="solid", color="black", weight=3]; 47.25/23.21 4020[label="yvy2080",fontsize=16,color="green",shape="box"];4021[label="yvy2070",fontsize=16,color="green",shape="box"];2441 -> 1563[label="",style="dashed", color="red", weight=0]; 47.25/23.21 2441[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];2442 -> 2428[label="",style="dashed", color="red", weight=0]; 47.25/23.21 2442[label="FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy67 yvy54",fontsize=16,color="magenta"];2464[label="FiniteMap.mkBalBranch6MkBalBranch2 yvy50 yvy51 yvy67 yvy54 yvy50 yvy51 yvy67 yvy54 otherwise",fontsize=16,color="black",shape="box"];2464 -> 2744[label="",style="solid", color="black", weight=3]; 47.25/23.21 2465[label="FiniteMap.mkBalBranch6MkBalBranch1 yvy50 yvy51 yvy67 yvy54 yvy67 yvy54 yvy67",fontsize=16,color="burlywood",shape="box"];5233[label="yvy67/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2465 -> 5233[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5233 -> 2745[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 5234[label="yvy67/FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674",fontsize=10,color="white",style="solid",shape="box"];2465 -> 5234[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5234 -> 2746[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 2443 -> 3131[label="",style="dashed", color="red", weight=0]; 47.25/23.21 2443[label="FiniteMap.mkBalBranch6MkBalBranch01 yvy50 yvy51 yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 (FiniteMap.sizeFM yvy543 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy544)",fontsize=16,color="magenta"];2443 -> 3132[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 2466 -> 2446[label="",style="dashed", color="red", weight=0]; 47.25/23.21 2466[label="primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)",fontsize=16,color="magenta"];2466 -> 2788[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 2466 -> 2789[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 2467[label="yvy6200",fontsize=16,color="green",shape="box"];4022 -> 1649[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4022[label="compare (yvy49000 * Pos yvy500010) (Pos yvy490010 * yvy50000)",fontsize=16,color="magenta"];4022 -> 4120[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4022 -> 4121[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4023 -> 1649[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4023[label="compare (yvy49000 * Pos yvy500010) (Neg yvy490010 * yvy50000)",fontsize=16,color="magenta"];4023 -> 4122[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4023 -> 4123[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4024 -> 1649[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4024[label="compare (yvy49000 * Neg yvy500010) (Pos yvy490010 * yvy50000)",fontsize=16,color="magenta"];4024 -> 4124[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4024 -> 4125[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4025 -> 1649[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4025[label="compare (yvy49000 * Neg yvy500010) (Neg yvy490010 * yvy50000)",fontsize=16,color="magenta"];4025 -> 4126[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4025 -> 4127[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4027[label="compare yvy49000 yvy50000",fontsize=16,color="blue",shape="box"];5235[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4027 -> 5235[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5235 -> 4128[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5236[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4027 -> 5236[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5236 -> 4129[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5237[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4027 -> 5237[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5237 -> 4130[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5238[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4027 -> 5238[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5238 -> 4131[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5239[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4027 -> 5239[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5239 -> 4132[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5240[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4027 -> 5240[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5240 -> 4133[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5241[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4027 -> 5241[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5241 -> 4134[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5242[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4027 -> 5242[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5242 -> 4135[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5243[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4027 -> 5243[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5243 -> 4136[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5244[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4027 -> 5244[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5244 -> 4137[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5245[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4027 -> 5245[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5245 -> 4138[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5246[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4027 -> 5246[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5246 -> 4139[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5247[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4027 -> 5247[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5247 -> 4140[label="",style="solid", color="blue", weight=3]; 47.25/23.21 5248[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4027 -> 5248[label="",style="solid", color="blue", weight=9]; 47.25/23.21 5248 -> 4141[label="",style="solid", color="blue", weight=3]; 47.25/23.21 4028[label="yvy221",fontsize=16,color="green",shape="box"];4026[label="primCompAux0 yvy225 yvy226",fontsize=16,color="burlywood",shape="triangle"];5249[label="yvy226/LT",fontsize=10,color="white",style="solid",shape="box"];4026 -> 5249[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5249 -> 4142[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 5250[label="yvy226/EQ",fontsize=10,color="white",style="solid",shape="box"];4026 -> 5250[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5250 -> 4143[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 5251[label="yvy226/GT",fontsize=10,color="white",style="solid",shape="box"];4026 -> 5251[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5251 -> 4144[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 4029[label="yvy49000",fontsize=16,color="green",shape="box"];4030[label="yvy50000",fontsize=16,color="green",shape="box"];4031[label="yvy49000",fontsize=16,color="green",shape="box"];4032[label="yvy50000",fontsize=16,color="green",shape="box"];4033[label="yvy49000",fontsize=16,color="green",shape="box"];4034[label="yvy50000",fontsize=16,color="green",shape="box"];4035[label="yvy49000",fontsize=16,color="green",shape="box"];4036[label="yvy50000",fontsize=16,color="green",shape="box"];4037[label="yvy49000",fontsize=16,color="green",shape="box"];4038[label="yvy50000",fontsize=16,color="green",shape="box"];4039[label="compare3 yvy49000 yvy50000",fontsize=16,color="black",shape="box"];4039 -> 4164[label="",style="solid", color="black", weight=3]; 47.25/23.21 4040[label="compare3 yvy49000 yvy50000",fontsize=16,color="black",shape="box"];4040 -> 4165[label="",style="solid", color="black", weight=3]; 47.25/23.21 4041[label="compare3 yvy49000 yvy50000",fontsize=16,color="black",shape="box"];4041 -> 4166[label="",style="solid", color="black", weight=3]; 47.25/23.21 4042[label="compare3 yvy49000 yvy50000",fontsize=16,color="black",shape="box"];4042 -> 4167[label="",style="solid", color="black", weight=3]; 47.25/23.21 4043[label="compare3 yvy49000 yvy50000",fontsize=16,color="black",shape="box"];4043 -> 4168[label="",style="solid", color="black", weight=3]; 47.25/23.21 4044[label="compare3 yvy49000 yvy50000",fontsize=16,color="black",shape="box"];4044 -> 4169[label="",style="solid", color="black", weight=3]; 47.25/23.21 4045[label="yvy49000",fontsize=16,color="green",shape="box"];4046[label="yvy50000",fontsize=16,color="green",shape="box"];4047[label="yvy49000",fontsize=16,color="green",shape="box"];4048[label="yvy50000",fontsize=16,color="green",shape="box"];4049[label="yvy50001",fontsize=16,color="green",shape="box"];4050[label="yvy49001",fontsize=16,color="green",shape="box"];4051[label="yvy50001",fontsize=16,color="green",shape="box"];4052[label="yvy49001",fontsize=16,color="green",shape="box"];4053[label="yvy49001",fontsize=16,color="green",shape="box"];4054[label="yvy50001",fontsize=16,color="green",shape="box"];4055[label="yvy50001",fontsize=16,color="green",shape="box"];4056[label="yvy49001",fontsize=16,color="green",shape="box"];4057[label="yvy50001",fontsize=16,color="green",shape="box"];4058[label="yvy49001",fontsize=16,color="green",shape="box"];4059[label="yvy50001",fontsize=16,color="green",shape="box"];4060[label="yvy49001",fontsize=16,color="green",shape="box"];4061[label="yvy50001",fontsize=16,color="green",shape="box"];4062[label="yvy49001",fontsize=16,color="green",shape="box"];4063[label="yvy50001",fontsize=16,color="green",shape="box"];4064[label="yvy49001",fontsize=16,color="green",shape="box"];4065[label="yvy50001",fontsize=16,color="green",shape="box"];4066[label="yvy49001",fontsize=16,color="green",shape="box"];4067[label="yvy50001",fontsize=16,color="green",shape="box"];4068[label="yvy49001",fontsize=16,color="green",shape="box"];4069[label="yvy50001",fontsize=16,color="green",shape="box"];4070[label="yvy49001",fontsize=16,color="green",shape="box"];4071[label="yvy50001",fontsize=16,color="green",shape="box"];4072[label="yvy49001",fontsize=16,color="green",shape="box"];4073[label="yvy50001",fontsize=16,color="green",shape="box"];4074[label="yvy49001",fontsize=16,color="green",shape="box"];4075[label="yvy50001",fontsize=16,color="green",shape="box"];4076[label="yvy49001",fontsize=16,color="green",shape="box"];4077 -> 3094[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4077[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4077 -> 4170[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4077 -> 4171[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4078 -> 3095[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4078[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4078 -> 4172[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4078 -> 4173[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4079 -> 3096[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4079[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4079 -> 4174[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4079 -> 4175[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4080 -> 3097[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4080[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4080 -> 4176[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4080 -> 4177[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4081 -> 3098[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4081[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4081 -> 4178[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4081 -> 4179[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4082 -> 3099[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4082[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4082 -> 4180[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4082 -> 4181[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4083 -> 3100[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4083[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4083 -> 4182[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4083 -> 4183[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4084 -> 3101[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4084[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4084 -> 4184[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4084 -> 4185[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4085 -> 3102[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4085[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4085 -> 4186[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4085 -> 4187[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4086 -> 3103[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4086[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4086 -> 4188[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4086 -> 4189[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4087 -> 3104[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4087[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4087 -> 4190[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4087 -> 4191[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4088 -> 3105[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4088[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4088 -> 4192[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4088 -> 4193[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4089 -> 3106[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4089[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4089 -> 4194[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4089 -> 4195[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4090 -> 3107[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4090[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4090 -> 4196[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4090 -> 4197[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4091 -> 2565[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4091[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4091 -> 4198[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4091 -> 4199[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4092 -> 2571[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4092[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4092 -> 4200[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4092 -> 4201[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4093 -> 2570[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4093[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4093 -> 4202[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4093 -> 4203[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4094 -> 2572[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4094[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4094 -> 4204[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4094 -> 4205[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4095 -> 2567[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4095[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4095 -> 4206[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4095 -> 4207[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4096 -> 2561[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4096[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4096 -> 4208[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4096 -> 4209[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4097 -> 2566[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4097[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4097 -> 4210[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4097 -> 4211[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4098 -> 2560[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4098[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4098 -> 4212[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4098 -> 4213[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4099 -> 2562[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4099[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4099 -> 4214[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4099 -> 4215[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4100 -> 2563[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4100[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4100 -> 4216[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4100 -> 4217[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4101 -> 2569[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4101[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4101 -> 4218[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4101 -> 4219[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4102 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4102[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4102 -> 4220[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4102 -> 4221[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4103 -> 2573[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4103[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4103 -> 4222[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4103 -> 4223[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4104 -> 2568[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4104[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4104 -> 4224[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4104 -> 4225[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4105 -> 1649[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4105[label="compare (yvy49000 * Pos yvy500010) (Pos yvy490010 * yvy50000)",fontsize=16,color="magenta"];4105 -> 4226[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4105 -> 4227[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4106 -> 1649[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4106[label="compare (yvy49000 * Pos yvy500010) (Neg yvy490010 * yvy50000)",fontsize=16,color="magenta"];4106 -> 4228[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4106 -> 4229[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4107 -> 1649[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4107[label="compare (yvy49000 * Neg yvy500010) (Pos yvy490010 * yvy50000)",fontsize=16,color="magenta"];4107 -> 4230[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4107 -> 4231[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4108 -> 1649[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4108[label="compare (yvy49000 * Neg yvy500010) (Neg yvy490010 * yvy50000)",fontsize=16,color="magenta"];4108 -> 4232[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4108 -> 4233[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4109[label="yvy49000",fontsize=16,color="green",shape="box"];4110[label="yvy50001",fontsize=16,color="green",shape="box"];4111[label="yvy50000",fontsize=16,color="green",shape="box"];4112[label="yvy49001",fontsize=16,color="green",shape="box"];4113[label="Integer yvy490000 * yvy50001",fontsize=16,color="burlywood",shape="box"];5252[label="yvy50001/Integer yvy500010",fontsize=10,color="white",style="solid",shape="box"];4113 -> 5252[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5252 -> 4234[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 4114[label="yvy50000",fontsize=16,color="green",shape="box"];4115[label="yvy49001",fontsize=16,color="green",shape="box"];2606 -> 2446[label="",style="dashed", color="red", weight=0]; 47.25/23.21 2606[label="primPlusNat (Succ yvy6200) (Succ yvy6200)",fontsize=16,color="magenta"];2606 -> 2792[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 2606 -> 2793[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 2607[label="yvy6200",fontsize=16,color="green",shape="box"];2608[label="Succ (Succ (primPlusNat yvy1610 yvy300000))",fontsize=16,color="green",shape="box"];2608 -> 2794[label="",style="dashed", color="green", weight=3]; 47.25/23.21 2609[label="Succ yvy300000",fontsize=16,color="green",shape="box"];2809[label="yvy400100",fontsize=16,color="green",shape="box"];2810[label="Succ yvy300000",fontsize=16,color="green",shape="box"];2472[label="primCmpNat (Succ yvy4900) (Succ yvy5000)",fontsize=16,color="black",shape="box"];2472 -> 2811[label="",style="solid", color="black", weight=3]; 47.25/23.21 2473[label="primCmpNat (Succ yvy4900) Zero",fontsize=16,color="black",shape="box"];2473 -> 2812[label="",style="solid", color="black", weight=3]; 47.25/23.21 2474[label="primCmpNat Zero (Succ yvy5000)",fontsize=16,color="black",shape="box"];2474 -> 2813[label="",style="solid", color="black", weight=3]; 47.25/23.21 2475[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];2475 -> 2814[label="",style="solid", color="black", weight=3]; 47.25/23.21 4451 -> 4448[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4451[label="FiniteMap.sizeFM yvy245",fontsize=16,color="magenta"];4451 -> 4496[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4452[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];4452 -> 4497[label="",style="solid", color="black", weight=3]; 47.25/23.21 4453[label="FiniteMap.sizeFM (FiniteMap.Branch yvy2460 yvy2461 yvy2462 yvy2463 yvy2464)",fontsize=16,color="black",shape="box"];4453 -> 4498[label="",style="solid", color="black", weight=3]; 47.25/23.21 3125[label="primPlusNat (Succ yvy16100) yvy300000",fontsize=16,color="burlywood",shape="box"];5253[label="yvy300000/Succ yvy3000000",fontsize=10,color="white",style="solid",shape="box"];3125 -> 5253[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5253 -> 3499[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 5254[label="yvy300000/Zero",fontsize=10,color="white",style="solid",shape="box"];3125 -> 5254[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5254 -> 3500[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 3126[label="primPlusNat Zero yvy300000",fontsize=16,color="burlywood",shape="box"];5255[label="yvy300000/Succ yvy3000000",fontsize=10,color="white",style="solid",shape="box"];3126 -> 5255[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5255 -> 3501[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 5256[label="yvy300000/Zero",fontsize=10,color="white",style="solid",shape="box"];3126 -> 5256[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5256 -> 3502[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 4116 -> 3738[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4116[label="primMinusNat yvy20800 yvy20700",fontsize=16,color="magenta"];4116 -> 4235[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4116 -> 4236[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4117[label="Pos (Succ yvy20800)",fontsize=16,color="green",shape="box"];4118[label="Neg (Succ yvy20700)",fontsize=16,color="green",shape="box"];4119[label="Pos Zero",fontsize=16,color="green",shape="box"];2744[label="FiniteMap.mkBalBranch6MkBalBranch2 yvy50 yvy51 yvy67 yvy54 yvy50 yvy51 yvy67 yvy54 True",fontsize=16,color="black",shape="box"];2744 -> 2798[label="",style="solid", color="black", weight=3]; 47.25/23.21 2745[label="FiniteMap.mkBalBranch6MkBalBranch1 yvy50 yvy51 FiniteMap.EmptyFM yvy54 FiniteMap.EmptyFM yvy54 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2745 -> 2799[label="",style="solid", color="black", weight=3]; 47.25/23.21 2746[label="FiniteMap.mkBalBranch6MkBalBranch1 yvy50 yvy51 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674)",fontsize=16,color="black",shape="box"];2746 -> 2800[label="",style="solid", color="black", weight=3]; 47.25/23.21 3132 -> 3335[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3132[label="FiniteMap.sizeFM yvy543 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy544",fontsize=16,color="magenta"];3132 -> 3342[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3132 -> 3343[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3131[label="FiniteMap.mkBalBranch6MkBalBranch01 yvy50 yvy51 yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 yvy202",fontsize=16,color="burlywood",shape="triangle"];5257[label="yvy202/False",fontsize=10,color="white",style="solid",shape="box"];3131 -> 5257[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5257 -> 3494[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 5258[label="yvy202/True",fontsize=10,color="white",style="solid",shape="box"];3131 -> 5258[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5258 -> 3495[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 2788 -> 2446[label="",style="dashed", color="red", weight=0]; 47.25/23.21 2788[label="primPlusNat (Succ yvy6200) (Succ yvy6200)",fontsize=16,color="magenta"];2788 -> 3116[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 2788 -> 3117[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 2789[label="yvy6200",fontsize=16,color="green",shape="box"];4120 -> 986[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4120[label="yvy49000 * Pos yvy500010",fontsize=16,color="magenta"];4120 -> 4237[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4120 -> 4238[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4121 -> 986[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4121[label="Pos yvy490010 * yvy50000",fontsize=16,color="magenta"];4121 -> 4239[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4121 -> 4240[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4122 -> 986[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4122[label="yvy49000 * Pos yvy500010",fontsize=16,color="magenta"];4122 -> 4241[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4122 -> 4242[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4123 -> 986[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4123[label="Neg yvy490010 * yvy50000",fontsize=16,color="magenta"];4123 -> 4243[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4123 -> 4244[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4124 -> 986[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4124[label="yvy49000 * Neg yvy500010",fontsize=16,color="magenta"];4124 -> 4245[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4124 -> 4246[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4125 -> 986[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4125[label="Pos yvy490010 * yvy50000",fontsize=16,color="magenta"];4125 -> 4247[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4125 -> 4248[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4126 -> 986[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4126[label="yvy49000 * Neg yvy500010",fontsize=16,color="magenta"];4126 -> 4249[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4126 -> 4250[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4127 -> 986[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4127[label="Neg yvy490010 * yvy50000",fontsize=16,color="magenta"];4127 -> 4251[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4127 -> 4252[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4128 -> 3437[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4128[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4128 -> 4253[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4128 -> 4254[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4129 -> 3438[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4129[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4129 -> 4255[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4129 -> 4256[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4130 -> 1649[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4130[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4130 -> 4257[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4130 -> 4258[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4131 -> 3440[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4131[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4131 -> 4259[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4131 -> 4260[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4132 -> 3441[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4132[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4132 -> 4261[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4132 -> 4262[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4133 -> 3442[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4133[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4133 -> 4263[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4133 -> 4264[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4134 -> 3891[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4134[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4134 -> 4265[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4134 -> 4266[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4135 -> 3893[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4135[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4135 -> 4267[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4135 -> 4268[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4136 -> 3895[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4136[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4136 -> 4269[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4136 -> 4270[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4137 -> 3897[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4137[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4137 -> 4271[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4137 -> 4272[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4138 -> 3899[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4138[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4138 -> 4273[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4138 -> 4274[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4139 -> 3901[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4139[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4139 -> 4275[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4139 -> 4276[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4140 -> 3443[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4140[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4140 -> 4277[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4140 -> 4278[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4141 -> 3444[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4141[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4141 -> 4279[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4141 -> 4280[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4142[label="primCompAux0 yvy225 LT",fontsize=16,color="black",shape="box"];4142 -> 4281[label="",style="solid", color="black", weight=3]; 47.25/23.21 4143[label="primCompAux0 yvy225 EQ",fontsize=16,color="black",shape="box"];4143 -> 4282[label="",style="solid", color="black", weight=3]; 47.25/23.21 4144[label="primCompAux0 yvy225 GT",fontsize=16,color="black",shape="box"];4144 -> 4283[label="",style="solid", color="black", weight=3]; 47.25/23.21 4164 -> 4291[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4164[label="compare2 yvy49000 yvy50000 (yvy49000 == yvy50000)",fontsize=16,color="magenta"];4164 -> 4292[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4165 -> 4293[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4165[label="compare2 yvy49000 yvy50000 (yvy49000 == yvy50000)",fontsize=16,color="magenta"];4165 -> 4294[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4166 -> 4295[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4166[label="compare2 yvy49000 yvy50000 (yvy49000 == yvy50000)",fontsize=16,color="magenta"];4166 -> 4296[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4167 -> 2502[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4167[label="compare2 yvy49000 yvy50000 (yvy49000 == yvy50000)",fontsize=16,color="magenta"];4167 -> 4297[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4167 -> 4298[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4167 -> 4299[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4168 -> 4300[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4168[label="compare2 yvy49000 yvy50000 (yvy49000 == yvy50000)",fontsize=16,color="magenta"];4168 -> 4301[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4169 -> 4302[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4169[label="compare2 yvy49000 yvy50000 (yvy49000 == yvy50000)",fontsize=16,color="magenta"];4169 -> 4303[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4170[label="yvy49002",fontsize=16,color="green",shape="box"];4171[label="yvy50002",fontsize=16,color="green",shape="box"];4172[label="yvy49002",fontsize=16,color="green",shape="box"];4173[label="yvy50002",fontsize=16,color="green",shape="box"];4174[label="yvy49002",fontsize=16,color="green",shape="box"];4175[label="yvy50002",fontsize=16,color="green",shape="box"];4176[label="yvy49002",fontsize=16,color="green",shape="box"];4177[label="yvy50002",fontsize=16,color="green",shape="box"];4178[label="yvy49002",fontsize=16,color="green",shape="box"];4179[label="yvy50002",fontsize=16,color="green",shape="box"];4180[label="yvy49002",fontsize=16,color="green",shape="box"];4181[label="yvy50002",fontsize=16,color="green",shape="box"];4182[label="yvy49002",fontsize=16,color="green",shape="box"];4183[label="yvy50002",fontsize=16,color="green",shape="box"];4184[label="yvy49002",fontsize=16,color="green",shape="box"];4185[label="yvy50002",fontsize=16,color="green",shape="box"];4186[label="yvy49002",fontsize=16,color="green",shape="box"];4187[label="yvy50002",fontsize=16,color="green",shape="box"];4188[label="yvy49002",fontsize=16,color="green",shape="box"];4189[label="yvy50002",fontsize=16,color="green",shape="box"];4190[label="yvy49002",fontsize=16,color="green",shape="box"];4191[label="yvy50002",fontsize=16,color="green",shape="box"];4192[label="yvy49002",fontsize=16,color="green",shape="box"];4193[label="yvy50002",fontsize=16,color="green",shape="box"];4194[label="yvy49002",fontsize=16,color="green",shape="box"];4195[label="yvy50002",fontsize=16,color="green",shape="box"];4196[label="yvy49002",fontsize=16,color="green",shape="box"];4197[label="yvy50002",fontsize=16,color="green",shape="box"];4198[label="yvy50001",fontsize=16,color="green",shape="box"];4199[label="yvy49001",fontsize=16,color="green",shape="box"];4200[label="yvy50001",fontsize=16,color="green",shape="box"];4201[label="yvy49001",fontsize=16,color="green",shape="box"];4202[label="yvy50001",fontsize=16,color="green",shape="box"];4203[label="yvy49001",fontsize=16,color="green",shape="box"];4204[label="yvy50001",fontsize=16,color="green",shape="box"];4205[label="yvy49001",fontsize=16,color="green",shape="box"];4206[label="yvy50001",fontsize=16,color="green",shape="box"];4207[label="yvy49001",fontsize=16,color="green",shape="box"];4208[label="yvy50001",fontsize=16,color="green",shape="box"];4209[label="yvy49001",fontsize=16,color="green",shape="box"];4210[label="yvy50001",fontsize=16,color="green",shape="box"];4211[label="yvy49001",fontsize=16,color="green",shape="box"];4212[label="yvy50001",fontsize=16,color="green",shape="box"];4213[label="yvy49001",fontsize=16,color="green",shape="box"];4214[label="yvy50001",fontsize=16,color="green",shape="box"];4215[label="yvy49001",fontsize=16,color="green",shape="box"];4216[label="yvy50001",fontsize=16,color="green",shape="box"];4217[label="yvy49001",fontsize=16,color="green",shape="box"];4218[label="yvy50001",fontsize=16,color="green",shape="box"];4219[label="yvy49001",fontsize=16,color="green",shape="box"];4220[label="yvy50001",fontsize=16,color="green",shape="box"];4221[label="yvy49001",fontsize=16,color="green",shape="box"];4222[label="yvy50001",fontsize=16,color="green",shape="box"];4223[label="yvy49001",fontsize=16,color="green",shape="box"];4224[label="yvy50001",fontsize=16,color="green",shape="box"];4225[label="yvy49001",fontsize=16,color="green",shape="box"];4226 -> 986[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4226[label="yvy49000 * Pos yvy500010",fontsize=16,color="magenta"];4226 -> 4304[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4226 -> 4305[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4227 -> 986[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4227[label="Pos yvy490010 * yvy50000",fontsize=16,color="magenta"];4227 -> 4306[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4227 -> 4307[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4228 -> 986[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4228[label="yvy49000 * Pos yvy500010",fontsize=16,color="magenta"];4228 -> 4308[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4228 -> 4309[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4229 -> 986[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4229[label="Neg yvy490010 * yvy50000",fontsize=16,color="magenta"];4229 -> 4310[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4229 -> 4311[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4230 -> 986[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4230[label="yvy49000 * Neg yvy500010",fontsize=16,color="magenta"];4230 -> 4312[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4230 -> 4313[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4231 -> 986[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4231[label="Pos yvy490010 * yvy50000",fontsize=16,color="magenta"];4231 -> 4314[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4231 -> 4315[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4232 -> 986[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4232[label="yvy49000 * Neg yvy500010",fontsize=16,color="magenta"];4232 -> 4316[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4232 -> 4317[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4233 -> 986[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4233[label="Neg yvy490010 * yvy50000",fontsize=16,color="magenta"];4233 -> 4318[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4233 -> 4319[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4234[label="Integer yvy490000 * Integer yvy500010",fontsize=16,color="black",shape="box"];4234 -> 4320[label="",style="solid", color="black", weight=3]; 47.25/23.21 2792[label="Succ yvy6200",fontsize=16,color="green",shape="box"];2793[label="yvy6200",fontsize=16,color="green",shape="box"];2811 -> 2205[label="",style="dashed", color="red", weight=0]; 47.25/23.21 2811[label="primCmpNat yvy4900 yvy5000",fontsize=16,color="magenta"];2811 -> 3867[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 2811 -> 3868[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 2812[label="GT",fontsize=16,color="green",shape="box"];2813[label="LT",fontsize=16,color="green",shape="box"];2814[label="EQ",fontsize=16,color="green",shape="box"];4496[label="yvy245",fontsize=16,color="green",shape="box"];4497[label="Pos Zero",fontsize=16,color="green",shape="box"];4498[label="yvy2462",fontsize=16,color="green",shape="box"];3499[label="primPlusNat (Succ yvy16100) (Succ yvy3000000)",fontsize=16,color="black",shape="box"];3499 -> 3872[label="",style="solid", color="black", weight=3]; 47.25/23.21 3500[label="primPlusNat (Succ yvy16100) Zero",fontsize=16,color="black",shape="box"];3500 -> 3873[label="",style="solid", color="black", weight=3]; 47.25/23.21 3501[label="primPlusNat Zero (Succ yvy3000000)",fontsize=16,color="black",shape="box"];3501 -> 3874[label="",style="solid", color="black", weight=3]; 47.25/23.21 3502[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];3502 -> 3875[label="",style="solid", color="black", weight=3]; 47.25/23.21 4235[label="yvy20800",fontsize=16,color="green",shape="box"];4236[label="yvy20700",fontsize=16,color="green",shape="box"];2798 -> 4372[label="",style="dashed", color="red", weight=0]; 47.25/23.21 2798[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) yvy50 yvy51 yvy67 yvy54",fontsize=16,color="magenta"];2798 -> 4398[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 2798 -> 4399[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 2798 -> 4400[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 2798 -> 4401[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 2798 -> 4402[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 2799[label="error []",fontsize=16,color="red",shape="box"];2800[label="FiniteMap.mkBalBranch6MkBalBranch12 yvy50 yvy51 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674)",fontsize=16,color="black",shape="box"];2800 -> 3129[label="",style="solid", color="black", weight=3]; 47.25/23.21 3342 -> 2434[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3342[label="FiniteMap.sizeFM yvy543",fontsize=16,color="magenta"];3342 -> 3496[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3343 -> 986[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3343[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy544",fontsize=16,color="magenta"];3343 -> 3497[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3343 -> 3498[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3494[label="FiniteMap.mkBalBranch6MkBalBranch01 yvy50 yvy51 yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 False",fontsize=16,color="black",shape="box"];3494 -> 3869[label="",style="solid", color="black", weight=3]; 47.25/23.21 3495[label="FiniteMap.mkBalBranch6MkBalBranch01 yvy50 yvy51 yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 True",fontsize=16,color="black",shape="box"];3495 -> 3870[label="",style="solid", color="black", weight=3]; 47.25/23.21 3116[label="Succ yvy6200",fontsize=16,color="green",shape="box"];3117[label="yvy6200",fontsize=16,color="green",shape="box"];4237[label="yvy49000",fontsize=16,color="green",shape="box"];4238[label="Pos yvy500010",fontsize=16,color="green",shape="box"];4239[label="Pos yvy490010",fontsize=16,color="green",shape="box"];4240[label="yvy50000",fontsize=16,color="green",shape="box"];4241[label="yvy49000",fontsize=16,color="green",shape="box"];4242[label="Pos yvy500010",fontsize=16,color="green",shape="box"];4243[label="Neg yvy490010",fontsize=16,color="green",shape="box"];4244[label="yvy50000",fontsize=16,color="green",shape="box"];4245[label="yvy49000",fontsize=16,color="green",shape="box"];4246[label="Neg yvy500010",fontsize=16,color="green",shape="box"];4247[label="Pos yvy490010",fontsize=16,color="green",shape="box"];4248[label="yvy50000",fontsize=16,color="green",shape="box"];4249[label="yvy49000",fontsize=16,color="green",shape="box"];4250[label="Neg yvy500010",fontsize=16,color="green",shape="box"];4251[label="Neg yvy490010",fontsize=16,color="green",shape="box"];4252[label="yvy50000",fontsize=16,color="green",shape="box"];4253[label="yvy49000",fontsize=16,color="green",shape="box"];4254[label="yvy50000",fontsize=16,color="green",shape="box"];4255[label="yvy49000",fontsize=16,color="green",shape="box"];4256[label="yvy50000",fontsize=16,color="green",shape="box"];4257[label="yvy49000",fontsize=16,color="green",shape="box"];4258[label="yvy50000",fontsize=16,color="green",shape="box"];4259[label="yvy49000",fontsize=16,color="green",shape="box"];4260[label="yvy50000",fontsize=16,color="green",shape="box"];4261[label="yvy49000",fontsize=16,color="green",shape="box"];4262[label="yvy50000",fontsize=16,color="green",shape="box"];4263[label="yvy49000",fontsize=16,color="green",shape="box"];4264[label="yvy50000",fontsize=16,color="green",shape="box"];4265[label="yvy50000",fontsize=16,color="green",shape="box"];4266[label="yvy49000",fontsize=16,color="green",shape="box"];4267[label="yvy50000",fontsize=16,color="green",shape="box"];4268[label="yvy49000",fontsize=16,color="green",shape="box"];4269[label="yvy50000",fontsize=16,color="green",shape="box"];4270[label="yvy49000",fontsize=16,color="green",shape="box"];4271[label="yvy50000",fontsize=16,color="green",shape="box"];4272[label="yvy49000",fontsize=16,color="green",shape="box"];4273[label="yvy50000",fontsize=16,color="green",shape="box"];4274[label="yvy49000",fontsize=16,color="green",shape="box"];4275[label="yvy50000",fontsize=16,color="green",shape="box"];4276[label="yvy49000",fontsize=16,color="green",shape="box"];4277[label="yvy49000",fontsize=16,color="green",shape="box"];4278[label="yvy50000",fontsize=16,color="green",shape="box"];4279[label="yvy49000",fontsize=16,color="green",shape="box"];4280[label="yvy50000",fontsize=16,color="green",shape="box"];4281[label="LT",fontsize=16,color="green",shape="box"];4282[label="yvy225",fontsize=16,color="green",shape="box"];4283[label="GT",fontsize=16,color="green",shape="box"];4292 -> 2566[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4292[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];4292 -> 4321[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4292 -> 4322[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4291[label="compare2 yvy49000 yvy50000 yvy227",fontsize=16,color="burlywood",shape="triangle"];5259[label="yvy227/False",fontsize=10,color="white",style="solid",shape="box"];4291 -> 5259[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5259 -> 4323[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 5260[label="yvy227/True",fontsize=10,color="white",style="solid",shape="box"];4291 -> 5260[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5260 -> 4324[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 4294 -> 2560[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4294[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];4294 -> 4325[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4294 -> 4326[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4293[label="compare2 yvy49000 yvy50000 yvy228",fontsize=16,color="burlywood",shape="triangle"];5261[label="yvy228/False",fontsize=10,color="white",style="solid",shape="box"];4293 -> 5261[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5261 -> 4327[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 5262[label="yvy228/True",fontsize=10,color="white",style="solid",shape="box"];4293 -> 5262[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5262 -> 4328[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 4296 -> 2562[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4296[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];4296 -> 4329[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4296 -> 4330[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4295[label="compare2 yvy49000 yvy50000 yvy229",fontsize=16,color="burlywood",shape="triangle"];5263[label="yvy229/False",fontsize=10,color="white",style="solid",shape="box"];4295 -> 5263[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5263 -> 4331[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 5264[label="yvy229/True",fontsize=10,color="white",style="solid",shape="box"];4295 -> 5264[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5264 -> 4332[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 4297[label="yvy50000",fontsize=16,color="green",shape="box"];4298 -> 2563[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4298[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];4298 -> 4333[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4298 -> 4334[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4299[label="yvy49000",fontsize=16,color="green",shape="box"];4301 -> 2569[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4301[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];4301 -> 4335[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4301 -> 4336[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4300[label="compare2 yvy49000 yvy50000 yvy230",fontsize=16,color="burlywood",shape="triangle"];5265[label="yvy230/False",fontsize=10,color="white",style="solid",shape="box"];4300 -> 5265[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5265 -> 4337[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 5266[label="yvy230/True",fontsize=10,color="white",style="solid",shape="box"];4300 -> 5266[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5266 -> 4338[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 4303 -> 115[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4303[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];4303 -> 4339[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4303 -> 4340[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4302[label="compare2 yvy49000 yvy50000 yvy231",fontsize=16,color="burlywood",shape="triangle"];5267[label="yvy231/False",fontsize=10,color="white",style="solid",shape="box"];4302 -> 5267[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5267 -> 4341[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 5268[label="yvy231/True",fontsize=10,color="white",style="solid",shape="box"];4302 -> 5268[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5268 -> 4342[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 4304[label="yvy49000",fontsize=16,color="green",shape="box"];4305[label="Pos yvy500010",fontsize=16,color="green",shape="box"];4306[label="Pos yvy490010",fontsize=16,color="green",shape="box"];4307[label="yvy50000",fontsize=16,color="green",shape="box"];4308[label="yvy49000",fontsize=16,color="green",shape="box"];4309[label="Pos yvy500010",fontsize=16,color="green",shape="box"];4310[label="Neg yvy490010",fontsize=16,color="green",shape="box"];4311[label="yvy50000",fontsize=16,color="green",shape="box"];4312[label="yvy49000",fontsize=16,color="green",shape="box"];4313[label="Neg yvy500010",fontsize=16,color="green",shape="box"];4314[label="Pos yvy490010",fontsize=16,color="green",shape="box"];4315[label="yvy50000",fontsize=16,color="green",shape="box"];4316[label="yvy49000",fontsize=16,color="green",shape="box"];4317[label="Neg yvy500010",fontsize=16,color="green",shape="box"];4318[label="Neg yvy490010",fontsize=16,color="green",shape="box"];4319[label="yvy50000",fontsize=16,color="green",shape="box"];4320[label="Integer (primMulInt yvy490000 yvy500010)",fontsize=16,color="green",shape="box"];4320 -> 4359[label="",style="dashed", color="green", weight=3]; 47.25/23.21 3867[label="yvy5000",fontsize=16,color="green",shape="box"];3868[label="yvy4900",fontsize=16,color="green",shape="box"];3872[label="Succ (Succ (primPlusNat yvy16100 yvy3000000))",fontsize=16,color="green",shape="box"];3872 -> 4156[label="",style="dashed", color="green", weight=3]; 47.25/23.21 3873[label="Succ yvy16100",fontsize=16,color="green",shape="box"];3874[label="Succ yvy3000000",fontsize=16,color="green",shape="box"];3875[label="Zero",fontsize=16,color="green",shape="box"];4398[label="yvy51",fontsize=16,color="green",shape="box"];4399[label="yvy50",fontsize=16,color="green",shape="box"];4400[label="yvy67",fontsize=16,color="green",shape="box"];4401[label="Succ Zero",fontsize=16,color="green",shape="box"];4402[label="yvy54",fontsize=16,color="green",shape="box"];3129 -> 3503[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3129[label="FiniteMap.mkBalBranch6MkBalBranch11 yvy50 yvy51 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54 yvy670 yvy671 yvy672 yvy673 yvy674 (FiniteMap.sizeFM yvy674 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy673)",fontsize=16,color="magenta"];3129 -> 3504[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3496[label="yvy543",fontsize=16,color="green",shape="box"];3497[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3498 -> 2434[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3498[label="FiniteMap.sizeFM yvy544",fontsize=16,color="magenta"];3498 -> 3871[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3869[label="FiniteMap.mkBalBranch6MkBalBranch00 yvy50 yvy51 yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 otherwise",fontsize=16,color="black",shape="box"];3869 -> 4157[label="",style="solid", color="black", weight=3]; 47.25/23.21 3870[label="FiniteMap.mkBalBranch6Single_L yvy50 yvy51 yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="black",shape="box"];3870 -> 4158[label="",style="solid", color="black", weight=3]; 47.25/23.21 4321[label="yvy50000",fontsize=16,color="green",shape="box"];4322[label="yvy49000",fontsize=16,color="green",shape="box"];4323[label="compare2 yvy49000 yvy50000 False",fontsize=16,color="black",shape="box"];4323 -> 4360[label="",style="solid", color="black", weight=3]; 47.25/23.21 4324[label="compare2 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4324 -> 4361[label="",style="solid", color="black", weight=3]; 47.25/23.21 4325[label="yvy50000",fontsize=16,color="green",shape="box"];4326[label="yvy49000",fontsize=16,color="green",shape="box"];4327[label="compare2 yvy49000 yvy50000 False",fontsize=16,color="black",shape="box"];4327 -> 4362[label="",style="solid", color="black", weight=3]; 47.25/23.21 4328[label="compare2 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4328 -> 4363[label="",style="solid", color="black", weight=3]; 47.25/23.21 4329[label="yvy50000",fontsize=16,color="green",shape="box"];4330[label="yvy49000",fontsize=16,color="green",shape="box"];4331[label="compare2 yvy49000 yvy50000 False",fontsize=16,color="black",shape="box"];4331 -> 4364[label="",style="solid", color="black", weight=3]; 47.25/23.21 4332[label="compare2 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4332 -> 4365[label="",style="solid", color="black", weight=3]; 47.25/23.21 4333[label="yvy50000",fontsize=16,color="green",shape="box"];4334[label="yvy49000",fontsize=16,color="green",shape="box"];4335[label="yvy50000",fontsize=16,color="green",shape="box"];4336[label="yvy49000",fontsize=16,color="green",shape="box"];4337[label="compare2 yvy49000 yvy50000 False",fontsize=16,color="black",shape="box"];4337 -> 4366[label="",style="solid", color="black", weight=3]; 47.25/23.21 4338[label="compare2 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4338 -> 4367[label="",style="solid", color="black", weight=3]; 47.25/23.21 4339[label="yvy50000",fontsize=16,color="green",shape="box"];4340[label="yvy49000",fontsize=16,color="green",shape="box"];4341[label="compare2 yvy49000 yvy50000 False",fontsize=16,color="black",shape="box"];4341 -> 4368[label="",style="solid", color="black", weight=3]; 47.25/23.21 4342[label="compare2 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4342 -> 4369[label="",style="solid", color="black", weight=3]; 47.25/23.21 4359 -> 1233[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4359[label="primMulInt yvy490000 yvy500010",fontsize=16,color="magenta"];4359 -> 4429[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4359 -> 4430[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4156 -> 2794[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4156[label="primPlusNat yvy16100 yvy3000000",fontsize=16,color="magenta"];4156 -> 4284[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4156 -> 4285[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3504 -> 3335[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3504[label="FiniteMap.sizeFM yvy674 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy673",fontsize=16,color="magenta"];3504 -> 3876[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3504 -> 3877[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3503[label="FiniteMap.mkBalBranch6MkBalBranch11 yvy50 yvy51 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54 yvy670 yvy671 yvy672 yvy673 yvy674 yvy210",fontsize=16,color="burlywood",shape="triangle"];5269[label="yvy210/False",fontsize=10,color="white",style="solid",shape="box"];3503 -> 5269[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5269 -> 3878[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 5270[label="yvy210/True",fontsize=10,color="white",style="solid",shape="box"];3503 -> 5270[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5270 -> 3879[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 3871[label="yvy544",fontsize=16,color="green",shape="box"];4157[label="FiniteMap.mkBalBranch6MkBalBranch00 yvy50 yvy51 yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 True",fontsize=16,color="black",shape="box"];4157 -> 4286[label="",style="solid", color="black", weight=3]; 47.25/23.21 4158 -> 4372[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4158[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) yvy540 yvy541 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) yvy50 yvy51 yvy67 yvy543) yvy544",fontsize=16,color="magenta"];4158 -> 4403[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4158 -> 4404[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4158 -> 4405[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4158 -> 4406[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4158 -> 4407[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4360 -> 4431[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4360[label="compare1 yvy49000 yvy50000 (yvy49000 <= yvy50000)",fontsize=16,color="magenta"];4360 -> 4432[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4361[label="EQ",fontsize=16,color="green",shape="box"];4362 -> 4434[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4362[label="compare1 yvy49000 yvy50000 (yvy49000 <= yvy50000)",fontsize=16,color="magenta"];4362 -> 4435[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4363[label="EQ",fontsize=16,color="green",shape="box"];4364 -> 4437[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4364[label="compare1 yvy49000 yvy50000 (yvy49000 <= yvy50000)",fontsize=16,color="magenta"];4364 -> 4438[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4365[label="EQ",fontsize=16,color="green",shape="box"];4366 -> 4444[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4366[label="compare1 yvy49000 yvy50000 (yvy49000 <= yvy50000)",fontsize=16,color="magenta"];4366 -> 4445[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4367[label="EQ",fontsize=16,color="green",shape="box"];4368 -> 4449[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4368[label="compare1 yvy49000 yvy50000 (yvy49000 <= yvy50000)",fontsize=16,color="magenta"];4368 -> 4450[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4369[label="EQ",fontsize=16,color="green",shape="box"];4429[label="yvy490000",fontsize=16,color="green",shape="box"];4430[label="yvy500010",fontsize=16,color="green",shape="box"];4284[label="yvy16100",fontsize=16,color="green",shape="box"];4285[label="yvy3000000",fontsize=16,color="green",shape="box"];3876 -> 2434[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3876[label="FiniteMap.sizeFM yvy674",fontsize=16,color="magenta"];3876 -> 4159[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3877 -> 986[label="",style="dashed", color="red", weight=0]; 47.25/23.21 3877[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy673",fontsize=16,color="magenta"];3877 -> 4160[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3877 -> 4161[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 3878[label="FiniteMap.mkBalBranch6MkBalBranch11 yvy50 yvy51 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54 yvy670 yvy671 yvy672 yvy673 yvy674 False",fontsize=16,color="black",shape="box"];3878 -> 4162[label="",style="solid", color="black", weight=3]; 47.25/23.21 3879[label="FiniteMap.mkBalBranch6MkBalBranch11 yvy50 yvy51 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54 yvy670 yvy671 yvy672 yvy673 yvy674 True",fontsize=16,color="black",shape="box"];3879 -> 4163[label="",style="solid", color="black", weight=3]; 47.25/23.21 4286[label="FiniteMap.mkBalBranch6Double_L yvy50 yvy51 yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="burlywood",shape="box"];5271[label="yvy543/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4286 -> 5271[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5271 -> 4343[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 5272[label="yvy543/FiniteMap.Branch yvy5430 yvy5431 yvy5432 yvy5433 yvy5434",fontsize=10,color="white",style="solid",shape="box"];4286 -> 5272[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5272 -> 4344[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 4403[label="yvy541",fontsize=16,color="green",shape="box"];4404[label="yvy540",fontsize=16,color="green",shape="box"];4405 -> 4372[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4405[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) yvy50 yvy51 yvy67 yvy543",fontsize=16,color="magenta"];4405 -> 4454[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4405 -> 4455[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4405 -> 4456[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4405 -> 4457[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4405 -> 4458[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4406[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];4407[label="yvy544",fontsize=16,color="green",shape="box"];4432 -> 3100[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4432[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];4432 -> 4459[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4432 -> 4460[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4431[label="compare1 yvy49000 yvy50000 yvy247",fontsize=16,color="burlywood",shape="triangle"];5273[label="yvy247/False",fontsize=10,color="white",style="solid",shape="box"];4431 -> 5273[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5273 -> 4461[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 5274[label="yvy247/True",fontsize=10,color="white",style="solid",shape="box"];4431 -> 5274[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5274 -> 4462[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 4435 -> 3101[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4435[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];4435 -> 4463[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4435 -> 4464[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4434[label="compare1 yvy49000 yvy50000 yvy248",fontsize=16,color="burlywood",shape="triangle"];5275[label="yvy248/False",fontsize=10,color="white",style="solid",shape="box"];4434 -> 5275[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5275 -> 4465[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 5276[label="yvy248/True",fontsize=10,color="white",style="solid",shape="box"];4434 -> 5276[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5276 -> 4466[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 4438 -> 3102[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4438[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];4438 -> 4467[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4438 -> 4468[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4437[label="compare1 yvy49000 yvy50000 yvy249",fontsize=16,color="burlywood",shape="triangle"];5277[label="yvy249/False",fontsize=10,color="white",style="solid",shape="box"];4437 -> 5277[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5277 -> 4469[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 5278[label="yvy249/True",fontsize=10,color="white",style="solid",shape="box"];4437 -> 5278[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5278 -> 4470[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 4445 -> 3104[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4445[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];4445 -> 4471[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4445 -> 4472[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4444[label="compare1 yvy49000 yvy50000 yvy252",fontsize=16,color="burlywood",shape="triangle"];5279[label="yvy252/False",fontsize=10,color="white",style="solid",shape="box"];4444 -> 5279[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5279 -> 4473[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 5280[label="yvy252/True",fontsize=10,color="white",style="solid",shape="box"];4444 -> 5280[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5280 -> 4474[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 4450 -> 3105[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4450[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];4450 -> 4475[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4450 -> 4476[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4449[label="compare1 yvy49000 yvy50000 yvy253",fontsize=16,color="burlywood",shape="triangle"];5281[label="yvy253/False",fontsize=10,color="white",style="solid",shape="box"];4449 -> 5281[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5281 -> 4477[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 5282[label="yvy253/True",fontsize=10,color="white",style="solid",shape="box"];4449 -> 5282[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5282 -> 4478[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 4159[label="yvy674",fontsize=16,color="green",shape="box"];4160[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];4161 -> 2434[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4161[label="FiniteMap.sizeFM yvy673",fontsize=16,color="magenta"];4161 -> 4288[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4162[label="FiniteMap.mkBalBranch6MkBalBranch10 yvy50 yvy51 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54 yvy670 yvy671 yvy672 yvy673 yvy674 otherwise",fontsize=16,color="black",shape="box"];4162 -> 4289[label="",style="solid", color="black", weight=3]; 47.25/23.21 4163[label="FiniteMap.mkBalBranch6Single_R yvy50 yvy51 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54",fontsize=16,color="black",shape="box"];4163 -> 4290[label="",style="solid", color="black", weight=3]; 47.25/23.21 4343[label="FiniteMap.mkBalBranch6Double_L yvy50 yvy51 yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 FiniteMap.EmptyFM yvy544) yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 FiniteMap.EmptyFM yvy544)",fontsize=16,color="black",shape="box"];4343 -> 4370[label="",style="solid", color="black", weight=3]; 47.25/23.21 4344[label="FiniteMap.mkBalBranch6Double_L yvy50 yvy51 yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 (FiniteMap.Branch yvy5430 yvy5431 yvy5432 yvy5433 yvy5434) yvy544) yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 (FiniteMap.Branch yvy5430 yvy5431 yvy5432 yvy5433 yvy5434) yvy544)",fontsize=16,color="black",shape="box"];4344 -> 4371[label="",style="solid", color="black", weight=3]; 47.25/23.21 4454[label="yvy51",fontsize=16,color="green",shape="box"];4455[label="yvy50",fontsize=16,color="green",shape="box"];4456[label="yvy67",fontsize=16,color="green",shape="box"];4457[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];4458[label="yvy543",fontsize=16,color="green",shape="box"];4459[label="yvy49000",fontsize=16,color="green",shape="box"];4460[label="yvy50000",fontsize=16,color="green",shape="box"];4461[label="compare1 yvy49000 yvy50000 False",fontsize=16,color="black",shape="box"];4461 -> 4499[label="",style="solid", color="black", weight=3]; 47.25/23.21 4462[label="compare1 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4462 -> 4500[label="",style="solid", color="black", weight=3]; 47.25/23.21 4463[label="yvy49000",fontsize=16,color="green",shape="box"];4464[label="yvy50000",fontsize=16,color="green",shape="box"];4465[label="compare1 yvy49000 yvy50000 False",fontsize=16,color="black",shape="box"];4465 -> 4501[label="",style="solid", color="black", weight=3]; 47.25/23.21 4466[label="compare1 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4466 -> 4502[label="",style="solid", color="black", weight=3]; 47.25/23.21 4467[label="yvy49000",fontsize=16,color="green",shape="box"];4468[label="yvy50000",fontsize=16,color="green",shape="box"];4469[label="compare1 yvy49000 yvy50000 False",fontsize=16,color="black",shape="box"];4469 -> 4503[label="",style="solid", color="black", weight=3]; 47.25/23.21 4470[label="compare1 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4470 -> 4504[label="",style="solid", color="black", weight=3]; 47.25/23.21 4471[label="yvy49000",fontsize=16,color="green",shape="box"];4472[label="yvy50000",fontsize=16,color="green",shape="box"];4473[label="compare1 yvy49000 yvy50000 False",fontsize=16,color="black",shape="box"];4473 -> 4505[label="",style="solid", color="black", weight=3]; 47.25/23.21 4474[label="compare1 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4474 -> 4506[label="",style="solid", color="black", weight=3]; 47.25/23.21 4475[label="yvy49000",fontsize=16,color="green",shape="box"];4476[label="yvy50000",fontsize=16,color="green",shape="box"];4477[label="compare1 yvy49000 yvy50000 False",fontsize=16,color="black",shape="box"];4477 -> 4507[label="",style="solid", color="black", weight=3]; 47.25/23.21 4478[label="compare1 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4478 -> 4508[label="",style="solid", color="black", weight=3]; 47.25/23.21 4288[label="yvy673",fontsize=16,color="green",shape="box"];4289[label="FiniteMap.mkBalBranch6MkBalBranch10 yvy50 yvy51 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54 yvy670 yvy671 yvy672 yvy673 yvy674 True",fontsize=16,color="black",shape="box"];4289 -> 4349[label="",style="solid", color="black", weight=3]; 47.25/23.21 4290 -> 4372[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4290[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) yvy670 yvy671 yvy673 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) yvy50 yvy51 yvy674 yvy54)",fontsize=16,color="magenta"];4290 -> 4413[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4290 -> 4414[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4290 -> 4415[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4290 -> 4416[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4290 -> 4417[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4370[label="error []",fontsize=16,color="red",shape="box"];4371 -> 4372[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4371[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) yvy5430 yvy5431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) yvy50 yvy51 yvy67 yvy5433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) yvy540 yvy541 yvy5434 yvy544)",fontsize=16,color="magenta"];4371 -> 4418[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4371 -> 4419[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4371 -> 4420[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4371 -> 4421[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4371 -> 4422[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4499[label="compare0 yvy49000 yvy50000 otherwise",fontsize=16,color="black",shape="box"];4499 -> 4511[label="",style="solid", color="black", weight=3]; 47.25/23.21 4500[label="LT",fontsize=16,color="green",shape="box"];4501[label="compare0 yvy49000 yvy50000 otherwise",fontsize=16,color="black",shape="box"];4501 -> 4512[label="",style="solid", color="black", weight=3]; 47.25/23.21 4502[label="LT",fontsize=16,color="green",shape="box"];4503[label="compare0 yvy49000 yvy50000 otherwise",fontsize=16,color="black",shape="box"];4503 -> 4513[label="",style="solid", color="black", weight=3]; 47.25/23.21 4504[label="LT",fontsize=16,color="green",shape="box"];4505[label="compare0 yvy49000 yvy50000 otherwise",fontsize=16,color="black",shape="box"];4505 -> 4514[label="",style="solid", color="black", weight=3]; 47.25/23.21 4506[label="LT",fontsize=16,color="green",shape="box"];4507[label="compare0 yvy49000 yvy50000 otherwise",fontsize=16,color="black",shape="box"];4507 -> 4515[label="",style="solid", color="black", weight=3]; 47.25/23.21 4508[label="LT",fontsize=16,color="green",shape="box"];4349[label="FiniteMap.mkBalBranch6Double_R yvy50 yvy51 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54",fontsize=16,color="burlywood",shape="box"];5283[label="yvy674/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4349 -> 5283[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5283 -> 4479[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 5284[label="yvy674/FiniteMap.Branch yvy6740 yvy6741 yvy6742 yvy6743 yvy6744",fontsize=10,color="white",style="solid",shape="box"];4349 -> 5284[label="",style="solid", color="burlywood", weight=9]; 47.25/23.21 5284 -> 4480[label="",style="solid", color="burlywood", weight=3]; 47.25/23.21 4413[label="yvy671",fontsize=16,color="green",shape="box"];4414[label="yvy670",fontsize=16,color="green",shape="box"];4415[label="yvy673",fontsize=16,color="green",shape="box"];4416[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];4417 -> 4372[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4417[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) yvy50 yvy51 yvy674 yvy54",fontsize=16,color="magenta"];4417 -> 4481[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4417 -> 4482[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4417 -> 4483[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4417 -> 4484[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4417 -> 4485[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4418[label="yvy5431",fontsize=16,color="green",shape="box"];4419[label="yvy5430",fontsize=16,color="green",shape="box"];4420 -> 4372[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4420[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) yvy50 yvy51 yvy67 yvy5433",fontsize=16,color="magenta"];4420 -> 4486[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4420 -> 4487[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4420 -> 4488[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4420 -> 4489[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4420 -> 4490[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4421[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];4422 -> 4372[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4422[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) yvy540 yvy541 yvy5434 yvy544",fontsize=16,color="magenta"];4422 -> 4491[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4422 -> 4492[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4422 -> 4493[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4422 -> 4494[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4422 -> 4495[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4511[label="compare0 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4511 -> 4521[label="",style="solid", color="black", weight=3]; 47.25/23.21 4512[label="compare0 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4512 -> 4522[label="",style="solid", color="black", weight=3]; 47.25/23.21 4513[label="compare0 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4513 -> 4523[label="",style="solid", color="black", weight=3]; 47.25/23.21 4514[label="compare0 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4514 -> 4524[label="",style="solid", color="black", weight=3]; 47.25/23.21 4515[label="compare0 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4515 -> 4525[label="",style="solid", color="black", weight=3]; 47.25/23.21 4479[label="FiniteMap.mkBalBranch6Double_R yvy50 yvy51 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 FiniteMap.EmptyFM) yvy54 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 FiniteMap.EmptyFM) yvy54",fontsize=16,color="black",shape="box"];4479 -> 4509[label="",style="solid", color="black", weight=3]; 47.25/23.21 4480[label="FiniteMap.mkBalBranch6Double_R yvy50 yvy51 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 (FiniteMap.Branch yvy6740 yvy6741 yvy6742 yvy6743 yvy6744)) yvy54 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 (FiniteMap.Branch yvy6740 yvy6741 yvy6742 yvy6743 yvy6744)) yvy54",fontsize=16,color="black",shape="box"];4480 -> 4510[label="",style="solid", color="black", weight=3]; 47.25/23.21 4481[label="yvy51",fontsize=16,color="green",shape="box"];4482[label="yvy50",fontsize=16,color="green",shape="box"];4483[label="yvy674",fontsize=16,color="green",shape="box"];4484[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];4485[label="yvy54",fontsize=16,color="green",shape="box"];4486[label="yvy51",fontsize=16,color="green",shape="box"];4487[label="yvy50",fontsize=16,color="green",shape="box"];4488[label="yvy67",fontsize=16,color="green",shape="box"];4489[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];4490[label="yvy5433",fontsize=16,color="green",shape="box"];4491[label="yvy541",fontsize=16,color="green",shape="box"];4492[label="yvy540",fontsize=16,color="green",shape="box"];4493[label="yvy5434",fontsize=16,color="green",shape="box"];4494[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];4495[label="yvy544",fontsize=16,color="green",shape="box"];4521[label="GT",fontsize=16,color="green",shape="box"];4522[label="GT",fontsize=16,color="green",shape="box"];4523[label="GT",fontsize=16,color="green",shape="box"];4524[label="GT",fontsize=16,color="green",shape="box"];4525[label="GT",fontsize=16,color="green",shape="box"];4509[label="error []",fontsize=16,color="red",shape="box"];4510 -> 4372[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4510[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) yvy6740 yvy6741 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) yvy670 yvy671 yvy673 yvy6743) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) yvy50 yvy51 yvy6744 yvy54)",fontsize=16,color="magenta"];4510 -> 4516[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4510 -> 4517[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4510 -> 4518[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4510 -> 4519[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4510 -> 4520[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4516[label="yvy6741",fontsize=16,color="green",shape="box"];4517[label="yvy6740",fontsize=16,color="green",shape="box"];4518 -> 4372[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4518[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) yvy670 yvy671 yvy673 yvy6743",fontsize=16,color="magenta"];4518 -> 4526[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4518 -> 4527[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4518 -> 4528[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4518 -> 4529[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4518 -> 4530[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4519[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];4520 -> 4372[label="",style="dashed", color="red", weight=0]; 47.25/23.21 4520[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) yvy50 yvy51 yvy6744 yvy54",fontsize=16,color="magenta"];4520 -> 4531[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4520 -> 4532[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4520 -> 4533[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4520 -> 4534[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4520 -> 4535[label="",style="dashed", color="magenta", weight=3]; 47.25/23.21 4526[label="yvy671",fontsize=16,color="green",shape="box"];4527[label="yvy670",fontsize=16,color="green",shape="box"];4528[label="yvy673",fontsize=16,color="green",shape="box"];4529[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];4530[label="yvy6743",fontsize=16,color="green",shape="box"];4531[label="yvy51",fontsize=16,color="green",shape="box"];4532[label="yvy50",fontsize=16,color="green",shape="box"];4533[label="yvy6744",fontsize=16,color="green",shape="box"];4534[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];4535[label="yvy54",fontsize=16,color="green",shape="box"];} 47.25/23.21 47.25/23.21 ---------------------------------------- 47.25/23.21 47.25/23.21 (16) 47.25/23.21 Complex Obligation (AND) 47.25/23.21 47.25/23.21 ---------------------------------------- 47.25/23.21 47.25/23.21 (17) 47.25/23.21 Obligation: 47.25/23.21 Q DP problem: 47.25/23.21 The TRS P consists of the following rules: 47.25/23.21 47.25/23.21 new_primCmpNat(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat(yvy4900, yvy5000) 47.25/23.21 47.25/23.21 R is empty. 47.25/23.21 Q is empty. 47.25/23.21 We have to consider all minimal (P,Q,R)-chains. 47.25/23.21 ---------------------------------------- 47.25/23.21 47.25/23.21 (18) QDPSizeChangeProof (EQUIVALENT) 47.25/23.21 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. 47.25/23.21 47.25/23.21 From the DPs we obtained the following set of size-change graphs: 47.25/23.21 *new_primCmpNat(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat(yvy4900, yvy5000) 47.25/23.21 The graph contains the following edges 1 > 1, 2 > 2 47.25/23.21 47.25/23.21 47.25/23.21 ---------------------------------------- 47.25/23.21 47.25/23.21 (19) 47.25/23.21 YES 47.25/23.21 47.25/23.21 ---------------------------------------- 47.25/23.21 47.25/23.21 (20) 47.25/23.21 Obligation: 47.25/23.21 Q DP problem: 47.25/23.21 The TRS P consists of the following rules: 47.25/23.21 47.25/23.21 new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba) -> new_plusFM(new_splitGT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba), yvy44, h, ba) 47.25/23.21 new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba) -> new_plusFM(new_splitLT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba), yvy43, h, ba) 47.25/23.21 47.25/23.21 The TRS R consists of the following rules: 47.25/23.21 47.25/23.21 new_esEs22(yvy4002, yvy3002, app(ty_[], baf)) -> new_esEs8(yvy4002, yvy3002, baf) 47.25/23.21 new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) 47.25/23.21 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 47.25/23.21 new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT 47.25/23.21 new_primPlusNat0(Zero, Zero) -> Zero 47.25/23.21 new_compare13(yvy49000, yvy50000, ed, ee, ef) -> new_compare28(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, ed, ee, ef), ed, ee, ef) 47.25/23.21 new_esEs23(yvy4001, yvy3001, app(ty_Maybe, bbb)) -> new_esEs6(yvy4001, yvy3001, bbb) 47.25/23.21 new_pePe(True, yvy220) -> True 47.25/23.21 new_ltEs20(yvy49002, yvy50002, ty_Ordering) -> new_ltEs15(yvy49002, yvy50002) 47.25/23.21 new_splitLT30(Nothing, yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitLT24(yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare25(Just(yvy400), Nothing, False, h), LT), h, ba) 47.25/23.21 new_splitLT5(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy400, h, ba) -> new_splitLT30(yvy330, yvy331, yvy332, yvy333, yvy334, Just(yvy400), h, ba) 47.25/23.21 new_esEs7(Right(yvy4000), Right(yvy3000), cd, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.25/23.21 new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) 47.25/23.21 new_compare26(yvy49000, yvy50000, False, eb, ec) -> new_compare114(yvy49000, yvy50000, new_ltEs14(yvy49000, yvy50000, eb, ec), eb, ec) 47.25/23.21 new_addToFM_C0(Branch(Nothing, yvy51, yvy52, yvy53, yvy54), Nothing, yvy41, h, ba) -> new_addToFM_C23(yvy51, yvy52, yvy53, yvy54, yvy41, new_esEs12(new_compare25(Nothing, Nothing, True, h), LT), h, ba) 47.25/23.21 new_lt20(yvy49001, yvy50001, ty_Ordering) -> new_lt17(yvy49001, yvy50001) 47.25/23.21 new_esEs30(yvy20, yvy15, app(app(ty_@2, bef), beg)) -> new_esEs4(yvy20, yvy15, bef, beg) 47.25/23.21 new_compare(:(yvy49000, yvy49001), [], bdd) -> GT 47.25/23.21 new_ltEs20(yvy49002, yvy50002, app(app(ty_@2, dde), ddf)) -> new_ltEs11(yvy49002, yvy50002, dde, ddf) 47.25/23.21 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 47.25/23.21 new_ltEs14(Right(yvy49000), Left(yvy50000), cbd, caa) -> False 47.25/23.21 new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Ratio, cbc), caa) -> new_ltEs17(yvy49000, yvy50000, cbc) 47.25/23.21 new_addToFM_C26(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, False, h, ba) -> new_addToFM_C14(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, new_gt0(yvy500, h), h, ba) 47.25/23.21 new_addToFM_C25(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba) -> new_addToFM_C15(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt1(yvy400, h), h, ba) 47.25/23.21 new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT 47.25/23.21 new_esEs29(yvy400, yvy500, app(app(app(ty_@3, be), bf), bg)) -> new_esEs5(yvy400, yvy500, be, bf, bg) 47.25/23.21 new_lt20(yvy49001, yvy50001, app(ty_Ratio, ddc)) -> new_lt18(yvy49001, yvy50001, ddc) 47.25/23.21 new_compare(:(yvy49000, yvy49001), :(yvy50000, yvy50001), bdd) -> new_primCompAux0(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, bdd), bdd) 47.25/23.21 new_compare26(yvy49000, yvy50000, True, eb, ec) -> EQ 47.25/23.21 new_splitGT23(yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba) -> new_splitGT5(yvy34, yvy400, h, ba) 47.25/23.21 new_esEs8(:(yvy4000, yvy4001), :(yvy3000, yvy3001), cf) -> new_asAs(new_esEs9(yvy4000, yvy3000, cf), new_esEs8(yvy4001, yvy3001, cf)) 47.25/23.21 new_compare27(yvy49000, yvy50000, False, bc, bd) -> new_compare10(yvy49000, yvy50000, new_ltEs11(yvy49000, yvy50000, bc, bd), bc, bd) 47.25/23.21 new_emptyFM(h, ba) -> EmptyFM 47.25/23.21 new_esEs30(yvy20, yvy15, ty_Float) -> new_esEs13(yvy20, yvy15) 47.25/23.21 new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) 47.25/23.21 new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.25/23.21 new_ltEs4(Nothing, Nothing, bgf) -> True 47.25/23.21 new_ltEs4(Just(yvy49000), Nothing, bgf) -> False 47.25/23.21 new_lt8(yvy49000, yvy50000, app(app(ty_@2, bc), bd)) -> new_lt4(yvy49000, yvy50000, bc, bd) 47.25/23.21 new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat1(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) 47.25/23.21 new_primCmpInt1(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> GT 47.25/23.21 new_compare113(yvy49000, yvy50000, False) -> GT 47.25/23.21 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Int) -> new_ltEs7(yvy49000, yvy50000) 47.25/23.21 new_ltEs15(EQ, LT) -> False 47.25/23.21 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.25/23.21 new_esEs28(yvy49000, yvy50000, app(app(ty_Either, dbg), dbh)) -> new_esEs7(yvy49000, yvy50000, dbg, dbh) 47.25/23.21 new_lt19(yvy49000, yvy50000, app(app(ty_@2, dba), dbb)) -> new_lt4(yvy49000, yvy50000, dba, dbb) 47.25/23.21 new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.25/23.21 new_ltEs20(yvy49002, yvy50002, app(app(ty_Either, dec), ded)) -> new_ltEs14(yvy49002, yvy50002, dec, ded) 47.25/23.21 new_esEs28(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) 47.25/23.21 new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Maybe, bhe)) -> new_ltEs4(yvy49000, yvy50000, bhe) 47.25/23.21 new_ltEs19(yvy49001, yvy50001, ty_Ordering) -> new_ltEs15(yvy49001, yvy50001) 47.25/23.21 new_lt9(yvy49000, yvy50000) -> new_esEs12(new_compare6(yvy49000, yvy50000), LT) 47.25/23.21 new_ltEs18(yvy4900, yvy5000, ty_Float) -> new_ltEs5(yvy4900, yvy5000) 47.25/23.21 new_mkVBalBranch0(yvy40, yvy41, EmptyFM, yvy5, h, ba) -> new_addToFM(yvy5, yvy40, yvy41, h, ba) 47.25/23.21 new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False 47.25/23.21 new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False 47.25/23.21 new_ltEs14(Right(yvy49000), Right(yvy50000), cbd, app(ty_Ratio, ccf)) -> new_ltEs17(yvy49000, yvy50000, ccf) 47.25/23.21 new_ltEs15(GT, LT) -> False 47.25/23.21 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.25/23.21 new_esEs7(Right(yvy4000), Right(yvy3000), cd, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.25/23.21 new_lt19(yvy49000, yvy50000, app(ty_Ratio, dca)) -> new_lt18(yvy49000, yvy50000, dca) 47.25/23.21 new_esEs24(yvy4000, yvy3000, app(ty_Ratio, bcg)) -> new_esEs15(yvy4000, yvy3000, bcg) 47.25/23.21 new_esEs24(yvy4000, yvy3000, app(app(ty_@2, bce), bcf)) -> new_esEs4(yvy4000, yvy3000, bce, bcf) 47.25/23.21 new_ltEs13(True, True) -> True 47.25/23.21 new_compare29(yvy49000, yvy50000, False) -> new_compare113(yvy49000, yvy50000, new_ltEs15(yvy49000, yvy50000)) 47.25/23.21 new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) 47.25/23.21 new_esEs29(yvy400, yvy500, ty_Float) -> new_esEs13(yvy400, yvy500) 47.25/23.21 new_primCmpInt0(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ 47.25/23.21 new_lt15(yvy49000, yvy50000, ccg) -> new_esEs12(new_compare15(yvy49000, yvy50000, ccg), LT) 47.25/23.21 new_ltEs20(yvy49002, yvy50002, ty_Integer) -> new_ltEs10(yvy49002, yvy50002) 47.25/23.21 new_mkBalBranch6MkBalBranch4(yvy50, yvy51, yvy67, Branch(yvy540, yvy541, yvy542, yvy543, yvy544), True, h, ba) -> new_mkBalBranch6MkBalBranch01(yvy50, yvy51, yvy67, yvy540, yvy541, yvy542, yvy543, yvy544, new_lt11(new_sizeFM(yvy543, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(yvy544, h, ba))), h, ba) 47.25/23.21 new_splitLT5(EmptyFM, yvy400, h, ba) -> new_emptyFM(h, ba) 47.25/23.21 new_ltEs19(yvy49001, yvy50001, app(app(ty_@2, cea), ceb)) -> new_ltEs11(yvy49001, yvy50001, cea, ceb) 47.25/23.21 new_ltEs14(Right(yvy49000), Right(yvy50000), cbd, ty_Bool) -> new_ltEs13(yvy49000, yvy50000) 47.25/23.21 new_not(True) -> False 47.25/23.21 new_esEs28(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) 47.25/23.21 new_esEs28(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) 47.25/23.21 new_ltEs19(yvy49001, yvy50001, app(ty_Ratio, cfa)) -> new_ltEs17(yvy49001, yvy50001, cfa) 47.25/23.21 new_primCompAux00(yvy225, LT) -> LT 47.25/23.21 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.25/23.21 new_primCmpNat0(Zero, Zero) -> EQ 47.25/23.21 new_splitGT5(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, h, ba) -> new_splitGT30(yvy340, yvy341, yvy342, yvy343, yvy344, Just(yvy400), h, ba) 47.25/23.21 new_esEs32(yvy400, yvy300, ty_Ordering) -> new_esEs12(yvy400, yvy300) 47.25/23.21 new_addToFM_C0(Branch(Nothing, yvy51, yvy52, yvy53, yvy54), Just(yvy400), yvy41, h, ba) -> new_addToFM_C25(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs12(new_compare25(Just(yvy400), Nothing, False, h), LT), h, ba) 47.25/23.21 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Ordering, ce) -> new_esEs12(yvy4000, yvy3000) 47.25/23.21 new_esEs28(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) 47.25/23.21 new_lt20(yvy49001, yvy50001, ty_Bool) -> new_lt14(yvy49001, yvy50001) 47.25/23.21 new_esEs27(yvy49001, yvy50001, ty_Bool) -> new_esEs11(yvy49001, yvy50001) 47.25/23.21 new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.25/23.21 new_ltEs19(yvy49001, yvy50001, ty_Integer) -> new_ltEs10(yvy49001, yvy50001) 47.25/23.21 new_esEs27(yvy49001, yvy50001, app(ty_[], dcb)) -> new_esEs8(yvy49001, yvy50001, dcb) 47.25/23.21 new_splitGT4(EmptyFM, h, ba) -> new_emptyFM(h, ba) 47.25/23.21 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.25/23.21 new_esEs27(yvy49001, yvy50001, ty_Char) -> new_esEs17(yvy49001, yvy50001) 47.25/23.21 new_esEs30(yvy20, yvy15, app(ty_Ratio, beh)) -> new_esEs15(yvy20, yvy15, beh) 47.25/23.21 new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) 47.25/23.21 new_esEs12(LT, LT) -> True 47.25/23.21 new_esEs21(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) 47.25/23.21 new_splitGT5(EmptyFM, yvy400, h, ba) -> new_emptyFM(h, ba) 47.25/23.21 new_splitGT24(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, bdg, bdh) -> new_splitGT5(yvy19, yvy20, bdg, bdh) 47.25/23.21 new_primEqNat0(Succ(yvy40000), Zero) -> False 47.25/23.21 new_primEqNat0(Zero, Succ(yvy30000)) -> False 47.25/23.21 new_splitGT15(yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba) -> yvy34 47.25/23.21 new_ltEs14(Right(yvy49000), Right(yvy50000), cbd, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs12(yvy49000, yvy50000, cbh, cca, ccb) 47.25/23.21 new_esEs14(@0, @0) -> True 47.25/23.21 new_splitLT13(yvy300, yvy31, yvy32, yvy33, yvy34, False, h, ba) -> yvy33 47.25/23.21 new_splitLT30(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitLT22(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare25(Just(yvy400), Just(yvy300), new_esEs31(yvy400, yvy300, h), h), LT), h, ba) 47.25/23.21 new_compare8(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) 47.25/23.21 new_primCmpInt0(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> new_primCmpInt3(yvy6200, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba)) 47.25/23.21 new_esEs31(yvy400, yvy300, app(app(app(ty_@3, be), bf), bg)) -> new_esEs5(yvy400, yvy300, be, bf, bg) 47.25/23.21 new_ltEs19(yvy49001, yvy50001, ty_Char) -> new_ltEs6(yvy49001, yvy50001) 47.25/23.21 new_addToFM_C0(Branch(Just(yvy500), yvy51, yvy52, yvy53, yvy54), Just(yvy400), yvy41, h, ba) -> new_addToFM_C24(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs12(new_compare25(Just(yvy400), Just(yvy500), new_esEs29(yvy400, yvy500, h), h), LT), h, ba) 47.25/23.21 new_compare10(yvy49000, yvy50000, True, bc, bd) -> LT 47.25/23.21 new_splitLT16(yvy31, yvy32, yvy33, yvy34, False, h, ba) -> yvy33 47.25/23.21 new_ltEs15(GT, EQ) -> False 47.25/23.21 new_addToFM_C14(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, True, h, ba) -> new_mkBalBranch(Just(yvy500), yvy51, yvy53, new_addToFM_C0(yvy54, Nothing, yvy41, h, ba), h, ba) 47.25/23.21 new_lt20(yvy49001, yvy50001, app(app(app(ty_@3, dce), dcf), dcg)) -> new_lt13(yvy49001, yvy50001, dce, dcf, dcg) 47.25/23.21 new_primCompAux00(yvy225, GT) -> GT 47.25/23.21 new_splitLT14(yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba) -> new_mkVBalBranch0(Nothing, yvy31, yvy33, new_splitLT5(yvy34, yvy400, h, ba), h, ba) 47.25/23.21 new_primMinusNat0(Succ(yvy20800), Zero) -> Pos(Succ(yvy20800)) 47.25/23.21 new_compare110(yvy49000, yvy50000, True) -> LT 47.25/23.21 new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, cgd), cge), cgf)) -> new_esEs5(yvy4001, yvy3001, cgd, cge, cgf) 47.25/23.21 new_compare16(yvy49000, yvy50000, eb, ec) -> new_compare26(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, eb, ec), eb, ec) 47.25/23.21 new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.25/23.21 new_esEs27(yvy49001, yvy50001, ty_Ordering) -> new_esEs12(yvy49001, yvy50001) 47.25/23.21 new_lt19(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) 47.25/23.21 new_ltEs20(yvy49002, yvy50002, ty_Bool) -> new_ltEs13(yvy49002, yvy50002) 47.25/23.21 new_esEs22(yvy4002, yvy3002, ty_Int) -> new_esEs16(yvy4002, yvy3002) 47.25/23.21 new_ltEs18(yvy4900, yvy5000, ty_Double) -> new_ltEs16(yvy4900, yvy5000) 47.25/23.21 new_esEs32(yvy400, yvy300, ty_@0) -> new_esEs14(yvy400, yvy300) 47.25/23.21 new_esEs29(yvy400, yvy500, ty_Double) -> new_esEs18(yvy400, yvy500) 47.25/23.21 new_ps(Neg(yvy2080), Neg(yvy2070)) -> Neg(new_primPlusNat0(yvy2080, yvy2070)) 47.25/23.21 new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT 47.25/23.21 new_esEs27(yvy49001, yvy50001, ty_Int) -> new_esEs16(yvy49001, yvy50001) 47.25/23.21 new_esEs7(Right(yvy4000), Right(yvy3000), cd, app(ty_Ratio, ha)) -> new_esEs15(yvy4000, yvy3000, ha) 47.25/23.21 new_esEs22(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) 47.25/23.21 new_addToFM_C13(yvy51, yvy52, yvy53, yvy54, yvy41, True, h, ba) -> new_mkBalBranch(Nothing, yvy51, yvy53, new_addToFM_C0(yvy54, Nothing, yvy41, h, ba), h, ba) 47.25/23.21 new_mkVBalBranch3MkVBalBranch11(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))))), yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), app(ty_Maybe, h), ba) 47.49/23.21 new_compare12(yvy49000, yvy50000, bc, bd) -> new_compare27(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, bc, bd), bc, bd) 47.49/23.21 new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, bca), bcb), bcc)) -> new_esEs5(yvy4000, yvy3000, bca, bcb, bcc) 47.49/23.21 new_addToFM_C15(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba) -> Branch(Just(yvy400), new_addToFM0(yvy51, yvy41, ba), yvy52, yvy53, yvy54) 47.49/23.21 new_esEs30(yvy20, yvy15, app(app(app(ty_@3, beb), bec), bed)) -> new_esEs5(yvy20, yvy15, beb, bec, bed) 47.49/23.21 new_lt19(yvy49000, yvy50000, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_lt13(yvy49000, yvy50000, dbc, dbd, dbe) 47.49/23.21 new_ltEs20(yvy49002, yvy50002, app(app(app(ty_@3, ddg), ddh), dea)) -> new_ltEs12(yvy49002, yvy50002, ddg, ddh, dea) 47.49/23.21 new_splitLT15(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, bb, bea) -> new_mkVBalBranch0(Just(yvy30), yvy31, yvy33, new_splitLT5(yvy34, yvy35, bb, bea), bb, bea) 47.49/23.21 new_esEs30(yvy20, yvy15, ty_Double) -> new_esEs18(yvy20, yvy15) 47.49/23.21 new_mkVBalBranch3MkVBalBranch12(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))))), yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), app(ty_Maybe, h), ba) 47.49/23.21 new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), be, bf, bg) -> new_asAs(new_esEs24(yvy4000, yvy3000, be), new_asAs(new_esEs23(yvy4001, yvy3001, bf), new_esEs22(yvy4002, yvy3002, bg))) 47.49/23.21 new_compare5(yvy49000, yvy50000, ty_Int) -> new_compare8(yvy49000, yvy50000) 47.49/23.21 new_compare32(yvy400, h) -> new_compare25(Just(yvy400), Nothing, False, h) 47.49/23.21 new_esEs7(Right(yvy4000), Right(yvy3000), cd, app(app(app(ty_@3, gc), gd), ge)) -> new_esEs5(yvy4000, yvy3000, gc, gd, ge) 47.49/23.21 new_ltEs19(yvy49001, yvy50001, ty_Bool) -> new_ltEs13(yvy49001, yvy50001) 47.49/23.21 new_ltEs18(yvy4900, yvy5000, ty_Integer) -> new_ltEs10(yvy4900, yvy5000) 47.49/23.21 new_esEs7(Right(yvy4000), Right(yvy3000), cd, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.21 new_esEs26(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.21 new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.21 new_esEs32(yvy400, yvy300, app(ty_[], cf)) -> new_esEs8(yvy400, yvy300, cf) 47.49/23.21 new_esEs7(Left(yvy4000), Left(yvy3000), ty_@0, ce) -> new_esEs14(yvy4000, yvy3000) 47.49/23.21 new_primCmpNat0(Zero, Succ(yvy5000)) -> LT 47.49/23.21 new_esEs7(Right(yvy4000), Right(yvy3000), cd, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.21 new_compare5(yvy49000, yvy50000, app(ty_Ratio, bge)) -> new_compare19(yvy49000, yvy50000, bge) 47.49/23.21 new_mkBalBranch6MkBalBranch5(yvy50, yvy51, yvy67, yvy54, True, h, ba) -> new_mkBranch(Zero, yvy50, yvy51, yvy67, yvy54, app(ty_Maybe, h), ba) 47.49/23.21 new_esEs26(yvy4000, yvy3000, app(ty_[], dag)) -> new_esEs8(yvy4000, yvy3000, dag) 47.49/23.21 new_splitGT14(yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_mkVBalBranch0(Nothing, yvy31, new_splitGT4(yvy33, h, ba), yvy34, h, ba) 47.49/23.21 new_sizeFM(EmptyFM, h, ba) -> Pos(Zero) 47.49/23.21 new_esEs12(EQ, GT) -> False 47.49/23.21 new_esEs12(GT, EQ) -> False 47.49/23.21 new_lt8(yvy49000, yvy50000, app(ty_Ratio, cdg)) -> new_lt18(yvy49000, yvy50000, cdg) 47.49/23.21 new_ltEs19(yvy49001, yvy50001, app(app(app(ty_@3, cec), ced), cee)) -> new_ltEs12(yvy49001, yvy50001, cec, ced, cee) 47.49/23.21 new_ltEs14(Right(yvy49000), Right(yvy50000), cbd, ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) 47.49/23.21 new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.21 new_lt8(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) 47.49/23.21 new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) 47.49/23.21 new_mkBalBranch6MkBalBranch5(yvy50, yvy51, yvy67, yvy54, False, h, ba) -> new_mkBalBranch6MkBalBranch4(yvy50, yvy51, yvy67, yvy54, new_gt3(new_mkBalBranch6Size_r(yvy50, yvy51, yvy67, yvy54, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_l(yvy50, yvy51, yvy67, yvy54, h, ba))), h, ba) 47.49/23.21 new_esEs21(yvy49000, yvy50000, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs5(yvy49000, yvy50000, ed, ee, ef) 47.49/23.21 new_splitGT30(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitGT24(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare25(Just(yvy400), Just(yvy300), new_esEs32(yvy400, yvy300, h), h), GT), h, ba) 47.49/23.21 new_lt19(yvy49000, yvy50000, app(ty_[], dah)) -> new_lt12(yvy49000, yvy50000, dah) 47.49/23.21 new_primCmpNat0(Succ(yvy4900), Zero) -> GT 47.49/23.21 new_pePe(False, yvy220) -> yvy220 47.49/23.21 new_esEs27(yvy49001, yvy50001, ty_@0) -> new_esEs14(yvy49001, yvy50001) 47.49/23.21 new_esEs31(yvy400, yvy300, ty_Float) -> new_esEs13(yvy400, yvy300) 47.49/23.21 new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Maybe, cah), caa) -> new_ltEs4(yvy49000, yvy50000, cah) 47.49/23.21 new_esEs11(False, True) -> False 47.49/23.21 new_esEs11(True, False) -> False 47.49/23.21 new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cga), cgb)) -> new_esEs7(yvy4000, yvy3000, cga, cgb) 47.49/23.21 new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_@2, fd), ff), ce) -> new_esEs4(yvy4000, yvy3000, fd, ff) 47.49/23.21 new_lt8(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) 47.49/23.21 new_primCmpInt1(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ 47.49/23.21 new_splitLT15(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, False, bb, bea) -> yvy33 47.49/23.21 new_compare114(yvy49000, yvy50000, True, eb, ec) -> LT 47.49/23.21 new_lt8(yvy49000, yvy50000, app(app(ty_Either, eb), ec)) -> new_lt16(yvy49000, yvy50000, eb, ec) 47.49/23.21 new_ltEs18(yvy4900, yvy5000, ty_@0) -> new_ltEs9(yvy4900, yvy5000) 47.49/23.21 new_addToFM_C24(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba) -> new_mkBalBranch(Just(yvy500), yvy51, new_addToFM_C0(yvy53, Just(yvy400), yvy41, h, ba), yvy54, h, ba) 47.49/23.21 new_primMinusNat0(Succ(yvy20800), Succ(yvy20700)) -> new_primMinusNat0(yvy20800, yvy20700) 47.49/23.21 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_@0) -> new_ltEs9(yvy49000, yvy50000) 47.49/23.21 new_addToFM_C24(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba) -> new_addToFM_C16(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt2(yvy400, yvy500, h), h, ba) 47.49/23.21 new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 47.49/23.21 new_gt2(yvy35, yvy30, bb) -> new_esEs12(new_compare30(yvy35, yvy30, bb), GT) 47.49/23.21 new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) 47.49/23.21 new_ltEs7(yvy4900, yvy5000) -> new_fsEs(new_compare8(yvy4900, yvy5000)) 47.49/23.21 new_esEs22(yvy4002, yvy3002, ty_Bool) -> new_esEs11(yvy4002, yvy3002) 47.49/23.21 new_ltEs19(yvy49001, yvy50001, ty_Double) -> new_ltEs16(yvy49001, yvy50001) 47.49/23.21 new_ltEs14(Right(yvy49000), Right(yvy50000), cbd, ty_Char) -> new_ltEs6(yvy49000, yvy50000) 47.49/23.21 new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_[], cab), caa) -> new_ltEs8(yvy49000, yvy50000, cab) 47.49/23.21 new_esEs21(yvy49000, yvy50000, app(ty_[], cdf)) -> new_esEs8(yvy49000, yvy50000, cdf) 47.49/23.21 new_esEs22(yvy4002, yvy3002, app(ty_Maybe, hh)) -> new_esEs6(yvy4002, yvy3002, hh) 47.49/23.21 new_esEs32(yvy400, yvy300, app(ty_Maybe, bh)) -> new_esEs6(yvy400, yvy300, bh) 47.49/23.21 new_esEs21(yvy49000, yvy50000, app(app(ty_@2, bc), bd)) -> new_esEs4(yvy49000, yvy50000, bc, bd) 47.49/23.21 new_addToFM0(yvy51, yvy41, ba) -> yvy41 47.49/23.21 new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False 47.49/23.21 new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False 47.49/23.21 new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch21(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs12(new_primCmpInt0(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba), LT), h, ba) 47.49/23.21 new_esEs25(yvy4001, yvy3001, app(app(ty_@2, cgh), cha)) -> new_esEs4(yvy4001, yvy3001, cgh, cha) 47.49/23.21 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Bool, ce) -> new_esEs11(yvy4000, yvy3000) 47.49/23.21 new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Ratio, fg), ce) -> new_esEs15(yvy4000, yvy3000, fg) 47.49/23.21 new_gt3(yvy158, yvy157) -> new_esEs12(new_compare8(yvy158, yvy157), GT) 47.49/23.21 new_ltEs18(yvy4900, yvy5000, ty_Bool) -> new_ltEs13(yvy4900, yvy5000) 47.49/23.21 new_gt0(yvy300, h) -> new_esEs12(new_compare31(yvy300, h), GT) 47.49/23.21 new_mkBalBranch6MkBalBranch01(yvy50, yvy51, yvy67, yvy540, yvy541, yvy542, Branch(yvy5430, yvy5431, yvy5432, yvy5433, yvy5434), yvy544, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), yvy5430, yvy5431, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Zero))))), yvy50, yvy51, yvy67, yvy5433, app(ty_Maybe, h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), yvy540, yvy541, yvy5434, yvy544, app(ty_Maybe, h), ba), app(ty_Maybe, h), ba) 47.49/23.21 new_splitGT13(yvy300, yvy31, yvy32, yvy33, yvy34, False, h, ba) -> yvy34 47.49/23.21 new_ltEs18(yvy4900, yvy5000, app(app(app(ty_@3, cdc), cdd), cde)) -> new_ltEs12(yvy4900, yvy5000, cdc, cdd, cde) 47.49/23.21 new_esEs23(yvy4001, yvy3001, app(app(ty_Either, bbf), bbg)) -> new_esEs7(yvy4001, yvy3001, bbf, bbg) 47.49/23.21 new_mkBalBranch6Size_r(yvy50, yvy51, yvy67, yvy54, h, ba) -> new_sizeFM(yvy54, h, ba) 47.49/23.21 new_mkBalBranch6MkBalBranch01(yvy50, yvy51, yvy67, yvy540, yvy541, yvy542, EmptyFM, yvy544, False, h, ba) -> error([]) 47.49/23.21 new_esEs21(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) 47.49/23.21 new_splitGT16(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, bdg, bdh) -> new_mkVBalBranch0(Just(yvy15), yvy16, new_splitGT5(yvy18, yvy20, bdg, bdh), yvy19, bdg, bdh) 47.49/23.21 new_addToFM_C15(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba) -> new_mkBalBranch(Nothing, yvy51, yvy53, new_addToFM_C0(yvy54, Just(yvy400), yvy41, h, ba), h, ba) 47.49/23.21 new_mkBranch(yvy242, yvy243, yvy244, yvy245, yvy246, bde, bdf) -> Branch(yvy243, yvy244, new_mkBranchUnbox(yvy246, yvy243, yvy245, new_ps(new_ps(Pos(Succ(Zero)), new_sizeFM1(yvy245, bde, bdf)), new_sizeFM1(yvy246, bde, bdf)), bde, bdf), yvy245, yvy246) 47.49/23.21 new_splitGT14(yvy31, yvy32, yvy33, yvy34, False, h, ba) -> yvy34 47.49/23.21 new_esEs31(yvy400, yvy300, ty_Double) -> new_esEs18(yvy400, yvy300) 47.49/23.21 new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 47.49/23.21 new_esEs31(yvy400, yvy300, ty_@0) -> new_esEs14(yvy400, yvy300) 47.49/23.21 new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_@2, cac), cad), caa) -> new_ltEs11(yvy49000, yvy50000, cac, cad) 47.49/23.21 new_ltEs20(yvy49002, yvy50002, ty_Double) -> new_ltEs16(yvy49002, yvy50002) 47.49/23.21 new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.21 new_ltEs14(Right(yvy49000), Right(yvy50000), cbd, app(app(ty_Either, ccd), cce)) -> new_ltEs14(yvy49000, yvy50000, ccd, cce) 47.49/23.21 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Float, caa) -> new_ltEs5(yvy49000, yvy50000) 47.49/23.21 new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT 47.49/23.21 new_splitLT16(yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_mkVBalBranch0(Nothing, yvy31, yvy33, new_splitLT4(yvy34, h, ba), h, ba) 47.49/23.21 new_compare114(yvy49000, yvy50000, False, eb, ec) -> GT 47.49/23.21 new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.21 new_esEs25(yvy4001, yvy3001, app(ty_[], che)) -> new_esEs8(yvy4001, yvy3001, che) 47.49/23.21 new_mkVBalBranch3MkVBalBranch11(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkBalBranch(yvy60, yvy61, yvy63, new_mkVBalBranch0(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba), h, ba) 47.49/23.21 new_esEs4(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ca, cb) -> new_asAs(new_esEs26(yvy4000, yvy3000, ca), new_esEs25(yvy4001, yvy3001, cb)) 47.49/23.21 new_ltEs5(yvy4900, yvy5000) -> new_fsEs(new_compare6(yvy4900, yvy5000)) 47.49/23.21 new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_Either, fh), ga), ce) -> new_esEs7(yvy4000, yvy3000, fh, ga) 47.49/23.21 new_splitGT4(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), h, ba) -> new_splitGT30(yvy340, yvy341, yvy342, yvy343, yvy344, Nothing, h, ba) 47.49/23.21 new_esEs26(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.21 new_esEs9(yvy4000, yvy3000, app(app(ty_@2, dd), de)) -> new_esEs4(yvy4000, yvy3000, dd, de) 47.49/23.21 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.21 new_compare25(Just(yvy4900), Nothing, False, cch) -> GT 47.49/23.21 new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) 47.49/23.21 new_esEs24(yvy4000, yvy3000, app(ty_Maybe, bcd)) -> new_esEs6(yvy4000, yvy3000, bcd) 47.49/23.21 new_lt11(yvy205, yvy204) -> new_esEs12(new_compare8(yvy205, yvy204), LT) 47.49/23.21 new_compare5(yvy49000, yvy50000, ty_@0) -> new_compare9(yvy49000, yvy50000) 47.49/23.21 new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 47.49/23.21 new_lt6(yvy49000, yvy50000) -> new_esEs12(new_compare9(yvy49000, yvy50000), LT) 47.49/23.21 new_primMulNat0(Succ(yvy400100), Zero) -> Zero 47.49/23.21 new_primMulNat0(Zero, Succ(yvy300000)) -> Zero 47.49/23.21 new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) 47.49/23.21 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Double, caa) -> new_ltEs16(yvy49000, yvy50000) 47.49/23.21 new_addToFM_C16(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba) -> new_mkBalBranch(Just(yvy500), yvy51, yvy53, new_addToFM_C0(yvy54, Just(yvy400), yvy41, h, ba), h, ba) 47.49/23.21 new_lt8(yvy49000, yvy50000, app(app(app(ty_@3, ed), ee), ef)) -> new_lt13(yvy49000, yvy50000, ed, ee, ef) 47.49/23.21 new_esEs6(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, cfb), cfc), cfd)) -> new_esEs5(yvy4000, yvy3000, cfb, cfc, cfd) 47.49/23.21 new_esEs25(yvy4001, yvy3001, app(app(ty_Either, chc), chd)) -> new_esEs7(yvy4001, yvy3001, chc, chd) 47.49/23.21 new_compare5(yvy49000, yvy50000, ty_Float) -> new_compare6(yvy49000, yvy50000) 47.49/23.21 new_esEs9(yvy4000, yvy3000, app(ty_[], ea)) -> new_esEs8(yvy4000, yvy3000, ea) 47.49/23.21 new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, bag), bah), bba)) -> new_esEs5(yvy4001, yvy3001, bag, bah, bba) 47.49/23.21 new_esEs26(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.21 new_primPlusNat1(Succ(yvy1610), yvy300000) -> Succ(Succ(new_primPlusNat0(yvy1610, yvy300000))) 47.49/23.21 new_splitGT13(yvy300, yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_mkVBalBranch0(Just(yvy300), yvy31, new_splitGT4(yvy33, h, ba), yvy34, h, ba) 47.49/23.21 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Int, ce) -> new_esEs16(yvy4000, yvy3000) 47.49/23.21 new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.21 new_esEs16(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) 47.49/23.21 new_primPlusNat0(Succ(yvy16100), Zero) -> Succ(yvy16100) 47.49/23.21 new_primPlusNat0(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) 47.49/23.21 new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) 47.49/23.21 new_primPlusNat1(Zero, yvy300000) -> Succ(yvy300000) 47.49/23.21 new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Int) -> new_compare8(new_sr(yvy49000, yvy50001), new_sr(yvy50000, yvy49001)) 47.49/23.21 new_splitLT13(yvy300, yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_mkVBalBranch0(Just(yvy300), yvy31, yvy33, new_splitLT4(yvy34, h, ba), h, ba) 47.49/23.21 new_esEs32(yvy400, yvy300, app(app(app(ty_@3, be), bf), bg)) -> new_esEs5(yvy400, yvy300, be, bf, bg) 47.49/23.21 new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.21 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_@0, caa) -> new_ltEs9(yvy49000, yvy50000) 47.49/23.21 new_lt8(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) 47.49/23.21 new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_Either, cba), cbb), caa) -> new_ltEs14(yvy49000, yvy50000, cba, cbb) 47.49/23.21 new_ltEs20(yvy49002, yvy50002, ty_@0) -> new_ltEs9(yvy49002, yvy50002) 47.49/23.21 new_esEs22(yvy4002, yvy3002, app(ty_Ratio, bac)) -> new_esEs15(yvy4002, yvy3002, bac) 47.49/23.21 new_ltEs18(yvy4900, yvy5000, app(app(ty_@2, cda), cdb)) -> new_ltEs11(yvy4900, yvy5000, cda, cdb) 47.49/23.21 new_ltEs9(yvy4900, yvy5000) -> new_fsEs(new_compare9(yvy4900, yvy5000)) 47.49/23.21 new_mkBalBranch6MkBalBranch3(yvy50, yvy51, Branch(yvy670, yvy671, yvy672, yvy673, yvy674), yvy54, True, h, ba) -> new_mkBalBranch6MkBalBranch11(yvy50, yvy51, yvy670, yvy671, yvy672, yvy673, yvy674, yvy54, new_lt11(new_sizeFM(yvy674, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(yvy673, h, ba))), h, ba) 47.49/23.21 new_mkBranchUnbox(yvy246, yvy243, yvy245, yvy250, bde, bdf) -> yvy250 47.49/23.21 new_ltEs19(yvy49001, yvy50001, app(app(ty_Either, ceg), ceh)) -> new_ltEs14(yvy49001, yvy50001, ceg, ceh) 47.49/23.21 new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) 47.49/23.21 new_esEs32(yvy400, yvy300, ty_Double) -> new_esEs18(yvy400, yvy300) 47.49/23.21 new_lt8(yvy49000, yvy50000, app(ty_Maybe, ccg)) -> new_lt15(yvy49000, yvy50000, ccg) 47.49/23.21 new_primCmpInt1(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ 47.49/23.21 new_esEs30(yvy20, yvy15, ty_@0) -> new_esEs14(yvy20, yvy15) 47.49/23.21 new_lt20(yvy49001, yvy50001, ty_Char) -> new_lt10(yvy49001, yvy50001) 47.49/23.21 new_splitGT30(Nothing, yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitGT14(yvy31, yvy32, yvy33, yvy34, new_esEs12(new_compare33(h), LT), h, ba) 47.49/23.21 new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.49/23.21 new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.49/23.21 new_mkVBalBranch3MkVBalBranch12(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkBalBranch(yvy60, yvy61, yvy63, new_mkVBalBranch0(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba), h, ba) 47.49/23.21 new_mkVBalBranch3MkVBalBranch22(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkBalBranch(yvy50, yvy51, new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), yvy53, h, ba), yvy54, h, ba) 47.49/23.21 new_addToFM_C25(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba) -> new_mkBalBranch(Nothing, yvy51, new_addToFM_C0(yvy53, Just(yvy400), yvy41, h, ba), yvy54, h, ba) 47.49/23.21 new_esEs9(yvy4000, yvy3000, app(ty_Maybe, dc)) -> new_esEs6(yvy4000, yvy3000, dc) 47.49/23.21 new_esEs23(yvy4001, yvy3001, app(ty_Ratio, bbe)) -> new_esEs15(yvy4001, yvy3001, bbe) 47.49/23.21 new_compare25(Just(yvy4900), Just(yvy5000), False, cch) -> new_compare111(yvy4900, yvy5000, new_ltEs18(yvy4900, yvy5000, cch), cch) 47.49/23.21 new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.49/23.21 new_ltEs20(yvy49002, yvy50002, ty_Float) -> new_ltEs5(yvy49002, yvy50002) 47.49/23.21 new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) -> yvy52 47.49/23.21 new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cff), cfg)) -> new_esEs4(yvy4000, yvy3000, cff, cfg) 47.49/23.21 new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.21 new_fsEs(yvy209) -> new_not(new_esEs12(yvy209, GT)) 47.49/23.21 new_ltEs18(yvy4900, yvy5000, app(app(ty_Either, cbd), caa)) -> new_ltEs14(yvy4900, yvy5000, cbd, caa) 47.49/23.21 new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cfh)) -> new_esEs15(yvy4000, yvy3000, cfh) 47.49/23.21 new_esEs29(yvy400, yvy500, ty_@0) -> new_esEs14(yvy400, yvy500) 47.49/23.21 new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.21 new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) 47.49/23.21 new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_[], cgc)) -> new_esEs8(yvy4000, yvy3000, cgc) 47.49/23.21 new_compare25(yvy490, yvy500, True, cch) -> EQ 47.49/23.21 new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, cg), da), db)) -> new_esEs5(yvy4000, yvy3000, cg, da, db) 47.49/23.21 new_esEs9(yvy4000, yvy3000, app(ty_Ratio, df)) -> new_esEs15(yvy4000, yvy3000, df) 47.49/23.21 new_splitLT22(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, False, bb, bea) -> new_splitLT15(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, new_gt2(yvy35, yvy30, bb), bb, bea) 47.49/23.21 new_mkBalBranch6MkBalBranch11(yvy50, yvy51, yvy670, yvy671, yvy672, yvy673, yvy674, yvy54, True, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), yvy670, yvy671, yvy673, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), yvy50, yvy51, yvy674, yvy54, app(ty_Maybe, h), ba), app(ty_Maybe, h), ba) 47.49/23.21 new_compare([], :(yvy50000, yvy50001), bdd) -> LT 47.49/23.21 new_lt20(yvy49001, yvy50001, app(ty_[], dcb)) -> new_lt12(yvy49001, yvy50001, dcb) 47.49/23.21 new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cfe)) -> new_esEs6(yvy4000, yvy3000, cfe) 47.49/23.21 new_esEs29(yvy400, yvy500, ty_Char) -> new_esEs17(yvy400, yvy500) 47.49/23.21 new_esEs6(Nothing, Just(yvy3000), bh) -> False 47.49/23.21 new_esEs6(Just(yvy4000), Nothing, bh) -> False 47.49/23.21 new_esEs23(yvy4001, yvy3001, app(ty_[], bbh)) -> new_esEs8(yvy4001, yvy3001, bbh) 47.49/23.21 new_ltEs15(EQ, GT) -> True 47.49/23.21 new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.21 new_esEs6(Nothing, Nothing, bh) -> True 47.49/23.21 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Double) -> new_ltEs16(yvy49000, yvy50000) 47.49/23.21 new_esEs11(False, False) -> True 47.49/23.21 new_esEs24(yvy4000, yvy3000, app(app(ty_Either, bch), bda)) -> new_esEs7(yvy4000, yvy3000, bch, bda) 47.49/23.21 new_ltEs18(yvy4900, yvy5000, ty_Ordering) -> new_ltEs15(yvy4900, yvy5000) 47.49/23.21 new_ltEs11(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), cda, cdb) -> new_pePe(new_lt8(yvy49000, yvy50000, cda), new_asAs(new_esEs21(yvy49000, yvy50000, cda), new_ltEs19(yvy49001, yvy50001, cdb))) 47.49/23.21 new_ltEs14(Right(yvy49000), Right(yvy50000), cbd, ty_Integer) -> new_ltEs10(yvy49000, yvy50000) 47.49/23.21 new_mkBalBranch6MkBalBranch11(yvy50, yvy51, yvy670, yvy671, yvy672, yvy673, EmptyFM, yvy54, False, h, ba) -> error([]) 47.49/23.21 new_primCmpInt0(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ 47.49/23.21 new_esEs21(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) 47.49/23.21 new_esEs7(Right(yvy4000), Right(yvy3000), cd, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.21 new_esEs30(yvy20, yvy15, ty_Char) -> new_esEs17(yvy20, yvy15) 47.49/23.21 new_esEs23(yvy4001, yvy3001, app(app(ty_@2, bbc), bbd)) -> new_esEs4(yvy4001, yvy3001, bbc, bbd) 47.49/23.21 new_ltEs14(Left(yvy49000), Right(yvy50000), cbd, caa) -> True 47.49/23.21 new_ltEs19(yvy49001, yvy50001, ty_Float) -> new_ltEs5(yvy49001, yvy50001) 47.49/23.21 new_esEs7(Right(yvy4000), Right(yvy3000), cd, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.21 new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.49/23.21 new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.49/23.21 new_esEs26(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.21 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Ordering, caa) -> new_ltEs15(yvy49000, yvy50000) 47.49/23.21 new_ltEs6(yvy4900, yvy5000) -> new_fsEs(new_compare7(yvy4900, yvy5000)) 47.49/23.21 new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.21 new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.21 new_esEs8(:(yvy4000, yvy4001), [], cf) -> False 47.49/23.21 new_esEs8([], :(yvy3000, yvy3001), cf) -> False 47.49/23.21 new_esEs29(yvy400, yvy500, ty_Ordering) -> new_esEs12(yvy400, yvy500) 47.49/23.21 new_esEs26(yvy4000, yvy3000, app(app(ty_Either, dae), daf)) -> new_esEs7(yvy4000, yvy3000, dae, daf) 47.49/23.21 new_lt19(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) 47.49/23.21 new_lt17(yvy49000, yvy50000) -> new_esEs12(new_compare17(yvy49000, yvy50000), LT) 47.49/23.21 new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Integer) -> new_compare11(new_sr0(yvy49000, yvy50001), new_sr0(yvy50000, yvy49001)) 47.49/23.21 new_primCmpInt2(yvy6200, yvy146) -> new_primCmpInt(Neg(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy146) 47.49/23.21 new_esEs22(yvy4002, yvy3002, app(app(ty_@2, baa), bab)) -> new_esEs4(yvy4002, yvy3002, baa, bab) 47.49/23.21 new_esEs31(yvy400, yvy300, app(ty_Maybe, bh)) -> new_esEs6(yvy400, yvy300, bh) 47.49/23.21 new_esEs22(yvy4002, yvy3002, ty_Double) -> new_esEs18(yvy4002, yvy3002) 47.49/23.21 new_esEs29(yvy400, yvy500, ty_Int) -> new_esEs16(yvy400, yvy500) 47.49/23.21 new_esEs26(yvy4000, yvy3000, app(ty_Ratio, dad)) -> new_esEs15(yvy4000, yvy3000, dad) 47.49/23.21 new_esEs31(yvy400, yvy300, ty_Bool) -> new_esEs11(yvy400, yvy300) 47.49/23.21 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Integer, ce) -> new_esEs10(yvy4000, yvy3000) 47.49/23.21 new_compare5(yvy49000, yvy50000, app(ty_Maybe, bgb)) -> new_compare15(yvy49000, yvy50000, bgb) 47.49/23.21 new_esEs32(yvy400, yvy300, ty_Integer) -> new_esEs10(yvy400, yvy300) 47.49/23.21 new_esEs22(yvy4002, yvy3002, app(app(app(ty_@3, he), hf), hg)) -> new_esEs5(yvy4002, yvy3002, he, hf, hg) 47.49/23.21 new_ltEs19(yvy49001, yvy50001, ty_@0) -> new_ltEs9(yvy49001, yvy50001) 47.49/23.21 new_lt20(yvy49001, yvy50001, ty_@0) -> new_lt6(yvy49001, yvy50001) 47.49/23.21 new_esEs7(Right(yvy4000), Right(yvy3000), cd, app(app(ty_@2, gg), gh)) -> new_esEs4(yvy4000, yvy3000, gg, gh) 47.49/23.21 new_gt1(yvy400, h) -> new_esEs12(new_compare32(yvy400, h), GT) 47.49/23.21 new_sr0(Integer(yvy490000), Integer(yvy500010)) -> Integer(new_primMulInt(yvy490000, yvy500010)) 47.49/23.21 new_esEs18(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 47.49/23.21 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Bool, caa) -> new_ltEs13(yvy49000, yvy50000) 47.49/23.21 new_splitGT22(yvy300, yvy31, yvy32, yvy33, yvy34, False, h, ba) -> new_splitGT13(yvy300, yvy31, yvy32, yvy33, yvy34, new_esEs12(new_compare31(yvy300, h), LT), h, ba) 47.49/23.21 new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.21 new_esEs28(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) 47.49/23.21 new_esEs32(yvy400, yvy300, app(app(ty_Either, cd), ce)) -> new_esEs7(yvy400, yvy300, cd, ce) 47.49/23.21 new_esEs7(Right(yvy4000), Right(yvy3000), cd, app(ty_[], hd)) -> new_esEs8(yvy4000, yvy3000, hd) 47.49/23.21 new_ltEs15(LT, GT) -> True 47.49/23.21 new_splitLT30(Nothing, yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitLT16(yvy31, yvy32, yvy33, yvy34, new_gt(h), h, ba) 47.49/23.21 new_lt19(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) 47.49/23.21 new_esEs30(yvy20, yvy15, app(ty_[], bfc)) -> new_esEs8(yvy20, yvy15, bfc) 47.49/23.21 new_compare33(h) -> new_compare25(Nothing, Nothing, True, h) 47.49/23.21 new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) 47.49/23.21 new_esEs12(GT, GT) -> True 47.49/23.21 new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) 47.49/23.21 new_esEs24(yvy4000, yvy3000, app(ty_[], bdb)) -> new_esEs8(yvy4000, yvy3000, bdb) 47.49/23.21 new_asAs(True, yvy201) -> yvy201 47.49/23.21 new_esEs26(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.21 new_addToFM_C23(yvy51, yvy52, yvy53, yvy54, yvy41, True, h, ba) -> new_mkBalBranch(Nothing, yvy51, new_addToFM_C0(yvy53, Nothing, yvy41, h, ba), yvy54, h, ba) 47.49/23.21 new_esEs10(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) 47.49/23.21 new_esEs21(yvy49000, yvy50000, app(ty_Maybe, ccg)) -> new_esEs6(yvy49000, yvy50000, ccg) 47.49/23.21 new_compare10(yvy49000, yvy50000, False, bc, bd) -> GT 47.49/23.21 new_splitLT24(yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba) -> new_splitLT5(yvy33, yvy400, h, ba) 47.49/23.21 new_lt8(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) 47.49/23.21 new_lt8(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) 47.49/23.21 new_compare113(yvy49000, yvy50000, True) -> LT 47.49/23.21 new_esEs32(yvy400, yvy300, app(ty_Ratio, cc)) -> new_esEs15(yvy400, yvy300, cc) 47.49/23.21 new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.21 new_ltEs16(yvy4900, yvy5000) -> new_fsEs(new_compare18(yvy4900, yvy5000)) 47.49/23.21 new_addToFM_C0(Branch(Just(yvy500), yvy51, yvy52, yvy53, yvy54), Nothing, yvy41, h, ba) -> new_addToFM_C26(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, new_esEs12(new_compare25(Nothing, Just(yvy500), False, h), LT), h, ba) 47.49/23.21 new_lt20(yvy49001, yvy50001, ty_Float) -> new_lt9(yvy49001, yvy50001) 47.49/23.21 new_esEs31(yvy400, yvy300, ty_Char) -> new_esEs17(yvy400, yvy300) 47.49/23.21 new_ltEs4(Nothing, Just(yvy50000), bgf) -> True 47.49/23.21 new_mkBalBranch6MkBalBranch01(yvy50, yvy51, yvy67, yvy540, yvy541, yvy542, yvy543, yvy544, True, h, ba) -> new_mkBranch(Succ(Succ(Zero)), yvy540, yvy541, new_mkBranch(Succ(Succ(Succ(Zero))), yvy50, yvy51, yvy67, yvy543, app(ty_Maybe, h), ba), yvy544, app(ty_Maybe, h), ba) 47.49/23.21 new_esEs21(yvy49000, yvy50000, app(ty_Ratio, cdg)) -> new_esEs15(yvy49000, yvy50000, cdg) 47.49/23.21 new_ltEs18(yvy4900, yvy5000, app(ty_Maybe, bgf)) -> new_ltEs4(yvy4900, yvy5000, bgf) 47.49/23.21 new_primMinusNat0(Zero, Zero) -> Pos(Zero) 47.49/23.21 new_lt8(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) 47.49/23.21 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Float, ce) -> new_esEs13(yvy4000, yvy3000) 47.49/23.21 new_esEs32(yvy400, yvy300, ty_Float) -> new_esEs13(yvy400, yvy300) 47.49/23.21 new_mkVBalBranch3MkVBalBranch21(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkVBalBranch3MkVBalBranch12(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_lt11(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba)), new_sizeFM(Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), h, ba)), h, ba) 47.49/23.21 new_ltEs8(yvy4900, yvy5000, bdd) -> new_fsEs(new_compare(yvy4900, yvy5000, bdd)) 47.49/23.21 new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) 47.49/23.21 new_ltEs18(yvy4900, yvy5000, app(ty_[], bdd)) -> new_ltEs8(yvy4900, yvy5000, bdd) 47.49/23.21 new_compare110(yvy49000, yvy50000, False) -> GT 47.49/23.21 new_primCmpInt0(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> LT 47.49/23.21 new_primCompAux00(yvy225, EQ) -> yvy225 47.49/23.21 new_lt19(yvy49000, yvy50000, app(ty_Maybe, dbf)) -> new_lt15(yvy49000, yvy50000, dbf) 47.49/23.21 new_esEs12(EQ, EQ) -> True 47.49/23.21 new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) 47.49/23.21 new_mkBalBranch6MkBalBranch4(yvy50, yvy51, yvy67, EmptyFM, True, h, ba) -> error([]) 47.49/23.21 new_addToFM(yvy5, yvy40, yvy41, h, ba) -> new_addToFM_C0(yvy5, yvy40, yvy41, h, ba) 47.49/23.21 new_lt19(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) 47.49/23.21 new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) 47.49/23.21 new_esEs21(yvy49000, yvy50000, app(app(ty_Either, eb), ec)) -> new_esEs7(yvy49000, yvy50000, eb, ec) 47.49/23.21 new_primMulNat0(Zero, Zero) -> Zero 47.49/23.21 new_compare24(yvy49000, yvy50000, False) -> new_compare110(yvy49000, yvy50000, new_ltEs13(yvy49000, yvy50000)) 47.49/23.21 new_compare5(yvy49000, yvy50000, ty_Integer) -> new_compare11(yvy49000, yvy50000) 47.49/23.21 new_esEs22(yvy4002, yvy3002, ty_Integer) -> new_esEs10(yvy4002, yvy3002) 47.49/23.21 new_esEs21(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) 47.49/23.21 new_lt19(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) 47.49/23.21 new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.21 new_ltEs12(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), cdc, cdd, cde) -> new_pePe(new_lt19(yvy49000, yvy50000, cdc), new_asAs(new_esEs28(yvy49000, yvy50000, cdc), new_pePe(new_lt20(yvy49001, yvy50001, cdd), new_asAs(new_esEs27(yvy49001, yvy50001, cdd), new_ltEs20(yvy49002, yvy50002, cde))))) 47.49/23.21 new_ltEs19(yvy49001, yvy50001, app(ty_[], cdh)) -> new_ltEs8(yvy49001, yvy50001, cdh) 47.49/23.21 new_compare5(yvy49000, yvy50000, ty_Double) -> new_compare18(yvy49000, yvy50000) 47.49/23.21 new_compare11(Integer(yvy49000), Integer(yvy50000)) -> new_primCmpInt(yvy49000, yvy50000) 47.49/23.21 new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_@2, bgh), bha)) -> new_ltEs11(yvy49000, yvy50000, bgh, bha) 47.49/23.21 new_splitGT24(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, False, bdg, bdh) -> new_splitGT16(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, new_esEs12(new_compare30(yvy20, yvy15, bdg), LT), bdg, bdh) 47.49/23.21 new_splitGT30(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitGT22(yvy300, yvy31, yvy32, yvy33, yvy34, new_esEs12(new_compare25(Nothing, Just(yvy300), False, h), GT), h, ba) 47.49/23.21 new_primCmpInt1(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> LT 47.49/23.21 new_compare9(@0, @0) -> EQ 47.49/23.21 new_splitGT23(yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba) -> new_splitGT15(yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare32(yvy400, h), LT), h, ba) 47.49/23.21 new_esEs22(yvy4002, yvy3002, app(app(ty_Either, bad), bae)) -> new_esEs7(yvy4002, yvy3002, bad, bae) 47.49/23.21 new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.21 new_compare28(yvy49000, yvy50000, True, ed, ee, ef) -> EQ 47.49/23.21 new_esEs27(yvy49001, yvy50001, ty_Float) -> new_esEs13(yvy49001, yvy50001) 47.49/23.21 new_esEs26(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.21 new_primCmpInt1(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> new_primCmpInt2(yvy6200, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba)) 47.49/23.21 new_ltEs13(False, True) -> True 47.49/23.21 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.21 new_ltEs13(False, False) -> True 47.49/23.21 new_esEs9(yvy4000, yvy3000, app(app(ty_Either, dg), dh)) -> new_esEs7(yvy4000, yvy3000, dg, dh) 47.49/23.21 new_esEs7(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, eh), fa), fb), ce) -> new_esEs5(yvy4000, yvy3000, eh, fa, fb) 47.49/23.21 new_ltEs15(EQ, EQ) -> True 47.49/23.21 new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Maybe, fc), ce) -> new_esEs6(yvy4000, yvy3000, fc) 47.49/23.21 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) 47.49/23.21 new_compare30(yvy20, yvy15, bdg) -> new_compare25(Just(yvy20), Just(yvy15), new_esEs30(yvy20, yvy15, bdg), bdg) 47.49/23.21 new_mkBalBranch6MkBalBranch3(yvy50, yvy51, yvy67, yvy54, False, h, ba) -> new_mkBranch(Succ(Zero), yvy50, yvy51, yvy67, yvy54, app(ty_Maybe, h), ba) 47.49/23.21 new_esEs26(yvy4000, yvy3000, app(ty_Maybe, daa)) -> new_esEs6(yvy4000, yvy3000, daa) 47.49/23.21 new_esEs7(Right(yvy4000), Right(yvy3000), cd, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.21 new_addToFM_C16(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba) -> Branch(Just(yvy400), new_addToFM0(yvy51, yvy41, ba), yvy52, yvy53, yvy54) 47.49/23.21 new_esEs26(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.21 new_lt12(yvy49000, yvy50000, cdf) -> new_esEs12(new_compare(yvy49000, yvy50000, cdf), LT) 47.49/23.21 new_lt10(yvy49000, yvy50000) -> new_esEs12(new_compare7(yvy49000, yvy50000), LT) 47.49/23.21 new_lt19(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) 47.49/23.21 new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.21 new_compare31(yvy300, h) -> new_compare25(Nothing, Just(yvy300), False, h) 47.49/23.21 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Char, ce) -> new_esEs17(yvy4000, yvy3000) 47.49/23.21 new_esEs32(yvy400, yvy300, ty_Char) -> new_esEs17(yvy400, yvy300) 47.49/23.21 new_mkBalBranch6MkBalBranch11(yvy50, yvy51, yvy670, yvy671, yvy672, yvy673, Branch(yvy6740, yvy6741, yvy6742, yvy6743, yvy6744), yvy54, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), yvy6740, yvy6741, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), yvy670, yvy671, yvy673, yvy6743, app(ty_Maybe, h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), yvy50, yvy51, yvy6744, yvy54, app(ty_Maybe, h), ba), app(ty_Maybe, h), ba) 47.49/23.21 new_ps(Pos(yvy2080), Pos(yvy2070)) -> Pos(new_primPlusNat0(yvy2080, yvy2070)) 47.49/23.21 new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.21 new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_[], gb), ce) -> new_esEs8(yvy4000, yvy3000, gb) 47.49/23.21 new_ltEs20(yvy49002, yvy50002, app(ty_[], ddd)) -> new_ltEs8(yvy49002, yvy50002, ddd) 47.49/23.21 new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, yvy62, yvy63, yvy64), EmptyFM, h, ba) -> new_addToFM(Branch(yvy60, yvy61, yvy62, yvy63, yvy64), yvy40, yvy41, h, ba) 47.49/23.21 new_splitLT30(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitLT23(yvy300, yvy31, yvy32, yvy33, yvy34, new_esEs12(new_compare25(Nothing, Just(yvy300), False, h), LT), h, ba) 47.49/23.21 new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_Either, bhf), bhg)) -> new_ltEs14(yvy49000, yvy50000, bhf, bhg) 47.49/23.21 new_compare17(yvy49000, yvy50000) -> new_compare29(yvy49000, yvy50000, new_esEs12(yvy49000, yvy50000)) 47.49/23.21 new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) 47.49/23.21 new_mkBalBranch6MkBalBranch3(yvy50, yvy51, EmptyFM, yvy54, True, h, ba) -> error([]) 47.49/23.21 new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False 47.49/23.21 new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False 47.49/23.21 new_esEs21(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) 47.49/23.21 new_esEs25(yvy4001, yvy3001, app(ty_Maybe, cgg)) -> new_esEs6(yvy4001, yvy3001, cgg) 47.49/23.21 new_mkBalBranch(yvy50, yvy51, yvy67, yvy54, h, ba) -> new_mkBalBranch6MkBalBranch5(yvy50, yvy51, yvy67, yvy54, new_lt11(new_ps(new_mkBalBranch6Size_l(yvy50, yvy51, yvy67, yvy54, h, ba), new_mkBalBranch6Size_r(yvy50, yvy51, yvy67, yvy54, h, ba)), Pos(Succ(Succ(Zero)))), h, ba) 47.49/23.21 new_compare([], [], bdd) -> EQ 47.49/23.21 new_ltEs15(LT, EQ) -> True 47.49/23.21 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Float) -> new_ltEs5(yvy49000, yvy50000) 47.49/23.21 new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 47.49/23.21 new_ltEs18(yvy4900, yvy5000, ty_Char) -> new_ltEs6(yvy4900, yvy5000) 47.49/23.21 new_ltEs18(yvy4900, yvy5000, app(ty_Ratio, bdc)) -> new_ltEs17(yvy4900, yvy5000, bdc) 47.49/23.21 new_esEs32(yvy400, yvy300, app(app(ty_@2, ca), cb)) -> new_esEs4(yvy400, yvy300, ca, cb) 47.49/23.21 new_lt20(yvy49001, yvy50001, ty_Double) -> new_lt7(yvy49001, yvy50001) 47.49/23.21 new_esEs26(yvy4000, yvy3000, app(app(ty_@2, dab), dac)) -> new_esEs4(yvy4000, yvy3000, dab, dac) 47.49/23.21 new_compare24(yvy49000, yvy50000, True) -> EQ 47.49/23.21 new_splitLT23(yvy300, yvy31, yvy32, yvy33, yvy34, False, h, ba) -> new_splitLT13(yvy300, yvy31, yvy32, yvy33, yvy34, new_gt0(yvy300, h), h, ba) 47.49/23.21 new_lt8(yvy49000, yvy50000, app(ty_[], cdf)) -> new_lt12(yvy49000, yvy50000, cdf) 47.49/23.21 new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(app(ty_@3, cae), caf), cag), caa) -> new_ltEs12(yvy49000, yvy50000, cae, caf, cag) 47.49/23.21 new_esEs21(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) 47.49/23.21 new_esEs7(Right(yvy4000), Right(yvy3000), cd, app(app(ty_Either, hb), hc)) -> new_esEs7(yvy4000, yvy3000, hb, hc) 47.49/23.21 new_addToFM_C13(yvy51, yvy52, yvy53, yvy54, yvy41, False, h, ba) -> Branch(Nothing, new_addToFM0(yvy51, yvy41, ba), yvy52, yvy53, yvy54) 47.49/23.21 new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False 47.49/23.21 new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False 47.49/23.21 new_esEs11(True, True) -> True 47.49/23.21 new_esEs7(Right(yvy4000), Right(yvy3000), cd, app(ty_Maybe, gf)) -> new_esEs6(yvy4000, yvy3000, gf) 47.49/23.21 new_ltEs14(Right(yvy49000), Right(yvy50000), cbd, app(ty_[], cbe)) -> new_ltEs8(yvy49000, yvy50000, cbe) 47.49/23.21 new_esEs31(yvy400, yvy300, app(ty_Ratio, cc)) -> new_esEs15(yvy400, yvy300, cc) 47.49/23.21 new_esEs25(yvy4001, yvy3001, app(ty_Ratio, chb)) -> new_esEs15(yvy4001, yvy3001, chb) 47.49/23.21 new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) 47.49/23.21 new_esEs15(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), cc) -> new_asAs(new_esEs20(yvy4000, yvy3000, cc), new_esEs19(yvy4001, yvy3001, cc)) 47.49/23.21 new_ltEs14(Right(yvy49000), Right(yvy50000), cbd, ty_Int) -> new_ltEs7(yvy49000, yvy50000) 47.49/23.21 new_compare28(yvy49000, yvy50000, False, ed, ee, ef) -> new_compare112(yvy49000, yvy50000, new_ltEs12(yvy49000, yvy50000, ed, ee, ef), ed, ee, ef) 47.49/23.21 new_esEs22(yvy4002, yvy3002, ty_Float) -> new_esEs13(yvy4002, yvy3002) 47.49/23.21 new_esEs27(yvy49001, yvy50001, ty_Integer) -> new_esEs10(yvy49001, yvy50001) 47.49/23.21 new_ltEs14(Right(yvy49000), Right(yvy50000), cbd, app(app(ty_@2, cbf), cbg)) -> new_ltEs11(yvy49000, yvy50000, cbf, cbg) 47.49/23.21 new_gt(h) -> new_esEs12(new_compare33(h), GT) 47.49/23.21 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 47.49/23.21 new_mkBalBranch6Size_l(yvy50, yvy51, yvy67, yvy54, h, ba) -> new_sizeFM(yvy67, h, ba) 47.49/23.21 new_ltEs15(GT, GT) -> True 47.49/23.21 new_splitLT14(yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba) -> yvy33 47.49/23.21 new_compare111(yvy198, yvy199, False, eg) -> GT 47.49/23.21 new_esEs30(yvy20, yvy15, ty_Bool) -> new_esEs11(yvy20, yvy15) 47.49/23.21 new_ltEs14(Right(yvy49000), Right(yvy50000), cbd, app(ty_Maybe, ccc)) -> new_ltEs4(yvy49000, yvy50000, ccc) 47.49/23.21 new_esEs30(yvy20, yvy15, app(ty_Maybe, bee)) -> new_esEs6(yvy20, yvy15, bee) 47.49/23.21 new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 47.49/23.21 new_sizeFM1(EmptyFM, bde, bdf) -> Pos(Zero) 47.49/23.21 new_addToFM_C23(yvy51, yvy52, yvy53, yvy54, yvy41, False, h, ba) -> new_addToFM_C13(yvy51, yvy52, yvy53, yvy54, yvy41, new_gt(h), h, ba) 47.49/23.21 new_sizeFM(Branch(yvy540, yvy541, yvy542, yvy543, yvy544), h, ba) -> yvy542 47.49/23.21 new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) 47.49/23.21 new_splitGT30(Nothing, yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitGT23(yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare25(Just(yvy400), Nothing, False, h), GT), h, ba) 47.49/23.21 new_primCmpInt0(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> GT 47.49/23.21 new_esEs31(yvy400, yvy300, app(app(ty_@2, ca), cb)) -> new_esEs4(yvy400, yvy300, ca, cb) 47.49/23.21 new_splitLT24(yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba) -> new_splitLT14(yvy31, yvy32, yvy33, yvy34, yvy400, new_gt1(yvy400, h), h, ba) 47.49/23.21 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Int, caa) -> new_ltEs7(yvy49000, yvy50000) 47.49/23.21 new_not(False) -> True 47.49/23.21 new_compare5(yvy49000, yvy50000, app(app(ty_Either, bgc), bgd)) -> new_compare16(yvy49000, yvy50000, bgc, bgd) 47.49/23.21 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.21 new_compare112(yvy49000, yvy50000, True, ed, ee, ef) -> LT 47.49/23.21 new_esEs28(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) 47.49/23.21 new_compare5(yvy49000, yvy50000, ty_Bool) -> new_compare14(yvy49000, yvy50000) 47.49/23.21 new_lt13(yvy49000, yvy50000, ed, ee, ef) -> new_esEs12(new_compare13(yvy49000, yvy50000, ed, ee, ef), LT) 47.49/23.21 new_mkBalBranch6MkBalBranch4(yvy50, yvy51, yvy67, yvy54, False, h, ba) -> new_mkBalBranch6MkBalBranch3(yvy50, yvy51, yvy67, yvy54, new_gt3(new_mkBalBranch6Size_l(yvy50, yvy51, yvy67, yvy54, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_r(yvy50, yvy51, yvy67, yvy54, h, ba))), h, ba) 47.49/23.21 new_primCompAux0(yvy49000, yvy50000, yvy221, bdd) -> new_primCompAux00(yvy221, new_compare5(yvy49000, yvy50000, bdd)) 47.49/23.21 new_esEs27(yvy49001, yvy50001, app(app(ty_Either, dda), ddb)) -> new_esEs7(yvy49001, yvy50001, dda, ddb) 47.49/23.21 new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 47.49/23.21 new_esEs22(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) 47.49/23.21 new_lt7(yvy49000, yvy50000) -> new_esEs12(new_compare18(yvy49000, yvy50000), LT) 47.49/23.21 new_esEs28(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) 47.49/23.21 new_esEs12(LT, EQ) -> False 47.49/23.21 new_esEs12(EQ, LT) -> False 47.49/23.21 new_esEs21(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) 47.49/23.21 new_compare29(yvy49000, yvy50000, True) -> EQ 47.49/23.21 new_esEs32(yvy400, yvy300, ty_Bool) -> new_esEs11(yvy400, yvy300) 47.49/23.21 new_lt4(yvy49000, yvy50000, bc, bd) -> new_esEs12(new_compare12(yvy49000, yvy50000, bc, bd), LT) 47.49/23.21 new_primPlusNat0(Succ(yvy16100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat0(yvy16100, yvy3000000))) 47.49/23.21 new_compare5(yvy49000, yvy50000, app(app(app(ty_@3, bfg), bfh), bga)) -> new_compare13(yvy49000, yvy50000, bfg, bfh, bga) 47.49/23.22 new_esEs27(yvy49001, yvy50001, app(ty_Ratio, ddc)) -> new_esEs15(yvy49001, yvy50001, ddc) 47.49/23.22 new_mkVBalBranch3MkVBalBranch21(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkBalBranch(yvy50, yvy51, new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), yvy53, h, ba), yvy54, h, ba) 47.49/23.22 new_lt19(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) 47.49/23.22 new_esEs31(yvy400, yvy300, ty_Integer) -> new_esEs10(yvy400, yvy300) 47.49/23.22 new_esEs28(yvy49000, yvy50000, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_esEs5(yvy49000, yvy50000, dbc, dbd, dbe) 47.49/23.22 new_esEs29(yvy400, yvy500, app(ty_Ratio, cc)) -> new_esEs15(yvy400, yvy500, cc) 47.49/23.22 new_compare112(yvy49000, yvy50000, False, ed, ee, ef) -> GT 47.49/23.22 new_compare27(yvy49000, yvy50000, True, bc, bd) -> EQ 47.49/23.22 new_esEs7(Right(yvy4000), Right(yvy3000), cd, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.22 new_compare15(yvy49000, yvy50000, ccg) -> new_compare25(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, ccg), ccg) 47.49/23.22 new_esEs21(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) 47.49/23.22 new_esEs12(LT, GT) -> False 47.49/23.22 new_esEs12(GT, LT) -> False 47.49/23.22 new_lt20(yvy49001, yvy50001, ty_Int) -> new_lt11(yvy49001, yvy50001) 47.49/23.22 new_esEs31(yvy400, yvy300, app(ty_[], cf)) -> new_esEs8(yvy400, yvy300, cf) 47.49/23.22 new_ltEs19(yvy49001, yvy50001, ty_Int) -> new_ltEs7(yvy49001, yvy50001) 47.49/23.22 new_ltEs20(yvy49002, yvy50002, app(ty_Ratio, dee)) -> new_ltEs17(yvy49002, yvy50002, dee) 47.49/23.22 new_esEs8([], [], cf) -> True 47.49/23.22 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Char, caa) -> new_ltEs6(yvy49000, yvy50000) 47.49/23.22 new_ltEs20(yvy49002, yvy50002, ty_Char) -> new_ltEs6(yvy49002, yvy50002) 47.49/23.22 new_compare25(Nothing, Nothing, False, cch) -> LT 47.49/23.22 new_lt20(yvy49001, yvy50001, app(ty_Maybe, dch)) -> new_lt15(yvy49001, yvy50001, dch) 47.49/23.22 new_esEs29(yvy400, yvy500, app(ty_Maybe, bh)) -> new_esEs6(yvy400, yvy500, bh) 47.49/23.22 new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Ratio, bhh)) -> new_ltEs17(yvy49000, yvy50000, bhh) 47.49/23.22 new_splitLT4(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), h, ba) -> new_splitLT30(yvy330, yvy331, yvy332, yvy333, yvy334, Nothing, h, ba) 47.49/23.22 new_lt8(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) 47.49/23.22 new_ltEs14(Right(yvy49000), Right(yvy50000), cbd, ty_Float) -> new_ltEs5(yvy49000, yvy50000) 47.49/23.22 new_splitLT22(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, bb, bea) -> new_splitLT5(yvy33, yvy35, bb, bea) 47.49/23.22 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 47.49/23.22 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 47.49/23.22 new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.49/23.22 new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) 47.49/23.22 new_esEs31(yvy400, yvy300, app(app(ty_Either, cd), ce)) -> new_esEs7(yvy400, yvy300, cd, ce) 47.49/23.22 new_lt20(yvy49001, yvy50001, app(app(ty_@2, dcc), dcd)) -> new_lt4(yvy49001, yvy50001, dcc, dcd) 47.49/23.22 new_esEs28(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) 47.49/23.22 new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.22 new_ps(Pos(yvy2080), Neg(yvy2070)) -> new_primMinusNat0(yvy2080, yvy2070) 47.49/23.22 new_ps(Neg(yvy2080), Pos(yvy2070)) -> new_primMinusNat0(yvy2070, yvy2080) 47.49/23.22 new_addToFM_C26(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, True, h, ba) -> new_mkBalBranch(Just(yvy500), yvy51, new_addToFM_C0(yvy53, Nothing, yvy41, h, ba), yvy54, h, ba) 47.49/23.22 new_compare111(yvy198, yvy199, True, eg) -> LT 47.49/23.22 new_ltEs13(True, False) -> False 47.49/23.22 new_ltEs20(yvy49002, yvy50002, ty_Int) -> new_ltEs7(yvy49002, yvy50002) 47.49/23.22 new_esEs32(yvy400, yvy300, ty_Int) -> new_esEs16(yvy400, yvy300) 47.49/23.22 new_esEs27(yvy49001, yvy50001, app(app(ty_@2, dcc), dcd)) -> new_esEs4(yvy49001, yvy50001, dcc, dcd) 47.49/23.22 new_ltEs15(LT, LT) -> True 47.49/23.22 new_splitLT23(yvy300, yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_splitLT4(yvy33, h, ba) 47.49/23.22 new_esEs31(yvy400, yvy300, ty_Int) -> new_esEs16(yvy400, yvy300) 47.49/23.22 new_esEs13(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 47.49/23.22 new_esEs22(yvy4002, yvy3002, ty_@0) -> new_esEs14(yvy4002, yvy3002) 47.49/23.22 new_esEs28(yvy49000, yvy50000, app(ty_Maybe, dbf)) -> new_esEs6(yvy49000, yvy50000, dbf) 47.49/23.22 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 47.49/23.22 new_esEs26(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.22 new_esEs28(yvy49000, yvy50000, app(app(ty_@2, dba), dbb)) -> new_esEs4(yvy49000, yvy50000, dba, dbb) 47.49/23.22 new_compare7(Char(yvy49000), Char(yvy50000)) -> new_primCmpNat0(yvy49000, yvy50000) 47.49/23.22 new_splitLT4(EmptyFM, h, ba) -> new_emptyFM(h, ba) 47.49/23.22 new_lt5(yvy49000, yvy50000) -> new_esEs12(new_compare11(yvy49000, yvy50000), LT) 47.49/23.22 new_lt20(yvy49001, yvy50001, app(app(ty_Either, dda), ddb)) -> new_lt16(yvy49001, yvy50001, dda, ddb) 47.49/23.22 new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) 47.49/23.22 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Char) -> new_ltEs6(yvy49000, yvy50000) 47.49/23.22 new_esEs26(yvy4000, yvy3000, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs5(yvy4000, yvy3000, chf, chg, chh) 47.49/23.22 new_lt20(yvy49001, yvy50001, ty_Integer) -> new_lt5(yvy49001, yvy50001) 47.49/23.22 new_mkVBalBranch3MkVBalBranch22(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkVBalBranch3MkVBalBranch11(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_lt11(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba)), new_sizeFM(Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), h, ba)), h, ba) 47.49/23.22 new_esEs30(yvy20, yvy15, ty_Int) -> new_esEs16(yvy20, yvy15) 47.49/23.22 new_ltEs14(Right(yvy49000), Right(yvy50000), cbd, ty_Double) -> new_ltEs16(yvy49000, yvy50000) 47.49/23.22 new_ltEs10(yvy4900, yvy5000) -> new_fsEs(new_compare11(yvy4900, yvy5000)) 47.49/23.22 new_lt14(yvy49000, yvy50000) -> new_esEs12(new_compare14(yvy49000, yvy50000), LT) 47.49/23.22 new_splitGT15(yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba) -> new_mkVBalBranch0(Nothing, yvy31, new_splitGT5(yvy33, yvy400, h, ba), yvy34, h, ba) 47.49/23.22 new_esEs31(yvy400, yvy300, ty_Ordering) -> new_esEs12(yvy400, yvy300) 47.49/23.22 new_esEs27(yvy49001, yvy50001, app(ty_Maybe, dch)) -> new_esEs6(yvy49001, yvy50001, dch) 47.49/23.22 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Double, ce) -> new_esEs18(yvy4000, yvy3000) 47.49/23.22 new_ltEs14(Right(yvy49000), Right(yvy50000), cbd, ty_@0) -> new_ltEs9(yvy49000, yvy50000) 47.49/23.22 new_addToFM_C0(EmptyFM, yvy40, yvy41, h, ba) -> Branch(yvy40, yvy41, Pos(Succ(Zero)), new_emptyFM(h, ba), new_emptyFM(h, ba)) 47.49/23.22 new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_[], bgg)) -> new_ltEs8(yvy49000, yvy50000, bgg) 47.49/23.22 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Integer) -> new_ltEs10(yvy49000, yvy50000) 47.49/23.22 new_primMinusNat0(Zero, Succ(yvy20700)) -> Neg(Succ(yvy20700)) 47.49/23.22 new_addToFM_C14(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, False, h, ba) -> Branch(Nothing, new_addToFM0(yvy51, yvy41, ba), yvy52, yvy53, yvy54) 47.49/23.22 new_esEs27(yvy49001, yvy50001, ty_Double) -> new_esEs18(yvy49001, yvy50001) 47.49/23.22 new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch22(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs12(new_primCmpInt1(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba), LT), h, ba) 47.49/23.22 new_esEs29(yvy400, yvy500, ty_Integer) -> new_esEs10(yvy400, yvy500) 47.49/23.22 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 47.49/23.22 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 47.49/23.22 new_compare25(Nothing, Just(yvy5000), False, cch) -> LT 47.49/23.22 new_compare5(yvy49000, yvy50000, app(app(ty_@2, bfe), bff)) -> new_compare12(yvy49000, yvy50000, bfe, bff) 47.49/23.22 new_esEs29(yvy400, yvy500, app(app(ty_@2, ca), cb)) -> new_esEs4(yvy400, yvy500, ca, cb) 47.49/23.22 new_esEs28(yvy49000, yvy50000, app(ty_[], dah)) -> new_esEs8(yvy49000, yvy50000, dah) 47.49/23.22 new_lt19(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) 47.49/23.22 new_splitGT22(yvy300, yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_splitGT4(yvy34, h, ba) 47.49/23.22 new_lt18(yvy49000, yvy50000, cdg) -> new_esEs12(new_compare19(yvy49000, yvy50000, cdg), LT) 47.49/23.22 new_esEs29(yvy400, yvy500, app(ty_[], cf)) -> new_esEs8(yvy400, yvy500, cf) 47.49/23.22 new_compare5(yvy49000, yvy50000, ty_Char) -> new_compare7(yvy49000, yvy50000) 47.49/23.22 new_ltEs19(yvy49001, yvy50001, app(ty_Maybe, cef)) -> new_ltEs4(yvy49001, yvy50001, cef) 47.49/23.22 new_compare5(yvy49000, yvy50000, app(ty_[], bfd)) -> new_compare(yvy49000, yvy50000, bfd) 47.49/23.22 new_compare14(yvy49000, yvy50000) -> new_compare24(yvy49000, yvy50000, new_esEs11(yvy49000, yvy50000)) 47.49/23.22 new_primEqNat0(Zero, Zero) -> True 47.49/23.22 new_primCmpInt3(yvy6200, yvy145) -> new_primCmpInt(Pos(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy145) 47.49/23.22 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Integer, caa) -> new_ltEs10(yvy49000, yvy50000) 47.49/23.22 new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.49/23.22 new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) 47.49/23.22 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Bool) -> new_ltEs13(yvy49000, yvy50000) 47.49/23.22 new_esEs30(yvy20, yvy15, app(app(ty_Either, bfa), bfb)) -> new_esEs7(yvy20, yvy15, bfa, bfb) 47.49/23.22 new_esEs30(yvy20, yvy15, ty_Ordering) -> new_esEs12(yvy20, yvy15) 47.49/23.22 new_compare5(yvy49000, yvy50000, ty_Ordering) -> new_compare17(yvy49000, yvy50000) 47.49/23.22 new_esEs6(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.22 new_esEs29(yvy400, yvy500, ty_Bool) -> new_esEs11(yvy400, yvy500) 47.49/23.22 new_asAs(False, yvy201) -> False 47.49/23.22 new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(app(ty_@3, bhb), bhc), bhd)) -> new_ltEs12(yvy49000, yvy50000, bhb, bhc, bhd) 47.49/23.22 new_esEs29(yvy400, yvy500, app(app(ty_Either, cd), ce)) -> new_esEs7(yvy400, yvy500, cd, ce) 47.49/23.22 new_esEs28(yvy49000, yvy50000, app(ty_Ratio, dca)) -> new_esEs15(yvy49000, yvy50000, dca) 47.49/23.22 new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 47.49/23.22 new_esEs30(yvy20, yvy15, ty_Integer) -> new_esEs10(yvy20, yvy15) 47.49/23.22 new_ltEs20(yvy49002, yvy50002, app(ty_Maybe, deb)) -> new_ltEs4(yvy49002, yvy50002, deb) 47.49/23.22 new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) 47.49/23.22 new_sizeFM1(Branch(yvy2460, yvy2461, yvy2462, yvy2463, yvy2464), bde, bdf) -> yvy2462 47.49/23.22 new_lt8(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) 47.49/23.22 new_splitGT16(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, False, bdg, bdh) -> yvy19 47.49/23.22 new_esEs7(Left(yvy4000), Right(yvy3000), cd, ce) -> False 47.49/23.22 new_esEs7(Right(yvy4000), Left(yvy3000), cd, ce) -> False 47.49/23.22 new_ltEs17(yvy4900, yvy5000, bdc) -> new_fsEs(new_compare19(yvy4900, yvy5000, bdc)) 47.49/23.22 new_lt16(yvy49000, yvy50000, eb, ec) -> new_esEs12(new_compare16(yvy49000, yvy50000, eb, ec), LT) 47.49/23.22 new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.22 new_ltEs18(yvy4900, yvy5000, ty_Int) -> new_ltEs7(yvy4900, yvy5000) 47.49/23.22 new_lt19(yvy49000, yvy50000, app(app(ty_Either, dbg), dbh)) -> new_lt16(yvy49000, yvy50000, dbg, dbh) 47.49/23.22 new_esEs27(yvy49001, yvy50001, app(app(app(ty_@3, dce), dcf), dcg)) -> new_esEs5(yvy49001, yvy50001, dce, dcf, dcg) 47.49/23.22 47.49/23.22 The set Q consists of the following terms: 47.49/23.22 47.49/23.22 new_esEs27(x0, x1, ty_@0) 47.49/23.22 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.22 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.22 new_esEs26(x0, x1, ty_Float) 47.49/23.22 new_esEs12(EQ, EQ) 47.49/23.22 new_compare111(x0, x1, True, x2) 47.49/23.22 new_esEs28(x0, x1, ty_Char) 47.49/23.22 new_ltEs14(Right(x0), Right(x1), x2, ty_Float) 47.49/23.22 new_esEs32(x0, x1, ty_Integer) 47.49/23.22 new_splitGT15(x0, x1, x2, x3, x4, True, x5, x6) 47.49/23.22 new_splitLT16(x0, x1, x2, x3, True, x4, x5) 47.49/23.22 new_primMulInt(Neg(x0), Neg(x1)) 47.49/23.22 new_esEs32(x0, x1, app(ty_Ratio, x2)) 47.49/23.22 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 47.49/23.22 new_esEs29(x0, x1, app(ty_Maybe, x2)) 47.49/23.22 new_lt20(x0, x1, ty_@0) 47.49/23.22 new_ltEs17(x0, x1, x2) 47.49/23.22 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 47.49/23.22 new_compare5(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.22 new_mkVBalBranch0(x0, x1, EmptyFM, x2, x3, x4) 47.49/23.22 new_primCmpNat0(Succ(x0), Zero) 47.49/23.22 new_esEs7(Left(x0), Left(x1), ty_Integer, x2) 47.49/23.22 new_compare29(x0, x1, True) 47.49/23.22 new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 47.49/23.22 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_mkVBalBranch3MkVBalBranch21(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, True, x12, x13) 47.49/23.22 new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) 47.49/23.22 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 47.49/23.22 new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 47.49/23.22 new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6) 47.49/23.22 new_primMinusNat0(Succ(x0), Succ(x1)) 47.49/23.22 new_primEqInt(Pos(Zero), Pos(Zero)) 47.49/23.22 new_splitLT24(x0, x1, x2, x3, x4, False, x5, x6) 47.49/23.22 new_esEs32(x0, x1, ty_Bool) 47.49/23.22 new_lt19(x0, x1, app(ty_Ratio, x2)) 47.49/23.22 new_primMulInt(Pos(x0), Pos(x1)) 47.49/23.22 new_primMinusNat0(Zero, Zero) 47.49/23.22 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_primCompAux00(x0, GT) 47.49/23.22 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.22 new_mkVBalBranch0(x0, x1, Branch(x2, x3, x4, x5, x6), EmptyFM, x7, x8) 47.49/23.22 new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 47.49/23.22 new_ltEs14(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 47.49/23.22 new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, True, x4, x5) 47.49/23.22 new_lt8(x0, x1, ty_Float) 47.49/23.22 new_emptyFM(x0, x1) 47.49/23.22 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 47.49/23.22 new_ltEs4(Just(x0), Just(x1), ty_Float) 47.49/23.22 new_lt15(x0, x1, x2) 47.49/23.22 new_mkBalBranch6MkBalBranch3(x0, x1, EmptyFM, x2, True, x3, x4) 47.49/23.22 new_compare(:(x0, x1), [], x2) 47.49/23.22 new_asAs(False, x0) 47.49/23.22 new_ltEs14(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 47.49/23.22 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 47.49/23.22 new_splitLT13(x0, x1, x2, x3, x4, False, x5, x6) 47.49/23.22 new_esEs27(x0, x1, ty_Integer) 47.49/23.22 new_esEs24(x0, x1, app(ty_Ratio, x2)) 47.49/23.22 new_esEs32(x0, x1, app(ty_[], x2)) 47.49/23.22 new_compare28(x0, x1, True, x2, x3, x4) 47.49/23.22 new_splitLT15(x0, x1, x2, x3, x4, x5, True, x6, x7) 47.49/23.22 new_compare5(x0, x1, app(ty_Maybe, x2)) 47.49/23.22 new_primEqInt(Neg(Zero), Neg(Zero)) 47.49/23.22 new_lt16(x0, x1, x2, x3) 47.49/23.22 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 47.49/23.22 new_splitGT14(x0, x1, x2, x3, False, x4, x5) 47.49/23.22 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.22 new_sr(x0, x1) 47.49/23.22 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.22 new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 47.49/23.22 new_addToFM_C13(x0, x1, x2, x3, x4, False, x5, x6) 47.49/23.22 new_esEs8([], [], x0) 47.49/23.22 new_esEs28(x0, x1, ty_Bool) 47.49/23.22 new_esEs27(x0, x1, ty_Char) 47.49/23.22 new_sIZE_RATIO 47.49/23.22 new_primCmpNat0(Zero, Succ(x0)) 47.49/23.22 new_splitGT5(EmptyFM, x0, x1, x2) 47.49/23.22 new_lt19(x0, x1, ty_Double) 47.49/23.22 new_ltEs14(Left(x0), Left(x1), ty_Ordering, x2) 47.49/23.22 new_esEs6(Nothing, Just(x0), x1) 47.49/23.22 new_esEs7(Left(x0), Left(x1), ty_Float, x2) 47.49/23.22 new_ltEs13(False, True) 47.49/23.22 new_ltEs13(True, False) 47.49/23.22 new_ltEs18(x0, x1, ty_Int) 47.49/23.22 new_lt17(x0, x1) 47.49/23.22 new_ltEs14(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 47.49/23.22 new_esEs9(x0, x1, ty_Double) 47.49/23.22 new_esEs28(x0, x1, ty_Ordering) 47.49/23.22 new_lt8(x0, x1, app(ty_[], x2)) 47.49/23.22 new_lt8(x0, x1, ty_Integer) 47.49/23.22 new_compare110(x0, x1, False) 47.49/23.22 new_splitLT30(Nothing, x0, x1, x2, x3, Just(x4), x5, x6) 47.49/23.22 new_compare25(Just(x0), Nothing, False, x1) 47.49/23.22 new_esEs19(x0, x1, ty_Integer) 47.49/23.22 new_ltEs14(Left(x0), Left(x1), ty_Double, x2) 47.49/23.22 new_ltEs19(x0, x1, app(ty_[], x2)) 47.49/23.22 new_ltEs19(x0, x1, ty_Float) 47.49/23.22 new_splitGT22(x0, x1, x2, x3, x4, True, x5, x6) 47.49/23.22 new_splitLT14(x0, x1, x2, x3, x4, True, x5, x6) 47.49/23.22 new_esEs9(x0, x1, ty_Int) 47.49/23.22 new_esEs26(x0, x1, app(ty_[], x2)) 47.49/23.22 new_compare27(x0, x1, False, x2, x3) 47.49/23.22 new_esEs32(x0, x1, ty_@0) 47.49/23.22 new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 47.49/23.22 new_mkBalBranch6Size_l(x0, x1, x2, x3, x4, x5) 47.49/23.22 new_lt8(x0, x1, ty_Bool) 47.49/23.22 new_esEs18(Double(x0, x1), Double(x2, x3)) 47.49/23.22 new_primEqInt(Pos(Zero), Neg(Zero)) 47.49/23.22 new_primEqInt(Neg(Zero), Pos(Zero)) 47.49/23.22 new_esEs31(x0, x1, ty_Ordering) 47.49/23.22 new_compare114(x0, x1, False, x2, x3) 47.49/23.22 new_mkBalBranch6Size_r(x0, x1, x2, x3, x4, x5) 47.49/23.22 new_esEs30(x0, x1, ty_Float) 47.49/23.22 new_esEs12(LT, GT) 47.49/23.22 new_esEs12(GT, LT) 47.49/23.22 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 47.49/23.22 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 47.49/23.22 new_esEs17(Char(x0), Char(x1)) 47.49/23.22 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.22 new_esEs28(x0, x1, app(ty_Maybe, x2)) 47.49/23.22 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.22 new_esEs21(x0, x1, ty_Float) 47.49/23.22 new_splitLT13(x0, x1, x2, x3, x4, True, x5, x6) 47.49/23.22 new_esEs32(x0, x1, ty_Float) 47.49/23.22 new_ltEs18(x0, x1, ty_Double) 47.49/23.22 new_ltEs20(x0, x1, ty_Ordering) 47.49/23.22 new_esEs27(x0, x1, ty_Bool) 47.49/23.22 new_lt4(x0, x1, x2, x3) 47.49/23.22 new_esEs29(x0, x1, ty_Integer) 47.49/23.22 new_compare14(x0, x1) 47.49/23.22 new_ltEs14(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 47.49/23.22 new_compare5(x0, x1, app(ty_[], x2)) 47.49/23.22 new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_compare10(x0, x1, True, x2, x3) 47.49/23.22 new_ltEs18(x0, x1, ty_Char) 47.49/23.22 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_asAs(True, x0) 47.49/23.22 new_esEs24(x0, x1, ty_Integer) 47.49/23.22 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_esEs30(x0, x1, ty_@0) 47.49/23.22 new_esEs23(x0, x1, app(ty_[], x2)) 47.49/23.22 new_pePe(True, x0) 47.49/23.22 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_compare28(x0, x1, False, x2, x3, x4) 47.49/23.22 new_ltEs7(x0, x1) 47.49/23.22 new_ltEs15(EQ, EQ) 47.49/23.22 new_primEqNat0(Succ(x0), Zero) 47.49/23.22 new_esEs28(x0, x1, ty_Integer) 47.49/23.22 new_esEs21(x0, x1, app(ty_Ratio, x2)) 47.49/23.22 new_compare5(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.22 new_esEs27(x0, x1, app(ty_Maybe, x2)) 47.49/23.22 new_esEs25(x0, x1, ty_Float) 47.49/23.22 new_primCmpInt0(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 47.49/23.22 new_primMulNat0(Succ(x0), Succ(x1)) 47.49/23.22 new_splitLT22(x0, x1, x2, x3, x4, x5, True, x6, x7) 47.49/23.22 new_compare26(x0, x1, True, x2, x3) 47.49/23.22 new_gt2(x0, x1, x2) 47.49/23.22 new_ps(Pos(x0), Pos(x1)) 47.49/23.22 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 47.49/23.22 new_compare5(x0, x1, ty_Ordering) 47.49/23.22 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_esEs8([], :(x0, x1), x2) 47.49/23.22 new_lt19(x0, x1, ty_Char) 47.49/23.22 new_ltEs19(x0, x1, ty_Integer) 47.49/23.22 new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 47.49/23.22 new_lt5(x0, x1) 47.49/23.22 new_esEs7(Left(x0), Left(x1), ty_Char, x2) 47.49/23.22 new_splitLT4(EmptyFM, x0, x1) 47.49/23.22 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 47.49/23.22 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 47.49/23.22 new_ltEs11(@2(x0, x1), @2(x2, x3), x4, x5) 47.49/23.22 new_mkVBalBranch0(x0, x1, Branch(x2, x3, Neg(x4), x5, x6), Branch(x7, x8, x9, x10, x11), x12, x13) 47.49/23.22 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.22 new_lt13(x0, x1, x2, x3, x4) 47.49/23.22 new_mkBalBranch6MkBalBranch4(x0, x1, x2, x3, False, x4, x5) 47.49/23.22 new_compare([], [], x0) 47.49/23.22 new_splitGT13(x0, x1, x2, x3, x4, False, x5, x6) 47.49/23.22 new_compare25(x0, x1, True, x2) 47.49/23.22 new_esEs9(x0, x1, ty_Char) 47.49/23.22 new_ltEs4(Just(x0), Just(x1), ty_Bool) 47.49/23.22 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 47.49/23.22 new_lt6(x0, x1) 47.49/23.22 new_lt19(x0, x1, ty_Int) 47.49/23.22 new_ps(Neg(x0), Neg(x1)) 47.49/23.22 new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, False, x4, x5) 47.49/23.22 new_primEqNat0(Succ(x0), Succ(x1)) 47.49/23.22 new_ps(Pos(x0), Neg(x1)) 47.49/23.22 new_ps(Neg(x0), Pos(x1)) 47.49/23.22 new_esEs6(Just(x0), Nothing, x1) 47.49/23.22 new_ltEs6(x0, x1) 47.49/23.22 new_compare7(Char(x0), Char(x1)) 47.49/23.22 new_mkVBalBranch0(x0, x1, Branch(x2, x3, Pos(x4), x5, x6), Branch(x7, x8, x9, x10, x11), x12, x13) 47.49/23.22 new_esEs12(GT, GT) 47.49/23.22 new_esEs12(LT, EQ) 47.49/23.22 new_esEs12(EQ, LT) 47.49/23.22 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.22 new_mkBranch(x0, x1, x2, x3, x4, x5, x6) 47.49/23.22 new_ltEs5(x0, x1) 47.49/23.22 new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 47.49/23.22 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_ltEs15(GT, LT) 47.49/23.22 new_lt8(x0, x1, app(ty_Maybe, x2)) 47.49/23.22 new_ltEs15(LT, GT) 47.49/23.22 new_splitLT30(Just(x0), x1, x2, x3, x4, Just(x5), x6, x7) 47.49/23.22 new_esEs7(Left(x0), Left(x1), ty_Int, x2) 47.49/23.22 new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 47.49/23.22 new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 47.49/23.22 new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 47.49/23.22 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 47.49/23.22 new_addToFM_C0(Branch(Just(x0), x1, x2, x3, x4), Just(x5), x6, x7, x8) 47.49/23.22 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_ltEs14(Left(x0), Left(x1), ty_@0, x2) 47.49/23.22 new_splitLT4(Branch(x0, x1, x2, x3, x4), x5, x6) 47.49/23.22 new_ltEs4(Nothing, Just(x0), x1) 47.49/23.22 new_mkVBalBranch3MkVBalBranch22(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, False, x12, x13) 47.49/23.22 new_esEs29(x0, x1, ty_Bool) 47.49/23.22 new_ltEs4(Just(x0), Just(x1), ty_Integer) 47.49/23.22 new_primMinusNat0(Zero, Succ(x0)) 47.49/23.22 new_esEs27(x0, x1, ty_Int) 47.49/23.22 new_esEs27(x0, x1, app(ty_Ratio, x2)) 47.49/23.22 new_esEs6(Just(x0), Just(x1), ty_Integer) 47.49/23.22 new_esEs6(Just(x0), Just(x1), ty_Float) 47.49/23.22 new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 47.49/23.22 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) 47.49/23.22 new_addToFM_C0(Branch(Just(x0), x1, x2, x3, x4), Nothing, x5, x6, x7) 47.49/23.22 new_compare5(x0, x1, ty_Double) 47.49/23.22 new_esEs29(x0, x1, app(ty_Ratio, x2)) 47.49/23.22 new_primMulNat0(Succ(x0), Zero) 47.49/23.22 new_esEs27(x0, x1, ty_Float) 47.49/23.22 new_esEs25(x0, x1, ty_Bool) 47.49/23.22 new_compare30(x0, x1, x2) 47.49/23.22 new_mkBalBranch6MkBalBranch4(x0, x1, x2, Branch(x3, x4, x5, x6, x7), True, x8, x9) 47.49/23.22 new_esEs6(Just(x0), Just(x1), ty_Ordering) 47.49/23.22 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 47.49/23.22 new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) 47.49/23.22 new_esEs25(x0, x1, app(ty_[], x2)) 47.49/23.22 new_esEs9(x0, x1, ty_Bool) 47.49/23.22 new_lt7(x0, x1) 47.49/23.22 new_esEs32(x0, x1, ty_Double) 47.49/23.22 new_esEs9(x0, x1, app(ty_Maybe, x2)) 47.49/23.22 new_compare15(x0, x1, x2) 47.49/23.22 new_lt8(x0, x1, ty_@0) 47.49/23.22 new_addToFM_C26(x0, x1, x2, x3, x4, x5, True, x6, x7) 47.49/23.22 new_addToFM_C0(Branch(Nothing, x0, x1, x2, x3), Just(x4), x5, x6, x7) 47.49/23.22 new_splitLT5(Branch(x0, x1, x2, x3, x4), x5, x6, x7) 47.49/23.22 new_esEs9(x0, x1, ty_Ordering) 47.49/23.22 new_primCmpInt(Neg(Zero), Neg(Zero)) 47.49/23.22 new_ltEs14(Right(x0), Right(x1), x2, ty_Char) 47.49/23.22 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.22 new_esEs7(Right(x0), Right(x1), x2, ty_Int) 47.49/23.22 new_esEs26(x0, x1, app(ty_Ratio, x2)) 47.49/23.22 new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 47.49/23.22 new_primCmpInt1(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 47.49/23.22 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.22 new_esEs9(x0, x1, app(ty_Ratio, x2)) 47.49/23.22 new_esEs28(x0, x1, ty_Double) 47.49/23.22 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, Branch(x6, x7, x8, x9, x10), x11, False, x12, x13) 47.49/23.22 new_primCmpInt(Pos(Zero), Neg(Zero)) 47.49/23.22 new_primCmpInt(Neg(Zero), Pos(Zero)) 47.49/23.22 new_esEs21(x0, x1, app(ty_[], x2)) 47.49/23.22 new_esEs7(Left(x0), Left(x1), ty_Bool, x2) 47.49/23.22 new_primPlusNat0(Succ(x0), Zero) 47.49/23.22 new_ltEs14(Right(x0), Right(x1), x2, ty_Integer) 47.49/23.22 new_addToFM_C13(x0, x1, x2, x3, x4, True, x5, x6) 47.49/23.22 new_esEs24(x0, x1, app(ty_Maybe, x2)) 47.49/23.22 new_esEs23(x0, x1, ty_Float) 47.49/23.22 new_esEs21(x0, x1, ty_Integer) 47.49/23.22 new_esEs28(x0, x1, ty_@0) 47.49/23.22 new_lt19(x0, x1, ty_Bool) 47.49/23.22 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 47.49/23.22 new_mkVBalBranch3MkVBalBranch12(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, True, x12, x13) 47.49/23.22 new_esEs25(x0, x1, ty_Ordering) 47.49/23.22 new_primCompAux0(x0, x1, x2, x3) 47.49/23.22 new_lt19(x0, x1, ty_Ordering) 47.49/23.22 new_ltEs14(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 47.49/23.22 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.22 new_esEs22(x0, x1, ty_Integer) 47.49/23.22 new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 47.49/23.22 new_esEs31(x0, x1, ty_Double) 47.49/23.22 new_esEs11(False, False) 47.49/23.22 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 47.49/23.22 new_mkVBalBranch3MkVBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, True, x12, x13) 47.49/23.22 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 47.49/23.22 new_ltEs18(x0, x1, app(ty_[], x2)) 47.49/23.22 new_splitGT23(x0, x1, x2, x3, x4, True, x5, x6) 47.49/23.22 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.22 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.22 new_esEs22(x0, x1, app(ty_[], x2)) 47.49/23.22 new_splitLT24(x0, x1, x2, x3, x4, True, x5, x6) 47.49/23.22 new_compare33(x0) 47.49/23.22 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.22 new_esEs9(x0, x1, ty_Integer) 47.49/23.22 new_mkBalBranch(x0, x1, x2, x3, x4, x5) 47.49/23.22 new_splitGT14(x0, x1, x2, x3, True, x4, x5) 47.49/23.22 new_ltEs20(x0, x1, ty_@0) 47.49/23.22 new_ltEs4(Just(x0), Just(x1), ty_Char) 47.49/23.22 new_esEs7(Right(x0), Right(x1), x2, ty_Float) 47.49/23.22 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_lt19(x0, x1, app(ty_Maybe, x2)) 47.49/23.22 new_compare113(x0, x1, True) 47.49/23.22 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.22 new_lt20(x0, x1, ty_Double) 47.49/23.22 new_splitLT14(x0, x1, x2, x3, x4, False, x5, x6) 47.49/23.22 new_ltEs19(x0, x1, ty_Bool) 47.49/23.22 new_ltEs20(x0, x1, ty_Double) 47.49/23.22 new_esEs24(x0, x1, ty_@0) 47.49/23.22 new_splitGT22(x0, x1, x2, x3, x4, False, x5, x6) 47.49/23.22 new_ltEs14(Right(x0), Left(x1), x2, x3) 47.49/23.22 new_ltEs14(Left(x0), Right(x1), x2, x3) 47.49/23.22 new_esEs31(x0, x1, ty_@0) 47.49/23.22 new_lt19(x0, x1, ty_Integer) 47.49/23.22 new_ltEs14(Right(x0), Right(x1), x2, ty_Bool) 47.49/23.22 new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 47.49/23.22 new_esEs22(x0, x1, ty_Ordering) 47.49/23.22 new_mkVBalBranch3Size_r0(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 47.49/23.22 new_splitGT30(Just(x0), x1, x2, x3, x4, Nothing, x5, x6) 47.49/23.22 new_splitLT23(x0, x1, x2, x3, x4, False, x5, x6) 47.49/23.22 new_esEs13(Float(x0, x1), Float(x2, x3)) 47.49/23.22 new_esEs6(Just(x0), Just(x1), ty_Bool) 47.49/23.22 new_esEs30(x0, x1, app(ty_[], x2)) 47.49/23.22 new_compare8(x0, x1) 47.49/23.22 new_esEs15(:%(x0, x1), :%(x2, x3), x4) 47.49/23.22 new_compare([], :(x0, x1), x2) 47.49/23.22 new_splitLT30(Nothing, x0, x1, x2, x3, Nothing, x4, x5) 47.49/23.22 new_esEs29(x0, x1, ty_Float) 47.49/23.22 new_ltEs13(True, True) 47.49/23.22 new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) 47.49/23.22 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.22 new_esEs21(x0, x1, ty_Ordering) 47.49/23.22 new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 47.49/23.22 new_esEs25(x0, x1, ty_Integer) 47.49/23.22 new_esEs25(x0, x1, ty_Char) 47.49/23.22 new_compare17(x0, x1) 47.49/23.22 new_sizeFM(EmptyFM, x0, x1) 47.49/23.22 new_esEs22(x0, x1, ty_@0) 47.49/23.22 new_esEs26(x0, x1, ty_Ordering) 47.49/23.22 new_compare26(x0, x1, False, x2, x3) 47.49/23.22 new_addToFM_C23(x0, x1, x2, x3, x4, True, x5, x6) 47.49/23.22 new_esEs31(x0, x1, ty_Integer) 47.49/23.22 new_splitLT22(x0, x1, x2, x3, x4, x5, False, x6, x7) 47.49/23.22 new_splitGT16(x0, x1, x2, x3, x4, x5, True, x6, x7) 47.49/23.22 new_gt(x0) 47.49/23.22 new_ltEs19(x0, x1, ty_Char) 47.49/23.22 new_compare5(x0, x1, app(ty_Ratio, x2)) 47.49/23.22 new_lt18(x0, x1, x2) 47.49/23.22 new_esEs24(x0, x1, ty_Ordering) 47.49/23.22 new_esEs8(:(x0, x1), [], x2) 47.49/23.22 new_splitGT13(x0, x1, x2, x3, x4, True, x5, x6) 47.49/23.22 new_primCompAux00(x0, EQ) 47.49/23.22 new_esEs31(x0, x1, app(ty_Ratio, x2)) 47.49/23.22 new_esEs22(x0, x1, ty_Bool) 47.49/23.22 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, Branch(x6, x7, x8, x9, x10), x11, False, x12, x13) 47.49/23.22 new_addToFM_C15(x0, x1, x2, x3, x4, x5, True, x6, x7) 47.49/23.22 new_esEs7(Right(x0), Right(x1), x2, ty_@0) 47.49/23.22 new_ltEs4(Just(x0), Just(x1), ty_Int) 47.49/23.22 new_splitLT30(Just(x0), x1, x2, x3, x4, Nothing, x5, x6) 47.49/23.22 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.22 new_primMulNat0(Zero, Zero) 47.49/23.22 new_compare24(x0, x1, True) 47.49/23.22 new_splitGT30(Nothing, x0, x1, x2, x3, Just(x4), x5, x6) 47.49/23.22 new_compare5(x0, x1, ty_@0) 47.49/23.22 new_esEs21(x0, x1, app(ty_Maybe, x2)) 47.49/23.22 new_ltEs18(x0, x1, ty_Float) 47.49/23.22 new_primPlusNat1(Zero, x0) 47.49/23.22 new_esEs29(x0, x1, ty_Ordering) 47.49/23.22 new_esEs24(x0, x1, ty_Int) 47.49/23.22 new_lt8(x0, x1, ty_Double) 47.49/23.22 new_esEs6(Just(x0), Just(x1), ty_Char) 47.49/23.22 new_esEs25(x0, x1, ty_Int) 47.49/23.22 new_esEs29(x0, x1, ty_Int) 47.49/23.22 new_addToFM_C0(EmptyFM, x0, x1, x2, x3) 47.49/23.22 new_esEs9(x0, x1, app(ty_[], x2)) 47.49/23.22 new_esEs31(x0, x1, app(ty_[], x2)) 47.49/23.22 new_esEs23(x0, x1, ty_Char) 47.49/23.22 new_ltEs4(Just(x0), Just(x1), ty_Ordering) 47.49/23.22 new_compare5(x0, x1, ty_Bool) 47.49/23.22 new_ltEs14(Right(x0), Right(x1), x2, ty_Double) 47.49/23.22 new_sr0(Integer(x0), Integer(x1)) 47.49/23.22 new_esEs29(x0, x1, ty_Double) 47.49/23.22 new_fsEs(x0) 47.49/23.22 new_compare9(@0, @0) 47.49/23.22 new_addToFM_C16(x0, x1, x2, x3, x4, x5, x6, False, x7, x8) 47.49/23.22 new_ltEs19(x0, x1, ty_Ordering) 47.49/23.22 new_esEs24(x0, x1, ty_Char) 47.49/23.22 new_addToFM_C25(x0, x1, x2, x3, x4, x5, False, x6, x7) 47.49/23.22 new_compare10(x0, x1, False, x2, x3) 47.49/23.22 new_gt3(x0, x1) 47.49/23.22 new_esEs21(x0, x1, ty_Bool) 47.49/23.22 new_esEs27(x0, x1, app(ty_[], x2)) 47.49/23.22 new_esEs24(x0, x1, ty_Double) 47.49/23.22 new_mkBalBranch6MkBalBranch4(x0, x1, x2, EmptyFM, True, x3, x4) 47.49/23.22 new_addToFM_C0(Branch(Nothing, x0, x1, x2, x3), Nothing, x4, x5, x6) 47.49/23.22 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 47.49/23.22 new_esEs29(x0, x1, ty_Char) 47.49/23.22 new_primPlusNat1(Succ(x0), x1) 47.49/23.22 new_esEs7(Right(x0), Right(x1), x2, ty_Bool) 47.49/23.22 new_esEs23(x0, x1, ty_Int) 47.49/23.22 new_esEs31(x0, x1, ty_Bool) 47.49/23.22 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.22 new_esEs23(x0, x1, ty_@0) 47.49/23.22 new_esEs6(Just(x0), Just(x1), ty_Int) 47.49/23.22 new_ltEs14(Right(x0), Right(x1), x2, ty_Int) 47.49/23.22 new_ltEs19(x0, x1, ty_Int) 47.49/23.22 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.22 new_addToFM_C14(x0, x1, x2, x3, x4, x5, True, x6, x7) 47.49/23.22 new_esEs7(Right(x0), Right(x1), x2, ty_Char) 47.49/23.22 new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 47.49/23.22 new_lt8(x0, x1, app(ty_Ratio, x2)) 47.49/23.22 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.22 new_esEs6(Just(x0), Just(x1), ty_@0) 47.49/23.22 new_ltEs14(Right(x0), Right(x1), x2, ty_Ordering) 47.49/23.22 new_lt8(x0, x1, ty_Ordering) 47.49/23.22 new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 47.49/23.22 new_primPlusNat0(Zero, Zero) 47.49/23.22 new_esEs22(x0, x1, app(ty_Maybe, x2)) 47.49/23.22 new_lt20(x0, x1, app(ty_[], x2)) 47.49/23.22 new_lt8(x0, x1, ty_Int) 47.49/23.22 new_esEs30(x0, x1, ty_Int) 47.49/23.22 new_lt19(x0, x1, ty_@0) 47.49/23.22 new_not(True) 47.49/23.22 new_esEs7(Right(x0), Right(x1), x2, ty_Integer) 47.49/23.22 new_primCmpInt1(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) 47.49/23.22 new_lt19(x0, x1, app(ty_[], x2)) 47.49/23.22 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.22 new_esEs23(x0, x1, ty_Bool) 47.49/23.22 new_esEs22(x0, x1, ty_Char) 47.49/23.22 new_esEs12(EQ, GT) 47.49/23.22 new_esEs12(GT, EQ) 47.49/23.22 new_compare112(x0, x1, True, x2, x3, x4) 47.49/23.22 new_addToFM_C26(x0, x1, x2, x3, x4, x5, False, x6, x7) 47.49/23.22 new_lt19(x0, x1, ty_Float) 47.49/23.22 new_ltEs13(False, False) 47.49/23.22 new_compare112(x0, x1, False, x2, x3, x4) 47.49/23.22 new_esEs25(x0, x1, ty_Double) 47.49/23.22 new_ltEs14(Right(x0), Right(x1), x2, app(ty_[], x3)) 47.49/23.22 new_esEs25(x0, x1, ty_@0) 47.49/23.22 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.22 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.22 new_addToFM_C24(x0, x1, x2, x3, x4, x5, x6, False, x7, x8) 47.49/23.22 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 47.49/23.22 new_esEs11(True, True) 47.49/23.22 new_splitLT23(x0, x1, x2, x3, x4, True, x5, x6) 47.49/23.22 new_compare27(x0, x1, True, x2, x3) 47.49/23.22 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.22 new_compare(:(x0, x1), :(x2, x3), x4) 47.49/23.22 new_ltEs14(Left(x0), Left(x1), ty_Bool, x2) 47.49/23.22 new_ltEs15(GT, EQ) 47.49/23.22 new_esEs23(x0, x1, ty_Double) 47.49/23.22 new_ltEs15(EQ, GT) 47.49/23.22 new_esEs21(x0, x1, ty_Char) 47.49/23.22 new_esEs11(False, True) 47.49/23.22 new_esEs11(True, False) 47.49/23.22 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_compare113(x0, x1, False) 47.49/23.22 new_ltEs14(Left(x0), Left(x1), ty_Integer, x2) 47.49/23.22 new_lt8(x0, x1, ty_Char) 47.49/23.22 new_splitGT30(Nothing, x0, x1, x2, x3, Nothing, x4, x5) 47.49/23.22 new_ltEs20(x0, x1, ty_Integer) 47.49/23.22 new_esEs22(x0, x1, app(ty_Ratio, x2)) 47.49/23.22 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.22 new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) 47.49/23.22 new_esEs30(x0, x1, ty_Double) 47.49/23.22 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.22 new_esEs26(x0, x1, ty_Int) 47.49/23.22 new_primPlusNat0(Zero, Succ(x0)) 47.49/23.22 new_esEs23(x0, x1, app(ty_Maybe, x2)) 47.49/23.22 new_compare5(x0, x1, ty_Integer) 47.49/23.22 new_compare25(Nothing, Nothing, False, x0) 47.49/23.22 new_esEs30(x0, x1, ty_Char) 47.49/23.22 new_primCmpNat0(Succ(x0), Succ(x1)) 47.49/23.22 new_splitGT24(x0, x1, x2, x3, x4, x5, False, x6, x7) 47.49/23.22 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, EmptyFM, x6, False, x7, x8) 47.49/23.22 new_mkVBalBranch3MkVBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, False, x12, x13) 47.49/23.22 new_compare31(x0, x1) 47.49/23.22 new_ltEs14(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 47.49/23.22 new_esEs9(x0, x1, ty_@0) 47.49/23.22 new_splitLT5(EmptyFM, x0, x1, x2) 47.49/23.22 new_ltEs4(Nothing, Nothing, x0) 47.49/23.22 new_esEs12(LT, LT) 47.49/23.22 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.22 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_esEs21(x0, x1, ty_Int) 47.49/23.22 new_esEs26(x0, x1, ty_Double) 47.49/23.22 new_esEs22(x0, x1, ty_Int) 47.49/23.22 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_esEs26(x0, x1, ty_Char) 47.49/23.22 new_esEs21(x0, x1, ty_@0) 47.49/23.22 new_splitGT30(Just(x0), x1, x2, x3, x4, Just(x5), x6, x7) 47.49/23.22 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 47.49/23.22 new_lt14(x0, x1) 47.49/23.22 new_esEs9(x0, x1, ty_Float) 47.49/23.22 new_splitGT16(x0, x1, x2, x3, x4, x5, False, x6, x7) 47.49/23.22 new_esEs20(x0, x1, ty_Int) 47.49/23.22 new_primCmpInt(Pos(Zero), Pos(Zero)) 47.49/23.22 new_esEs30(x0, x1, app(ty_Ratio, x2)) 47.49/23.22 new_ltEs14(Left(x0), Left(x1), app(ty_[], x2), x3) 47.49/23.22 new_esEs26(x0, x1, app(ty_Maybe, x2)) 47.49/23.22 new_gt1(x0, x1) 47.49/23.22 new_ltEs14(Right(x0), Right(x1), x2, ty_@0) 47.49/23.22 new_esEs20(x0, x1, ty_Integer) 47.49/23.22 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_compare16(x0, x1, x2, x3) 47.49/23.22 new_esEs32(x0, x1, ty_Int) 47.49/23.22 new_esEs22(x0, x1, ty_Double) 47.49/23.22 new_mkBalBranch6MkBalBranch3(x0, x1, x2, x3, False, x4, x5) 47.49/23.22 new_esEs31(x0, x1, ty_Int) 47.49/23.22 new_esEs27(x0, x1, ty_Double) 47.49/23.22 new_esEs14(@0, @0) 47.49/23.22 new_pePe(False, x0) 47.49/23.22 new_ltEs9(x0, x1) 47.49/23.22 new_esEs22(x0, x1, ty_Float) 47.49/23.22 new_addToFM_C23(x0, x1, x2, x3, x4, False, x5, x6) 47.49/23.22 new_compare29(x0, x1, False) 47.49/23.22 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 47.49/23.22 new_mkBranchUnbox(x0, x1, x2, x3, x4, x5) 47.49/23.22 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_esEs6(Nothing, Nothing, x0) 47.49/23.22 new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 47.49/23.22 new_esEs16(x0, x1) 47.49/23.22 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.22 new_esEs26(x0, x1, ty_Bool) 47.49/23.22 new_lt10(x0, x1) 47.49/23.22 new_splitLT16(x0, x1, x2, x3, False, x4, x5) 47.49/23.22 new_addToFM_C15(x0, x1, x2, x3, x4, x5, False, x6, x7) 47.49/23.22 new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) 47.49/23.22 new_esEs26(x0, x1, ty_@0) 47.49/23.22 new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 47.49/23.22 new_compare25(Nothing, Just(x0), False, x1) 47.49/23.22 new_ltEs18(x0, x1, ty_@0) 47.49/23.22 new_esEs32(x0, x1, app(ty_Maybe, x2)) 47.49/23.22 new_esEs31(x0, x1, ty_Char) 47.49/23.22 new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 47.49/23.22 new_esEs30(x0, x1, app(ty_Maybe, x2)) 47.49/23.22 new_ltEs18(x0, x1, ty_Bool) 47.49/23.22 new_esEs32(x0, x1, ty_Ordering) 47.49/23.22 new_compare5(x0, x1, ty_Float) 47.49/23.22 new_esEs10(Integer(x0), Integer(x1)) 47.49/23.22 new_ltEs14(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 47.49/23.22 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.22 new_compare32(x0, x1) 47.49/23.22 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 47.49/23.22 new_esEs21(x0, x1, ty_Double) 47.49/23.22 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 47.49/23.22 new_ltEs4(Just(x0), Just(x1), ty_@0) 47.49/23.22 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.22 new_mkVBalBranch3MkVBalBranch21(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, False, x12, x13) 47.49/23.22 new_lt20(x0, x1, ty_Float) 47.49/23.22 new_addToFM_C16(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) 47.49/23.22 new_esEs26(x0, x1, ty_Integer) 47.49/23.22 new_primCmpInt1(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9) 47.49/23.22 new_ltEs10(x0, x1) 47.49/23.22 new_compare5(x0, x1, ty_Int) 47.49/23.22 new_compare114(x0, x1, True, x2, x3) 47.49/23.22 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 47.49/23.22 new_ltEs8(x0, x1, x2) 47.49/23.22 new_lt20(x0, x1, ty_Ordering) 47.49/23.22 new_ltEs15(EQ, LT) 47.49/23.22 new_ltEs15(LT, EQ) 47.49/23.22 new_esEs30(x0, x1, ty_Bool) 47.49/23.22 new_primCmpInt0(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9) 47.49/23.22 new_esEs23(x0, x1, ty_Integer) 47.49/23.22 new_ltEs14(Left(x0), Left(x1), ty_Char, x2) 47.49/23.22 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 47.49/23.22 new_splitGT4(EmptyFM, x0, x1) 47.49/23.22 new_esEs25(x0, x1, app(ty_Ratio, x2)) 47.49/23.22 new_lt20(x0, x1, app(ty_Ratio, x2)) 47.49/23.22 new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_addToFM_C24(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) 47.49/23.22 new_esEs24(x0, x1, ty_Bool) 47.49/23.22 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 47.49/23.22 new_ltEs15(GT, GT) 47.49/23.22 new_esEs7(Left(x0), Right(x1), x2, x3) 47.49/23.22 new_esEs7(Right(x0), Left(x1), x2, x3) 47.49/23.22 new_esEs27(x0, x1, ty_Ordering) 47.49/23.22 new_gt0(x0, x1) 47.49/23.22 new_esEs7(Right(x0), Right(x1), x2, ty_Double) 47.49/23.22 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_primCmpInt2(x0, x1) 47.49/23.22 new_compare5(x0, x1, ty_Char) 47.49/23.22 new_lt20(x0, x1, ty_Integer) 47.49/23.22 new_esEs32(x0, x1, ty_Char) 47.49/23.22 new_ltEs19(x0, x1, ty_@0) 47.49/23.22 new_ltEs20(x0, x1, app(ty_[], x2)) 47.49/23.22 new_esEs7(Left(x0), Left(x1), ty_@0, x2) 47.49/23.22 new_addToFM(x0, x1, x2, x3, x4) 47.49/23.22 new_splitGT15(x0, x1, x2, x3, x4, False, x5, x6) 47.49/23.22 new_lt12(x0, x1, x2) 47.49/23.22 new_ltEs14(Left(x0), Left(x1), ty_Int, x2) 47.49/23.22 new_esEs29(x0, x1, app(ty_[], x2)) 47.49/23.22 new_primMinusNat0(Succ(x0), Zero) 47.49/23.22 new_ltEs16(x0, x1) 47.49/23.22 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 47.49/23.22 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.22 new_lt11(x0, x1) 47.49/23.22 new_ltEs18(x0, x1, ty_Integer) 47.49/23.22 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) 47.49/23.22 new_primEqNat0(Zero, Zero) 47.49/23.22 new_ltEs4(Just(x0), Nothing, x1) 47.49/23.22 new_esEs23(x0, x1, ty_Ordering) 47.49/23.22 new_esEs8(:(x0, x1), :(x2, x3), x4) 47.49/23.22 new_esEs7(Left(x0), Left(x1), ty_Double, x2) 47.49/23.22 new_primCmpInt1(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) 47.49/23.22 new_not(False) 47.49/23.22 new_esEs23(x0, x1, app(ty_Ratio, x2)) 47.49/23.22 new_primCmpInt0(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) 47.49/23.22 new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) 47.49/23.22 new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 47.49/23.22 new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 47.49/23.22 new_esEs24(x0, x1, app(ty_[], x2)) 47.49/23.22 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_primCmpInt3(x0, x1) 47.49/23.22 new_esEs28(x0, x1, app(ty_[], x2)) 47.49/23.22 new_ltEs14(Left(x0), Left(x1), ty_Float, x2) 47.49/23.22 new_mkVBalBranch3MkVBalBranch12(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, False, x12, x13) 47.49/23.22 new_mkBalBranch6MkBalBranch3(x0, x1, Branch(x2, x3, x4, x5, x6), x7, True, x8, x9) 47.49/23.22 new_ltEs20(x0, x1, ty_Bool) 47.49/23.22 new_ltEs19(x0, x1, ty_Double) 47.49/23.22 new_splitGT23(x0, x1, x2, x3, x4, False, x5, x6) 47.49/23.22 new_esEs30(x0, x1, ty_Integer) 47.49/23.22 new_esEs28(x0, x1, app(ty_Ratio, x2)) 47.49/23.22 new_ltEs20(x0, x1, ty_Float) 47.49/23.22 new_esEs25(x0, x1, app(ty_Maybe, x2)) 47.49/23.22 new_compare11(Integer(x0), Integer(x1)) 47.49/23.22 new_compare13(x0, x1, x2, x3, x4) 47.49/23.22 new_primCompAux00(x0, LT) 47.49/23.22 new_splitGT24(x0, x1, x2, x3, x4, x5, True, x6, x7) 47.49/23.22 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.22 new_compare110(x0, x1, True) 47.49/23.22 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.22 new_primCmpInt0(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) 47.49/23.22 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.22 new_sizeFM1(EmptyFM, x0, x1) 47.49/23.22 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_ltEs15(LT, LT) 47.49/23.22 new_esEs6(Just(x0), Just(x1), ty_Double) 47.49/23.22 new_lt20(x0, x1, ty_Int) 47.49/23.22 new_lt9(x0, x1) 47.49/23.22 new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) 47.49/23.22 new_ltEs20(x0, x1, ty_Char) 47.49/23.22 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_compare25(Just(x0), Just(x1), False, x2) 47.49/23.22 new_esEs28(x0, x1, ty_Int) 47.49/23.22 new_sizeFM1(Branch(x0, x1, x2, x3, x4), x5, x6) 47.49/23.22 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.22 new_splitGT5(Branch(x0, x1, x2, x3, x4), x5, x6, x7) 47.49/23.22 new_lt20(x0, x1, ty_Bool) 47.49/23.22 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, EmptyFM, x6, False, x7, x8) 47.49/23.22 new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 47.49/23.22 new_esEs31(x0, x1, ty_Float) 47.49/23.22 new_esEs29(x0, x1, ty_@0) 47.49/23.22 new_ltEs18(x0, x1, ty_Ordering) 47.49/23.22 new_primCmpInt1(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9) 47.49/23.22 new_lt20(x0, x1, ty_Char) 47.49/23.22 new_compare24(x0, x1, False) 47.49/23.22 new_splitLT15(x0, x1, x2, x3, x4, x5, False, x6, x7) 47.49/23.22 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 47.49/23.22 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 47.49/23.22 new_compare12(x0, x1, x2, x3) 47.49/23.22 new_compare111(x0, x1, False, x2) 47.49/23.22 new_lt20(x0, x1, app(ty_Maybe, x2)) 47.49/23.22 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 47.49/23.22 new_addToFM_C14(x0, x1, x2, x3, x4, x5, False, x6, x7) 47.49/23.22 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 47.49/23.22 new_esEs24(x0, x1, ty_Float) 47.49/23.22 new_primPlusNat0(Succ(x0), Succ(x1)) 47.49/23.22 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 47.49/23.22 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 47.49/23.22 new_mkVBalBranch3MkVBalBranch22(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, True, x12, x13) 47.49/23.22 new_addToFM_C25(x0, x1, x2, x3, x4, x5, True, x6, x7) 47.49/23.22 new_primMulInt(Pos(x0), Neg(x1)) 47.49/23.22 new_primMulInt(Neg(x0), Pos(x1)) 47.49/23.22 new_ltEs4(Just(x0), Just(x1), ty_Double) 47.49/23.22 new_esEs31(x0, x1, app(ty_Maybe, x2)) 47.49/23.22 new_esEs19(x0, x1, ty_Int) 47.49/23.22 new_addToFM0(x0, x1, x2) 47.49/23.22 new_ltEs14(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 47.49/23.22 new_esEs30(x0, x1, ty_Ordering) 47.49/23.22 new_primCmpInt0(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9) 47.49/23.22 new_primMulNat0(Zero, Succ(x0)) 47.49/23.22 new_primCmpNat0(Zero, Zero) 47.49/23.22 new_primEqNat0(Zero, Succ(x0)) 47.49/23.22 new_sizeFM0(x0, x1, x2, x3, x4, x5, x6) 47.49/23.22 new_esEs28(x0, x1, ty_Float) 47.49/23.22 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.22 new_ltEs20(x0, x1, ty_Int) 47.49/23.22 new_splitGT4(Branch(x0, x1, x2, x3, x4), x5, x6) 47.49/23.22 new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 47.49/23.22 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.22 47.49/23.22 We have to consider all minimal (P,Q,R)-chains. 47.49/23.22 ---------------------------------------- 47.49/23.22 47.49/23.22 (21) QDPSizeChangeProof (EQUIVALENT) 47.49/23.22 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. 47.49/23.22 47.49/23.22 From the DPs we obtained the following set of size-change graphs: 47.49/23.22 *new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba) -> new_plusFM(new_splitGT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba), yvy44, h, ba) 47.49/23.22 The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4 47.49/23.22 47.49/23.22 47.49/23.22 *new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba) -> new_plusFM(new_splitLT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba), yvy43, h, ba) 47.49/23.22 The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4 47.49/23.22 47.49/23.22 47.49/23.22 ---------------------------------------- 47.49/23.22 47.49/23.22 (22) 47.49/23.22 YES 47.49/23.22 47.49/23.22 ---------------------------------------- 47.49/23.22 47.49/23.22 (23) 47.49/23.22 Obligation: 47.49/23.22 Q DP problem: 47.49/23.22 The TRS P consists of the following rules: 47.49/23.22 47.49/23.22 new_splitGT3(Nothing, yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitGT1(yvy31, yvy32, yvy33, yvy34, new_esEs12(new_compare33(h), LT), h, ba) 47.49/23.22 new_splitGT20(yvy31, yvy32, yvy33, Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, True, h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Just(yvy400), h, ba) 47.49/23.22 new_splitGT2(yvy300, yvy31, yvy32, yvy33, Branch(yvy340, yvy341, yvy342, yvy343, yvy344), True, h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Nothing, h, ba) 47.49/23.22 new_splitGT(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Nothing, h, ba) 47.49/23.22 new_splitGT3(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitGT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare25(Just(yvy400), Just(yvy300), new_esEs32(yvy400, yvy300, h), h), GT), h, ba) 47.49/23.22 new_splitGT1(yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_splitGT(yvy33, h, ba) 47.49/23.22 new_splitGT12(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, bb, bc) -> new_splitGT0(yvy18, yvy20, bb, bc) 47.49/23.22 new_splitGT21(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, bb, bc) -> new_splitGT0(yvy19, yvy20, bb, bc) 47.49/23.22 new_splitGT10(yvy300, yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_splitGT(yvy33, h, ba) 47.49/23.22 new_splitGT21(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, False, bb, bc) -> new_splitGT12(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, new_esEs12(new_compare30(yvy20, yvy15, bb), LT), bb, bc) 47.49/23.22 new_splitGT3(Nothing, yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitGT20(yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare25(Just(yvy400), Nothing, False, h), GT), h, ba) 47.49/23.22 new_splitGT20(yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba) -> new_splitGT11(yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare32(yvy400, h), LT), h, ba) 47.49/23.22 new_splitGT11(yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba) -> new_splitGT0(yvy33, yvy400, h, ba) 47.49/23.22 new_splitGT2(yvy300, yvy31, yvy32, yvy33, yvy34, False, h, ba) -> new_splitGT10(yvy300, yvy31, yvy32, yvy33, yvy34, new_esEs12(new_compare31(yvy300, h), LT), h, ba) 47.49/23.22 new_splitGT3(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitGT2(yvy300, yvy31, yvy32, yvy33, yvy34, new_esEs12(new_compare25(Nothing, Just(yvy300), False, h), GT), h, ba) 47.49/23.22 new_splitGT0(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Just(yvy400), h, ba) 47.49/23.22 47.49/23.22 The TRS R consists of the following rules: 47.49/23.22 47.49/23.22 new_esEs22(yvy4002, yvy3002, app(ty_[], cad)) -> new_esEs8(yvy4002, yvy3002, cad) 47.49/23.22 new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) 47.49/23.22 new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT 47.49/23.22 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 47.49/23.22 new_primPlusNat0(Zero, Zero) -> Zero 47.49/23.22 new_compare13(yvy49000, yvy50000, bcb, bcc, bcd) -> new_compare28(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, bcb, bcc, bcd), bcb, bcc, bcd) 47.49/23.22 new_esEs23(yvy4001, yvy3001, app(ty_Maybe, cah)) -> new_esEs6(yvy4001, yvy3001, cah) 47.49/23.22 new_pePe(True, yvy220) -> True 47.49/23.22 new_ltEs20(yvy49002, yvy50002, ty_Ordering) -> new_ltEs15(yvy49002, yvy50002) 47.49/23.22 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.22 new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) 47.49/23.22 new_compare26(yvy49000, yvy50000, False, bbh, bca) -> new_compare114(yvy49000, yvy50000, new_ltEs14(yvy49000, yvy50000, bbh, bca), bbh, bca) 47.49/23.22 new_lt20(yvy49001, yvy50001, ty_Ordering) -> new_lt17(yvy49001, yvy50001) 47.49/23.22 new_esEs30(yvy20, yvy15, app(app(ty_@2, ddd), dde)) -> new_esEs4(yvy20, yvy15, ddd, dde) 47.49/23.22 new_compare(:(yvy49000, yvy49001), [], bf) -> GT 47.49/23.22 new_ltEs20(yvy49002, yvy50002, app(app(ty_@2, dbg), dbh)) -> new_ltEs11(yvy49002, yvy50002, dbg, dbh) 47.49/23.22 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 47.49/23.22 new_ltEs14(Right(yvy49000), Left(yvy50000), hd, ga) -> False 47.49/23.22 new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Ratio, hc), ga) -> new_ltEs17(yvy49000, yvy50000, hc) 47.49/23.22 new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT 47.49/23.22 new_lt20(yvy49001, yvy50001, app(ty_Ratio, dbe)) -> new_lt18(yvy49001, yvy50001, dbe) 47.49/23.22 new_compare(:(yvy49000, yvy49001), :(yvy50000, yvy50001), bf) -> new_primCompAux0(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, bf), bf) 47.49/23.22 new_compare26(yvy49000, yvy50000, True, bbh, bca) -> EQ 47.49/23.22 new_esEs8(:(yvy4000, yvy4001), :(yvy3000, yvy3001), ee) -> new_asAs(new_esEs9(yvy4000, yvy3000, ee), new_esEs8(yvy4001, yvy3001, ee)) 47.49/23.22 new_compare27(yvy49000, yvy50000, False, bd, be) -> new_compare10(yvy49000, yvy50000, new_ltEs11(yvy49000, yvy50000, bd, be), bd, be) 47.49/23.22 new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) 47.49/23.22 new_esEs30(yvy20, yvy15, ty_Float) -> new_esEs13(yvy20, yvy15) 47.49/23.22 new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.22 new_ltEs4(Nothing, Nothing, db) -> True 47.49/23.22 new_ltEs4(Just(yvy49000), Nothing, db) -> False 47.49/23.22 new_lt8(yvy49000, yvy50000, app(app(ty_@2, bd), be)) -> new_lt4(yvy49000, yvy50000, bd, be) 47.49/23.22 new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat1(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) 47.49/23.22 new_compare113(yvy49000, yvy50000, False) -> GT 47.49/23.22 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Int) -> new_ltEs7(yvy49000, yvy50000) 47.49/23.22 new_ltEs15(EQ, LT) -> False 47.49/23.22 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.22 new_esEs28(yvy49000, yvy50000, app(app(ty_Either, daa), dab)) -> new_esEs7(yvy49000, yvy50000, daa, dab) 47.49/23.22 new_lt19(yvy49000, yvy50000, app(app(ty_@2, chc), chd)) -> new_lt4(yvy49000, yvy50000, chc, chd) 47.49/23.22 new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.22 new_ltEs20(yvy49002, yvy50002, app(app(ty_Either, dce), dcf)) -> new_ltEs14(yvy49002, yvy50002, dce, dcf) 47.49/23.22 new_esEs28(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) 47.49/23.22 new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Maybe, ea)) -> new_ltEs4(yvy49000, yvy50000, ea) 47.49/23.22 new_ltEs19(yvy49001, yvy50001, ty_Ordering) -> new_ltEs15(yvy49001, yvy50001) 47.49/23.22 new_ltEs18(yvy4900, yvy5000, ty_Float) -> new_ltEs5(yvy4900, yvy5000) 47.49/23.22 new_lt9(yvy49000, yvy50000) -> new_esEs12(new_compare6(yvy49000, yvy50000), LT) 47.49/23.22 new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False 47.49/23.22 new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False 47.49/23.22 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(ty_Ratio, baf)) -> new_ltEs17(yvy49000, yvy50000, baf) 47.49/23.22 new_ltEs15(GT, LT) -> False 47.49/23.22 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.22 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.22 new_lt19(yvy49000, yvy50000, app(ty_Ratio, dac)) -> new_lt18(yvy49000, yvy50000, dac) 47.49/23.22 new_esEs24(yvy4000, yvy3000, app(ty_Ratio, cce)) -> new_esEs15(yvy4000, yvy3000, cce) 47.49/23.22 new_esEs24(yvy4000, yvy3000, app(app(ty_@2, ccc), ccd)) -> new_esEs4(yvy4000, yvy3000, ccc, ccd) 47.49/23.22 new_ltEs13(True, True) -> True 47.49/23.22 new_compare29(yvy49000, yvy50000, False) -> new_compare113(yvy49000, yvy50000, new_ltEs15(yvy49000, yvy50000)) 47.49/23.22 new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) 47.49/23.22 new_lt15(yvy49000, yvy50000, bah) -> new_esEs12(new_compare15(yvy49000, yvy50000, bah), LT) 47.49/23.22 new_ltEs20(yvy49002, yvy50002, ty_Integer) -> new_ltEs10(yvy49002, yvy50002) 47.49/23.22 new_ltEs19(yvy49001, yvy50001, app(app(ty_@2, bda), bdb)) -> new_ltEs11(yvy49001, yvy50001, bda, bdb) 47.49/23.22 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Bool) -> new_ltEs13(yvy49000, yvy50000) 47.49/23.22 new_not(True) -> False 47.49/23.22 new_esEs28(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) 47.49/23.22 new_esEs28(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) 47.49/23.22 new_ltEs19(yvy49001, yvy50001, app(ty_Ratio, bea)) -> new_ltEs17(yvy49001, yvy50001, bea) 47.49/23.22 new_primCompAux00(yvy225, LT) -> LT 47.49/23.22 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.22 new_primCmpNat0(Zero, Zero) -> EQ 47.49/23.22 new_esEs32(yvy400, yvy300, ty_Ordering) -> new_esEs12(yvy400, yvy300) 47.49/23.22 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Ordering, bee) -> new_esEs12(yvy4000, yvy3000) 47.49/23.22 new_esEs28(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) 47.49/23.22 new_lt20(yvy49001, yvy50001, ty_Bool) -> new_lt14(yvy49001, yvy50001) 47.49/23.22 new_esEs27(yvy49001, yvy50001, ty_Bool) -> new_esEs11(yvy49001, yvy50001) 47.49/23.22 new_ltEs19(yvy49001, yvy50001, ty_Integer) -> new_ltEs10(yvy49001, yvy50001) 47.49/23.22 new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.49/23.22 new_esEs27(yvy49001, yvy50001, app(ty_[], dad)) -> new_esEs8(yvy49001, yvy50001, dad) 47.49/23.22 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.22 new_esEs27(yvy49001, yvy50001, ty_Char) -> new_esEs17(yvy49001, yvy50001) 47.49/23.22 new_esEs30(yvy20, yvy15, app(ty_Ratio, ddf)) -> new_esEs15(yvy20, yvy15, ddf) 47.49/23.22 new_esEs12(LT, LT) -> True 47.49/23.22 new_esEs21(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) 47.49/23.22 new_primEqNat0(Succ(yvy40000), Zero) -> False 47.49/23.22 new_primEqNat0(Zero, Succ(yvy30000)) -> False 47.49/23.22 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(app(app(ty_@3, hh), baa), bab)) -> new_ltEs12(yvy49000, yvy50000, hh, baa, bab) 47.49/23.22 new_esEs14(@0, @0) -> True 47.49/23.22 new_compare8(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) 47.49/23.22 new_ltEs19(yvy49001, yvy50001, ty_Char) -> new_ltEs6(yvy49001, yvy50001) 47.49/23.22 new_compare10(yvy49000, yvy50000, True, bd, be) -> LT 47.49/23.22 new_ltEs15(GT, EQ) -> False 47.49/23.22 new_lt20(yvy49001, yvy50001, app(app(app(ty_@3, dag), dah), dba)) -> new_lt13(yvy49001, yvy50001, dag, dah, dba) 47.49/23.22 new_primCompAux00(yvy225, GT) -> GT 47.49/23.22 new_compare110(yvy49000, yvy50000, True) -> LT 47.49/23.22 new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, cef), ceg), ceh)) -> new_esEs5(yvy4001, yvy3001, cef, ceg, ceh) 47.49/23.22 new_compare16(yvy49000, yvy50000, bbh, bca) -> new_compare26(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, bbh, bca), bbh, bca) 47.49/23.22 new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.22 new_esEs27(yvy49001, yvy50001, ty_Ordering) -> new_esEs12(yvy49001, yvy50001) 47.49/23.22 new_lt19(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) 47.49/23.22 new_ltEs20(yvy49002, yvy50002, ty_Bool) -> new_ltEs13(yvy49002, yvy50002) 47.49/23.22 new_esEs22(yvy4002, yvy3002, ty_Int) -> new_esEs16(yvy4002, yvy3002) 47.49/23.22 new_ltEs18(yvy4900, yvy5000, ty_Double) -> new_ltEs16(yvy4900, yvy5000) 47.49/23.22 new_esEs32(yvy400, yvy300, ty_@0) -> new_esEs14(yvy400, yvy300) 47.49/23.22 new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT 47.49/23.22 new_esEs27(yvy49001, yvy50001, ty_Int) -> new_esEs16(yvy49001, yvy50001) 47.49/23.22 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, app(ty_Ratio, bgd)) -> new_esEs15(yvy4000, yvy3000, bgd) 47.49/23.22 new_esEs22(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) 47.49/23.22 new_compare12(yvy49000, yvy50000, bd, be) -> new_compare27(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, bd, be), bd, be) 47.49/23.22 new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, cbg), cbh), cca)) -> new_esEs5(yvy4000, yvy3000, cbg, cbh, cca) 47.49/23.22 new_lt19(yvy49000, yvy50000, app(app(app(ty_@3, che), chf), chg)) -> new_lt13(yvy49000, yvy50000, che, chf, chg) 47.49/23.22 new_ltEs20(yvy49002, yvy50002, app(app(app(ty_@3, dca), dcb), dcc)) -> new_ltEs12(yvy49002, yvy50002, dca, dcb, dcc) 47.49/23.22 new_esEs30(yvy20, yvy15, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs5(yvy20, yvy15, dch, dda, ddb) 47.49/23.22 new_esEs30(yvy20, yvy15, ty_Double) -> new_esEs18(yvy20, yvy15) 47.49/23.22 new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bgh, bha, bhb) -> new_asAs(new_esEs24(yvy4000, yvy3000, bgh), new_asAs(new_esEs23(yvy4001, yvy3001, bha), new_esEs22(yvy4002, yvy3002, bhb))) 47.49/23.22 new_compare5(yvy49000, yvy50000, ty_Int) -> new_compare8(yvy49000, yvy50000) 47.49/23.22 new_compare32(yvy400, h) -> new_compare25(Just(yvy400), Nothing, False, h) 47.49/23.22 new_ltEs19(yvy49001, yvy50001, ty_Bool) -> new_ltEs13(yvy49001, yvy50001) 47.49/23.22 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, app(app(app(ty_@3, bff), bfg), bfh)) -> new_esEs5(yvy4000, yvy3000, bff, bfg, bfh) 47.49/23.22 new_ltEs18(yvy4900, yvy5000, ty_Integer) -> new_ltEs10(yvy4900, yvy5000) 47.49/23.22 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.22 new_esEs26(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.22 new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.22 new_esEs7(Left(yvy4000), Left(yvy3000), ty_@0, bee) -> new_esEs14(yvy4000, yvy3000) 47.49/23.22 new_esEs32(yvy400, yvy300, app(ty_[], ee)) -> new_esEs8(yvy400, yvy300, ee) 47.49/23.22 new_primCmpNat0(Zero, Succ(yvy5000)) -> LT 47.49/23.22 new_compare5(yvy49000, yvy50000, app(ty_Ratio, da)) -> new_compare19(yvy49000, yvy50000, da) 47.49/23.22 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.22 new_esEs26(yvy4000, yvy3000, app(ty_[], cha)) -> new_esEs8(yvy4000, yvy3000, cha) 47.49/23.22 new_esEs12(EQ, GT) -> False 47.49/23.22 new_esEs12(GT, EQ) -> False 47.49/23.22 new_lt8(yvy49000, yvy50000, app(ty_Ratio, bcg)) -> new_lt18(yvy49000, yvy50000, bcg) 47.49/23.22 new_ltEs19(yvy49001, yvy50001, app(app(app(ty_@3, bdc), bdd), bde)) -> new_ltEs12(yvy49001, yvy50001, bdc, bdd, bde) 47.49/23.22 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) 47.49/23.22 new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.22 new_lt8(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) 47.49/23.22 new_esEs21(yvy49000, yvy50000, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs5(yvy49000, yvy50000, bcb, bcc, bcd) 47.49/23.22 new_lt19(yvy49000, yvy50000, app(ty_[], chb)) -> new_lt12(yvy49000, yvy50000, chb) 47.49/23.22 new_primCmpNat0(Succ(yvy4900), Zero) -> GT 47.49/23.22 new_pePe(False, yvy220) -> yvy220 47.49/23.22 new_esEs27(yvy49001, yvy50001, ty_@0) -> new_esEs14(yvy49001, yvy50001) 47.49/23.22 new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Maybe, gh), ga) -> new_ltEs4(yvy49000, yvy50000, gh) 47.49/23.22 new_esEs11(False, True) -> False 47.49/23.22 new_esEs11(True, False) -> False 47.49/23.22 new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cea), ceb)) -> new_esEs7(yvy4000, yvy3000, cea, ceb) 47.49/23.22 new_lt8(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) 47.49/23.22 new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_@2, beg), beh), bee) -> new_esEs4(yvy4000, yvy3000, beg, beh) 47.49/23.22 new_compare114(yvy49000, yvy50000, True, bbh, bca) -> LT 47.49/23.22 new_lt8(yvy49000, yvy50000, app(app(ty_Either, bbh), bca)) -> new_lt16(yvy49000, yvy50000, bbh, bca) 47.49/23.22 new_ltEs18(yvy4900, yvy5000, ty_@0) -> new_ltEs9(yvy4900, yvy5000) 47.49/23.22 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_@0) -> new_ltEs9(yvy49000, yvy50000) 47.49/23.22 new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 47.49/23.22 new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) 47.49/23.22 new_ltEs7(yvy4900, yvy5000) -> new_fsEs(new_compare8(yvy4900, yvy5000)) 47.49/23.22 new_ltEs19(yvy49001, yvy50001, ty_Double) -> new_ltEs16(yvy49001, yvy50001) 47.49/23.22 new_esEs22(yvy4002, yvy3002, ty_Bool) -> new_esEs11(yvy4002, yvy3002) 47.49/23.22 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Char) -> new_ltEs6(yvy49000, yvy50000) 47.49/23.22 new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_[], gb), ga) -> new_ltEs8(yvy49000, yvy50000, gb) 47.49/23.22 new_esEs21(yvy49000, yvy50000, app(ty_[], bcf)) -> new_esEs8(yvy49000, yvy50000, bcf) 47.49/23.22 new_esEs22(yvy4002, yvy3002, app(ty_Maybe, bhf)) -> new_esEs6(yvy4002, yvy3002, bhf) 47.49/23.22 new_esEs21(yvy49000, yvy50000, app(app(ty_@2, bd), be)) -> new_esEs4(yvy49000, yvy50000, bd, be) 47.49/23.22 new_esEs32(yvy400, yvy300, app(ty_Maybe, cda)) -> new_esEs6(yvy400, yvy300, cda) 47.49/23.22 new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False 47.49/23.22 new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False 47.49/23.22 new_esEs25(yvy4001, yvy3001, app(app(ty_@2, cfb), cfc)) -> new_esEs4(yvy4001, yvy3001, cfb, cfc) 47.49/23.22 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Bool, bee) -> new_esEs11(yvy4000, yvy3000) 47.49/23.22 new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Ratio, bfa), bee) -> new_esEs15(yvy4000, yvy3000, bfa) 47.49/23.22 new_ltEs18(yvy4900, yvy5000, ty_Bool) -> new_ltEs13(yvy4900, yvy5000) 47.49/23.22 new_ltEs18(yvy4900, yvy5000, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_ltEs12(yvy4900, yvy5000, bbd, bbe, bbf) 47.49/23.22 new_esEs23(yvy4001, yvy3001, app(app(ty_Either, cbd), cbe)) -> new_esEs7(yvy4001, yvy3001, cbd, cbe) 47.49/23.22 new_esEs21(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) 47.49/23.22 new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 47.49/23.22 new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_@2, gc), gd), ga) -> new_ltEs11(yvy49000, yvy50000, gc, gd) 47.49/23.22 new_ltEs20(yvy49002, yvy50002, ty_Double) -> new_ltEs16(yvy49002, yvy50002) 47.49/23.22 new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.22 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(app(ty_Either, bad), bae)) -> new_ltEs14(yvy49000, yvy50000, bad, bae) 47.49/23.22 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Float, ga) -> new_ltEs5(yvy49000, yvy50000) 47.49/23.22 new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT 47.49/23.22 new_compare114(yvy49000, yvy50000, False, bbh, bca) -> GT 47.49/23.22 new_esEs25(yvy4001, yvy3001, app(ty_[], cfg)) -> new_esEs8(yvy4001, yvy3001, cfg) 47.49/23.22 new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.22 new_esEs4(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ced, cee) -> new_asAs(new_esEs26(yvy4000, yvy3000, ced), new_esEs25(yvy4001, yvy3001, cee)) 47.49/23.22 new_ltEs5(yvy4900, yvy5000) -> new_fsEs(new_compare6(yvy4900, yvy5000)) 47.49/23.22 new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_Either, bfb), bfc), bee) -> new_esEs7(yvy4000, yvy3000, bfb, bfc) 47.49/23.22 new_esEs26(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.22 new_esEs9(yvy4000, yvy3000, app(app(ty_@2, fb), fc)) -> new_esEs4(yvy4000, yvy3000, fb, fc) 47.49/23.22 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.22 new_compare25(Just(yvy4900), Nothing, False, bba) -> GT 47.49/23.22 new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) 47.49/23.22 new_compare5(yvy49000, yvy50000, ty_@0) -> new_compare9(yvy49000, yvy50000) 47.49/23.22 new_esEs24(yvy4000, yvy3000, app(ty_Maybe, ccb)) -> new_esEs6(yvy4000, yvy3000, ccb) 47.49/23.22 new_lt11(yvy205, yvy204) -> new_esEs12(new_compare8(yvy205, yvy204), LT) 47.49/23.22 new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 47.49/23.22 new_lt6(yvy49000, yvy50000) -> new_esEs12(new_compare9(yvy49000, yvy50000), LT) 47.49/23.22 new_primMulNat0(Succ(yvy400100), Zero) -> Zero 47.49/23.22 new_primMulNat0(Zero, Succ(yvy300000)) -> Zero 47.49/23.22 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Double, ga) -> new_ltEs16(yvy49000, yvy50000) 47.49/23.22 new_lt8(yvy49000, yvy50000, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_lt13(yvy49000, yvy50000, bcb, bcc, bcd) 47.49/23.22 new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) 47.49/23.22 new_esEs6(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs5(yvy4000, yvy3000, cdb, cdc, cdd) 47.49/23.22 new_esEs25(yvy4001, yvy3001, app(app(ty_Either, cfe), cff)) -> new_esEs7(yvy4001, yvy3001, cfe, cff) 47.49/23.22 new_compare5(yvy49000, yvy50000, ty_Float) -> new_compare6(yvy49000, yvy50000) 47.49/23.22 new_esEs9(yvy4000, yvy3000, app(ty_[], fh)) -> new_esEs8(yvy4000, yvy3000, fh) 47.49/23.22 new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, cae), caf), cag)) -> new_esEs5(yvy4001, yvy3001, cae, caf, cag) 47.49/23.22 new_esEs26(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.22 new_primPlusNat1(Succ(yvy1610), yvy300000) -> Succ(Succ(new_primPlusNat0(yvy1610, yvy300000))) 47.49/23.22 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Int, bee) -> new_esEs16(yvy4000, yvy3000) 47.49/23.22 new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.22 new_esEs16(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) 47.49/23.22 new_primPlusNat0(Succ(yvy16100), Zero) -> Succ(yvy16100) 47.49/23.22 new_primPlusNat0(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) 47.49/23.22 new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) 47.49/23.22 new_primPlusNat1(Zero, yvy300000) -> Succ(yvy300000) 47.49/23.22 new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Int) -> new_compare8(new_sr(yvy49000, yvy50001), new_sr(yvy50000, yvy49001)) 47.49/23.22 new_esEs32(yvy400, yvy300, app(app(app(ty_@3, bgh), bha), bhb)) -> new_esEs5(yvy400, yvy300, bgh, bha, bhb) 47.49/23.22 new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.22 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_@0, ga) -> new_ltEs9(yvy49000, yvy50000) 47.49/23.22 new_lt8(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) 47.49/23.22 new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_Either, ha), hb), ga) -> new_ltEs14(yvy49000, yvy50000, ha, hb) 47.49/23.22 new_ltEs20(yvy49002, yvy50002, ty_@0) -> new_ltEs9(yvy49002, yvy50002) 47.49/23.22 new_ltEs18(yvy4900, yvy5000, app(app(ty_@2, bbb), bbc)) -> new_ltEs11(yvy4900, yvy5000, bbb, bbc) 47.49/23.22 new_ltEs9(yvy4900, yvy5000) -> new_fsEs(new_compare9(yvy4900, yvy5000)) 47.49/23.22 new_esEs22(yvy4002, yvy3002, app(ty_Ratio, caa)) -> new_esEs15(yvy4002, yvy3002, caa) 47.49/23.22 new_ltEs19(yvy49001, yvy50001, app(app(ty_Either, bdg), bdh)) -> new_ltEs14(yvy49001, yvy50001, bdg, bdh) 47.49/23.22 new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) 47.49/23.22 new_lt8(yvy49000, yvy50000, app(ty_Maybe, bah)) -> new_lt15(yvy49000, yvy50000, bah) 47.49/23.22 new_esEs32(yvy400, yvy300, ty_Double) -> new_esEs18(yvy400, yvy300) 47.49/23.22 new_esEs30(yvy20, yvy15, ty_@0) -> new_esEs14(yvy20, yvy15) 47.49/23.22 new_lt20(yvy49001, yvy50001, ty_Char) -> new_lt10(yvy49001, yvy50001) 47.49/23.22 new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.49/23.22 new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.49/23.22 new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fa)) -> new_esEs6(yvy4000, yvy3000, fa) 47.49/23.22 new_esEs23(yvy4001, yvy3001, app(ty_Ratio, cbc)) -> new_esEs15(yvy4001, yvy3001, cbc) 47.49/23.22 new_compare25(Just(yvy4900), Just(yvy5000), False, bba) -> new_compare111(yvy4900, yvy5000, new_ltEs18(yvy4900, yvy5000, bba), bba) 47.49/23.22 new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.49/23.22 new_ltEs20(yvy49002, yvy50002, ty_Float) -> new_ltEs5(yvy49002, yvy50002) 47.49/23.22 new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cdf), cdg)) -> new_esEs4(yvy4000, yvy3000, cdf, cdg) 47.49/23.22 new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.22 new_fsEs(yvy209) -> new_not(new_esEs12(yvy209, GT)) 47.49/23.22 new_ltEs18(yvy4900, yvy5000, app(app(ty_Either, hd), ga)) -> new_ltEs14(yvy4900, yvy5000, hd, ga) 47.49/23.22 new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cdh)) -> new_esEs15(yvy4000, yvy3000, cdh) 47.49/23.22 new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.22 new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) 47.49/23.22 new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_[], cec)) -> new_esEs8(yvy4000, yvy3000, cec) 47.49/23.22 new_compare25(yvy490, yvy500, True, bba) -> EQ 47.49/23.22 new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs5(yvy4000, yvy3000, ef, eg, eh) 47.49/23.22 new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fd)) -> new_esEs15(yvy4000, yvy3000, fd) 47.49/23.22 new_compare([], :(yvy50000, yvy50001), bf) -> LT 47.49/23.22 new_lt20(yvy49001, yvy50001, app(ty_[], dad)) -> new_lt12(yvy49001, yvy50001, dad) 47.49/23.22 new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cde)) -> new_esEs6(yvy4000, yvy3000, cde) 47.49/23.22 new_esEs6(Nothing, Just(yvy3000), cda) -> False 47.49/23.22 new_esEs6(Just(yvy4000), Nothing, cda) -> False 47.49/23.22 new_esEs23(yvy4001, yvy3001, app(ty_[], cbf)) -> new_esEs8(yvy4001, yvy3001, cbf) 47.49/23.22 new_ltEs15(EQ, GT) -> True 47.49/23.22 new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.22 new_esEs6(Nothing, Nothing, cda) -> True 47.49/23.22 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Double) -> new_ltEs16(yvy49000, yvy50000) 47.49/23.22 new_esEs11(False, False) -> True 47.49/23.22 new_esEs24(yvy4000, yvy3000, app(app(ty_Either, ccf), ccg)) -> new_esEs7(yvy4000, yvy3000, ccf, ccg) 47.49/23.22 new_ltEs18(yvy4900, yvy5000, ty_Ordering) -> new_ltEs15(yvy4900, yvy5000) 47.49/23.22 new_ltEs11(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), bbb, bbc) -> new_pePe(new_lt8(yvy49000, yvy50000, bbb), new_asAs(new_esEs21(yvy49000, yvy50000, bbb), new_ltEs19(yvy49001, yvy50001, bbc))) 47.49/23.22 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Integer) -> new_ltEs10(yvy49000, yvy50000) 47.49/23.22 new_esEs21(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) 47.49/23.22 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.22 new_esEs30(yvy20, yvy15, ty_Char) -> new_esEs17(yvy20, yvy15) 47.49/23.22 new_ltEs14(Left(yvy49000), Right(yvy50000), hd, ga) -> True 47.49/23.22 new_ltEs19(yvy49001, yvy50001, ty_Float) -> new_ltEs5(yvy49001, yvy50001) 47.49/23.22 new_esEs23(yvy4001, yvy3001, app(app(ty_@2, cba), cbb)) -> new_esEs4(yvy4001, yvy3001, cba, cbb) 47.49/23.22 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.22 new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.49/23.22 new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.49/23.22 new_esEs26(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.22 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Ordering, ga) -> new_ltEs15(yvy49000, yvy50000) 47.49/23.22 new_ltEs6(yvy4900, yvy5000) -> new_fsEs(new_compare7(yvy4900, yvy5000)) 47.49/23.22 new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.22 new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.22 new_esEs8(:(yvy4000, yvy4001), [], ee) -> False 47.49/23.22 new_esEs8([], :(yvy3000, yvy3001), ee) -> False 47.49/23.22 new_esEs26(yvy4000, yvy3000, app(app(ty_Either, cgg), cgh)) -> new_esEs7(yvy4000, yvy3000, cgg, cgh) 47.49/23.22 new_lt19(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) 47.49/23.22 new_lt17(yvy49000, yvy50000) -> new_esEs12(new_compare17(yvy49000, yvy50000), LT) 47.49/23.22 new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Integer) -> new_compare11(new_sr0(yvy49000, yvy50001), new_sr0(yvy50000, yvy49001)) 47.49/23.22 new_esEs22(yvy4002, yvy3002, app(app(ty_@2, bhg), bhh)) -> new_esEs4(yvy4002, yvy3002, bhg, bhh) 47.49/23.22 new_esEs22(yvy4002, yvy3002, ty_Double) -> new_esEs18(yvy4002, yvy3002) 47.49/23.22 new_esEs26(yvy4000, yvy3000, app(ty_Ratio, cgf)) -> new_esEs15(yvy4000, yvy3000, cgf) 47.49/23.22 new_compare5(yvy49000, yvy50000, app(ty_Maybe, ce)) -> new_compare15(yvy49000, yvy50000, ce) 47.49/23.22 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Integer, bee) -> new_esEs10(yvy4000, yvy3000) 47.49/23.22 new_ltEs19(yvy49001, yvy50001, ty_@0) -> new_ltEs9(yvy49001, yvy50001) 47.49/23.22 new_esEs22(yvy4002, yvy3002, app(app(app(ty_@3, bhc), bhd), bhe)) -> new_esEs5(yvy4002, yvy3002, bhc, bhd, bhe) 47.49/23.22 new_esEs32(yvy400, yvy300, ty_Integer) -> new_esEs10(yvy400, yvy300) 47.49/23.22 new_lt20(yvy49001, yvy50001, ty_@0) -> new_lt6(yvy49001, yvy50001) 47.49/23.22 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, app(app(ty_@2, bgb), bgc)) -> new_esEs4(yvy4000, yvy3000, bgb, bgc) 47.49/23.22 new_sr0(Integer(yvy490000), Integer(yvy500010)) -> Integer(new_primMulInt(yvy490000, yvy500010)) 47.49/23.22 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Bool, ga) -> new_ltEs13(yvy49000, yvy50000) 47.49/23.22 new_esEs18(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 47.49/23.22 new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.22 new_esEs28(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) 47.49/23.22 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, app(ty_[], bgg)) -> new_esEs8(yvy4000, yvy3000, bgg) 47.49/23.22 new_esEs32(yvy400, yvy300, app(app(ty_Either, bfe), bee)) -> new_esEs7(yvy400, yvy300, bfe, bee) 47.49/23.22 new_ltEs15(LT, GT) -> True 47.49/23.22 new_lt19(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) 47.49/23.22 new_esEs30(yvy20, yvy15, app(ty_[], dea)) -> new_esEs8(yvy20, yvy15, dea) 47.49/23.22 new_compare33(h) -> new_compare25(Nothing, Nothing, True, h) 47.49/23.22 new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) 47.49/23.22 new_esEs12(GT, GT) -> True 47.49/23.22 new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) 47.49/23.22 new_esEs24(yvy4000, yvy3000, app(ty_[], cch)) -> new_esEs8(yvy4000, yvy3000, cch) 47.49/23.22 new_asAs(True, yvy201) -> yvy201 47.49/23.22 new_esEs26(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.22 new_esEs21(yvy49000, yvy50000, app(ty_Maybe, bah)) -> new_esEs6(yvy49000, yvy50000, bah) 47.49/23.22 new_esEs10(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) 47.49/23.22 new_compare10(yvy49000, yvy50000, False, bd, be) -> GT 47.49/23.22 new_lt8(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) 47.49/23.22 new_lt8(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) 47.49/23.22 new_compare113(yvy49000, yvy50000, True) -> LT 47.49/23.22 new_esEs32(yvy400, yvy300, app(ty_Ratio, bag)) -> new_esEs15(yvy400, yvy300, bag) 47.49/23.22 new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.22 new_ltEs16(yvy4900, yvy5000) -> new_fsEs(new_compare18(yvy4900, yvy5000)) 47.49/23.22 new_lt20(yvy49001, yvy50001, ty_Float) -> new_lt9(yvy49001, yvy50001) 47.49/23.22 new_ltEs4(Nothing, Just(yvy50000), db) -> True 47.49/23.22 new_esEs21(yvy49000, yvy50000, app(ty_Ratio, bcg)) -> new_esEs15(yvy49000, yvy50000, bcg) 47.49/23.22 new_ltEs18(yvy4900, yvy5000, app(ty_Maybe, db)) -> new_ltEs4(yvy4900, yvy5000, db) 47.49/23.22 new_lt8(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) 47.49/23.22 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Float, bee) -> new_esEs13(yvy4000, yvy3000) 47.49/23.22 new_esEs32(yvy400, yvy300, ty_Float) -> new_esEs13(yvy400, yvy300) 47.49/23.22 new_ltEs8(yvy4900, yvy5000, bf) -> new_fsEs(new_compare(yvy4900, yvy5000, bf)) 47.49/23.22 new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) 47.49/23.22 new_ltEs18(yvy4900, yvy5000, app(ty_[], bf)) -> new_ltEs8(yvy4900, yvy5000, bf) 47.49/23.22 new_compare110(yvy49000, yvy50000, False) -> GT 47.49/23.22 new_primCompAux00(yvy225, EQ) -> yvy225 47.49/23.22 new_lt19(yvy49000, yvy50000, app(ty_Maybe, chh)) -> new_lt15(yvy49000, yvy50000, chh) 47.49/23.22 new_esEs12(EQ, EQ) -> True 47.49/23.22 new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) 47.49/23.22 new_lt19(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) 47.49/23.22 new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) 47.49/23.22 new_esEs21(yvy49000, yvy50000, app(app(ty_Either, bbh), bca)) -> new_esEs7(yvy49000, yvy50000, bbh, bca) 47.49/23.22 new_primMulNat0(Zero, Zero) -> Zero 47.49/23.22 new_compare24(yvy49000, yvy50000, False) -> new_compare110(yvy49000, yvy50000, new_ltEs13(yvy49000, yvy50000)) 47.49/23.22 new_compare5(yvy49000, yvy50000, ty_Integer) -> new_compare11(yvy49000, yvy50000) 47.49/23.22 new_esEs22(yvy4002, yvy3002, ty_Integer) -> new_esEs10(yvy4002, yvy3002) 47.49/23.22 new_esEs21(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) 47.49/23.22 new_lt19(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) 47.49/23.22 new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.22 new_ltEs12(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), bbd, bbe, bbf) -> new_pePe(new_lt19(yvy49000, yvy50000, bbd), new_asAs(new_esEs28(yvy49000, yvy50000, bbd), new_pePe(new_lt20(yvy49001, yvy50001, bbe), new_asAs(new_esEs27(yvy49001, yvy50001, bbe), new_ltEs20(yvy49002, yvy50002, bbf))))) 47.49/23.22 new_ltEs19(yvy49001, yvy50001, app(ty_[], bch)) -> new_ltEs8(yvy49001, yvy50001, bch) 47.49/23.22 new_compare5(yvy49000, yvy50000, ty_Double) -> new_compare18(yvy49000, yvy50000) 47.49/23.22 new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_@2, dd), de)) -> new_ltEs11(yvy49000, yvy50000, dd, de) 47.49/23.22 new_compare11(Integer(yvy49000), Integer(yvy50000)) -> new_primCmpInt(yvy49000, yvy50000) 47.49/23.22 new_compare9(@0, @0) -> EQ 47.49/23.22 new_esEs22(yvy4002, yvy3002, app(app(ty_Either, cab), cac)) -> new_esEs7(yvy4002, yvy3002, cab, cac) 47.49/23.22 new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.22 new_compare28(yvy49000, yvy50000, True, bcb, bcc, bcd) -> EQ 47.49/23.22 new_esEs27(yvy49001, yvy50001, ty_Float) -> new_esEs13(yvy49001, yvy50001) 47.49/23.22 new_esEs26(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.22 new_ltEs13(False, True) -> True 47.49/23.22 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.22 new_ltEs13(False, False) -> True 47.49/23.22 new_esEs9(yvy4000, yvy3000, app(app(ty_Either, ff), fg)) -> new_esEs7(yvy4000, yvy3000, ff, fg) 47.49/23.22 new_esEs7(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, beb), bec), bed), bee) -> new_esEs5(yvy4000, yvy3000, beb, bec, bed) 47.49/23.22 new_ltEs15(EQ, EQ) -> True 47.49/23.22 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) 47.49/23.22 new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Maybe, bef), bee) -> new_esEs6(yvy4000, yvy3000, bef) 47.49/23.22 new_compare30(yvy20, yvy15, bb) -> new_compare25(Just(yvy20), Just(yvy15), new_esEs30(yvy20, yvy15, bb), bb) 47.49/23.22 new_esEs26(yvy4000, yvy3000, app(ty_Maybe, cgc)) -> new_esEs6(yvy4000, yvy3000, cgc) 47.49/23.22 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.22 new_esEs26(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.22 new_lt12(yvy49000, yvy50000, bcf) -> new_esEs12(new_compare(yvy49000, yvy50000, bcf), LT) 47.49/23.22 new_lt10(yvy49000, yvy50000) -> new_esEs12(new_compare7(yvy49000, yvy50000), LT) 47.49/23.22 new_lt19(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) 47.49/23.22 new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.22 new_compare31(yvy300, h) -> new_compare25(Nothing, Just(yvy300), False, h) 47.49/23.22 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Char, bee) -> new_esEs17(yvy4000, yvy3000) 47.49/23.22 new_esEs32(yvy400, yvy300, ty_Char) -> new_esEs17(yvy400, yvy300) 47.49/23.22 new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.22 new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_[], bfd), bee) -> new_esEs8(yvy4000, yvy3000, bfd) 47.49/23.22 new_ltEs20(yvy49002, yvy50002, app(ty_[], dbf)) -> new_ltEs8(yvy49002, yvy50002, dbf) 47.49/23.22 new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_Either, eb), ec)) -> new_ltEs14(yvy49000, yvy50000, eb, ec) 47.49/23.22 new_compare17(yvy49000, yvy50000) -> new_compare29(yvy49000, yvy50000, new_esEs12(yvy49000, yvy50000)) 47.49/23.22 new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False 47.49/23.22 new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False 47.49/23.22 new_esEs21(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) 47.49/23.22 new_esEs25(yvy4001, yvy3001, app(ty_Maybe, cfa)) -> new_esEs6(yvy4001, yvy3001, cfa) 47.49/23.22 new_compare([], [], bf) -> EQ 47.49/23.22 new_ltEs15(LT, EQ) -> True 47.49/23.22 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Float) -> new_ltEs5(yvy49000, yvy50000) 47.49/23.22 new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 47.49/23.22 new_ltEs18(yvy4900, yvy5000, ty_Char) -> new_ltEs6(yvy4900, yvy5000) 47.49/23.22 new_ltEs18(yvy4900, yvy5000, app(ty_Ratio, bbg)) -> new_ltEs17(yvy4900, yvy5000, bbg) 47.49/23.22 new_esEs32(yvy400, yvy300, app(app(ty_@2, ced), cee)) -> new_esEs4(yvy400, yvy300, ced, cee) 47.49/23.22 new_lt20(yvy49001, yvy50001, ty_Double) -> new_lt7(yvy49001, yvy50001) 47.49/23.22 new_esEs26(yvy4000, yvy3000, app(app(ty_@2, cgd), cge)) -> new_esEs4(yvy4000, yvy3000, cgd, cge) 47.49/23.22 new_compare24(yvy49000, yvy50000, True) -> EQ 47.49/23.22 new_lt8(yvy49000, yvy50000, app(ty_[], bcf)) -> new_lt12(yvy49000, yvy50000, bcf) 47.49/23.22 new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(app(ty_@3, ge), gf), gg), ga) -> new_ltEs12(yvy49000, yvy50000, ge, gf, gg) 47.49/23.22 new_esEs21(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) 47.49/23.22 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, app(app(ty_Either, bge), bgf)) -> new_esEs7(yvy4000, yvy3000, bge, bgf) 47.49/23.22 new_esEs11(True, True) -> True 47.49/23.22 new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False 47.49/23.22 new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False 47.49/23.22 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(ty_[], he)) -> new_ltEs8(yvy49000, yvy50000, he) 47.49/23.22 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, app(ty_Maybe, bga)) -> new_esEs6(yvy4000, yvy3000, bga) 47.49/23.22 new_esEs25(yvy4001, yvy3001, app(ty_Ratio, cfd)) -> new_esEs15(yvy4001, yvy3001, cfd) 47.49/23.22 new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) 47.49/23.22 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Int) -> new_ltEs7(yvy49000, yvy50000) 47.49/23.22 new_esEs15(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bag) -> new_asAs(new_esEs20(yvy4000, yvy3000, bag), new_esEs19(yvy4001, yvy3001, bag)) 47.49/23.22 new_compare28(yvy49000, yvy50000, False, bcb, bcc, bcd) -> new_compare112(yvy49000, yvy50000, new_ltEs12(yvy49000, yvy50000, bcb, bcc, bcd), bcb, bcc, bcd) 47.49/23.22 new_esEs22(yvy4002, yvy3002, ty_Float) -> new_esEs13(yvy4002, yvy3002) 47.49/23.22 new_esEs27(yvy49001, yvy50001, ty_Integer) -> new_esEs10(yvy49001, yvy50001) 47.49/23.22 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(app(ty_@2, hf), hg)) -> new_ltEs11(yvy49000, yvy50000, hf, hg) 47.49/23.22 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 47.49/23.22 new_ltEs15(GT, GT) -> True 47.49/23.22 new_compare111(yvy198, yvy199, False, bce) -> GT 47.49/23.22 new_esEs30(yvy20, yvy15, ty_Bool) -> new_esEs11(yvy20, yvy15) 47.49/23.22 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(ty_Maybe, bac)) -> new_ltEs4(yvy49000, yvy50000, bac) 47.49/23.22 new_esEs30(yvy20, yvy15, app(ty_Maybe, ddc)) -> new_esEs6(yvy20, yvy15, ddc) 47.49/23.22 new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 47.49/23.22 new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) 47.49/23.22 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Int, ga) -> new_ltEs7(yvy49000, yvy50000) 47.49/23.22 new_not(False) -> True 47.49/23.22 new_compare5(yvy49000, yvy50000, app(app(ty_Either, cf), cg)) -> new_compare16(yvy49000, yvy50000, cf, cg) 47.49/23.22 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.22 new_compare112(yvy49000, yvy50000, True, bcb, bcc, bcd) -> LT 47.49/23.22 new_esEs28(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) 47.49/23.22 new_compare5(yvy49000, yvy50000, ty_Bool) -> new_compare14(yvy49000, yvy50000) 47.49/23.22 new_lt13(yvy49000, yvy50000, bcb, bcc, bcd) -> new_esEs12(new_compare13(yvy49000, yvy50000, bcb, bcc, bcd), LT) 47.49/23.22 new_primCompAux0(yvy49000, yvy50000, yvy221, bf) -> new_primCompAux00(yvy221, new_compare5(yvy49000, yvy50000, bf)) 47.49/23.22 new_esEs27(yvy49001, yvy50001, app(app(ty_Either, dbc), dbd)) -> new_esEs7(yvy49001, yvy50001, dbc, dbd) 47.49/23.22 new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 47.49/23.22 new_esEs22(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) 47.49/23.22 new_lt7(yvy49000, yvy50000) -> new_esEs12(new_compare18(yvy49000, yvy50000), LT) 47.49/23.22 new_esEs28(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) 47.49/23.22 new_esEs12(LT, EQ) -> False 47.49/23.22 new_esEs12(EQ, LT) -> False 47.49/23.22 new_esEs21(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) 47.49/23.22 new_compare29(yvy49000, yvy50000, True) -> EQ 47.49/23.22 new_primPlusNat0(Succ(yvy16100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat0(yvy16100, yvy3000000))) 47.49/23.22 new_lt4(yvy49000, yvy50000, bd, be) -> new_esEs12(new_compare12(yvy49000, yvy50000, bd, be), LT) 47.49/23.22 new_esEs32(yvy400, yvy300, ty_Bool) -> new_esEs11(yvy400, yvy300) 47.49/23.22 new_compare5(yvy49000, yvy50000, app(app(app(ty_@3, cb), cc), cd)) -> new_compare13(yvy49000, yvy50000, cb, cc, cd) 47.49/23.22 new_esEs27(yvy49001, yvy50001, app(ty_Ratio, dbe)) -> new_esEs15(yvy49001, yvy50001, dbe) 47.49/23.22 new_lt19(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) 47.49/23.22 new_esEs28(yvy49000, yvy50000, app(app(app(ty_@3, che), chf), chg)) -> new_esEs5(yvy49000, yvy50000, che, chf, chg) 47.49/23.22 new_compare112(yvy49000, yvy50000, False, bcb, bcc, bcd) -> GT 47.49/23.22 new_compare27(yvy49000, yvy50000, True, bd, be) -> EQ 47.49/23.22 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.22 new_compare15(yvy49000, yvy50000, bah) -> new_compare25(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, bah), bah) 47.49/23.22 new_esEs21(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) 47.49/23.22 new_esEs12(LT, GT) -> False 47.49/23.22 new_esEs12(GT, LT) -> False 47.49/23.22 new_lt20(yvy49001, yvy50001, ty_Int) -> new_lt11(yvy49001, yvy50001) 47.49/23.22 new_ltEs19(yvy49001, yvy50001, ty_Int) -> new_ltEs7(yvy49001, yvy50001) 47.49/23.22 new_ltEs20(yvy49002, yvy50002, app(ty_Ratio, dcg)) -> new_ltEs17(yvy49002, yvy50002, dcg) 47.49/23.22 new_esEs8([], [], ee) -> True 47.49/23.22 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Char, ga) -> new_ltEs6(yvy49000, yvy50000) 47.49/23.22 new_ltEs20(yvy49002, yvy50002, ty_Char) -> new_ltEs6(yvy49002, yvy50002) 47.49/23.22 new_compare25(Nothing, Nothing, False, bba) -> LT 47.49/23.22 new_lt20(yvy49001, yvy50001, app(ty_Maybe, dbb)) -> new_lt15(yvy49001, yvy50001, dbb) 47.49/23.22 new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Ratio, ed)) -> new_ltEs17(yvy49000, yvy50000, ed) 47.49/23.22 new_lt8(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) 47.49/23.22 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Float) -> new_ltEs5(yvy49000, yvy50000) 47.49/23.22 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 47.49/23.22 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 47.49/23.22 new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) 47.49/23.22 new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.49/23.22 new_lt20(yvy49001, yvy50001, app(app(ty_@2, dae), daf)) -> new_lt4(yvy49001, yvy50001, dae, daf) 47.49/23.22 new_esEs28(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) 47.49/23.22 new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.22 new_compare111(yvy198, yvy199, True, bce) -> LT 47.49/23.22 new_ltEs13(True, False) -> False 47.49/23.22 new_ltEs20(yvy49002, yvy50002, ty_Int) -> new_ltEs7(yvy49002, yvy50002) 47.49/23.22 new_esEs32(yvy400, yvy300, ty_Int) -> new_esEs16(yvy400, yvy300) 47.49/23.22 new_esEs27(yvy49001, yvy50001, app(app(ty_@2, dae), daf)) -> new_esEs4(yvy49001, yvy50001, dae, daf) 47.49/23.22 new_ltEs15(LT, LT) -> True 47.49/23.22 new_esEs13(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 47.49/23.22 new_esEs22(yvy4002, yvy3002, ty_@0) -> new_esEs14(yvy4002, yvy3002) 47.49/23.22 new_esEs28(yvy49000, yvy50000, app(ty_Maybe, chh)) -> new_esEs6(yvy49000, yvy50000, chh) 47.49/23.22 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 47.49/23.22 new_esEs26(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.22 new_esEs28(yvy49000, yvy50000, app(app(ty_@2, chc), chd)) -> new_esEs4(yvy49000, yvy50000, chc, chd) 47.49/23.22 new_compare7(Char(yvy49000), Char(yvy50000)) -> new_primCmpNat0(yvy49000, yvy50000) 47.49/23.22 new_lt5(yvy49000, yvy50000) -> new_esEs12(new_compare11(yvy49000, yvy50000), LT) 47.49/23.22 new_lt20(yvy49001, yvy50001, app(app(ty_Either, dbc), dbd)) -> new_lt16(yvy49001, yvy50001, dbc, dbd) 47.49/23.22 new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) 47.49/23.22 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Char) -> new_ltEs6(yvy49000, yvy50000) 47.49/23.22 new_esEs26(yvy4000, yvy3000, app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs5(yvy4000, yvy3000, cfh, cga, cgb) 47.49/23.22 new_lt20(yvy49001, yvy50001, ty_Integer) -> new_lt5(yvy49001, yvy50001) 47.49/23.22 new_esEs30(yvy20, yvy15, ty_Int) -> new_esEs16(yvy20, yvy15) 47.49/23.22 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Double) -> new_ltEs16(yvy49000, yvy50000) 47.49/23.22 new_ltEs10(yvy4900, yvy5000) -> new_fsEs(new_compare11(yvy4900, yvy5000)) 47.49/23.22 new_lt14(yvy49000, yvy50000) -> new_esEs12(new_compare14(yvy49000, yvy50000), LT) 47.49/23.22 new_esEs27(yvy49001, yvy50001, app(ty_Maybe, dbb)) -> new_esEs6(yvy49001, yvy50001, dbb) 47.49/23.22 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_@0) -> new_ltEs9(yvy49000, yvy50000) 47.49/23.22 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Double, bee) -> new_esEs18(yvy4000, yvy3000) 47.49/23.22 new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_[], dc)) -> new_ltEs8(yvy49000, yvy50000, dc) 47.49/23.22 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Integer) -> new_ltEs10(yvy49000, yvy50000) 47.49/23.22 new_esEs27(yvy49001, yvy50001, ty_Double) -> new_esEs18(yvy49001, yvy50001) 47.49/23.22 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 47.49/23.22 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 47.49/23.22 new_compare25(Nothing, Just(yvy5000), False, bba) -> LT 47.49/23.22 new_compare5(yvy49000, yvy50000, app(app(ty_@2, bh), ca)) -> new_compare12(yvy49000, yvy50000, bh, ca) 47.49/23.22 new_esEs28(yvy49000, yvy50000, app(ty_[], chb)) -> new_esEs8(yvy49000, yvy50000, chb) 47.49/23.22 new_lt19(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) 47.49/23.22 new_lt18(yvy49000, yvy50000, bcg) -> new_esEs12(new_compare19(yvy49000, yvy50000, bcg), LT) 47.49/23.22 new_compare5(yvy49000, yvy50000, ty_Char) -> new_compare7(yvy49000, yvy50000) 47.49/23.22 new_ltEs19(yvy49001, yvy50001, app(ty_Maybe, bdf)) -> new_ltEs4(yvy49001, yvy50001, bdf) 47.49/23.22 new_compare5(yvy49000, yvy50000, app(ty_[], bg)) -> new_compare(yvy49000, yvy50000, bg) 47.49/23.22 new_compare14(yvy49000, yvy50000) -> new_compare24(yvy49000, yvy50000, new_esEs11(yvy49000, yvy50000)) 47.49/23.22 new_primEqNat0(Zero, Zero) -> True 47.49/23.22 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Integer, ga) -> new_ltEs10(yvy49000, yvy50000) 47.49/23.22 new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.49/23.22 new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) 47.49/23.22 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Bool) -> new_ltEs13(yvy49000, yvy50000) 47.49/23.22 new_esEs30(yvy20, yvy15, app(app(ty_Either, ddg), ddh)) -> new_esEs7(yvy20, yvy15, ddg, ddh) 47.49/23.22 new_esEs30(yvy20, yvy15, ty_Ordering) -> new_esEs12(yvy20, yvy15) 47.49/23.22 new_compare5(yvy49000, yvy50000, ty_Ordering) -> new_compare17(yvy49000, yvy50000) 47.49/23.22 new_esEs6(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.22 new_asAs(False, yvy201) -> False 47.49/23.22 new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(app(ty_@3, df), dg), dh)) -> new_ltEs12(yvy49000, yvy50000, df, dg, dh) 47.49/23.22 new_esEs28(yvy49000, yvy50000, app(ty_Ratio, dac)) -> new_esEs15(yvy49000, yvy50000, dac) 47.49/23.22 new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 47.49/23.22 new_esEs30(yvy20, yvy15, ty_Integer) -> new_esEs10(yvy20, yvy15) 47.49/23.22 new_ltEs20(yvy49002, yvy50002, app(ty_Maybe, dcd)) -> new_ltEs4(yvy49002, yvy50002, dcd) 47.49/23.22 new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) 47.49/23.22 new_lt8(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) 47.49/23.22 new_esEs7(Left(yvy4000), Right(yvy3000), bfe, bee) -> False 47.49/23.22 new_esEs7(Right(yvy4000), Left(yvy3000), bfe, bee) -> False 47.49/23.22 new_ltEs17(yvy4900, yvy5000, bbg) -> new_fsEs(new_compare19(yvy4900, yvy5000, bbg)) 47.49/23.22 new_lt16(yvy49000, yvy50000, bbh, bca) -> new_esEs12(new_compare16(yvy49000, yvy50000, bbh, bca), LT) 47.49/23.22 new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.22 new_ltEs18(yvy4900, yvy5000, ty_Int) -> new_ltEs7(yvy4900, yvy5000) 47.49/23.22 new_lt19(yvy49000, yvy50000, app(app(ty_Either, daa), dab)) -> new_lt16(yvy49000, yvy50000, daa, dab) 47.49/23.22 new_esEs27(yvy49001, yvy50001, app(app(app(ty_@3, dag), dah), dba)) -> new_esEs5(yvy49001, yvy50001, dag, dah, dba) 47.49/23.22 47.49/23.22 The set Q consists of the following terms: 47.49/23.22 47.49/23.22 new_esEs27(x0, x1, ty_@0) 47.49/23.22 new_esEs8(:(x0, x1), :(x2, x3), x4) 47.49/23.22 new_esEs25(x0, x1, app(ty_Maybe, x2)) 47.49/23.22 new_compare12(x0, x1, x2, x3) 47.49/23.22 new_esEs8([], [], x0) 47.49/23.22 new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) 47.49/23.22 new_lt20(x0, x1, app(ty_Ratio, x2)) 47.49/23.22 new_esEs26(x0, x1, ty_Float) 47.49/23.22 new_esEs12(EQ, EQ) 47.49/23.22 new_esEs28(x0, x1, ty_Char) 47.49/23.22 new_esEs32(x0, x1, ty_Integer) 47.49/23.22 new_compare5(x0, x1, app(ty_Maybe, x2)) 47.49/23.22 new_primMulInt(Neg(x0), Neg(x1)) 47.49/23.22 new_lt20(x0, x1, ty_@0) 47.49/23.22 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.22 new_esEs26(x0, x1, app(ty_[], x2)) 47.49/23.22 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.22 new_primCmpNat0(Succ(x0), Zero) 47.49/23.22 new_compare29(x0, x1, True) 47.49/23.22 new_compare5(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.22 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.22 new_compare13(x0, x1, x2, x3, x4) 47.49/23.22 new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) 47.49/23.22 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 47.49/23.22 new_primEqInt(Pos(Zero), Pos(Zero)) 47.49/23.22 new_esEs32(x0, x1, ty_Bool) 47.49/23.22 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.22 new_primMulInt(Pos(x0), Pos(x1)) 47.49/23.22 new_esEs27(x0, x1, app(ty_Ratio, x2)) 47.49/23.22 new_ltEs14(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 47.49/23.22 new_primCompAux00(x0, GT) 47.49/23.22 new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 47.49/23.22 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 47.49/23.22 new_esEs7(Left(x0), Left(x1), ty_Float, x2) 47.49/23.22 new_lt8(x0, x1, ty_Float) 47.49/23.22 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_ltEs4(Just(x0), Just(x1), ty_Float) 47.49/23.22 new_compare27(x0, x1, True, x2, x3) 47.49/23.22 new_asAs(False, x0) 47.49/23.22 new_ltEs20(x0, x1, app(ty_[], x2)) 47.49/23.22 new_esEs7(Right(x0), Right(x1), x2, ty_Bool) 47.49/23.22 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_ltEs14(Left(x0), Left(x1), app(ty_[], x2), x3) 47.49/23.22 new_esEs27(x0, x1, ty_Integer) 47.49/23.22 new_primEqInt(Neg(Zero), Neg(Zero)) 47.49/23.22 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.22 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.22 new_compare15(x0, x1, x2) 47.49/23.22 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.22 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 47.49/23.22 new_sr(x0, x1) 47.49/23.22 new_esEs28(x0, x1, ty_Bool) 47.49/23.22 new_esEs27(x0, x1, ty_Char) 47.49/23.22 new_primCmpNat0(Zero, Succ(x0)) 47.49/23.22 new_ltEs19(x0, x1, app(ty_[], x2)) 47.49/23.22 new_lt19(x0, x1, ty_Double) 47.49/23.22 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.22 new_ltEs13(False, True) 47.49/23.22 new_ltEs13(True, False) 47.49/23.22 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_ltEs18(x0, x1, ty_Int) 47.49/23.22 new_lt17(x0, x1) 47.49/23.22 new_esEs9(x0, x1, ty_Double) 47.49/23.22 new_esEs28(x0, x1, ty_Ordering) 47.49/23.22 new_lt8(x0, x1, ty_Integer) 47.49/23.22 new_compare110(x0, x1, False) 47.49/23.22 new_compare10(x0, x1, False, x2, x3) 47.49/23.22 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.22 new_esEs19(x0, x1, ty_Integer) 47.49/23.22 new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 47.49/23.22 new_ltEs14(Right(x0), Right(x1), x2, ty_Integer) 47.49/23.22 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 47.49/23.22 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 47.49/23.22 new_esEs22(x0, x1, app(ty_[], x2)) 47.49/23.22 new_ltEs19(x0, x1, ty_Float) 47.49/23.22 new_esEs28(x0, x1, app(ty_[], x2)) 47.49/23.22 new_esEs7(Right(x0), Right(x1), x2, ty_Char) 47.49/23.22 new_esEs9(x0, x1, ty_Int) 47.49/23.22 new_ltEs14(Right(x0), Right(x1), x2, ty_Bool) 47.49/23.22 new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 47.49/23.22 new_esEs32(x0, x1, ty_@0) 47.49/23.22 new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 47.49/23.22 new_esEs6(Nothing, Nothing, x0) 47.49/23.22 new_ltEs14(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 47.49/23.22 new_lt8(x0, x1, ty_Bool) 47.49/23.22 new_esEs18(Double(x0, x1), Double(x2, x3)) 47.49/23.22 new_ltEs8(x0, x1, x2) 47.49/23.22 new_primEqInt(Pos(Zero), Neg(Zero)) 47.49/23.22 new_primEqInt(Neg(Zero), Pos(Zero)) 47.49/23.22 new_esEs24(x0, x1, app(ty_Maybe, x2)) 47.49/23.22 new_esEs23(x0, x1, app(ty_Ratio, x2)) 47.49/23.22 new_compare114(x0, x1, False, x2, x3) 47.49/23.22 new_esEs30(x0, x1, ty_Float) 47.49/23.22 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 47.49/23.22 new_esEs12(LT, GT) 47.49/23.22 new_esEs12(GT, LT) 47.49/23.22 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 47.49/23.22 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 47.49/23.22 new_esEs17(Char(x0), Char(x1)) 47.49/23.22 new_compare25(x0, x1, True, x2) 47.49/23.22 new_esEs21(x0, x1, ty_Float) 47.49/23.22 new_esEs7(Right(x0), Right(x1), x2, ty_Int) 47.49/23.22 new_esEs32(x0, x1, ty_Float) 47.49/23.22 new_esEs7(Right(x0), Right(x1), x2, ty_Float) 47.49/23.22 new_ltEs18(x0, x1, ty_Double) 47.49/23.22 new_primCompAux0(x0, x1, x2, x3) 47.49/23.22 new_ltEs20(x0, x1, ty_Ordering) 47.49/23.22 new_esEs27(x0, x1, ty_Bool) 47.49/23.22 new_ltEs17(x0, x1, x2) 47.49/23.22 new_compare14(x0, x1) 47.49/23.22 new_ltEs18(x0, x1, ty_Char) 47.49/23.22 new_asAs(True, x0) 47.49/23.22 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 47.49/23.22 new_esEs24(x0, x1, ty_Integer) 47.49/23.22 new_esEs30(x0, x1, ty_@0) 47.49/23.22 new_esEs7(Right(x0), Right(x1), x2, ty_@0) 47.49/23.22 new_pePe(True, x0) 47.49/23.22 new_ltEs7(x0, x1) 47.49/23.22 new_ltEs15(EQ, EQ) 47.49/23.22 new_compare([], [], x0) 47.49/23.22 new_primEqNat0(Succ(x0), Zero) 47.49/23.22 new_esEs28(x0, x1, ty_Integer) 47.49/23.22 new_compare30(x0, x1, x2) 47.49/23.22 new_esEs25(x0, x1, ty_Float) 47.49/23.22 new_esEs7(Left(x0), Left(x1), ty_Integer, x2) 47.49/23.22 new_primMulNat0(Succ(x0), Succ(x1)) 47.49/23.22 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.22 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 47.49/23.22 new_compare5(x0, x1, ty_Ordering) 47.49/23.22 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.22 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.22 new_lt19(x0, x1, ty_Char) 47.49/23.22 new_ltEs14(Left(x0), Left(x1), ty_Char, x2) 47.49/23.22 new_ltEs19(x0, x1, ty_Integer) 47.49/23.22 new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 47.49/23.22 new_lt5(x0, x1) 47.49/23.22 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 47.49/23.22 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 47.49/23.22 new_compare(:(x0, x1), :(x2, x3), x4) 47.49/23.22 new_esEs9(x0, x1, ty_Char) 47.49/23.22 new_ltEs4(Just(x0), Just(x1), ty_Bool) 47.49/23.22 new_ltEs14(Left(x0), Left(x1), ty_Int, x2) 47.49/23.22 new_lt6(x0, x1) 47.49/23.22 new_lt19(x0, x1, ty_Int) 47.49/23.22 new_primEqNat0(Succ(x0), Succ(x1)) 47.49/23.22 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.22 new_ltEs6(x0, x1) 47.49/23.22 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_compare7(Char(x0), Char(x1)) 47.49/23.22 new_esEs12(GT, GT) 47.49/23.22 new_esEs12(LT, EQ) 47.49/23.22 new_esEs12(EQ, LT) 47.49/23.22 new_compare25(Nothing, Nothing, False, x0) 47.49/23.22 new_ltEs5(x0, x1) 47.49/23.22 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_ltEs15(GT, LT) 47.49/23.22 new_ltEs15(LT, GT) 47.49/23.22 new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 47.49/23.22 new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 47.49/23.22 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 47.49/23.22 new_ltEs4(Just(x0), Just(x1), ty_Integer) 47.49/23.22 new_esEs27(x0, x1, ty_Int) 47.49/23.22 new_esEs6(Just(x0), Just(x1), ty_Integer) 47.49/23.22 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.22 new_esEs6(Just(x0), Just(x1), ty_Float) 47.49/23.22 new_lt20(x0, x1, app(ty_[], x2)) 47.49/23.22 new_esEs7(Left(x0), Left(x1), ty_@0, x2) 47.49/23.22 new_compare5(x0, x1, ty_Double) 47.49/23.22 new_compare28(x0, x1, False, x2, x3, x4) 47.49/23.22 new_primMulNat0(Succ(x0), Zero) 47.49/23.22 new_esEs27(x0, x1, ty_Float) 47.49/23.22 new_ltEs14(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 47.49/23.22 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_esEs25(x0, x1, ty_Bool) 47.49/23.22 new_compare25(Just(x0), Nothing, False, x1) 47.49/23.22 new_esEs6(Just(x0), Just(x1), ty_Ordering) 47.49/23.22 new_lt8(x0, x1, app(ty_[], x2)) 47.49/23.22 new_ltEs14(Right(x0), Right(x1), x2, ty_Char) 47.49/23.22 new_esEs9(x0, x1, ty_Bool) 47.49/23.22 new_lt7(x0, x1) 47.49/23.22 new_esEs32(x0, x1, ty_Double) 47.49/23.22 new_lt19(x0, x1, app(ty_Maybe, x2)) 47.49/23.22 new_lt8(x0, x1, ty_@0) 47.49/23.22 new_esEs7(Left(x0), Right(x1), x2, x3) 47.49/23.22 new_esEs7(Right(x0), Left(x1), x2, x3) 47.49/23.22 new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 47.49/23.22 new_esEs9(x0, x1, ty_Ordering) 47.49/23.22 new_primCmpInt(Neg(Zero), Neg(Zero)) 47.49/23.22 new_compare16(x0, x1, x2, x3) 47.49/23.22 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.22 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.22 new_esEs28(x0, x1, ty_Double) 47.49/23.22 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_primCmpInt(Pos(Zero), Neg(Zero)) 47.49/23.22 new_primCmpInt(Neg(Zero), Pos(Zero)) 47.49/23.22 new_primPlusNat0(Succ(x0), Zero) 47.49/23.22 new_esEs23(x0, x1, ty_Float) 47.49/23.22 new_esEs21(x0, x1, ty_Integer) 47.49/23.22 new_ltEs14(Right(x0), Right(x1), x2, ty_Int) 47.49/23.22 new_esEs28(x0, x1, ty_@0) 47.49/23.22 new_lt19(x0, x1, ty_Bool) 47.49/23.22 new_ltEs14(Left(x0), Left(x1), ty_Bool, x2) 47.49/23.22 new_esEs25(x0, x1, ty_Ordering) 47.49/23.22 new_lt19(x0, x1, ty_Ordering) 47.49/23.22 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.22 new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 47.49/23.22 new_esEs22(x0, x1, ty_Integer) 47.49/23.22 new_esEs21(x0, x1, app(ty_Ratio, x2)) 47.49/23.22 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_esEs11(False, False) 47.49/23.22 new_compare111(x0, x1, False, x2) 47.49/23.22 new_compare(:(x0, x1), [], x2) 47.49/23.22 new_esEs8([], :(x0, x1), x2) 47.49/23.22 new_esEs22(x0, x1, app(ty_Ratio, x2)) 47.49/23.22 new_compare114(x0, x1, True, x2, x3) 47.49/23.22 new_ltEs14(Left(x0), Left(x1), ty_Ordering, x2) 47.49/23.22 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.22 new_compare33(x0) 47.49/23.22 new_esEs28(x0, x1, app(ty_Ratio, x2)) 47.49/23.22 new_lt19(x0, x1, app(ty_[], x2)) 47.49/23.22 new_esEs9(x0, x1, ty_Integer) 47.49/23.22 new_ltEs14(Right(x0), Right(x1), x2, app(ty_[], x3)) 47.49/23.22 new_ltEs20(x0, x1, ty_@0) 47.49/23.22 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.22 new_ltEs4(Just(x0), Just(x1), ty_Char) 47.49/23.22 new_lt8(x0, x1, app(ty_Ratio, x2)) 47.49/23.22 new_ltEs14(Right(x0), Right(x1), x2, ty_Float) 47.49/23.22 new_compare113(x0, x1, True) 47.49/23.22 new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 47.49/23.22 new_lt18(x0, x1, x2) 47.49/23.22 new_lt20(x0, x1, app(ty_Maybe, x2)) 47.49/23.22 new_lt20(x0, x1, ty_Double) 47.49/23.22 new_ltEs19(x0, x1, ty_Bool) 47.49/23.22 new_ltEs20(x0, x1, ty_Double) 47.49/23.22 new_esEs24(x0, x1, ty_@0) 47.49/23.22 new_esEs7(Right(x0), Right(x1), x2, ty_Integer) 47.49/23.22 new_lt19(x0, x1, ty_Integer) 47.49/23.22 new_esEs22(x0, x1, ty_Ordering) 47.49/23.22 new_esEs13(Float(x0, x1), Float(x2, x3)) 47.49/23.22 new_esEs6(Just(x0), Just(x1), ty_Bool) 47.49/23.22 new_compare8(x0, x1) 47.49/23.22 new_ltEs14(Left(x0), Left(x1), ty_Integer, x2) 47.49/23.22 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 47.49/23.22 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) 47.49/23.22 new_ltEs13(True, True) 47.49/23.22 new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) 47.49/23.22 new_esEs23(x0, x1, app(ty_[], x2)) 47.49/23.22 new_esEs21(x0, x1, ty_Ordering) 47.49/23.22 new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 47.49/23.22 new_esEs25(x0, x1, ty_Integer) 47.49/23.22 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 47.49/23.22 new_ltEs4(Nothing, Just(x0), x1) 47.49/23.22 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_esEs25(x0, x1, ty_Char) 47.49/23.22 new_compare17(x0, x1) 47.49/23.22 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.22 new_esEs22(x0, x1, ty_@0) 47.49/23.22 new_esEs26(x0, x1, ty_Ordering) 47.49/23.22 new_esEs7(Left(x0), Left(x1), ty_Int, x2) 47.49/23.22 new_ltEs19(x0, x1, ty_Char) 47.49/23.22 new_esEs24(x0, x1, ty_Ordering) 47.49/23.22 new_compare([], :(x0, x1), x2) 47.49/23.22 new_esEs30(x0, x1, app(ty_[], x2)) 47.49/23.22 new_primCompAux00(x0, EQ) 47.49/23.22 new_esEs22(x0, x1, ty_Bool) 47.49/23.22 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.22 new_ltEs14(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 47.49/23.22 new_ltEs4(Just(x0), Just(x1), ty_Int) 47.49/23.22 new_primMulNat0(Zero, Zero) 47.49/23.22 new_compare24(x0, x1, True) 47.49/23.22 new_compare5(x0, x1, ty_@0) 47.49/23.22 new_ltEs18(x0, x1, ty_Float) 47.49/23.22 new_primPlusNat1(Zero, x0) 47.49/23.22 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.22 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.22 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_esEs24(x0, x1, ty_Int) 47.49/23.22 new_lt8(x0, x1, ty_Double) 47.49/23.22 new_esEs6(Just(x0), Just(x1), ty_Char) 47.49/23.22 new_esEs25(x0, x1, ty_Int) 47.49/23.22 new_esEs7(Left(x0), Left(x1), ty_Char, x2) 47.49/23.22 new_esEs23(x0, x1, ty_Char) 47.49/23.22 new_ltEs4(Just(x0), Just(x1), ty_Ordering) 47.49/23.22 new_compare5(x0, x1, ty_Bool) 47.49/23.22 new_sr0(Integer(x0), Integer(x1)) 47.49/23.22 new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) 47.49/23.22 new_fsEs(x0) 47.49/23.22 new_ltEs14(Right(x0), Right(x1), x2, ty_Double) 47.49/23.22 new_compare9(@0, @0) 47.49/23.22 new_ltEs18(x0, x1, app(ty_[], x2)) 47.49/23.22 new_esEs25(x0, x1, app(ty_Ratio, x2)) 47.49/23.22 new_ltEs19(x0, x1, ty_Ordering) 47.49/23.22 new_esEs24(x0, x1, ty_Char) 47.49/23.22 new_esEs9(x0, x1, app(ty_[], x2)) 47.49/23.22 new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 47.49/23.22 new_esEs32(x0, x1, app(ty_Ratio, x2)) 47.49/23.22 new_esEs21(x0, x1, ty_Bool) 47.49/23.22 new_esEs28(x0, x1, app(ty_Maybe, x2)) 47.49/23.22 new_esEs24(x0, x1, ty_Double) 47.49/23.22 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 47.49/23.22 new_ltEs11(@2(x0, x1), @2(x2, x3), x4, x5) 47.49/23.22 new_primPlusNat1(Succ(x0), x1) 47.49/23.22 new_esEs23(x0, x1, ty_Int) 47.49/23.22 new_compare112(x0, x1, True, x2, x3, x4) 47.49/23.22 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 47.49/23.22 new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.22 new_esEs23(x0, x1, ty_@0) 47.49/23.22 new_esEs6(Just(x0), Just(x1), ty_Int) 47.49/23.22 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_ltEs19(x0, x1, ty_Int) 47.49/23.22 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 47.49/23.22 new_esEs6(Nothing, Just(x0), x1) 47.49/23.22 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.22 new_esEs9(x0, x1, app(ty_Maybe, x2)) 47.49/23.22 new_esEs6(Just(x0), Just(x1), ty_@0) 47.49/23.22 new_lt8(x0, x1, ty_Ordering) 47.49/23.22 new_primPlusNat0(Zero, Zero) 47.49/23.22 new_esEs25(x0, x1, app(ty_[], x2)) 47.49/23.22 new_compare10(x0, x1, True, x2, x3) 47.49/23.22 new_compare26(x0, x1, False, x2, x3) 47.49/23.22 new_lt8(x0, x1, ty_Int) 47.49/23.22 new_esEs30(x0, x1, ty_Int) 47.49/23.22 new_ltEs14(Left(x0), Left(x1), ty_@0, x2) 47.49/23.22 new_lt19(x0, x1, ty_@0) 47.49/23.22 new_not(True) 47.49/23.22 new_compare5(x0, x1, app(ty_Ratio, x2)) 47.49/23.22 new_esEs8(:(x0, x1), [], x2) 47.49/23.22 new_esEs23(x0, x1, ty_Bool) 47.49/23.22 new_esEs22(x0, x1, ty_Char) 47.49/23.22 new_esEs12(EQ, GT) 47.49/23.22 new_esEs12(GT, EQ) 47.49/23.22 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) 47.49/23.22 new_lt19(x0, x1, ty_Float) 47.49/23.22 new_ltEs14(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 47.49/23.22 new_ltEs13(False, False) 47.49/23.22 new_esEs25(x0, x1, ty_Double) 47.49/23.22 new_esEs25(x0, x1, ty_@0) 47.49/23.22 new_lt15(x0, x1, x2) 47.49/23.22 new_compare26(x0, x1, True, x2, x3) 47.49/23.22 new_esEs26(x0, x1, app(ty_Ratio, x2)) 47.49/23.22 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 47.49/23.22 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 47.49/23.22 new_esEs11(True, True) 47.49/23.22 new_esEs15(:%(x0, x1), :%(x2, x3), x4) 47.49/23.22 new_esEs32(x0, x1, app(ty_[], x2)) 47.49/23.22 new_esEs7(Left(x0), Left(x1), ty_Double, x2) 47.49/23.22 new_esEs32(x0, x1, app(ty_Maybe, x2)) 47.49/23.22 new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 47.49/23.22 new_lt13(x0, x1, x2, x3, x4) 47.49/23.22 new_ltEs14(Right(x0), Right(x1), x2, ty_Ordering) 47.49/23.22 new_ltEs15(GT, EQ) 47.49/23.22 new_esEs23(x0, x1, ty_Double) 47.49/23.22 new_ltEs15(EQ, GT) 47.49/23.22 new_ltEs4(Just(x0), Nothing, x1) 47.49/23.22 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 47.49/23.22 new_esEs21(x0, x1, ty_Char) 47.49/23.22 new_esEs11(False, True) 47.49/23.22 new_esEs11(True, False) 47.49/23.22 new_compare113(x0, x1, False) 47.49/23.22 new_compare111(x0, x1, True, x2) 47.49/23.22 new_lt4(x0, x1, x2, x3) 47.49/23.22 new_lt8(x0, x1, ty_Char) 47.49/23.22 new_ltEs20(x0, x1, ty_Integer) 47.49/23.22 new_compare27(x0, x1, False, x2, x3) 47.49/23.22 new_compare112(x0, x1, False, x2, x3, x4) 47.49/23.22 new_esEs30(x0, x1, ty_Double) 47.49/23.22 new_esEs26(x0, x1, ty_Int) 47.49/23.22 new_primPlusNat0(Zero, Succ(x0)) 47.49/23.22 new_compare5(x0, x1, ty_Integer) 47.49/23.22 new_esEs30(x0, x1, ty_Char) 47.49/23.22 new_primCmpNat0(Succ(x0), Succ(x1)) 47.49/23.22 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 47.49/23.22 new_ltEs14(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 47.49/23.22 new_compare31(x0, x1) 47.49/23.22 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.22 new_esEs9(x0, x1, ty_@0) 47.49/23.22 new_esEs21(x0, x1, app(ty_[], x2)) 47.49/23.22 new_esEs12(LT, LT) 47.49/23.22 new_esEs22(x0, x1, app(ty_Maybe, x2)) 47.49/23.22 new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) 47.49/23.22 new_esEs21(x0, x1, ty_Int) 47.49/23.22 new_ltEs14(Left(x0), Left(x1), ty_Float, x2) 47.49/23.22 new_esEs26(x0, x1, ty_Double) 47.49/23.22 new_esEs22(x0, x1, ty_Int) 47.49/23.22 new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_esEs26(x0, x1, ty_Char) 47.49/23.22 new_esEs21(x0, x1, ty_@0) 47.49/23.22 new_lt14(x0, x1) 47.49/23.22 new_esEs7(Left(x0), Left(x1), ty_Bool, x2) 47.49/23.22 new_esEs9(x0, x1, ty_Float) 47.49/23.22 new_esEs20(x0, x1, ty_Int) 47.49/23.22 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.22 new_primCmpInt(Pos(Zero), Pos(Zero)) 47.49/23.22 new_esEs27(x0, x1, app(ty_Maybe, x2)) 47.49/23.22 new_esEs20(x0, x1, ty_Integer) 47.49/23.22 new_esEs32(x0, x1, ty_Int) 47.49/23.22 new_lt16(x0, x1, x2, x3) 47.49/23.22 new_esEs22(x0, x1, ty_Double) 47.49/23.22 new_esEs27(x0, x1, ty_Double) 47.49/23.22 new_esEs14(@0, @0) 47.49/23.22 new_pePe(False, x0) 47.49/23.22 new_ltEs9(x0, x1) 47.49/23.22 new_esEs22(x0, x1, ty_Float) 47.49/23.22 new_compare29(x0, x1, False) 47.49/23.22 new_esEs24(x0, x1, app(ty_Ratio, x2)) 47.49/23.22 new_ltEs14(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 47.49/23.22 new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 47.49/23.22 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.22 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.22 new_esEs16(x0, x1) 47.49/23.22 new_esEs26(x0, x1, ty_Bool) 47.49/23.22 new_esEs30(x0, x1, app(ty_Maybe, x2)) 47.49/23.22 new_lt10(x0, x1) 47.49/23.22 new_ltEs14(Right(x0), Left(x1), x2, x3) 47.49/23.22 new_esEs26(x0, x1, ty_@0) 47.49/23.22 new_ltEs14(Left(x0), Right(x1), x2, x3) 47.49/23.22 new_ltEs18(x0, x1, ty_@0) 47.49/23.22 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.22 new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 47.49/23.22 new_ltEs18(x0, x1, ty_Bool) 47.49/23.22 new_esEs32(x0, x1, ty_Ordering) 47.49/23.22 new_compare5(x0, x1, ty_Float) 47.49/23.22 new_esEs10(Integer(x0), Integer(x1)) 47.49/23.22 new_esEs23(x0, x1, app(ty_Maybe, x2)) 47.49/23.22 new_compare32(x0, x1) 47.49/23.22 new_esEs7(Right(x0), Right(x1), x2, ty_Double) 47.49/23.22 new_lt19(x0, x1, app(ty_Ratio, x2)) 47.49/23.22 new_esEs24(x0, x1, app(ty_[], x2)) 47.49/23.22 new_esEs21(x0, x1, ty_Double) 47.49/23.22 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 47.49/23.22 new_ltEs4(Just(x0), Just(x1), ty_@0) 47.49/23.22 new_compare5(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.22 new_lt20(x0, x1, ty_Float) 47.49/23.22 new_ltEs4(Nothing, Nothing, x0) 47.49/23.22 new_esEs26(x0, x1, ty_Integer) 47.49/23.22 new_ltEs10(x0, x1) 47.49/23.22 new_compare5(x0, x1, ty_Int) 47.49/23.22 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 47.49/23.22 new_ltEs14(Right(x0), Right(x1), x2, ty_@0) 47.49/23.22 new_lt20(x0, x1, ty_Ordering) 47.49/23.22 new_ltEs15(EQ, LT) 47.49/23.22 new_ltEs15(LT, EQ) 47.49/23.22 new_esEs30(x0, x1, ty_Bool) 47.49/23.22 new_lt8(x0, x1, app(ty_Maybe, x2)) 47.49/23.22 new_esEs23(x0, x1, ty_Integer) 47.49/23.22 new_esEs27(x0, x1, app(ty_[], x2)) 47.49/23.22 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_compare5(x0, x1, app(ty_[], x2)) 47.49/23.22 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 47.49/23.22 new_esEs24(x0, x1, ty_Bool) 47.49/23.22 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 47.49/23.22 new_ltEs14(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 47.49/23.22 new_ltEs15(GT, GT) 47.49/23.22 new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 47.49/23.22 new_esEs27(x0, x1, ty_Ordering) 47.49/23.22 new_esEs30(x0, x1, app(ty_Ratio, x2)) 47.49/23.22 new_esEs26(x0, x1, app(ty_Maybe, x2)) 47.49/23.22 new_compare5(x0, x1, ty_Char) 47.49/23.22 new_lt20(x0, x1, ty_Integer) 47.49/23.22 new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 47.49/23.22 new_esEs32(x0, x1, ty_Char) 47.49/23.22 new_ltEs14(Left(x0), Left(x1), ty_Double, x2) 47.49/23.22 new_ltEs19(x0, x1, ty_@0) 47.49/23.22 new_lt12(x0, x1, x2) 47.49/23.22 new_ltEs16(x0, x1) 47.49/23.22 new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 47.49/23.22 new_lt11(x0, x1) 47.49/23.22 new_ltEs18(x0, x1, ty_Integer) 47.49/23.22 new_primEqNat0(Zero, Zero) 47.49/23.22 new_esEs9(x0, x1, app(ty_Ratio, x2)) 47.49/23.22 new_esEs23(x0, x1, ty_Ordering) 47.49/23.22 new_not(False) 47.49/23.22 new_esEs21(x0, x1, app(ty_Maybe, x2)) 47.49/23.22 new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 47.49/23.22 new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 47.49/23.22 new_esEs6(Just(x0), Nothing, x1) 47.49/23.22 new_ltEs20(x0, x1, ty_Bool) 47.49/23.22 new_ltEs19(x0, x1, ty_Double) 47.49/23.22 new_esEs30(x0, x1, ty_Integer) 47.49/23.22 new_ltEs20(x0, x1, ty_Float) 47.49/23.22 new_compare11(Integer(x0), Integer(x1)) 47.49/23.22 new_primCompAux00(x0, LT) 47.49/23.22 new_compare110(x0, x1, True) 47.49/23.22 new_compare25(Nothing, Just(x0), False, x1) 47.49/23.22 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 47.49/23.22 new_ltEs15(LT, LT) 47.49/23.22 new_esEs6(Just(x0), Just(x1), ty_Double) 47.49/23.22 new_lt20(x0, x1, ty_Int) 47.49/23.22 new_lt9(x0, x1) 47.49/23.22 new_ltEs20(x0, x1, ty_Char) 47.49/23.22 new_esEs28(x0, x1, ty_Int) 47.49/23.22 new_lt20(x0, x1, ty_Bool) 47.49/23.22 new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 47.49/23.22 new_ltEs18(x0, x1, ty_Ordering) 47.49/23.22 new_compare25(Just(x0), Just(x1), False, x2) 47.49/23.22 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.22 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.22 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.22 new_lt20(x0, x1, ty_Char) 47.49/23.22 new_compare24(x0, x1, False) 47.49/23.22 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 47.49/23.22 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 47.49/23.22 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 47.49/23.22 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 47.49/23.22 new_esEs24(x0, x1, ty_Float) 47.49/23.22 new_primPlusNat0(Succ(x0), Succ(x1)) 47.49/23.22 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 47.49/23.22 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 47.49/23.22 new_primMulInt(Pos(x0), Neg(x1)) 47.49/23.22 new_primMulInt(Neg(x0), Pos(x1)) 47.49/23.22 new_ltEs4(Just(x0), Just(x1), ty_Double) 47.49/23.22 new_esEs19(x0, x1, ty_Int) 47.49/23.22 new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 47.49/23.22 new_esEs30(x0, x1, ty_Ordering) 47.49/23.22 new_primMulNat0(Zero, Succ(x0)) 47.49/23.22 new_primCmpNat0(Zero, Zero) 47.49/23.22 new_primEqNat0(Zero, Succ(x0)) 47.49/23.22 new_esEs28(x0, x1, ty_Float) 47.49/23.22 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 47.49/23.22 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.22 new_ltEs20(x0, x1, ty_Int) 47.49/23.22 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.22 new_compare28(x0, x1, True, x2, x3, x4) 47.49/23.22 47.49/23.22 We have to consider all minimal (P,Q,R)-chains. 47.49/23.22 ---------------------------------------- 47.49/23.22 47.49/23.22 (24) DependencyGraphProof (EQUIVALENT) 47.49/23.22 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. 47.49/23.22 ---------------------------------------- 47.49/23.22 47.49/23.22 (25) 47.49/23.22 Complex Obligation (AND) 47.49/23.22 47.49/23.22 ---------------------------------------- 47.49/23.22 47.49/23.22 (26) 47.49/23.22 Obligation: 47.49/23.22 Q DP problem: 47.49/23.22 The TRS P consists of the following rules: 47.49/23.22 47.49/23.22 new_splitGT3(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitGT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare25(Just(yvy400), Just(yvy300), new_esEs32(yvy400, yvy300, h), h), GT), h, ba) 47.49/23.22 new_splitGT21(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, bb, bc) -> new_splitGT0(yvy19, yvy20, bb, bc) 47.49/23.22 new_splitGT0(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Just(yvy400), h, ba) 47.49/23.22 new_splitGT3(Nothing, yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitGT20(yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare25(Just(yvy400), Nothing, False, h), GT), h, ba) 47.49/23.22 new_splitGT20(yvy31, yvy32, yvy33, Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, True, h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Just(yvy400), h, ba) 47.49/23.22 new_splitGT20(yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba) -> new_splitGT11(yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare32(yvy400, h), LT), h, ba) 47.49/23.22 new_splitGT11(yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba) -> new_splitGT0(yvy33, yvy400, h, ba) 47.49/23.22 new_splitGT21(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, False, bb, bc) -> new_splitGT12(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, new_esEs12(new_compare30(yvy20, yvy15, bb), LT), bb, bc) 47.49/23.22 new_splitGT12(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, bb, bc) -> new_splitGT0(yvy18, yvy20, bb, bc) 47.49/23.22 47.49/23.22 The TRS R consists of the following rules: 47.49/23.22 47.49/23.22 new_esEs22(yvy4002, yvy3002, app(ty_[], cad)) -> new_esEs8(yvy4002, yvy3002, cad) 47.49/23.22 new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) 47.49/23.22 new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT 47.49/23.22 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 47.49/23.22 new_primPlusNat0(Zero, Zero) -> Zero 47.49/23.22 new_compare13(yvy49000, yvy50000, bcb, bcc, bcd) -> new_compare28(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, bcb, bcc, bcd), bcb, bcc, bcd) 47.49/23.22 new_esEs23(yvy4001, yvy3001, app(ty_Maybe, cah)) -> new_esEs6(yvy4001, yvy3001, cah) 47.49/23.22 new_pePe(True, yvy220) -> True 47.49/23.22 new_ltEs20(yvy49002, yvy50002, ty_Ordering) -> new_ltEs15(yvy49002, yvy50002) 47.49/23.22 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.22 new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) 47.49/23.22 new_compare26(yvy49000, yvy50000, False, bbh, bca) -> new_compare114(yvy49000, yvy50000, new_ltEs14(yvy49000, yvy50000, bbh, bca), bbh, bca) 47.49/23.22 new_lt20(yvy49001, yvy50001, ty_Ordering) -> new_lt17(yvy49001, yvy50001) 47.49/23.22 new_esEs30(yvy20, yvy15, app(app(ty_@2, ddd), dde)) -> new_esEs4(yvy20, yvy15, ddd, dde) 47.49/23.23 new_compare(:(yvy49000, yvy49001), [], bf) -> GT 47.49/23.23 new_ltEs20(yvy49002, yvy50002, app(app(ty_@2, dbg), dbh)) -> new_ltEs11(yvy49002, yvy50002, dbg, dbh) 47.49/23.23 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 47.49/23.23 new_ltEs14(Right(yvy49000), Left(yvy50000), hd, ga) -> False 47.49/23.23 new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Ratio, hc), ga) -> new_ltEs17(yvy49000, yvy50000, hc) 47.49/23.23 new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT 47.49/23.23 new_lt20(yvy49001, yvy50001, app(ty_Ratio, dbe)) -> new_lt18(yvy49001, yvy50001, dbe) 47.49/23.23 new_compare(:(yvy49000, yvy49001), :(yvy50000, yvy50001), bf) -> new_primCompAux0(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, bf), bf) 47.49/23.23 new_compare26(yvy49000, yvy50000, True, bbh, bca) -> EQ 47.49/23.23 new_esEs8(:(yvy4000, yvy4001), :(yvy3000, yvy3001), ee) -> new_asAs(new_esEs9(yvy4000, yvy3000, ee), new_esEs8(yvy4001, yvy3001, ee)) 47.49/23.23 new_compare27(yvy49000, yvy50000, False, bd, be) -> new_compare10(yvy49000, yvy50000, new_ltEs11(yvy49000, yvy50000, bd, be), bd, be) 47.49/23.23 new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) 47.49/23.23 new_esEs30(yvy20, yvy15, ty_Float) -> new_esEs13(yvy20, yvy15) 47.49/23.23 new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.23 new_ltEs4(Nothing, Nothing, db) -> True 47.49/23.23 new_ltEs4(Just(yvy49000), Nothing, db) -> False 47.49/23.23 new_lt8(yvy49000, yvy50000, app(app(ty_@2, bd), be)) -> new_lt4(yvy49000, yvy50000, bd, be) 47.49/23.23 new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat1(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) 47.49/23.23 new_compare113(yvy49000, yvy50000, False) -> GT 47.49/23.23 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Int) -> new_ltEs7(yvy49000, yvy50000) 47.49/23.23 new_ltEs15(EQ, LT) -> False 47.49/23.23 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.23 new_esEs28(yvy49000, yvy50000, app(app(ty_Either, daa), dab)) -> new_esEs7(yvy49000, yvy50000, daa, dab) 47.49/23.23 new_lt19(yvy49000, yvy50000, app(app(ty_@2, chc), chd)) -> new_lt4(yvy49000, yvy50000, chc, chd) 47.49/23.23 new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.23 new_ltEs20(yvy49002, yvy50002, app(app(ty_Either, dce), dcf)) -> new_ltEs14(yvy49002, yvy50002, dce, dcf) 47.49/23.23 new_esEs28(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) 47.49/23.23 new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Maybe, ea)) -> new_ltEs4(yvy49000, yvy50000, ea) 47.49/23.23 new_ltEs19(yvy49001, yvy50001, ty_Ordering) -> new_ltEs15(yvy49001, yvy50001) 47.49/23.23 new_ltEs18(yvy4900, yvy5000, ty_Float) -> new_ltEs5(yvy4900, yvy5000) 47.49/23.23 new_lt9(yvy49000, yvy50000) -> new_esEs12(new_compare6(yvy49000, yvy50000), LT) 47.49/23.23 new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False 47.49/23.23 new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False 47.49/23.23 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(ty_Ratio, baf)) -> new_ltEs17(yvy49000, yvy50000, baf) 47.49/23.23 new_ltEs15(GT, LT) -> False 47.49/23.23 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.23 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.23 new_lt19(yvy49000, yvy50000, app(ty_Ratio, dac)) -> new_lt18(yvy49000, yvy50000, dac) 47.49/23.23 new_esEs24(yvy4000, yvy3000, app(ty_Ratio, cce)) -> new_esEs15(yvy4000, yvy3000, cce) 47.49/23.23 new_esEs24(yvy4000, yvy3000, app(app(ty_@2, ccc), ccd)) -> new_esEs4(yvy4000, yvy3000, ccc, ccd) 47.49/23.23 new_ltEs13(True, True) -> True 47.49/23.23 new_compare29(yvy49000, yvy50000, False) -> new_compare113(yvy49000, yvy50000, new_ltEs15(yvy49000, yvy50000)) 47.49/23.23 new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) 47.49/23.23 new_lt15(yvy49000, yvy50000, bah) -> new_esEs12(new_compare15(yvy49000, yvy50000, bah), LT) 47.49/23.23 new_ltEs20(yvy49002, yvy50002, ty_Integer) -> new_ltEs10(yvy49002, yvy50002) 47.49/23.23 new_ltEs19(yvy49001, yvy50001, app(app(ty_@2, bda), bdb)) -> new_ltEs11(yvy49001, yvy50001, bda, bdb) 47.49/23.23 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Bool) -> new_ltEs13(yvy49000, yvy50000) 47.49/23.23 new_not(True) -> False 47.49/23.23 new_esEs28(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) 47.49/23.23 new_esEs28(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) 47.49/23.23 new_ltEs19(yvy49001, yvy50001, app(ty_Ratio, bea)) -> new_ltEs17(yvy49001, yvy50001, bea) 47.49/23.23 new_primCompAux00(yvy225, LT) -> LT 47.49/23.23 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.23 new_primCmpNat0(Zero, Zero) -> EQ 47.49/23.23 new_esEs32(yvy400, yvy300, ty_Ordering) -> new_esEs12(yvy400, yvy300) 47.49/23.23 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Ordering, bee) -> new_esEs12(yvy4000, yvy3000) 47.49/23.23 new_esEs28(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) 47.49/23.23 new_lt20(yvy49001, yvy50001, ty_Bool) -> new_lt14(yvy49001, yvy50001) 47.49/23.23 new_esEs27(yvy49001, yvy50001, ty_Bool) -> new_esEs11(yvy49001, yvy50001) 47.49/23.23 new_ltEs19(yvy49001, yvy50001, ty_Integer) -> new_ltEs10(yvy49001, yvy50001) 47.49/23.23 new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.49/23.23 new_esEs27(yvy49001, yvy50001, app(ty_[], dad)) -> new_esEs8(yvy49001, yvy50001, dad) 47.49/23.23 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.23 new_esEs27(yvy49001, yvy50001, ty_Char) -> new_esEs17(yvy49001, yvy50001) 47.49/23.23 new_esEs30(yvy20, yvy15, app(ty_Ratio, ddf)) -> new_esEs15(yvy20, yvy15, ddf) 47.49/23.23 new_esEs12(LT, LT) -> True 47.49/23.23 new_esEs21(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) 47.49/23.23 new_primEqNat0(Succ(yvy40000), Zero) -> False 47.49/23.23 new_primEqNat0(Zero, Succ(yvy30000)) -> False 47.49/23.23 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(app(app(ty_@3, hh), baa), bab)) -> new_ltEs12(yvy49000, yvy50000, hh, baa, bab) 47.49/23.23 new_esEs14(@0, @0) -> True 47.49/23.23 new_compare8(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) 47.49/23.23 new_ltEs19(yvy49001, yvy50001, ty_Char) -> new_ltEs6(yvy49001, yvy50001) 47.49/23.23 new_compare10(yvy49000, yvy50000, True, bd, be) -> LT 47.49/23.23 new_ltEs15(GT, EQ) -> False 47.49/23.23 new_lt20(yvy49001, yvy50001, app(app(app(ty_@3, dag), dah), dba)) -> new_lt13(yvy49001, yvy50001, dag, dah, dba) 47.49/23.23 new_primCompAux00(yvy225, GT) -> GT 47.49/23.23 new_compare110(yvy49000, yvy50000, True) -> LT 47.49/23.23 new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, cef), ceg), ceh)) -> new_esEs5(yvy4001, yvy3001, cef, ceg, ceh) 47.49/23.23 new_compare16(yvy49000, yvy50000, bbh, bca) -> new_compare26(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, bbh, bca), bbh, bca) 47.49/23.23 new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.23 new_esEs27(yvy49001, yvy50001, ty_Ordering) -> new_esEs12(yvy49001, yvy50001) 47.49/23.23 new_lt19(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) 47.49/23.23 new_ltEs20(yvy49002, yvy50002, ty_Bool) -> new_ltEs13(yvy49002, yvy50002) 47.49/23.23 new_esEs22(yvy4002, yvy3002, ty_Int) -> new_esEs16(yvy4002, yvy3002) 47.49/23.23 new_ltEs18(yvy4900, yvy5000, ty_Double) -> new_ltEs16(yvy4900, yvy5000) 47.49/23.23 new_esEs32(yvy400, yvy300, ty_@0) -> new_esEs14(yvy400, yvy300) 47.49/23.23 new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT 47.49/23.23 new_esEs27(yvy49001, yvy50001, ty_Int) -> new_esEs16(yvy49001, yvy50001) 47.49/23.23 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, app(ty_Ratio, bgd)) -> new_esEs15(yvy4000, yvy3000, bgd) 47.49/23.23 new_esEs22(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) 47.49/23.23 new_compare12(yvy49000, yvy50000, bd, be) -> new_compare27(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, bd, be), bd, be) 47.49/23.23 new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, cbg), cbh), cca)) -> new_esEs5(yvy4000, yvy3000, cbg, cbh, cca) 47.49/23.23 new_lt19(yvy49000, yvy50000, app(app(app(ty_@3, che), chf), chg)) -> new_lt13(yvy49000, yvy50000, che, chf, chg) 47.49/23.23 new_ltEs20(yvy49002, yvy50002, app(app(app(ty_@3, dca), dcb), dcc)) -> new_ltEs12(yvy49002, yvy50002, dca, dcb, dcc) 47.49/23.23 new_esEs30(yvy20, yvy15, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs5(yvy20, yvy15, dch, dda, ddb) 47.49/23.23 new_esEs30(yvy20, yvy15, ty_Double) -> new_esEs18(yvy20, yvy15) 47.49/23.23 new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bgh, bha, bhb) -> new_asAs(new_esEs24(yvy4000, yvy3000, bgh), new_asAs(new_esEs23(yvy4001, yvy3001, bha), new_esEs22(yvy4002, yvy3002, bhb))) 47.49/23.23 new_compare5(yvy49000, yvy50000, ty_Int) -> new_compare8(yvy49000, yvy50000) 47.49/23.23 new_compare32(yvy400, h) -> new_compare25(Just(yvy400), Nothing, False, h) 47.49/23.23 new_ltEs19(yvy49001, yvy50001, ty_Bool) -> new_ltEs13(yvy49001, yvy50001) 47.49/23.23 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, app(app(app(ty_@3, bff), bfg), bfh)) -> new_esEs5(yvy4000, yvy3000, bff, bfg, bfh) 47.49/23.23 new_ltEs18(yvy4900, yvy5000, ty_Integer) -> new_ltEs10(yvy4900, yvy5000) 47.49/23.23 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.23 new_esEs26(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.23 new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.23 new_esEs7(Left(yvy4000), Left(yvy3000), ty_@0, bee) -> new_esEs14(yvy4000, yvy3000) 47.49/23.23 new_esEs32(yvy400, yvy300, app(ty_[], ee)) -> new_esEs8(yvy400, yvy300, ee) 47.49/23.23 new_primCmpNat0(Zero, Succ(yvy5000)) -> LT 47.49/23.23 new_compare5(yvy49000, yvy50000, app(ty_Ratio, da)) -> new_compare19(yvy49000, yvy50000, da) 47.49/23.23 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.23 new_esEs26(yvy4000, yvy3000, app(ty_[], cha)) -> new_esEs8(yvy4000, yvy3000, cha) 47.49/23.23 new_esEs12(EQ, GT) -> False 47.49/23.23 new_esEs12(GT, EQ) -> False 47.49/23.23 new_lt8(yvy49000, yvy50000, app(ty_Ratio, bcg)) -> new_lt18(yvy49000, yvy50000, bcg) 47.49/23.23 new_ltEs19(yvy49001, yvy50001, app(app(app(ty_@3, bdc), bdd), bde)) -> new_ltEs12(yvy49001, yvy50001, bdc, bdd, bde) 47.49/23.23 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) 47.49/23.23 new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.23 new_lt8(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) 47.49/23.23 new_esEs21(yvy49000, yvy50000, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs5(yvy49000, yvy50000, bcb, bcc, bcd) 47.49/23.23 new_lt19(yvy49000, yvy50000, app(ty_[], chb)) -> new_lt12(yvy49000, yvy50000, chb) 47.49/23.23 new_primCmpNat0(Succ(yvy4900), Zero) -> GT 47.49/23.23 new_pePe(False, yvy220) -> yvy220 47.49/23.23 new_esEs27(yvy49001, yvy50001, ty_@0) -> new_esEs14(yvy49001, yvy50001) 47.49/23.23 new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Maybe, gh), ga) -> new_ltEs4(yvy49000, yvy50000, gh) 47.49/23.23 new_esEs11(False, True) -> False 47.49/23.23 new_esEs11(True, False) -> False 47.49/23.23 new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cea), ceb)) -> new_esEs7(yvy4000, yvy3000, cea, ceb) 47.49/23.23 new_lt8(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) 47.49/23.23 new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_@2, beg), beh), bee) -> new_esEs4(yvy4000, yvy3000, beg, beh) 47.49/23.23 new_compare114(yvy49000, yvy50000, True, bbh, bca) -> LT 47.49/23.23 new_lt8(yvy49000, yvy50000, app(app(ty_Either, bbh), bca)) -> new_lt16(yvy49000, yvy50000, bbh, bca) 47.49/23.23 new_ltEs18(yvy4900, yvy5000, ty_@0) -> new_ltEs9(yvy4900, yvy5000) 47.49/23.23 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_@0) -> new_ltEs9(yvy49000, yvy50000) 47.49/23.23 new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 47.49/23.23 new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) 47.49/23.23 new_ltEs7(yvy4900, yvy5000) -> new_fsEs(new_compare8(yvy4900, yvy5000)) 47.49/23.23 new_ltEs19(yvy49001, yvy50001, ty_Double) -> new_ltEs16(yvy49001, yvy50001) 47.49/23.23 new_esEs22(yvy4002, yvy3002, ty_Bool) -> new_esEs11(yvy4002, yvy3002) 47.49/23.23 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Char) -> new_ltEs6(yvy49000, yvy50000) 47.49/23.23 new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_[], gb), ga) -> new_ltEs8(yvy49000, yvy50000, gb) 47.49/23.23 new_esEs21(yvy49000, yvy50000, app(ty_[], bcf)) -> new_esEs8(yvy49000, yvy50000, bcf) 47.49/23.23 new_esEs22(yvy4002, yvy3002, app(ty_Maybe, bhf)) -> new_esEs6(yvy4002, yvy3002, bhf) 47.49/23.23 new_esEs21(yvy49000, yvy50000, app(app(ty_@2, bd), be)) -> new_esEs4(yvy49000, yvy50000, bd, be) 47.49/23.23 new_esEs32(yvy400, yvy300, app(ty_Maybe, cda)) -> new_esEs6(yvy400, yvy300, cda) 47.49/23.23 new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False 47.49/23.23 new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False 47.49/23.23 new_esEs25(yvy4001, yvy3001, app(app(ty_@2, cfb), cfc)) -> new_esEs4(yvy4001, yvy3001, cfb, cfc) 47.49/23.23 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Bool, bee) -> new_esEs11(yvy4000, yvy3000) 47.49/23.23 new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Ratio, bfa), bee) -> new_esEs15(yvy4000, yvy3000, bfa) 47.49/23.23 new_ltEs18(yvy4900, yvy5000, ty_Bool) -> new_ltEs13(yvy4900, yvy5000) 47.49/23.23 new_ltEs18(yvy4900, yvy5000, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_ltEs12(yvy4900, yvy5000, bbd, bbe, bbf) 47.49/23.23 new_esEs23(yvy4001, yvy3001, app(app(ty_Either, cbd), cbe)) -> new_esEs7(yvy4001, yvy3001, cbd, cbe) 47.49/23.23 new_esEs21(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) 47.49/23.23 new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 47.49/23.23 new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_@2, gc), gd), ga) -> new_ltEs11(yvy49000, yvy50000, gc, gd) 47.49/23.23 new_ltEs20(yvy49002, yvy50002, ty_Double) -> new_ltEs16(yvy49002, yvy50002) 47.49/23.23 new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.23 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(app(ty_Either, bad), bae)) -> new_ltEs14(yvy49000, yvy50000, bad, bae) 47.49/23.23 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Float, ga) -> new_ltEs5(yvy49000, yvy50000) 47.49/23.23 new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT 47.49/23.23 new_compare114(yvy49000, yvy50000, False, bbh, bca) -> GT 47.49/23.23 new_esEs25(yvy4001, yvy3001, app(ty_[], cfg)) -> new_esEs8(yvy4001, yvy3001, cfg) 47.49/23.23 new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.23 new_esEs4(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ced, cee) -> new_asAs(new_esEs26(yvy4000, yvy3000, ced), new_esEs25(yvy4001, yvy3001, cee)) 47.49/23.23 new_ltEs5(yvy4900, yvy5000) -> new_fsEs(new_compare6(yvy4900, yvy5000)) 47.49/23.23 new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_Either, bfb), bfc), bee) -> new_esEs7(yvy4000, yvy3000, bfb, bfc) 47.49/23.23 new_esEs26(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.23 new_esEs9(yvy4000, yvy3000, app(app(ty_@2, fb), fc)) -> new_esEs4(yvy4000, yvy3000, fb, fc) 47.49/23.23 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.23 new_compare25(Just(yvy4900), Nothing, False, bba) -> GT 47.49/23.23 new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) 47.49/23.23 new_compare5(yvy49000, yvy50000, ty_@0) -> new_compare9(yvy49000, yvy50000) 47.49/23.23 new_esEs24(yvy4000, yvy3000, app(ty_Maybe, ccb)) -> new_esEs6(yvy4000, yvy3000, ccb) 47.49/23.23 new_lt11(yvy205, yvy204) -> new_esEs12(new_compare8(yvy205, yvy204), LT) 47.49/23.23 new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 47.49/23.23 new_lt6(yvy49000, yvy50000) -> new_esEs12(new_compare9(yvy49000, yvy50000), LT) 47.49/23.23 new_primMulNat0(Succ(yvy400100), Zero) -> Zero 47.49/23.23 new_primMulNat0(Zero, Succ(yvy300000)) -> Zero 47.49/23.23 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Double, ga) -> new_ltEs16(yvy49000, yvy50000) 47.49/23.23 new_lt8(yvy49000, yvy50000, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_lt13(yvy49000, yvy50000, bcb, bcc, bcd) 47.49/23.23 new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) 47.49/23.23 new_esEs6(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs5(yvy4000, yvy3000, cdb, cdc, cdd) 47.49/23.23 new_esEs25(yvy4001, yvy3001, app(app(ty_Either, cfe), cff)) -> new_esEs7(yvy4001, yvy3001, cfe, cff) 47.49/23.23 new_compare5(yvy49000, yvy50000, ty_Float) -> new_compare6(yvy49000, yvy50000) 47.49/23.23 new_esEs9(yvy4000, yvy3000, app(ty_[], fh)) -> new_esEs8(yvy4000, yvy3000, fh) 47.49/23.23 new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, cae), caf), cag)) -> new_esEs5(yvy4001, yvy3001, cae, caf, cag) 47.49/23.23 new_esEs26(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.23 new_primPlusNat1(Succ(yvy1610), yvy300000) -> Succ(Succ(new_primPlusNat0(yvy1610, yvy300000))) 47.49/23.23 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Int, bee) -> new_esEs16(yvy4000, yvy3000) 47.49/23.23 new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.23 new_esEs16(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) 47.49/23.23 new_primPlusNat0(Succ(yvy16100), Zero) -> Succ(yvy16100) 47.49/23.23 new_primPlusNat0(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) 47.49/23.23 new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) 47.49/23.23 new_primPlusNat1(Zero, yvy300000) -> Succ(yvy300000) 47.49/23.23 new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Int) -> new_compare8(new_sr(yvy49000, yvy50001), new_sr(yvy50000, yvy49001)) 47.49/23.23 new_esEs32(yvy400, yvy300, app(app(app(ty_@3, bgh), bha), bhb)) -> new_esEs5(yvy400, yvy300, bgh, bha, bhb) 47.49/23.23 new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.23 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_@0, ga) -> new_ltEs9(yvy49000, yvy50000) 47.49/23.23 new_lt8(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) 47.49/23.23 new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_Either, ha), hb), ga) -> new_ltEs14(yvy49000, yvy50000, ha, hb) 47.49/23.23 new_ltEs20(yvy49002, yvy50002, ty_@0) -> new_ltEs9(yvy49002, yvy50002) 47.49/23.23 new_ltEs18(yvy4900, yvy5000, app(app(ty_@2, bbb), bbc)) -> new_ltEs11(yvy4900, yvy5000, bbb, bbc) 47.49/23.23 new_ltEs9(yvy4900, yvy5000) -> new_fsEs(new_compare9(yvy4900, yvy5000)) 47.49/23.23 new_esEs22(yvy4002, yvy3002, app(ty_Ratio, caa)) -> new_esEs15(yvy4002, yvy3002, caa) 47.49/23.23 new_ltEs19(yvy49001, yvy50001, app(app(ty_Either, bdg), bdh)) -> new_ltEs14(yvy49001, yvy50001, bdg, bdh) 47.49/23.23 new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) 47.49/23.23 new_lt8(yvy49000, yvy50000, app(ty_Maybe, bah)) -> new_lt15(yvy49000, yvy50000, bah) 47.49/23.23 new_esEs32(yvy400, yvy300, ty_Double) -> new_esEs18(yvy400, yvy300) 47.49/23.23 new_esEs30(yvy20, yvy15, ty_@0) -> new_esEs14(yvy20, yvy15) 47.49/23.23 new_lt20(yvy49001, yvy50001, ty_Char) -> new_lt10(yvy49001, yvy50001) 47.49/23.23 new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.49/23.23 new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.49/23.23 new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fa)) -> new_esEs6(yvy4000, yvy3000, fa) 47.49/23.23 new_esEs23(yvy4001, yvy3001, app(ty_Ratio, cbc)) -> new_esEs15(yvy4001, yvy3001, cbc) 47.49/23.23 new_compare25(Just(yvy4900), Just(yvy5000), False, bba) -> new_compare111(yvy4900, yvy5000, new_ltEs18(yvy4900, yvy5000, bba), bba) 47.49/23.23 new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.49/23.23 new_ltEs20(yvy49002, yvy50002, ty_Float) -> new_ltEs5(yvy49002, yvy50002) 47.49/23.23 new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cdf), cdg)) -> new_esEs4(yvy4000, yvy3000, cdf, cdg) 47.49/23.23 new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.23 new_fsEs(yvy209) -> new_not(new_esEs12(yvy209, GT)) 47.49/23.23 new_ltEs18(yvy4900, yvy5000, app(app(ty_Either, hd), ga)) -> new_ltEs14(yvy4900, yvy5000, hd, ga) 47.49/23.23 new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cdh)) -> new_esEs15(yvy4000, yvy3000, cdh) 47.49/23.23 new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.23 new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) 47.49/23.23 new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_[], cec)) -> new_esEs8(yvy4000, yvy3000, cec) 47.49/23.23 new_compare25(yvy490, yvy500, True, bba) -> EQ 47.49/23.23 new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs5(yvy4000, yvy3000, ef, eg, eh) 47.49/23.23 new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fd)) -> new_esEs15(yvy4000, yvy3000, fd) 47.49/23.23 new_compare([], :(yvy50000, yvy50001), bf) -> LT 47.49/23.23 new_lt20(yvy49001, yvy50001, app(ty_[], dad)) -> new_lt12(yvy49001, yvy50001, dad) 47.49/23.23 new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cde)) -> new_esEs6(yvy4000, yvy3000, cde) 47.49/23.23 new_esEs6(Nothing, Just(yvy3000), cda) -> False 47.49/23.23 new_esEs6(Just(yvy4000), Nothing, cda) -> False 47.49/23.23 new_esEs23(yvy4001, yvy3001, app(ty_[], cbf)) -> new_esEs8(yvy4001, yvy3001, cbf) 47.49/23.23 new_ltEs15(EQ, GT) -> True 47.49/23.23 new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.23 new_esEs6(Nothing, Nothing, cda) -> True 47.49/23.23 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Double) -> new_ltEs16(yvy49000, yvy50000) 47.49/23.23 new_esEs11(False, False) -> True 47.49/23.23 new_esEs24(yvy4000, yvy3000, app(app(ty_Either, ccf), ccg)) -> new_esEs7(yvy4000, yvy3000, ccf, ccg) 47.49/23.23 new_ltEs18(yvy4900, yvy5000, ty_Ordering) -> new_ltEs15(yvy4900, yvy5000) 47.49/23.23 new_ltEs11(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), bbb, bbc) -> new_pePe(new_lt8(yvy49000, yvy50000, bbb), new_asAs(new_esEs21(yvy49000, yvy50000, bbb), new_ltEs19(yvy49001, yvy50001, bbc))) 47.49/23.23 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Integer) -> new_ltEs10(yvy49000, yvy50000) 47.49/23.23 new_esEs21(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) 47.49/23.23 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.23 new_esEs30(yvy20, yvy15, ty_Char) -> new_esEs17(yvy20, yvy15) 47.49/23.23 new_ltEs14(Left(yvy49000), Right(yvy50000), hd, ga) -> True 47.49/23.23 new_ltEs19(yvy49001, yvy50001, ty_Float) -> new_ltEs5(yvy49001, yvy50001) 47.49/23.23 new_esEs23(yvy4001, yvy3001, app(app(ty_@2, cba), cbb)) -> new_esEs4(yvy4001, yvy3001, cba, cbb) 47.49/23.23 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.23 new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.49/23.23 new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.49/23.23 new_esEs26(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.23 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Ordering, ga) -> new_ltEs15(yvy49000, yvy50000) 47.49/23.23 new_ltEs6(yvy4900, yvy5000) -> new_fsEs(new_compare7(yvy4900, yvy5000)) 47.49/23.23 new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.23 new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.23 new_esEs8(:(yvy4000, yvy4001), [], ee) -> False 47.49/23.23 new_esEs8([], :(yvy3000, yvy3001), ee) -> False 47.49/23.23 new_esEs26(yvy4000, yvy3000, app(app(ty_Either, cgg), cgh)) -> new_esEs7(yvy4000, yvy3000, cgg, cgh) 47.49/23.23 new_lt19(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) 47.49/23.23 new_lt17(yvy49000, yvy50000) -> new_esEs12(new_compare17(yvy49000, yvy50000), LT) 47.49/23.23 new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Integer) -> new_compare11(new_sr0(yvy49000, yvy50001), new_sr0(yvy50000, yvy49001)) 47.49/23.23 new_esEs22(yvy4002, yvy3002, app(app(ty_@2, bhg), bhh)) -> new_esEs4(yvy4002, yvy3002, bhg, bhh) 47.49/23.23 new_esEs22(yvy4002, yvy3002, ty_Double) -> new_esEs18(yvy4002, yvy3002) 47.49/23.23 new_esEs26(yvy4000, yvy3000, app(ty_Ratio, cgf)) -> new_esEs15(yvy4000, yvy3000, cgf) 47.49/23.23 new_compare5(yvy49000, yvy50000, app(ty_Maybe, ce)) -> new_compare15(yvy49000, yvy50000, ce) 47.49/23.23 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Integer, bee) -> new_esEs10(yvy4000, yvy3000) 47.49/23.23 new_ltEs19(yvy49001, yvy50001, ty_@0) -> new_ltEs9(yvy49001, yvy50001) 47.49/23.23 new_esEs22(yvy4002, yvy3002, app(app(app(ty_@3, bhc), bhd), bhe)) -> new_esEs5(yvy4002, yvy3002, bhc, bhd, bhe) 47.49/23.23 new_esEs32(yvy400, yvy300, ty_Integer) -> new_esEs10(yvy400, yvy300) 47.49/23.23 new_lt20(yvy49001, yvy50001, ty_@0) -> new_lt6(yvy49001, yvy50001) 47.49/23.23 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, app(app(ty_@2, bgb), bgc)) -> new_esEs4(yvy4000, yvy3000, bgb, bgc) 47.49/23.23 new_sr0(Integer(yvy490000), Integer(yvy500010)) -> Integer(new_primMulInt(yvy490000, yvy500010)) 47.49/23.23 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Bool, ga) -> new_ltEs13(yvy49000, yvy50000) 47.49/23.23 new_esEs18(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 47.49/23.23 new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.23 new_esEs28(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) 47.49/23.23 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, app(ty_[], bgg)) -> new_esEs8(yvy4000, yvy3000, bgg) 47.49/23.23 new_esEs32(yvy400, yvy300, app(app(ty_Either, bfe), bee)) -> new_esEs7(yvy400, yvy300, bfe, bee) 47.49/23.23 new_ltEs15(LT, GT) -> True 47.49/23.23 new_lt19(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) 47.49/23.23 new_esEs30(yvy20, yvy15, app(ty_[], dea)) -> new_esEs8(yvy20, yvy15, dea) 47.49/23.23 new_compare33(h) -> new_compare25(Nothing, Nothing, True, h) 47.49/23.23 new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) 47.49/23.23 new_esEs12(GT, GT) -> True 47.49/23.23 new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) 47.49/23.23 new_esEs24(yvy4000, yvy3000, app(ty_[], cch)) -> new_esEs8(yvy4000, yvy3000, cch) 47.49/23.23 new_asAs(True, yvy201) -> yvy201 47.49/23.23 new_esEs26(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.23 new_esEs21(yvy49000, yvy50000, app(ty_Maybe, bah)) -> new_esEs6(yvy49000, yvy50000, bah) 47.49/23.23 new_esEs10(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) 47.49/23.23 new_compare10(yvy49000, yvy50000, False, bd, be) -> GT 47.49/23.23 new_lt8(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) 47.49/23.23 new_lt8(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) 47.49/23.23 new_compare113(yvy49000, yvy50000, True) -> LT 47.49/23.23 new_esEs32(yvy400, yvy300, app(ty_Ratio, bag)) -> new_esEs15(yvy400, yvy300, bag) 47.49/23.23 new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.23 new_ltEs16(yvy4900, yvy5000) -> new_fsEs(new_compare18(yvy4900, yvy5000)) 47.49/23.23 new_lt20(yvy49001, yvy50001, ty_Float) -> new_lt9(yvy49001, yvy50001) 47.49/23.23 new_ltEs4(Nothing, Just(yvy50000), db) -> True 47.49/23.23 new_esEs21(yvy49000, yvy50000, app(ty_Ratio, bcg)) -> new_esEs15(yvy49000, yvy50000, bcg) 47.49/23.23 new_ltEs18(yvy4900, yvy5000, app(ty_Maybe, db)) -> new_ltEs4(yvy4900, yvy5000, db) 47.49/23.23 new_lt8(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) 47.49/23.23 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Float, bee) -> new_esEs13(yvy4000, yvy3000) 47.49/23.23 new_esEs32(yvy400, yvy300, ty_Float) -> new_esEs13(yvy400, yvy300) 47.49/23.23 new_ltEs8(yvy4900, yvy5000, bf) -> new_fsEs(new_compare(yvy4900, yvy5000, bf)) 47.49/23.23 new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) 47.49/23.23 new_ltEs18(yvy4900, yvy5000, app(ty_[], bf)) -> new_ltEs8(yvy4900, yvy5000, bf) 47.49/23.23 new_compare110(yvy49000, yvy50000, False) -> GT 47.49/23.23 new_primCompAux00(yvy225, EQ) -> yvy225 47.49/23.23 new_lt19(yvy49000, yvy50000, app(ty_Maybe, chh)) -> new_lt15(yvy49000, yvy50000, chh) 47.49/23.23 new_esEs12(EQ, EQ) -> True 47.49/23.23 new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) 47.49/23.23 new_lt19(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) 47.49/23.23 new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) 47.49/23.23 new_esEs21(yvy49000, yvy50000, app(app(ty_Either, bbh), bca)) -> new_esEs7(yvy49000, yvy50000, bbh, bca) 47.49/23.23 new_primMulNat0(Zero, Zero) -> Zero 47.49/23.23 new_compare24(yvy49000, yvy50000, False) -> new_compare110(yvy49000, yvy50000, new_ltEs13(yvy49000, yvy50000)) 47.49/23.23 new_compare5(yvy49000, yvy50000, ty_Integer) -> new_compare11(yvy49000, yvy50000) 47.49/23.23 new_esEs22(yvy4002, yvy3002, ty_Integer) -> new_esEs10(yvy4002, yvy3002) 47.49/23.23 new_esEs21(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) 47.49/23.23 new_lt19(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) 47.49/23.23 new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.23 new_ltEs12(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), bbd, bbe, bbf) -> new_pePe(new_lt19(yvy49000, yvy50000, bbd), new_asAs(new_esEs28(yvy49000, yvy50000, bbd), new_pePe(new_lt20(yvy49001, yvy50001, bbe), new_asAs(new_esEs27(yvy49001, yvy50001, bbe), new_ltEs20(yvy49002, yvy50002, bbf))))) 47.49/23.23 new_ltEs19(yvy49001, yvy50001, app(ty_[], bch)) -> new_ltEs8(yvy49001, yvy50001, bch) 47.49/23.23 new_compare5(yvy49000, yvy50000, ty_Double) -> new_compare18(yvy49000, yvy50000) 47.49/23.23 new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_@2, dd), de)) -> new_ltEs11(yvy49000, yvy50000, dd, de) 47.49/23.23 new_compare11(Integer(yvy49000), Integer(yvy50000)) -> new_primCmpInt(yvy49000, yvy50000) 47.49/23.23 new_compare9(@0, @0) -> EQ 47.49/23.23 new_esEs22(yvy4002, yvy3002, app(app(ty_Either, cab), cac)) -> new_esEs7(yvy4002, yvy3002, cab, cac) 47.49/23.23 new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.23 new_compare28(yvy49000, yvy50000, True, bcb, bcc, bcd) -> EQ 47.49/23.23 new_esEs27(yvy49001, yvy50001, ty_Float) -> new_esEs13(yvy49001, yvy50001) 47.49/23.23 new_esEs26(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.23 new_ltEs13(False, True) -> True 47.49/23.23 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.23 new_ltEs13(False, False) -> True 47.49/23.23 new_esEs9(yvy4000, yvy3000, app(app(ty_Either, ff), fg)) -> new_esEs7(yvy4000, yvy3000, ff, fg) 47.49/23.23 new_esEs7(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, beb), bec), bed), bee) -> new_esEs5(yvy4000, yvy3000, beb, bec, bed) 47.49/23.23 new_ltEs15(EQ, EQ) -> True 47.49/23.23 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) 47.49/23.23 new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Maybe, bef), bee) -> new_esEs6(yvy4000, yvy3000, bef) 47.49/23.23 new_compare30(yvy20, yvy15, bb) -> new_compare25(Just(yvy20), Just(yvy15), new_esEs30(yvy20, yvy15, bb), bb) 47.49/23.23 new_esEs26(yvy4000, yvy3000, app(ty_Maybe, cgc)) -> new_esEs6(yvy4000, yvy3000, cgc) 47.49/23.23 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.23 new_esEs26(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.23 new_lt12(yvy49000, yvy50000, bcf) -> new_esEs12(new_compare(yvy49000, yvy50000, bcf), LT) 47.49/23.23 new_lt10(yvy49000, yvy50000) -> new_esEs12(new_compare7(yvy49000, yvy50000), LT) 47.49/23.23 new_lt19(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) 47.49/23.23 new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.23 new_compare31(yvy300, h) -> new_compare25(Nothing, Just(yvy300), False, h) 47.49/23.23 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Char, bee) -> new_esEs17(yvy4000, yvy3000) 47.49/23.23 new_esEs32(yvy400, yvy300, ty_Char) -> new_esEs17(yvy400, yvy300) 47.49/23.23 new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.23 new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_[], bfd), bee) -> new_esEs8(yvy4000, yvy3000, bfd) 47.49/23.23 new_ltEs20(yvy49002, yvy50002, app(ty_[], dbf)) -> new_ltEs8(yvy49002, yvy50002, dbf) 47.49/23.23 new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_Either, eb), ec)) -> new_ltEs14(yvy49000, yvy50000, eb, ec) 47.49/23.23 new_compare17(yvy49000, yvy50000) -> new_compare29(yvy49000, yvy50000, new_esEs12(yvy49000, yvy50000)) 47.49/23.23 new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False 47.49/23.23 new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False 47.49/23.23 new_esEs21(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) 47.49/23.23 new_esEs25(yvy4001, yvy3001, app(ty_Maybe, cfa)) -> new_esEs6(yvy4001, yvy3001, cfa) 47.49/23.23 new_compare([], [], bf) -> EQ 47.49/23.23 new_ltEs15(LT, EQ) -> True 47.49/23.23 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Float) -> new_ltEs5(yvy49000, yvy50000) 47.49/23.23 new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 47.49/23.23 new_ltEs18(yvy4900, yvy5000, ty_Char) -> new_ltEs6(yvy4900, yvy5000) 47.49/23.23 new_ltEs18(yvy4900, yvy5000, app(ty_Ratio, bbg)) -> new_ltEs17(yvy4900, yvy5000, bbg) 47.49/23.23 new_esEs32(yvy400, yvy300, app(app(ty_@2, ced), cee)) -> new_esEs4(yvy400, yvy300, ced, cee) 47.49/23.23 new_lt20(yvy49001, yvy50001, ty_Double) -> new_lt7(yvy49001, yvy50001) 47.49/23.23 new_esEs26(yvy4000, yvy3000, app(app(ty_@2, cgd), cge)) -> new_esEs4(yvy4000, yvy3000, cgd, cge) 47.49/23.23 new_compare24(yvy49000, yvy50000, True) -> EQ 47.49/23.23 new_lt8(yvy49000, yvy50000, app(ty_[], bcf)) -> new_lt12(yvy49000, yvy50000, bcf) 47.49/23.23 new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(app(ty_@3, ge), gf), gg), ga) -> new_ltEs12(yvy49000, yvy50000, ge, gf, gg) 47.49/23.23 new_esEs21(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) 47.49/23.23 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, app(app(ty_Either, bge), bgf)) -> new_esEs7(yvy4000, yvy3000, bge, bgf) 47.49/23.23 new_esEs11(True, True) -> True 47.49/23.23 new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False 47.49/23.23 new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False 47.49/23.23 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(ty_[], he)) -> new_ltEs8(yvy49000, yvy50000, he) 47.49/23.23 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, app(ty_Maybe, bga)) -> new_esEs6(yvy4000, yvy3000, bga) 47.49/23.23 new_esEs25(yvy4001, yvy3001, app(ty_Ratio, cfd)) -> new_esEs15(yvy4001, yvy3001, cfd) 47.49/23.23 new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) 47.49/23.23 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Int) -> new_ltEs7(yvy49000, yvy50000) 47.49/23.23 new_esEs15(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bag) -> new_asAs(new_esEs20(yvy4000, yvy3000, bag), new_esEs19(yvy4001, yvy3001, bag)) 47.49/23.23 new_compare28(yvy49000, yvy50000, False, bcb, bcc, bcd) -> new_compare112(yvy49000, yvy50000, new_ltEs12(yvy49000, yvy50000, bcb, bcc, bcd), bcb, bcc, bcd) 47.49/23.23 new_esEs22(yvy4002, yvy3002, ty_Float) -> new_esEs13(yvy4002, yvy3002) 47.49/23.23 new_esEs27(yvy49001, yvy50001, ty_Integer) -> new_esEs10(yvy49001, yvy50001) 47.49/23.23 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(app(ty_@2, hf), hg)) -> new_ltEs11(yvy49000, yvy50000, hf, hg) 47.49/23.23 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 47.49/23.23 new_ltEs15(GT, GT) -> True 47.49/23.23 new_compare111(yvy198, yvy199, False, bce) -> GT 47.49/23.23 new_esEs30(yvy20, yvy15, ty_Bool) -> new_esEs11(yvy20, yvy15) 47.49/23.23 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(ty_Maybe, bac)) -> new_ltEs4(yvy49000, yvy50000, bac) 47.49/23.23 new_esEs30(yvy20, yvy15, app(ty_Maybe, ddc)) -> new_esEs6(yvy20, yvy15, ddc) 47.49/23.23 new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 47.49/23.23 new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) 47.49/23.23 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Int, ga) -> new_ltEs7(yvy49000, yvy50000) 47.49/23.23 new_not(False) -> True 47.49/23.23 new_compare5(yvy49000, yvy50000, app(app(ty_Either, cf), cg)) -> new_compare16(yvy49000, yvy50000, cf, cg) 47.49/23.23 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.23 new_compare112(yvy49000, yvy50000, True, bcb, bcc, bcd) -> LT 47.49/23.23 new_esEs28(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) 47.49/23.23 new_compare5(yvy49000, yvy50000, ty_Bool) -> new_compare14(yvy49000, yvy50000) 47.49/23.23 new_lt13(yvy49000, yvy50000, bcb, bcc, bcd) -> new_esEs12(new_compare13(yvy49000, yvy50000, bcb, bcc, bcd), LT) 47.49/23.23 new_primCompAux0(yvy49000, yvy50000, yvy221, bf) -> new_primCompAux00(yvy221, new_compare5(yvy49000, yvy50000, bf)) 47.49/23.23 new_esEs27(yvy49001, yvy50001, app(app(ty_Either, dbc), dbd)) -> new_esEs7(yvy49001, yvy50001, dbc, dbd) 47.49/23.23 new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 47.49/23.23 new_esEs22(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) 47.49/23.23 new_lt7(yvy49000, yvy50000) -> new_esEs12(new_compare18(yvy49000, yvy50000), LT) 47.49/23.23 new_esEs28(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) 47.49/23.23 new_esEs12(LT, EQ) -> False 47.49/23.23 new_esEs12(EQ, LT) -> False 47.49/23.23 new_esEs21(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) 47.49/23.23 new_compare29(yvy49000, yvy50000, True) -> EQ 47.49/23.23 new_primPlusNat0(Succ(yvy16100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat0(yvy16100, yvy3000000))) 47.49/23.23 new_lt4(yvy49000, yvy50000, bd, be) -> new_esEs12(new_compare12(yvy49000, yvy50000, bd, be), LT) 47.49/23.23 new_esEs32(yvy400, yvy300, ty_Bool) -> new_esEs11(yvy400, yvy300) 47.49/23.23 new_compare5(yvy49000, yvy50000, app(app(app(ty_@3, cb), cc), cd)) -> new_compare13(yvy49000, yvy50000, cb, cc, cd) 47.49/23.23 new_esEs27(yvy49001, yvy50001, app(ty_Ratio, dbe)) -> new_esEs15(yvy49001, yvy50001, dbe) 47.49/23.23 new_lt19(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) 47.49/23.23 new_esEs28(yvy49000, yvy50000, app(app(app(ty_@3, che), chf), chg)) -> new_esEs5(yvy49000, yvy50000, che, chf, chg) 47.49/23.23 new_compare112(yvy49000, yvy50000, False, bcb, bcc, bcd) -> GT 47.49/23.23 new_compare27(yvy49000, yvy50000, True, bd, be) -> EQ 47.49/23.23 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.23 new_compare15(yvy49000, yvy50000, bah) -> new_compare25(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, bah), bah) 47.49/23.23 new_esEs21(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) 47.49/23.23 new_esEs12(LT, GT) -> False 47.49/23.23 new_esEs12(GT, LT) -> False 47.49/23.23 new_lt20(yvy49001, yvy50001, ty_Int) -> new_lt11(yvy49001, yvy50001) 47.49/23.23 new_ltEs19(yvy49001, yvy50001, ty_Int) -> new_ltEs7(yvy49001, yvy50001) 47.49/23.23 new_ltEs20(yvy49002, yvy50002, app(ty_Ratio, dcg)) -> new_ltEs17(yvy49002, yvy50002, dcg) 47.49/23.23 new_esEs8([], [], ee) -> True 47.49/23.23 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Char, ga) -> new_ltEs6(yvy49000, yvy50000) 47.49/23.23 new_ltEs20(yvy49002, yvy50002, ty_Char) -> new_ltEs6(yvy49002, yvy50002) 47.49/23.23 new_compare25(Nothing, Nothing, False, bba) -> LT 47.49/23.23 new_lt20(yvy49001, yvy50001, app(ty_Maybe, dbb)) -> new_lt15(yvy49001, yvy50001, dbb) 47.49/23.23 new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Ratio, ed)) -> new_ltEs17(yvy49000, yvy50000, ed) 47.49/23.23 new_lt8(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) 47.49/23.23 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Float) -> new_ltEs5(yvy49000, yvy50000) 47.49/23.23 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 47.49/23.23 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 47.49/23.23 new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) 47.49/23.23 new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.49/23.23 new_lt20(yvy49001, yvy50001, app(app(ty_@2, dae), daf)) -> new_lt4(yvy49001, yvy50001, dae, daf) 47.49/23.23 new_esEs28(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) 47.49/23.23 new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.23 new_compare111(yvy198, yvy199, True, bce) -> LT 47.49/23.23 new_ltEs13(True, False) -> False 47.49/23.23 new_ltEs20(yvy49002, yvy50002, ty_Int) -> new_ltEs7(yvy49002, yvy50002) 47.49/23.23 new_esEs32(yvy400, yvy300, ty_Int) -> new_esEs16(yvy400, yvy300) 47.49/23.23 new_esEs27(yvy49001, yvy50001, app(app(ty_@2, dae), daf)) -> new_esEs4(yvy49001, yvy50001, dae, daf) 47.49/23.23 new_ltEs15(LT, LT) -> True 47.49/23.23 new_esEs13(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 47.49/23.23 new_esEs22(yvy4002, yvy3002, ty_@0) -> new_esEs14(yvy4002, yvy3002) 47.49/23.23 new_esEs28(yvy49000, yvy50000, app(ty_Maybe, chh)) -> new_esEs6(yvy49000, yvy50000, chh) 47.49/23.23 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 47.49/23.23 new_esEs26(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.23 new_esEs28(yvy49000, yvy50000, app(app(ty_@2, chc), chd)) -> new_esEs4(yvy49000, yvy50000, chc, chd) 47.49/23.23 new_compare7(Char(yvy49000), Char(yvy50000)) -> new_primCmpNat0(yvy49000, yvy50000) 47.49/23.23 new_lt5(yvy49000, yvy50000) -> new_esEs12(new_compare11(yvy49000, yvy50000), LT) 47.49/23.23 new_lt20(yvy49001, yvy50001, app(app(ty_Either, dbc), dbd)) -> new_lt16(yvy49001, yvy50001, dbc, dbd) 47.49/23.23 new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) 47.49/23.23 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Char) -> new_ltEs6(yvy49000, yvy50000) 47.49/23.23 new_esEs26(yvy4000, yvy3000, app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs5(yvy4000, yvy3000, cfh, cga, cgb) 47.49/23.23 new_lt20(yvy49001, yvy50001, ty_Integer) -> new_lt5(yvy49001, yvy50001) 47.49/23.23 new_esEs30(yvy20, yvy15, ty_Int) -> new_esEs16(yvy20, yvy15) 47.49/23.23 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Double) -> new_ltEs16(yvy49000, yvy50000) 47.49/23.23 new_ltEs10(yvy4900, yvy5000) -> new_fsEs(new_compare11(yvy4900, yvy5000)) 47.49/23.23 new_lt14(yvy49000, yvy50000) -> new_esEs12(new_compare14(yvy49000, yvy50000), LT) 47.49/23.23 new_esEs27(yvy49001, yvy50001, app(ty_Maybe, dbb)) -> new_esEs6(yvy49001, yvy50001, dbb) 47.49/23.23 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_@0) -> new_ltEs9(yvy49000, yvy50000) 47.49/23.23 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Double, bee) -> new_esEs18(yvy4000, yvy3000) 47.49/23.23 new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_[], dc)) -> new_ltEs8(yvy49000, yvy50000, dc) 47.49/23.23 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Integer) -> new_ltEs10(yvy49000, yvy50000) 47.49/23.23 new_esEs27(yvy49001, yvy50001, ty_Double) -> new_esEs18(yvy49001, yvy50001) 47.49/23.23 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 47.49/23.23 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 47.49/23.23 new_compare25(Nothing, Just(yvy5000), False, bba) -> LT 47.49/23.23 new_compare5(yvy49000, yvy50000, app(app(ty_@2, bh), ca)) -> new_compare12(yvy49000, yvy50000, bh, ca) 47.49/23.23 new_esEs28(yvy49000, yvy50000, app(ty_[], chb)) -> new_esEs8(yvy49000, yvy50000, chb) 47.49/23.23 new_lt19(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) 47.49/23.23 new_lt18(yvy49000, yvy50000, bcg) -> new_esEs12(new_compare19(yvy49000, yvy50000, bcg), LT) 47.49/23.23 new_compare5(yvy49000, yvy50000, ty_Char) -> new_compare7(yvy49000, yvy50000) 47.49/23.23 new_ltEs19(yvy49001, yvy50001, app(ty_Maybe, bdf)) -> new_ltEs4(yvy49001, yvy50001, bdf) 47.49/23.23 new_compare5(yvy49000, yvy50000, app(ty_[], bg)) -> new_compare(yvy49000, yvy50000, bg) 47.49/23.23 new_compare14(yvy49000, yvy50000) -> new_compare24(yvy49000, yvy50000, new_esEs11(yvy49000, yvy50000)) 47.49/23.23 new_primEqNat0(Zero, Zero) -> True 47.49/23.23 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Integer, ga) -> new_ltEs10(yvy49000, yvy50000) 47.49/23.23 new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.49/23.23 new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) 47.49/23.23 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Bool) -> new_ltEs13(yvy49000, yvy50000) 47.49/23.23 new_esEs30(yvy20, yvy15, app(app(ty_Either, ddg), ddh)) -> new_esEs7(yvy20, yvy15, ddg, ddh) 47.49/23.23 new_esEs30(yvy20, yvy15, ty_Ordering) -> new_esEs12(yvy20, yvy15) 47.49/23.23 new_compare5(yvy49000, yvy50000, ty_Ordering) -> new_compare17(yvy49000, yvy50000) 47.49/23.23 new_esEs6(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.23 new_asAs(False, yvy201) -> False 47.49/23.23 new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(app(ty_@3, df), dg), dh)) -> new_ltEs12(yvy49000, yvy50000, df, dg, dh) 47.49/23.23 new_esEs28(yvy49000, yvy50000, app(ty_Ratio, dac)) -> new_esEs15(yvy49000, yvy50000, dac) 47.49/23.23 new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 47.49/23.23 new_esEs30(yvy20, yvy15, ty_Integer) -> new_esEs10(yvy20, yvy15) 47.49/23.23 new_ltEs20(yvy49002, yvy50002, app(ty_Maybe, dcd)) -> new_ltEs4(yvy49002, yvy50002, dcd) 47.49/23.23 new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) 47.49/23.23 new_lt8(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) 47.49/23.23 new_esEs7(Left(yvy4000), Right(yvy3000), bfe, bee) -> False 47.49/23.23 new_esEs7(Right(yvy4000), Left(yvy3000), bfe, bee) -> False 47.49/23.23 new_ltEs17(yvy4900, yvy5000, bbg) -> new_fsEs(new_compare19(yvy4900, yvy5000, bbg)) 47.49/23.23 new_lt16(yvy49000, yvy50000, bbh, bca) -> new_esEs12(new_compare16(yvy49000, yvy50000, bbh, bca), LT) 47.49/23.23 new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.23 new_ltEs18(yvy4900, yvy5000, ty_Int) -> new_ltEs7(yvy4900, yvy5000) 47.49/23.23 new_lt19(yvy49000, yvy50000, app(app(ty_Either, daa), dab)) -> new_lt16(yvy49000, yvy50000, daa, dab) 47.49/23.23 new_esEs27(yvy49001, yvy50001, app(app(app(ty_@3, dag), dah), dba)) -> new_esEs5(yvy49001, yvy50001, dag, dah, dba) 47.49/23.23 47.49/23.23 The set Q consists of the following terms: 47.49/23.23 47.49/23.23 new_esEs27(x0, x1, ty_@0) 47.49/23.23 new_esEs8(:(x0, x1), :(x2, x3), x4) 47.49/23.23 new_esEs25(x0, x1, app(ty_Maybe, x2)) 47.49/23.23 new_compare12(x0, x1, x2, x3) 47.49/23.23 new_esEs8([], [], x0) 47.49/23.23 new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) 47.49/23.23 new_lt20(x0, x1, app(ty_Ratio, x2)) 47.49/23.23 new_esEs26(x0, x1, ty_Float) 47.49/23.23 new_esEs12(EQ, EQ) 47.49/23.23 new_esEs28(x0, x1, ty_Char) 47.49/23.23 new_esEs32(x0, x1, ty_Integer) 47.49/23.23 new_compare5(x0, x1, app(ty_Maybe, x2)) 47.49/23.23 new_primMulInt(Neg(x0), Neg(x1)) 47.49/23.23 new_lt20(x0, x1, ty_@0) 47.49/23.23 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.23 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.23 new_esEs26(x0, x1, app(ty_[], x2)) 47.49/23.23 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.23 new_primCmpNat0(Succ(x0), Zero) 47.49/23.23 new_compare29(x0, x1, True) 47.49/23.23 new_compare5(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.23 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.23 new_compare13(x0, x1, x2, x3, x4) 47.49/23.23 new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) 47.49/23.23 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 47.49/23.23 new_primEqInt(Pos(Zero), Pos(Zero)) 47.49/23.23 new_esEs32(x0, x1, ty_Bool) 47.49/23.23 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.23 new_primMulInt(Pos(x0), Pos(x1)) 47.49/23.23 new_esEs27(x0, x1, app(ty_Ratio, x2)) 47.49/23.23 new_ltEs14(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 47.49/23.23 new_primCompAux00(x0, GT) 47.49/23.23 new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 47.49/23.23 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 47.49/23.23 new_esEs7(Left(x0), Left(x1), ty_Float, x2) 47.49/23.23 new_lt8(x0, x1, ty_Float) 47.49/23.23 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.23 new_ltEs4(Just(x0), Just(x1), ty_Float) 47.49/23.23 new_compare27(x0, x1, True, x2, x3) 47.49/23.23 new_asAs(False, x0) 47.49/23.23 new_ltEs20(x0, x1, app(ty_[], x2)) 47.49/23.23 new_esEs7(Right(x0), Right(x1), x2, ty_Bool) 47.49/23.23 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.23 new_ltEs14(Left(x0), Left(x1), app(ty_[], x2), x3) 47.49/23.23 new_esEs27(x0, x1, ty_Integer) 47.49/23.23 new_primEqInt(Neg(Zero), Neg(Zero)) 47.49/23.23 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.23 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.23 new_compare15(x0, x1, x2) 47.49/23.23 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.23 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 47.49/23.23 new_sr(x0, x1) 47.49/23.23 new_esEs28(x0, x1, ty_Bool) 47.49/23.23 new_esEs27(x0, x1, ty_Char) 47.49/23.23 new_primCmpNat0(Zero, Succ(x0)) 47.49/23.23 new_ltEs19(x0, x1, app(ty_[], x2)) 47.49/23.23 new_lt19(x0, x1, ty_Double) 47.49/23.23 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.23 new_ltEs13(False, True) 47.49/23.23 new_ltEs13(True, False) 47.49/23.23 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.23 new_ltEs18(x0, x1, ty_Int) 47.49/23.23 new_lt17(x0, x1) 47.49/23.23 new_esEs9(x0, x1, ty_Double) 47.49/23.23 new_esEs28(x0, x1, ty_Ordering) 47.49/23.23 new_lt8(x0, x1, ty_Integer) 47.49/23.23 new_compare110(x0, x1, False) 47.49/23.23 new_compare10(x0, x1, False, x2, x3) 47.49/23.23 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.23 new_esEs19(x0, x1, ty_Integer) 47.49/23.23 new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 47.49/23.23 new_ltEs14(Right(x0), Right(x1), x2, ty_Integer) 47.49/23.23 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.23 new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 47.49/23.23 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 47.49/23.23 new_esEs22(x0, x1, app(ty_[], x2)) 47.49/23.23 new_ltEs19(x0, x1, ty_Float) 47.49/23.23 new_esEs28(x0, x1, app(ty_[], x2)) 47.49/23.23 new_esEs7(Right(x0), Right(x1), x2, ty_Char) 47.49/23.23 new_esEs9(x0, x1, ty_Int) 47.49/23.23 new_ltEs14(Right(x0), Right(x1), x2, ty_Bool) 47.49/23.23 new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 47.49/23.23 new_esEs32(x0, x1, ty_@0) 47.49/23.23 new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 47.49/23.23 new_esEs6(Nothing, Nothing, x0) 47.49/23.23 new_ltEs14(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 47.49/23.23 new_lt8(x0, x1, ty_Bool) 47.49/23.23 new_esEs18(Double(x0, x1), Double(x2, x3)) 47.49/23.23 new_ltEs8(x0, x1, x2) 47.49/23.23 new_primEqInt(Pos(Zero), Neg(Zero)) 47.49/23.23 new_primEqInt(Neg(Zero), Pos(Zero)) 47.49/23.23 new_esEs24(x0, x1, app(ty_Maybe, x2)) 47.49/23.23 new_esEs23(x0, x1, app(ty_Ratio, x2)) 47.49/23.23 new_compare114(x0, x1, False, x2, x3) 47.49/23.23 new_esEs30(x0, x1, ty_Float) 47.49/23.23 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 47.49/23.23 new_esEs12(LT, GT) 47.49/23.23 new_esEs12(GT, LT) 47.49/23.23 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 47.49/23.23 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 47.49/23.23 new_esEs17(Char(x0), Char(x1)) 47.49/23.23 new_compare25(x0, x1, True, x2) 47.49/23.23 new_esEs21(x0, x1, ty_Float) 47.49/23.23 new_esEs7(Right(x0), Right(x1), x2, ty_Int) 47.49/23.23 new_esEs32(x0, x1, ty_Float) 47.49/23.23 new_esEs7(Right(x0), Right(x1), x2, ty_Float) 47.49/23.23 new_ltEs18(x0, x1, ty_Double) 47.49/23.23 new_primCompAux0(x0, x1, x2, x3) 47.49/23.23 new_ltEs20(x0, x1, ty_Ordering) 47.49/23.23 new_esEs27(x0, x1, ty_Bool) 47.49/23.23 new_ltEs17(x0, x1, x2) 47.49/23.23 new_compare14(x0, x1) 47.49/23.23 new_ltEs18(x0, x1, ty_Char) 47.49/23.23 new_asAs(True, x0) 47.49/23.23 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 47.49/23.23 new_esEs24(x0, x1, ty_Integer) 47.49/23.23 new_esEs30(x0, x1, ty_@0) 47.49/23.23 new_esEs7(Right(x0), Right(x1), x2, ty_@0) 47.49/23.23 new_pePe(True, x0) 47.49/23.23 new_ltEs7(x0, x1) 47.49/23.23 new_ltEs15(EQ, EQ) 47.49/23.23 new_compare([], [], x0) 47.49/23.23 new_primEqNat0(Succ(x0), Zero) 47.49/23.23 new_esEs28(x0, x1, ty_Integer) 47.49/23.23 new_compare30(x0, x1, x2) 47.49/23.23 new_esEs25(x0, x1, ty_Float) 47.49/23.23 new_esEs7(Left(x0), Left(x1), ty_Integer, x2) 47.49/23.23 new_primMulNat0(Succ(x0), Succ(x1)) 47.49/23.23 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.23 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 47.49/23.23 new_compare5(x0, x1, ty_Ordering) 47.49/23.23 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.23 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.23 new_lt19(x0, x1, ty_Char) 47.49/23.23 new_ltEs14(Left(x0), Left(x1), ty_Char, x2) 47.49/23.23 new_ltEs19(x0, x1, ty_Integer) 47.49/23.23 new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 47.49/23.23 new_lt5(x0, x1) 47.49/23.23 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 47.49/23.23 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 47.49/23.23 new_compare(:(x0, x1), :(x2, x3), x4) 47.49/23.23 new_esEs9(x0, x1, ty_Char) 47.49/23.23 new_ltEs4(Just(x0), Just(x1), ty_Bool) 47.49/23.23 new_ltEs14(Left(x0), Left(x1), ty_Int, x2) 47.49/23.23 new_lt6(x0, x1) 47.49/23.23 new_lt19(x0, x1, ty_Int) 47.49/23.23 new_primEqNat0(Succ(x0), Succ(x1)) 47.49/23.23 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.23 new_ltEs6(x0, x1) 47.49/23.23 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.23 new_compare7(Char(x0), Char(x1)) 47.49/23.23 new_esEs12(GT, GT) 47.49/23.23 new_esEs12(LT, EQ) 47.49/23.23 new_esEs12(EQ, LT) 47.49/23.23 new_compare25(Nothing, Nothing, False, x0) 47.49/23.23 new_ltEs5(x0, x1) 47.49/23.23 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.23 new_ltEs15(GT, LT) 47.49/23.23 new_ltEs15(LT, GT) 47.49/23.23 new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 47.49/23.23 new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 47.49/23.23 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 47.49/23.23 new_ltEs4(Just(x0), Just(x1), ty_Integer) 47.49/23.23 new_esEs27(x0, x1, ty_Int) 47.49/23.23 new_esEs6(Just(x0), Just(x1), ty_Integer) 47.49/23.23 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.23 new_esEs6(Just(x0), Just(x1), ty_Float) 47.49/23.23 new_lt20(x0, x1, app(ty_[], x2)) 47.49/23.23 new_esEs7(Left(x0), Left(x1), ty_@0, x2) 47.49/23.23 new_compare5(x0, x1, ty_Double) 47.49/23.23 new_compare28(x0, x1, False, x2, x3, x4) 47.49/23.23 new_primMulNat0(Succ(x0), Zero) 47.49/23.23 new_esEs27(x0, x1, ty_Float) 47.49/23.23 new_ltEs14(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 47.49/23.23 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.23 new_esEs25(x0, x1, ty_Bool) 47.49/23.23 new_compare25(Just(x0), Nothing, False, x1) 47.49/23.23 new_esEs6(Just(x0), Just(x1), ty_Ordering) 47.49/23.23 new_lt8(x0, x1, app(ty_[], x2)) 47.49/23.23 new_ltEs14(Right(x0), Right(x1), x2, ty_Char) 47.49/23.23 new_esEs9(x0, x1, ty_Bool) 47.49/23.23 new_lt7(x0, x1) 47.49/23.23 new_esEs32(x0, x1, ty_Double) 47.49/23.23 new_lt19(x0, x1, app(ty_Maybe, x2)) 47.49/23.23 new_lt8(x0, x1, ty_@0) 47.49/23.23 new_esEs7(Left(x0), Right(x1), x2, x3) 47.49/23.23 new_esEs7(Right(x0), Left(x1), x2, x3) 47.49/23.23 new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 47.49/23.23 new_esEs9(x0, x1, ty_Ordering) 47.49/23.23 new_primCmpInt(Neg(Zero), Neg(Zero)) 47.49/23.23 new_compare16(x0, x1, x2, x3) 47.49/23.23 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.23 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.23 new_esEs28(x0, x1, ty_Double) 47.49/23.23 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.23 new_primCmpInt(Pos(Zero), Neg(Zero)) 47.49/23.23 new_primCmpInt(Neg(Zero), Pos(Zero)) 47.49/23.23 new_primPlusNat0(Succ(x0), Zero) 47.49/23.23 new_esEs23(x0, x1, ty_Float) 47.49/23.23 new_esEs21(x0, x1, ty_Integer) 47.49/23.23 new_ltEs14(Right(x0), Right(x1), x2, ty_Int) 47.49/23.23 new_esEs28(x0, x1, ty_@0) 47.49/23.23 new_lt19(x0, x1, ty_Bool) 47.49/23.23 new_ltEs14(Left(x0), Left(x1), ty_Bool, x2) 47.49/23.23 new_esEs25(x0, x1, ty_Ordering) 47.49/23.23 new_lt19(x0, x1, ty_Ordering) 47.49/23.23 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.23 new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 47.49/23.23 new_esEs22(x0, x1, ty_Integer) 47.49/23.23 new_esEs21(x0, x1, app(ty_Ratio, x2)) 47.49/23.23 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.23 new_esEs11(False, False) 47.49/23.23 new_compare111(x0, x1, False, x2) 47.49/23.23 new_compare(:(x0, x1), [], x2) 47.49/23.23 new_esEs8([], :(x0, x1), x2) 47.49/23.23 new_esEs22(x0, x1, app(ty_Ratio, x2)) 47.49/23.23 new_compare114(x0, x1, True, x2, x3) 47.49/23.23 new_ltEs14(Left(x0), Left(x1), ty_Ordering, x2) 47.49/23.23 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.23 new_compare33(x0) 47.49/23.23 new_esEs28(x0, x1, app(ty_Ratio, x2)) 47.49/23.23 new_lt19(x0, x1, app(ty_[], x2)) 47.49/23.23 new_esEs9(x0, x1, ty_Integer) 47.49/23.23 new_ltEs14(Right(x0), Right(x1), x2, app(ty_[], x3)) 47.49/23.23 new_ltEs20(x0, x1, ty_@0) 47.49/23.23 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.23 new_ltEs4(Just(x0), Just(x1), ty_Char) 47.49/23.23 new_lt8(x0, x1, app(ty_Ratio, x2)) 47.49/23.23 new_ltEs14(Right(x0), Right(x1), x2, ty_Float) 47.49/23.23 new_compare113(x0, x1, True) 47.49/23.23 new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 47.49/23.23 new_lt18(x0, x1, x2) 47.49/23.23 new_lt20(x0, x1, app(ty_Maybe, x2)) 47.49/23.23 new_lt20(x0, x1, ty_Double) 47.49/23.23 new_ltEs19(x0, x1, ty_Bool) 47.49/23.23 new_ltEs20(x0, x1, ty_Double) 47.49/23.23 new_esEs24(x0, x1, ty_@0) 47.49/23.23 new_esEs7(Right(x0), Right(x1), x2, ty_Integer) 47.49/23.23 new_lt19(x0, x1, ty_Integer) 47.49/23.23 new_esEs22(x0, x1, ty_Ordering) 47.49/23.23 new_esEs13(Float(x0, x1), Float(x2, x3)) 47.49/23.23 new_esEs6(Just(x0), Just(x1), ty_Bool) 47.49/23.23 new_compare8(x0, x1) 47.49/23.23 new_ltEs14(Left(x0), Left(x1), ty_Integer, x2) 47.49/23.23 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 47.49/23.23 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 47.49/23.23 new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) 47.49/23.23 new_ltEs13(True, True) 47.49/23.23 new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) 47.49/23.23 new_esEs23(x0, x1, app(ty_[], x2)) 47.49/23.23 new_esEs21(x0, x1, ty_Ordering) 47.49/23.23 new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 47.49/23.23 new_esEs25(x0, x1, ty_Integer) 47.49/23.23 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 47.49/23.23 new_ltEs4(Nothing, Just(x0), x1) 47.49/23.23 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.23 new_esEs25(x0, x1, ty_Char) 47.49/23.23 new_compare17(x0, x1) 47.49/23.23 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.23 new_esEs22(x0, x1, ty_@0) 47.49/23.23 new_esEs26(x0, x1, ty_Ordering) 47.49/23.23 new_esEs7(Left(x0), Left(x1), ty_Int, x2) 47.49/23.23 new_ltEs19(x0, x1, ty_Char) 47.49/23.23 new_esEs24(x0, x1, ty_Ordering) 47.49/23.23 new_compare([], :(x0, x1), x2) 47.49/23.23 new_esEs30(x0, x1, app(ty_[], x2)) 47.49/23.23 new_primCompAux00(x0, EQ) 47.49/23.23 new_esEs22(x0, x1, ty_Bool) 47.49/23.23 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.23 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.23 new_ltEs14(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 47.49/23.23 new_ltEs4(Just(x0), Just(x1), ty_Int) 47.49/23.23 new_primMulNat0(Zero, Zero) 47.49/23.23 new_compare24(x0, x1, True) 47.49/23.23 new_compare5(x0, x1, ty_@0) 47.49/23.23 new_ltEs18(x0, x1, ty_Float) 47.49/23.23 new_primPlusNat1(Zero, x0) 47.49/23.23 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.23 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.23 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.23 new_esEs24(x0, x1, ty_Int) 47.49/23.23 new_lt8(x0, x1, ty_Double) 47.49/23.23 new_esEs6(Just(x0), Just(x1), ty_Char) 47.49/23.23 new_esEs25(x0, x1, ty_Int) 47.49/23.23 new_esEs7(Left(x0), Left(x1), ty_Char, x2) 47.49/23.23 new_esEs23(x0, x1, ty_Char) 47.49/23.23 new_ltEs4(Just(x0), Just(x1), ty_Ordering) 47.49/23.23 new_compare5(x0, x1, ty_Bool) 47.49/23.23 new_sr0(Integer(x0), Integer(x1)) 47.49/23.23 new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) 47.49/23.23 new_fsEs(x0) 47.49/23.23 new_ltEs14(Right(x0), Right(x1), x2, ty_Double) 47.49/23.23 new_compare9(@0, @0) 47.49/23.23 new_ltEs18(x0, x1, app(ty_[], x2)) 47.49/23.23 new_esEs25(x0, x1, app(ty_Ratio, x2)) 47.49/23.23 new_ltEs19(x0, x1, ty_Ordering) 47.49/23.23 new_esEs24(x0, x1, ty_Char) 47.49/23.23 new_esEs9(x0, x1, app(ty_[], x2)) 47.49/23.23 new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 47.49/23.23 new_esEs32(x0, x1, app(ty_Ratio, x2)) 47.49/23.23 new_esEs21(x0, x1, ty_Bool) 47.49/23.23 new_esEs28(x0, x1, app(ty_Maybe, x2)) 47.49/23.23 new_esEs24(x0, x1, ty_Double) 47.49/23.23 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 47.49/23.23 new_ltEs11(@2(x0, x1), @2(x2, x3), x4, x5) 47.49/23.23 new_primPlusNat1(Succ(x0), x1) 47.49/23.23 new_esEs23(x0, x1, ty_Int) 47.49/23.23 new_compare112(x0, x1, True, x2, x3, x4) 47.49/23.23 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 47.49/23.23 new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 47.49/23.23 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.23 new_esEs23(x0, x1, ty_@0) 47.49/23.23 new_esEs6(Just(x0), Just(x1), ty_Int) 47.49/23.23 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.23 new_ltEs19(x0, x1, ty_Int) 47.49/23.23 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 47.49/23.23 new_esEs6(Nothing, Just(x0), x1) 47.49/23.23 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.23 new_esEs9(x0, x1, app(ty_Maybe, x2)) 47.49/23.23 new_esEs6(Just(x0), Just(x1), ty_@0) 47.49/23.23 new_lt8(x0, x1, ty_Ordering) 47.49/23.23 new_primPlusNat0(Zero, Zero) 47.49/23.23 new_esEs25(x0, x1, app(ty_[], x2)) 47.49/23.23 new_compare10(x0, x1, True, x2, x3) 47.49/23.23 new_compare26(x0, x1, False, x2, x3) 47.49/23.23 new_lt8(x0, x1, ty_Int) 47.49/23.23 new_esEs30(x0, x1, ty_Int) 47.49/23.23 new_ltEs14(Left(x0), Left(x1), ty_@0, x2) 47.49/23.23 new_lt19(x0, x1, ty_@0) 47.49/23.23 new_not(True) 47.49/23.23 new_compare5(x0, x1, app(ty_Ratio, x2)) 47.49/23.23 new_esEs8(:(x0, x1), [], x2) 47.49/23.23 new_esEs23(x0, x1, ty_Bool) 47.49/23.23 new_esEs22(x0, x1, ty_Char) 47.49/23.23 new_esEs12(EQ, GT) 47.49/23.23 new_esEs12(GT, EQ) 47.49/23.23 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.23 new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) 47.49/23.23 new_lt19(x0, x1, ty_Float) 47.49/23.23 new_ltEs14(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 47.49/23.23 new_ltEs13(False, False) 47.49/23.23 new_esEs25(x0, x1, ty_Double) 47.49/23.23 new_esEs25(x0, x1, ty_@0) 47.49/23.23 new_lt15(x0, x1, x2) 47.49/23.23 new_compare26(x0, x1, True, x2, x3) 47.49/23.23 new_esEs26(x0, x1, app(ty_Ratio, x2)) 47.49/23.23 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 47.49/23.23 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 47.49/23.23 new_esEs11(True, True) 47.49/23.23 new_esEs15(:%(x0, x1), :%(x2, x3), x4) 47.49/23.23 new_esEs32(x0, x1, app(ty_[], x2)) 47.49/23.23 new_esEs7(Left(x0), Left(x1), ty_Double, x2) 47.49/23.23 new_esEs32(x0, x1, app(ty_Maybe, x2)) 47.49/23.23 new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 47.49/23.23 new_lt13(x0, x1, x2, x3, x4) 47.49/23.23 new_ltEs14(Right(x0), Right(x1), x2, ty_Ordering) 47.49/23.23 new_ltEs15(GT, EQ) 47.49/23.23 new_esEs23(x0, x1, ty_Double) 47.49/23.23 new_ltEs15(EQ, GT) 47.49/23.23 new_ltEs4(Just(x0), Nothing, x1) 47.49/23.23 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 47.49/23.23 new_esEs21(x0, x1, ty_Char) 47.49/23.23 new_esEs11(False, True) 47.49/23.23 new_esEs11(True, False) 47.49/23.23 new_compare113(x0, x1, False) 47.49/23.23 new_compare111(x0, x1, True, x2) 47.49/23.23 new_lt4(x0, x1, x2, x3) 47.49/23.23 new_lt8(x0, x1, ty_Char) 47.49/23.23 new_ltEs20(x0, x1, ty_Integer) 47.49/23.23 new_compare27(x0, x1, False, x2, x3) 47.49/23.23 new_compare112(x0, x1, False, x2, x3, x4) 47.49/23.23 new_esEs30(x0, x1, ty_Double) 47.49/23.23 new_esEs26(x0, x1, ty_Int) 47.49/23.23 new_primPlusNat0(Zero, Succ(x0)) 47.49/23.23 new_compare5(x0, x1, ty_Integer) 47.49/23.23 new_esEs30(x0, x1, ty_Char) 47.49/23.23 new_primCmpNat0(Succ(x0), Succ(x1)) 47.49/23.23 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 47.49/23.23 new_ltEs14(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 47.49/23.23 new_compare31(x0, x1) 47.49/23.23 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.23 new_esEs9(x0, x1, ty_@0) 47.49/23.23 new_esEs21(x0, x1, app(ty_[], x2)) 47.49/23.23 new_esEs12(LT, LT) 47.49/23.23 new_esEs22(x0, x1, app(ty_Maybe, x2)) 47.49/23.23 new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) 47.49/23.23 new_esEs21(x0, x1, ty_Int) 47.49/23.23 new_ltEs14(Left(x0), Left(x1), ty_Float, x2) 47.49/23.23 new_esEs26(x0, x1, ty_Double) 47.49/23.23 new_esEs22(x0, x1, ty_Int) 47.49/23.23 new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.23 new_esEs26(x0, x1, ty_Char) 47.49/23.23 new_esEs21(x0, x1, ty_@0) 47.49/23.23 new_lt14(x0, x1) 47.49/23.23 new_esEs7(Left(x0), Left(x1), ty_Bool, x2) 47.49/23.23 new_esEs9(x0, x1, ty_Float) 47.49/23.23 new_esEs20(x0, x1, ty_Int) 47.49/23.23 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.23 new_primCmpInt(Pos(Zero), Pos(Zero)) 47.49/23.23 new_esEs27(x0, x1, app(ty_Maybe, x2)) 47.49/23.23 new_esEs20(x0, x1, ty_Integer) 47.49/23.23 new_esEs32(x0, x1, ty_Int) 47.49/23.23 new_lt16(x0, x1, x2, x3) 47.49/23.23 new_esEs22(x0, x1, ty_Double) 47.49/23.23 new_esEs27(x0, x1, ty_Double) 47.49/23.23 new_esEs14(@0, @0) 47.49/23.23 new_pePe(False, x0) 47.49/23.23 new_ltEs9(x0, x1) 47.49/23.23 new_esEs22(x0, x1, ty_Float) 47.49/23.23 new_compare29(x0, x1, False) 47.49/23.23 new_esEs24(x0, x1, app(ty_Ratio, x2)) 47.49/23.23 new_ltEs14(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 47.49/23.23 new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 47.49/23.23 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.23 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.23 new_esEs16(x0, x1) 47.49/23.23 new_esEs26(x0, x1, ty_Bool) 47.49/23.23 new_esEs30(x0, x1, app(ty_Maybe, x2)) 47.49/23.23 new_lt10(x0, x1) 47.49/23.23 new_ltEs14(Right(x0), Left(x1), x2, x3) 47.49/23.23 new_esEs26(x0, x1, ty_@0) 47.49/23.23 new_ltEs14(Left(x0), Right(x1), x2, x3) 47.49/23.23 new_ltEs18(x0, x1, ty_@0) 47.49/23.23 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.23 new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 47.49/23.23 new_ltEs18(x0, x1, ty_Bool) 47.49/23.23 new_esEs32(x0, x1, ty_Ordering) 47.49/23.23 new_compare5(x0, x1, ty_Float) 47.49/23.23 new_esEs10(Integer(x0), Integer(x1)) 47.49/23.23 new_esEs23(x0, x1, app(ty_Maybe, x2)) 47.49/23.23 new_compare32(x0, x1) 47.49/23.23 new_esEs7(Right(x0), Right(x1), x2, ty_Double) 47.49/23.23 new_lt19(x0, x1, app(ty_Ratio, x2)) 47.49/23.23 new_esEs24(x0, x1, app(ty_[], x2)) 47.49/23.23 new_esEs21(x0, x1, ty_Double) 47.49/23.23 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 47.49/23.23 new_ltEs4(Just(x0), Just(x1), ty_@0) 47.49/23.23 new_compare5(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.23 new_lt20(x0, x1, ty_Float) 47.49/23.23 new_ltEs4(Nothing, Nothing, x0) 47.49/23.23 new_esEs26(x0, x1, ty_Integer) 47.49/23.23 new_ltEs10(x0, x1) 47.49/23.23 new_compare5(x0, x1, ty_Int) 47.49/23.23 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 47.49/23.23 new_ltEs14(Right(x0), Right(x1), x2, ty_@0) 47.49/23.23 new_lt20(x0, x1, ty_Ordering) 47.49/23.23 new_ltEs15(EQ, LT) 47.49/23.23 new_ltEs15(LT, EQ) 47.49/23.23 new_esEs30(x0, x1, ty_Bool) 47.49/23.23 new_lt8(x0, x1, app(ty_Maybe, x2)) 47.49/23.23 new_esEs23(x0, x1, ty_Integer) 47.49/23.23 new_esEs27(x0, x1, app(ty_[], x2)) 47.49/23.23 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.23 new_compare5(x0, x1, app(ty_[], x2)) 47.49/23.23 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 47.49/23.23 new_esEs24(x0, x1, ty_Bool) 47.49/23.23 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 47.49/23.23 new_ltEs14(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 47.49/23.23 new_ltEs15(GT, GT) 47.49/23.23 new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 47.49/23.23 new_esEs27(x0, x1, ty_Ordering) 47.49/23.23 new_esEs30(x0, x1, app(ty_Ratio, x2)) 47.49/23.23 new_esEs26(x0, x1, app(ty_Maybe, x2)) 47.49/23.23 new_compare5(x0, x1, ty_Char) 47.49/23.23 new_lt20(x0, x1, ty_Integer) 47.49/23.23 new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 47.49/23.23 new_esEs32(x0, x1, ty_Char) 47.49/23.23 new_ltEs14(Left(x0), Left(x1), ty_Double, x2) 47.49/23.23 new_ltEs19(x0, x1, ty_@0) 47.49/23.23 new_lt12(x0, x1, x2) 47.49/23.23 new_ltEs16(x0, x1) 47.49/23.23 new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 47.49/23.23 new_lt11(x0, x1) 47.49/23.23 new_ltEs18(x0, x1, ty_Integer) 47.49/23.23 new_primEqNat0(Zero, Zero) 47.49/23.23 new_esEs9(x0, x1, app(ty_Ratio, x2)) 47.49/23.23 new_esEs23(x0, x1, ty_Ordering) 47.49/23.23 new_not(False) 47.49/23.23 new_esEs21(x0, x1, app(ty_Maybe, x2)) 47.49/23.23 new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 47.49/23.23 new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 47.49/23.23 new_esEs6(Just(x0), Nothing, x1) 47.49/23.23 new_ltEs20(x0, x1, ty_Bool) 47.49/23.23 new_ltEs19(x0, x1, ty_Double) 47.49/23.23 new_esEs30(x0, x1, ty_Integer) 47.49/23.23 new_ltEs20(x0, x1, ty_Float) 47.49/23.23 new_compare11(Integer(x0), Integer(x1)) 47.49/23.23 new_primCompAux00(x0, LT) 47.49/23.23 new_compare110(x0, x1, True) 47.49/23.23 new_compare25(Nothing, Just(x0), False, x1) 47.49/23.23 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 47.49/23.23 new_ltEs15(LT, LT) 47.49/23.23 new_esEs6(Just(x0), Just(x1), ty_Double) 47.49/23.23 new_lt20(x0, x1, ty_Int) 47.49/23.23 new_lt9(x0, x1) 47.49/23.23 new_ltEs20(x0, x1, ty_Char) 47.49/23.23 new_esEs28(x0, x1, ty_Int) 47.49/23.23 new_lt20(x0, x1, ty_Bool) 47.49/23.23 new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 47.49/23.23 new_ltEs18(x0, x1, ty_Ordering) 47.49/23.23 new_compare25(Just(x0), Just(x1), False, x2) 47.49/23.23 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.23 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.23 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.23 new_lt20(x0, x1, ty_Char) 47.49/23.23 new_compare24(x0, x1, False) 47.49/23.23 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 47.49/23.23 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 47.49/23.23 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 47.49/23.23 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 47.49/23.23 new_esEs24(x0, x1, ty_Float) 47.49/23.23 new_primPlusNat0(Succ(x0), Succ(x1)) 47.49/23.23 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 47.49/23.23 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 47.49/23.23 new_primMulInt(Pos(x0), Neg(x1)) 47.49/23.23 new_primMulInt(Neg(x0), Pos(x1)) 47.49/23.23 new_ltEs4(Just(x0), Just(x1), ty_Double) 47.49/23.23 new_esEs19(x0, x1, ty_Int) 47.49/23.23 new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 47.49/23.23 new_esEs30(x0, x1, ty_Ordering) 47.49/23.23 new_primMulNat0(Zero, Succ(x0)) 47.49/23.23 new_primCmpNat0(Zero, Zero) 47.49/23.23 new_primEqNat0(Zero, Succ(x0)) 47.49/23.23 new_esEs28(x0, x1, ty_Float) 47.49/23.23 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 47.49/23.23 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.23 new_ltEs20(x0, x1, ty_Int) 47.49/23.23 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.23 new_compare28(x0, x1, True, x2, x3, x4) 47.49/23.23 47.49/23.23 We have to consider all minimal (P,Q,R)-chains. 47.49/23.23 ---------------------------------------- 47.49/23.23 47.49/23.23 (27) QDPSizeChangeProof (EQUIVALENT) 47.49/23.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. 47.49/23.23 47.49/23.23 From the DPs we obtained the following set of size-change graphs: 47.49/23.23 *new_splitGT0(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Just(yvy400), h, ba) 47.49/23.23 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 3 >= 7, 4 >= 8 47.49/23.23 47.49/23.23 47.49/23.23 *new_splitGT20(yvy31, yvy32, yvy33, Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, True, h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Just(yvy400), h, ba) 47.49/23.23 The graph contains the following edges 4 > 1, 4 > 2, 4 > 3, 4 > 4, 4 > 5, 7 >= 7, 8 >= 8 47.49/23.23 47.49/23.23 47.49/23.23 *new_splitGT3(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitGT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare25(Just(yvy400), Just(yvy300), new_esEs32(yvy400, yvy300, h), h), GT), h, ba) 47.49/23.23 The graph contains the following edges 1 > 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 > 6, 7 >= 8, 8 >= 9 47.49/23.23 47.49/23.23 47.49/23.23 *new_splitGT21(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, bb, bc) -> new_splitGT0(yvy19, yvy20, bb, bc) 47.49/23.23 The graph contains the following edges 5 >= 1, 6 >= 2, 8 >= 3, 9 >= 4 47.49/23.23 47.49/23.23 47.49/23.23 *new_splitGT21(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, False, bb, bc) -> new_splitGT12(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, new_esEs12(new_compare30(yvy20, yvy15, bb), LT), bb, bc) 47.49/23.23 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9 47.49/23.23 47.49/23.23 47.49/23.23 *new_splitGT3(Nothing, yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitGT20(yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare25(Just(yvy400), Nothing, False, h), GT), h, ba) 47.49/23.23 The graph contains the following edges 2 >= 1, 3 >= 2, 4 >= 3, 5 >= 4, 6 > 5, 7 >= 7, 8 >= 8 47.49/23.23 47.49/23.23 47.49/23.23 *new_splitGT20(yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba) -> new_splitGT11(yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare32(yvy400, h), LT), h, ba) 47.49/23.23 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 7 >= 7, 8 >= 8 47.49/23.23 47.49/23.23 47.49/23.23 *new_splitGT11(yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba) -> new_splitGT0(yvy33, yvy400, h, ba) 47.49/23.23 The graph contains the following edges 3 >= 1, 5 >= 2, 7 >= 3, 8 >= 4 47.49/23.23 47.49/23.23 47.49/23.23 *new_splitGT12(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, bb, bc) -> new_splitGT0(yvy18, yvy20, bb, bc) 47.49/23.23 The graph contains the following edges 4 >= 1, 6 >= 2, 8 >= 3, 9 >= 4 47.49/23.23 47.49/23.23 47.49/23.23 ---------------------------------------- 47.49/23.23 47.49/23.23 (28) 47.49/23.23 YES 47.49/23.23 47.49/23.23 ---------------------------------------- 47.49/23.23 47.49/23.23 (29) 47.49/23.23 Obligation: 47.49/23.23 Q DP problem: 47.49/23.23 The TRS P consists of the following rules: 47.49/23.23 47.49/23.23 new_splitGT1(yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_splitGT(yvy33, h, ba) 47.49/23.23 new_splitGT(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Nothing, h, ba) 47.49/23.23 new_splitGT3(Nothing, yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitGT1(yvy31, yvy32, yvy33, yvy34, new_esEs12(new_compare33(h), LT), h, ba) 47.49/23.23 new_splitGT3(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitGT2(yvy300, yvy31, yvy32, yvy33, yvy34, new_esEs12(new_compare25(Nothing, Just(yvy300), False, h), GT), h, ba) 47.49/23.23 new_splitGT2(yvy300, yvy31, yvy32, yvy33, Branch(yvy340, yvy341, yvy342, yvy343, yvy344), True, h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Nothing, h, ba) 47.49/23.23 new_splitGT2(yvy300, yvy31, yvy32, yvy33, yvy34, False, h, ba) -> new_splitGT10(yvy300, yvy31, yvy32, yvy33, yvy34, new_esEs12(new_compare31(yvy300, h), LT), h, ba) 47.49/23.23 new_splitGT10(yvy300, yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_splitGT(yvy33, h, ba) 47.49/23.23 47.49/23.23 The TRS R consists of the following rules: 47.49/23.23 47.49/23.23 new_esEs22(yvy4002, yvy3002, app(ty_[], cad)) -> new_esEs8(yvy4002, yvy3002, cad) 47.49/23.23 new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) 47.49/23.23 new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT 47.49/23.23 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 47.49/23.23 new_primPlusNat0(Zero, Zero) -> Zero 47.49/23.23 new_compare13(yvy49000, yvy50000, bcb, bcc, bcd) -> new_compare28(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, bcb, bcc, bcd), bcb, bcc, bcd) 47.49/23.23 new_esEs23(yvy4001, yvy3001, app(ty_Maybe, cah)) -> new_esEs6(yvy4001, yvy3001, cah) 47.49/23.23 new_pePe(True, yvy220) -> True 47.49/23.23 new_ltEs20(yvy49002, yvy50002, ty_Ordering) -> new_ltEs15(yvy49002, yvy50002) 47.49/23.23 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.23 new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) 47.49/23.23 new_compare26(yvy49000, yvy50000, False, bbh, bca) -> new_compare114(yvy49000, yvy50000, new_ltEs14(yvy49000, yvy50000, bbh, bca), bbh, bca) 47.49/23.23 new_lt20(yvy49001, yvy50001, ty_Ordering) -> new_lt17(yvy49001, yvy50001) 47.49/23.23 new_esEs30(yvy20, yvy15, app(app(ty_@2, ddd), dde)) -> new_esEs4(yvy20, yvy15, ddd, dde) 47.49/23.23 new_compare(:(yvy49000, yvy49001), [], bf) -> GT 47.49/23.23 new_ltEs20(yvy49002, yvy50002, app(app(ty_@2, dbg), dbh)) -> new_ltEs11(yvy49002, yvy50002, dbg, dbh) 47.49/23.23 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 47.49/23.23 new_ltEs14(Right(yvy49000), Left(yvy50000), hd, ga) -> False 47.49/23.23 new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Ratio, hc), ga) -> new_ltEs17(yvy49000, yvy50000, hc) 47.49/23.23 new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT 47.49/23.23 new_lt20(yvy49001, yvy50001, app(ty_Ratio, dbe)) -> new_lt18(yvy49001, yvy50001, dbe) 47.49/23.23 new_compare(:(yvy49000, yvy49001), :(yvy50000, yvy50001), bf) -> new_primCompAux0(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, bf), bf) 47.49/23.23 new_compare26(yvy49000, yvy50000, True, bbh, bca) -> EQ 47.49/23.23 new_esEs8(:(yvy4000, yvy4001), :(yvy3000, yvy3001), ee) -> new_asAs(new_esEs9(yvy4000, yvy3000, ee), new_esEs8(yvy4001, yvy3001, ee)) 47.49/23.23 new_compare27(yvy49000, yvy50000, False, bd, be) -> new_compare10(yvy49000, yvy50000, new_ltEs11(yvy49000, yvy50000, bd, be), bd, be) 47.49/23.23 new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) 47.49/23.23 new_esEs30(yvy20, yvy15, ty_Float) -> new_esEs13(yvy20, yvy15) 47.49/23.23 new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.23 new_ltEs4(Nothing, Nothing, db) -> True 47.49/23.23 new_ltEs4(Just(yvy49000), Nothing, db) -> False 47.49/23.23 new_lt8(yvy49000, yvy50000, app(app(ty_@2, bd), be)) -> new_lt4(yvy49000, yvy50000, bd, be) 47.49/23.23 new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat1(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) 47.49/23.23 new_compare113(yvy49000, yvy50000, False) -> GT 47.49/23.23 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Int) -> new_ltEs7(yvy49000, yvy50000) 47.49/23.23 new_ltEs15(EQ, LT) -> False 47.49/23.23 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.23 new_esEs28(yvy49000, yvy50000, app(app(ty_Either, daa), dab)) -> new_esEs7(yvy49000, yvy50000, daa, dab) 47.49/23.23 new_lt19(yvy49000, yvy50000, app(app(ty_@2, chc), chd)) -> new_lt4(yvy49000, yvy50000, chc, chd) 47.49/23.23 new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.23 new_ltEs20(yvy49002, yvy50002, app(app(ty_Either, dce), dcf)) -> new_ltEs14(yvy49002, yvy50002, dce, dcf) 47.49/23.23 new_esEs28(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) 47.49/23.23 new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Maybe, ea)) -> new_ltEs4(yvy49000, yvy50000, ea) 47.49/23.23 new_ltEs19(yvy49001, yvy50001, ty_Ordering) -> new_ltEs15(yvy49001, yvy50001) 47.49/23.23 new_ltEs18(yvy4900, yvy5000, ty_Float) -> new_ltEs5(yvy4900, yvy5000) 47.49/23.23 new_lt9(yvy49000, yvy50000) -> new_esEs12(new_compare6(yvy49000, yvy50000), LT) 47.49/23.23 new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False 47.49/23.23 new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False 47.49/23.23 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(ty_Ratio, baf)) -> new_ltEs17(yvy49000, yvy50000, baf) 47.49/23.23 new_ltEs15(GT, LT) -> False 47.49/23.23 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.23 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.23 new_lt19(yvy49000, yvy50000, app(ty_Ratio, dac)) -> new_lt18(yvy49000, yvy50000, dac) 47.49/23.23 new_esEs24(yvy4000, yvy3000, app(ty_Ratio, cce)) -> new_esEs15(yvy4000, yvy3000, cce) 47.49/23.23 new_esEs24(yvy4000, yvy3000, app(app(ty_@2, ccc), ccd)) -> new_esEs4(yvy4000, yvy3000, ccc, ccd) 47.49/23.23 new_ltEs13(True, True) -> True 47.49/23.23 new_compare29(yvy49000, yvy50000, False) -> new_compare113(yvy49000, yvy50000, new_ltEs15(yvy49000, yvy50000)) 47.49/23.23 new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) 47.49/23.23 new_lt15(yvy49000, yvy50000, bah) -> new_esEs12(new_compare15(yvy49000, yvy50000, bah), LT) 47.49/23.23 new_ltEs20(yvy49002, yvy50002, ty_Integer) -> new_ltEs10(yvy49002, yvy50002) 47.49/23.23 new_ltEs19(yvy49001, yvy50001, app(app(ty_@2, bda), bdb)) -> new_ltEs11(yvy49001, yvy50001, bda, bdb) 47.49/23.23 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Bool) -> new_ltEs13(yvy49000, yvy50000) 47.49/23.23 new_not(True) -> False 47.49/23.23 new_esEs28(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) 47.49/23.23 new_esEs28(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) 47.49/23.23 new_ltEs19(yvy49001, yvy50001, app(ty_Ratio, bea)) -> new_ltEs17(yvy49001, yvy50001, bea) 47.49/23.23 new_primCompAux00(yvy225, LT) -> LT 47.49/23.23 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.23 new_primCmpNat0(Zero, Zero) -> EQ 47.49/23.23 new_esEs32(yvy400, yvy300, ty_Ordering) -> new_esEs12(yvy400, yvy300) 47.49/23.23 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Ordering, bee) -> new_esEs12(yvy4000, yvy3000) 47.49/23.23 new_esEs28(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) 47.49/23.23 new_lt20(yvy49001, yvy50001, ty_Bool) -> new_lt14(yvy49001, yvy50001) 47.49/23.23 new_esEs27(yvy49001, yvy50001, ty_Bool) -> new_esEs11(yvy49001, yvy50001) 47.49/23.23 new_ltEs19(yvy49001, yvy50001, ty_Integer) -> new_ltEs10(yvy49001, yvy50001) 47.49/23.23 new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.49/23.23 new_esEs27(yvy49001, yvy50001, app(ty_[], dad)) -> new_esEs8(yvy49001, yvy50001, dad) 47.49/23.23 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.23 new_esEs27(yvy49001, yvy50001, ty_Char) -> new_esEs17(yvy49001, yvy50001) 47.49/23.23 new_esEs30(yvy20, yvy15, app(ty_Ratio, ddf)) -> new_esEs15(yvy20, yvy15, ddf) 47.49/23.23 new_esEs12(LT, LT) -> True 47.49/23.23 new_esEs21(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) 47.49/23.23 new_primEqNat0(Succ(yvy40000), Zero) -> False 47.49/23.23 new_primEqNat0(Zero, Succ(yvy30000)) -> False 47.49/23.23 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(app(app(ty_@3, hh), baa), bab)) -> new_ltEs12(yvy49000, yvy50000, hh, baa, bab) 47.49/23.23 new_esEs14(@0, @0) -> True 47.49/23.23 new_compare8(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) 47.49/23.23 new_ltEs19(yvy49001, yvy50001, ty_Char) -> new_ltEs6(yvy49001, yvy50001) 47.49/23.23 new_compare10(yvy49000, yvy50000, True, bd, be) -> LT 47.49/23.23 new_ltEs15(GT, EQ) -> False 47.49/23.23 new_lt20(yvy49001, yvy50001, app(app(app(ty_@3, dag), dah), dba)) -> new_lt13(yvy49001, yvy50001, dag, dah, dba) 47.49/23.23 new_primCompAux00(yvy225, GT) -> GT 47.49/23.23 new_compare110(yvy49000, yvy50000, True) -> LT 47.49/23.23 new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, cef), ceg), ceh)) -> new_esEs5(yvy4001, yvy3001, cef, ceg, ceh) 47.49/23.23 new_compare16(yvy49000, yvy50000, bbh, bca) -> new_compare26(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, bbh, bca), bbh, bca) 47.49/23.23 new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.23 new_esEs27(yvy49001, yvy50001, ty_Ordering) -> new_esEs12(yvy49001, yvy50001) 47.49/23.23 new_lt19(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) 47.49/23.23 new_ltEs20(yvy49002, yvy50002, ty_Bool) -> new_ltEs13(yvy49002, yvy50002) 47.49/23.23 new_esEs22(yvy4002, yvy3002, ty_Int) -> new_esEs16(yvy4002, yvy3002) 47.49/23.23 new_ltEs18(yvy4900, yvy5000, ty_Double) -> new_ltEs16(yvy4900, yvy5000) 47.49/23.23 new_esEs32(yvy400, yvy300, ty_@0) -> new_esEs14(yvy400, yvy300) 47.49/23.23 new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT 47.49/23.23 new_esEs27(yvy49001, yvy50001, ty_Int) -> new_esEs16(yvy49001, yvy50001) 47.49/23.23 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, app(ty_Ratio, bgd)) -> new_esEs15(yvy4000, yvy3000, bgd) 47.49/23.23 new_esEs22(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) 47.49/23.23 new_compare12(yvy49000, yvy50000, bd, be) -> new_compare27(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, bd, be), bd, be) 47.49/23.23 new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, cbg), cbh), cca)) -> new_esEs5(yvy4000, yvy3000, cbg, cbh, cca) 47.49/23.23 new_lt19(yvy49000, yvy50000, app(app(app(ty_@3, che), chf), chg)) -> new_lt13(yvy49000, yvy50000, che, chf, chg) 47.49/23.23 new_ltEs20(yvy49002, yvy50002, app(app(app(ty_@3, dca), dcb), dcc)) -> new_ltEs12(yvy49002, yvy50002, dca, dcb, dcc) 47.49/23.23 new_esEs30(yvy20, yvy15, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs5(yvy20, yvy15, dch, dda, ddb) 47.49/23.23 new_esEs30(yvy20, yvy15, ty_Double) -> new_esEs18(yvy20, yvy15) 47.49/23.23 new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bgh, bha, bhb) -> new_asAs(new_esEs24(yvy4000, yvy3000, bgh), new_asAs(new_esEs23(yvy4001, yvy3001, bha), new_esEs22(yvy4002, yvy3002, bhb))) 47.49/23.23 new_compare5(yvy49000, yvy50000, ty_Int) -> new_compare8(yvy49000, yvy50000) 47.49/23.23 new_compare32(yvy400, h) -> new_compare25(Just(yvy400), Nothing, False, h) 47.49/23.23 new_ltEs19(yvy49001, yvy50001, ty_Bool) -> new_ltEs13(yvy49001, yvy50001) 47.49/23.23 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, app(app(app(ty_@3, bff), bfg), bfh)) -> new_esEs5(yvy4000, yvy3000, bff, bfg, bfh) 47.49/23.23 new_ltEs18(yvy4900, yvy5000, ty_Integer) -> new_ltEs10(yvy4900, yvy5000) 47.49/23.23 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.23 new_esEs26(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.23 new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.23 new_esEs7(Left(yvy4000), Left(yvy3000), ty_@0, bee) -> new_esEs14(yvy4000, yvy3000) 47.49/23.23 new_esEs32(yvy400, yvy300, app(ty_[], ee)) -> new_esEs8(yvy400, yvy300, ee) 47.49/23.23 new_primCmpNat0(Zero, Succ(yvy5000)) -> LT 47.49/23.23 new_compare5(yvy49000, yvy50000, app(ty_Ratio, da)) -> new_compare19(yvy49000, yvy50000, da) 47.49/23.23 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.23 new_esEs26(yvy4000, yvy3000, app(ty_[], cha)) -> new_esEs8(yvy4000, yvy3000, cha) 47.49/23.23 new_esEs12(EQ, GT) -> False 47.49/23.23 new_esEs12(GT, EQ) -> False 47.49/23.23 new_lt8(yvy49000, yvy50000, app(ty_Ratio, bcg)) -> new_lt18(yvy49000, yvy50000, bcg) 47.49/23.23 new_ltEs19(yvy49001, yvy50001, app(app(app(ty_@3, bdc), bdd), bde)) -> new_ltEs12(yvy49001, yvy50001, bdc, bdd, bde) 47.49/23.23 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) 47.49/23.23 new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.23 new_lt8(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) 47.49/23.23 new_esEs21(yvy49000, yvy50000, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs5(yvy49000, yvy50000, bcb, bcc, bcd) 47.49/23.23 new_lt19(yvy49000, yvy50000, app(ty_[], chb)) -> new_lt12(yvy49000, yvy50000, chb) 47.49/23.23 new_primCmpNat0(Succ(yvy4900), Zero) -> GT 47.49/23.23 new_pePe(False, yvy220) -> yvy220 47.49/23.23 new_esEs27(yvy49001, yvy50001, ty_@0) -> new_esEs14(yvy49001, yvy50001) 47.49/23.23 new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Maybe, gh), ga) -> new_ltEs4(yvy49000, yvy50000, gh) 47.49/23.23 new_esEs11(False, True) -> False 47.49/23.23 new_esEs11(True, False) -> False 47.49/23.23 new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cea), ceb)) -> new_esEs7(yvy4000, yvy3000, cea, ceb) 47.49/23.23 new_lt8(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) 47.49/23.23 new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_@2, beg), beh), bee) -> new_esEs4(yvy4000, yvy3000, beg, beh) 47.49/23.23 new_compare114(yvy49000, yvy50000, True, bbh, bca) -> LT 47.49/23.23 new_lt8(yvy49000, yvy50000, app(app(ty_Either, bbh), bca)) -> new_lt16(yvy49000, yvy50000, bbh, bca) 47.49/23.23 new_ltEs18(yvy4900, yvy5000, ty_@0) -> new_ltEs9(yvy4900, yvy5000) 47.49/23.23 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_@0) -> new_ltEs9(yvy49000, yvy50000) 47.49/23.23 new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 47.49/23.23 new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) 47.49/23.23 new_ltEs7(yvy4900, yvy5000) -> new_fsEs(new_compare8(yvy4900, yvy5000)) 47.49/23.23 new_ltEs19(yvy49001, yvy50001, ty_Double) -> new_ltEs16(yvy49001, yvy50001) 47.49/23.23 new_esEs22(yvy4002, yvy3002, ty_Bool) -> new_esEs11(yvy4002, yvy3002) 47.49/23.23 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Char) -> new_ltEs6(yvy49000, yvy50000) 47.49/23.23 new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_[], gb), ga) -> new_ltEs8(yvy49000, yvy50000, gb) 47.49/23.23 new_esEs21(yvy49000, yvy50000, app(ty_[], bcf)) -> new_esEs8(yvy49000, yvy50000, bcf) 47.49/23.23 new_esEs22(yvy4002, yvy3002, app(ty_Maybe, bhf)) -> new_esEs6(yvy4002, yvy3002, bhf) 47.49/23.23 new_esEs21(yvy49000, yvy50000, app(app(ty_@2, bd), be)) -> new_esEs4(yvy49000, yvy50000, bd, be) 47.49/23.23 new_esEs32(yvy400, yvy300, app(ty_Maybe, cda)) -> new_esEs6(yvy400, yvy300, cda) 47.49/23.23 new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False 47.49/23.23 new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False 47.49/23.23 new_esEs25(yvy4001, yvy3001, app(app(ty_@2, cfb), cfc)) -> new_esEs4(yvy4001, yvy3001, cfb, cfc) 47.49/23.23 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Bool, bee) -> new_esEs11(yvy4000, yvy3000) 47.49/23.23 new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Ratio, bfa), bee) -> new_esEs15(yvy4000, yvy3000, bfa) 47.49/23.23 new_ltEs18(yvy4900, yvy5000, ty_Bool) -> new_ltEs13(yvy4900, yvy5000) 47.49/23.23 new_ltEs18(yvy4900, yvy5000, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_ltEs12(yvy4900, yvy5000, bbd, bbe, bbf) 47.49/23.23 new_esEs23(yvy4001, yvy3001, app(app(ty_Either, cbd), cbe)) -> new_esEs7(yvy4001, yvy3001, cbd, cbe) 47.49/23.23 new_esEs21(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) 47.49/23.23 new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 47.49/23.23 new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_@2, gc), gd), ga) -> new_ltEs11(yvy49000, yvy50000, gc, gd) 47.49/23.23 new_ltEs20(yvy49002, yvy50002, ty_Double) -> new_ltEs16(yvy49002, yvy50002) 47.49/23.23 new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.23 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(app(ty_Either, bad), bae)) -> new_ltEs14(yvy49000, yvy50000, bad, bae) 47.49/23.23 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Float, ga) -> new_ltEs5(yvy49000, yvy50000) 47.49/23.23 new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT 47.49/23.23 new_compare114(yvy49000, yvy50000, False, bbh, bca) -> GT 47.49/23.23 new_esEs25(yvy4001, yvy3001, app(ty_[], cfg)) -> new_esEs8(yvy4001, yvy3001, cfg) 47.49/23.23 new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.23 new_esEs4(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ced, cee) -> new_asAs(new_esEs26(yvy4000, yvy3000, ced), new_esEs25(yvy4001, yvy3001, cee)) 47.49/23.23 new_ltEs5(yvy4900, yvy5000) -> new_fsEs(new_compare6(yvy4900, yvy5000)) 47.49/23.23 new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_Either, bfb), bfc), bee) -> new_esEs7(yvy4000, yvy3000, bfb, bfc) 47.49/23.23 new_esEs26(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.23 new_esEs9(yvy4000, yvy3000, app(app(ty_@2, fb), fc)) -> new_esEs4(yvy4000, yvy3000, fb, fc) 47.49/23.23 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.23 new_compare25(Just(yvy4900), Nothing, False, bba) -> GT 47.49/23.23 new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) 47.49/23.23 new_compare5(yvy49000, yvy50000, ty_@0) -> new_compare9(yvy49000, yvy50000) 47.49/23.23 new_esEs24(yvy4000, yvy3000, app(ty_Maybe, ccb)) -> new_esEs6(yvy4000, yvy3000, ccb) 47.49/23.23 new_lt11(yvy205, yvy204) -> new_esEs12(new_compare8(yvy205, yvy204), LT) 47.49/23.23 new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 47.49/23.23 new_lt6(yvy49000, yvy50000) -> new_esEs12(new_compare9(yvy49000, yvy50000), LT) 47.49/23.23 new_primMulNat0(Succ(yvy400100), Zero) -> Zero 47.49/23.23 new_primMulNat0(Zero, Succ(yvy300000)) -> Zero 47.49/23.23 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Double, ga) -> new_ltEs16(yvy49000, yvy50000) 47.49/23.23 new_lt8(yvy49000, yvy50000, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_lt13(yvy49000, yvy50000, bcb, bcc, bcd) 47.49/23.23 new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) 47.49/23.23 new_esEs6(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs5(yvy4000, yvy3000, cdb, cdc, cdd) 47.49/23.23 new_esEs25(yvy4001, yvy3001, app(app(ty_Either, cfe), cff)) -> new_esEs7(yvy4001, yvy3001, cfe, cff) 47.49/23.23 new_compare5(yvy49000, yvy50000, ty_Float) -> new_compare6(yvy49000, yvy50000) 47.49/23.23 new_esEs9(yvy4000, yvy3000, app(ty_[], fh)) -> new_esEs8(yvy4000, yvy3000, fh) 47.49/23.23 new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, cae), caf), cag)) -> new_esEs5(yvy4001, yvy3001, cae, caf, cag) 47.49/23.23 new_esEs26(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.23 new_primPlusNat1(Succ(yvy1610), yvy300000) -> Succ(Succ(new_primPlusNat0(yvy1610, yvy300000))) 47.49/23.23 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Int, bee) -> new_esEs16(yvy4000, yvy3000) 47.49/23.23 new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.23 new_esEs16(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) 47.49/23.23 new_primPlusNat0(Succ(yvy16100), Zero) -> Succ(yvy16100) 47.49/23.23 new_primPlusNat0(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) 47.49/23.23 new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) 47.49/23.23 new_primPlusNat1(Zero, yvy300000) -> Succ(yvy300000) 47.49/23.23 new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Int) -> new_compare8(new_sr(yvy49000, yvy50001), new_sr(yvy50000, yvy49001)) 47.49/23.23 new_esEs32(yvy400, yvy300, app(app(app(ty_@3, bgh), bha), bhb)) -> new_esEs5(yvy400, yvy300, bgh, bha, bhb) 47.49/23.23 new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.23 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_@0, ga) -> new_ltEs9(yvy49000, yvy50000) 47.49/23.23 new_lt8(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) 47.49/23.23 new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_Either, ha), hb), ga) -> new_ltEs14(yvy49000, yvy50000, ha, hb) 47.49/23.23 new_ltEs20(yvy49002, yvy50002, ty_@0) -> new_ltEs9(yvy49002, yvy50002) 47.49/23.23 new_ltEs18(yvy4900, yvy5000, app(app(ty_@2, bbb), bbc)) -> new_ltEs11(yvy4900, yvy5000, bbb, bbc) 47.49/23.23 new_ltEs9(yvy4900, yvy5000) -> new_fsEs(new_compare9(yvy4900, yvy5000)) 47.49/23.23 new_esEs22(yvy4002, yvy3002, app(ty_Ratio, caa)) -> new_esEs15(yvy4002, yvy3002, caa) 47.49/23.23 new_ltEs19(yvy49001, yvy50001, app(app(ty_Either, bdg), bdh)) -> new_ltEs14(yvy49001, yvy50001, bdg, bdh) 47.49/23.23 new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) 47.49/23.23 new_lt8(yvy49000, yvy50000, app(ty_Maybe, bah)) -> new_lt15(yvy49000, yvy50000, bah) 47.49/23.23 new_esEs32(yvy400, yvy300, ty_Double) -> new_esEs18(yvy400, yvy300) 47.49/23.23 new_esEs30(yvy20, yvy15, ty_@0) -> new_esEs14(yvy20, yvy15) 47.49/23.23 new_lt20(yvy49001, yvy50001, ty_Char) -> new_lt10(yvy49001, yvy50001) 47.49/23.23 new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.49/23.23 new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.49/23.23 new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fa)) -> new_esEs6(yvy4000, yvy3000, fa) 47.49/23.23 new_esEs23(yvy4001, yvy3001, app(ty_Ratio, cbc)) -> new_esEs15(yvy4001, yvy3001, cbc) 47.49/23.23 new_compare25(Just(yvy4900), Just(yvy5000), False, bba) -> new_compare111(yvy4900, yvy5000, new_ltEs18(yvy4900, yvy5000, bba), bba) 47.49/23.23 new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.49/23.23 new_ltEs20(yvy49002, yvy50002, ty_Float) -> new_ltEs5(yvy49002, yvy50002) 47.49/23.23 new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cdf), cdg)) -> new_esEs4(yvy4000, yvy3000, cdf, cdg) 47.49/23.23 new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.23 new_fsEs(yvy209) -> new_not(new_esEs12(yvy209, GT)) 47.49/23.23 new_ltEs18(yvy4900, yvy5000, app(app(ty_Either, hd), ga)) -> new_ltEs14(yvy4900, yvy5000, hd, ga) 47.49/23.23 new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cdh)) -> new_esEs15(yvy4000, yvy3000, cdh) 47.49/23.23 new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.23 new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) 47.49/23.23 new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_[], cec)) -> new_esEs8(yvy4000, yvy3000, cec) 47.49/23.23 new_compare25(yvy490, yvy500, True, bba) -> EQ 47.49/23.23 new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs5(yvy4000, yvy3000, ef, eg, eh) 47.49/23.23 new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fd)) -> new_esEs15(yvy4000, yvy3000, fd) 47.49/23.23 new_compare([], :(yvy50000, yvy50001), bf) -> LT 47.49/23.23 new_lt20(yvy49001, yvy50001, app(ty_[], dad)) -> new_lt12(yvy49001, yvy50001, dad) 47.49/23.23 new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cde)) -> new_esEs6(yvy4000, yvy3000, cde) 47.49/23.23 new_esEs6(Nothing, Just(yvy3000), cda) -> False 47.49/23.23 new_esEs6(Just(yvy4000), Nothing, cda) -> False 47.49/23.23 new_esEs23(yvy4001, yvy3001, app(ty_[], cbf)) -> new_esEs8(yvy4001, yvy3001, cbf) 47.49/23.23 new_ltEs15(EQ, GT) -> True 47.49/23.23 new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.23 new_esEs6(Nothing, Nothing, cda) -> True 47.49/23.23 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Double) -> new_ltEs16(yvy49000, yvy50000) 47.49/23.23 new_esEs11(False, False) -> True 47.49/23.23 new_esEs24(yvy4000, yvy3000, app(app(ty_Either, ccf), ccg)) -> new_esEs7(yvy4000, yvy3000, ccf, ccg) 47.49/23.23 new_ltEs18(yvy4900, yvy5000, ty_Ordering) -> new_ltEs15(yvy4900, yvy5000) 47.49/23.23 new_ltEs11(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), bbb, bbc) -> new_pePe(new_lt8(yvy49000, yvy50000, bbb), new_asAs(new_esEs21(yvy49000, yvy50000, bbb), new_ltEs19(yvy49001, yvy50001, bbc))) 47.49/23.23 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Integer) -> new_ltEs10(yvy49000, yvy50000) 47.49/23.23 new_esEs21(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) 47.49/23.23 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.23 new_esEs30(yvy20, yvy15, ty_Char) -> new_esEs17(yvy20, yvy15) 47.49/23.23 new_ltEs14(Left(yvy49000), Right(yvy50000), hd, ga) -> True 47.49/23.23 new_ltEs19(yvy49001, yvy50001, ty_Float) -> new_ltEs5(yvy49001, yvy50001) 47.49/23.23 new_esEs23(yvy4001, yvy3001, app(app(ty_@2, cba), cbb)) -> new_esEs4(yvy4001, yvy3001, cba, cbb) 47.49/23.23 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.23 new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.49/23.23 new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.49/23.23 new_esEs26(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.23 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Ordering, ga) -> new_ltEs15(yvy49000, yvy50000) 47.49/23.23 new_ltEs6(yvy4900, yvy5000) -> new_fsEs(new_compare7(yvy4900, yvy5000)) 47.49/23.23 new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.23 new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.23 new_esEs8(:(yvy4000, yvy4001), [], ee) -> False 47.49/23.23 new_esEs8([], :(yvy3000, yvy3001), ee) -> False 47.49/23.23 new_esEs26(yvy4000, yvy3000, app(app(ty_Either, cgg), cgh)) -> new_esEs7(yvy4000, yvy3000, cgg, cgh) 47.49/23.23 new_lt19(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) 47.49/23.23 new_lt17(yvy49000, yvy50000) -> new_esEs12(new_compare17(yvy49000, yvy50000), LT) 47.49/23.23 new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Integer) -> new_compare11(new_sr0(yvy49000, yvy50001), new_sr0(yvy50000, yvy49001)) 47.49/23.23 new_esEs22(yvy4002, yvy3002, app(app(ty_@2, bhg), bhh)) -> new_esEs4(yvy4002, yvy3002, bhg, bhh) 47.49/23.23 new_esEs22(yvy4002, yvy3002, ty_Double) -> new_esEs18(yvy4002, yvy3002) 47.49/23.23 new_esEs26(yvy4000, yvy3000, app(ty_Ratio, cgf)) -> new_esEs15(yvy4000, yvy3000, cgf) 47.49/23.23 new_compare5(yvy49000, yvy50000, app(ty_Maybe, ce)) -> new_compare15(yvy49000, yvy50000, ce) 47.49/23.23 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Integer, bee) -> new_esEs10(yvy4000, yvy3000) 47.49/23.23 new_ltEs19(yvy49001, yvy50001, ty_@0) -> new_ltEs9(yvy49001, yvy50001) 47.49/23.23 new_esEs22(yvy4002, yvy3002, app(app(app(ty_@3, bhc), bhd), bhe)) -> new_esEs5(yvy4002, yvy3002, bhc, bhd, bhe) 47.49/23.23 new_esEs32(yvy400, yvy300, ty_Integer) -> new_esEs10(yvy400, yvy300) 47.49/23.23 new_lt20(yvy49001, yvy50001, ty_@0) -> new_lt6(yvy49001, yvy50001) 47.49/23.23 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, app(app(ty_@2, bgb), bgc)) -> new_esEs4(yvy4000, yvy3000, bgb, bgc) 47.49/23.23 new_sr0(Integer(yvy490000), Integer(yvy500010)) -> Integer(new_primMulInt(yvy490000, yvy500010)) 47.49/23.23 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Bool, ga) -> new_ltEs13(yvy49000, yvy50000) 47.49/23.23 new_esEs18(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 47.49/23.23 new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.23 new_esEs28(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) 47.49/23.23 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, app(ty_[], bgg)) -> new_esEs8(yvy4000, yvy3000, bgg) 47.49/23.23 new_esEs32(yvy400, yvy300, app(app(ty_Either, bfe), bee)) -> new_esEs7(yvy400, yvy300, bfe, bee) 47.49/23.23 new_ltEs15(LT, GT) -> True 47.49/23.23 new_lt19(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) 47.49/23.23 new_esEs30(yvy20, yvy15, app(ty_[], dea)) -> new_esEs8(yvy20, yvy15, dea) 47.49/23.23 new_compare33(h) -> new_compare25(Nothing, Nothing, True, h) 47.49/23.23 new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) 47.49/23.23 new_esEs12(GT, GT) -> True 47.49/23.23 new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) 47.49/23.23 new_esEs24(yvy4000, yvy3000, app(ty_[], cch)) -> new_esEs8(yvy4000, yvy3000, cch) 47.49/23.23 new_asAs(True, yvy201) -> yvy201 47.49/23.23 new_esEs26(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.23 new_esEs21(yvy49000, yvy50000, app(ty_Maybe, bah)) -> new_esEs6(yvy49000, yvy50000, bah) 47.49/23.23 new_esEs10(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) 47.49/23.23 new_compare10(yvy49000, yvy50000, False, bd, be) -> GT 47.49/23.23 new_lt8(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) 47.49/23.23 new_lt8(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) 47.49/23.23 new_compare113(yvy49000, yvy50000, True) -> LT 47.49/23.23 new_esEs32(yvy400, yvy300, app(ty_Ratio, bag)) -> new_esEs15(yvy400, yvy300, bag) 47.49/23.23 new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.23 new_ltEs16(yvy4900, yvy5000) -> new_fsEs(new_compare18(yvy4900, yvy5000)) 47.49/23.23 new_lt20(yvy49001, yvy50001, ty_Float) -> new_lt9(yvy49001, yvy50001) 47.49/23.23 new_ltEs4(Nothing, Just(yvy50000), db) -> True 47.49/23.23 new_esEs21(yvy49000, yvy50000, app(ty_Ratio, bcg)) -> new_esEs15(yvy49000, yvy50000, bcg) 47.49/23.23 new_ltEs18(yvy4900, yvy5000, app(ty_Maybe, db)) -> new_ltEs4(yvy4900, yvy5000, db) 47.49/23.23 new_lt8(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) 47.49/23.23 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Float, bee) -> new_esEs13(yvy4000, yvy3000) 47.49/23.23 new_esEs32(yvy400, yvy300, ty_Float) -> new_esEs13(yvy400, yvy300) 47.49/23.23 new_ltEs8(yvy4900, yvy5000, bf) -> new_fsEs(new_compare(yvy4900, yvy5000, bf)) 47.49/23.23 new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) 47.49/23.23 new_ltEs18(yvy4900, yvy5000, app(ty_[], bf)) -> new_ltEs8(yvy4900, yvy5000, bf) 47.49/23.23 new_compare110(yvy49000, yvy50000, False) -> GT 47.49/23.23 new_primCompAux00(yvy225, EQ) -> yvy225 47.49/23.23 new_lt19(yvy49000, yvy50000, app(ty_Maybe, chh)) -> new_lt15(yvy49000, yvy50000, chh) 47.49/23.23 new_esEs12(EQ, EQ) -> True 47.49/23.23 new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) 47.49/23.23 new_lt19(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) 47.49/23.23 new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) 47.49/23.23 new_esEs21(yvy49000, yvy50000, app(app(ty_Either, bbh), bca)) -> new_esEs7(yvy49000, yvy50000, bbh, bca) 47.49/23.23 new_primMulNat0(Zero, Zero) -> Zero 47.49/23.23 new_compare24(yvy49000, yvy50000, False) -> new_compare110(yvy49000, yvy50000, new_ltEs13(yvy49000, yvy50000)) 47.49/23.23 new_compare5(yvy49000, yvy50000, ty_Integer) -> new_compare11(yvy49000, yvy50000) 47.49/23.23 new_esEs22(yvy4002, yvy3002, ty_Integer) -> new_esEs10(yvy4002, yvy3002) 47.49/23.23 new_esEs21(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) 47.49/23.23 new_lt19(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) 47.49/23.23 new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.23 new_ltEs12(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), bbd, bbe, bbf) -> new_pePe(new_lt19(yvy49000, yvy50000, bbd), new_asAs(new_esEs28(yvy49000, yvy50000, bbd), new_pePe(new_lt20(yvy49001, yvy50001, bbe), new_asAs(new_esEs27(yvy49001, yvy50001, bbe), new_ltEs20(yvy49002, yvy50002, bbf))))) 47.49/23.23 new_ltEs19(yvy49001, yvy50001, app(ty_[], bch)) -> new_ltEs8(yvy49001, yvy50001, bch) 47.49/23.23 new_compare5(yvy49000, yvy50000, ty_Double) -> new_compare18(yvy49000, yvy50000) 47.49/23.23 new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_@2, dd), de)) -> new_ltEs11(yvy49000, yvy50000, dd, de) 47.49/23.23 new_compare11(Integer(yvy49000), Integer(yvy50000)) -> new_primCmpInt(yvy49000, yvy50000) 47.49/23.23 new_compare9(@0, @0) -> EQ 47.49/23.23 new_esEs22(yvy4002, yvy3002, app(app(ty_Either, cab), cac)) -> new_esEs7(yvy4002, yvy3002, cab, cac) 47.49/23.23 new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.23 new_compare28(yvy49000, yvy50000, True, bcb, bcc, bcd) -> EQ 47.49/23.23 new_esEs27(yvy49001, yvy50001, ty_Float) -> new_esEs13(yvy49001, yvy50001) 47.49/23.23 new_esEs26(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.23 new_ltEs13(False, True) -> True 47.49/23.23 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.23 new_ltEs13(False, False) -> True 47.49/23.23 new_esEs9(yvy4000, yvy3000, app(app(ty_Either, ff), fg)) -> new_esEs7(yvy4000, yvy3000, ff, fg) 47.49/23.23 new_esEs7(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, beb), bec), bed), bee) -> new_esEs5(yvy4000, yvy3000, beb, bec, bed) 47.49/23.23 new_ltEs15(EQ, EQ) -> True 47.49/23.23 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) 47.49/23.23 new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Maybe, bef), bee) -> new_esEs6(yvy4000, yvy3000, bef) 47.49/23.23 new_compare30(yvy20, yvy15, bb) -> new_compare25(Just(yvy20), Just(yvy15), new_esEs30(yvy20, yvy15, bb), bb) 47.49/23.23 new_esEs26(yvy4000, yvy3000, app(ty_Maybe, cgc)) -> new_esEs6(yvy4000, yvy3000, cgc) 47.49/23.23 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.23 new_esEs26(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.23 new_lt12(yvy49000, yvy50000, bcf) -> new_esEs12(new_compare(yvy49000, yvy50000, bcf), LT) 47.49/23.23 new_lt10(yvy49000, yvy50000) -> new_esEs12(new_compare7(yvy49000, yvy50000), LT) 47.49/23.23 new_lt19(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) 47.49/23.23 new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.23 new_compare31(yvy300, h) -> new_compare25(Nothing, Just(yvy300), False, h) 47.49/23.23 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Char, bee) -> new_esEs17(yvy4000, yvy3000) 47.49/23.23 new_esEs32(yvy400, yvy300, ty_Char) -> new_esEs17(yvy400, yvy300) 47.49/23.23 new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.23 new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_[], bfd), bee) -> new_esEs8(yvy4000, yvy3000, bfd) 47.49/23.23 new_ltEs20(yvy49002, yvy50002, app(ty_[], dbf)) -> new_ltEs8(yvy49002, yvy50002, dbf) 47.49/23.23 new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_Either, eb), ec)) -> new_ltEs14(yvy49000, yvy50000, eb, ec) 47.49/23.23 new_compare17(yvy49000, yvy50000) -> new_compare29(yvy49000, yvy50000, new_esEs12(yvy49000, yvy50000)) 47.49/23.23 new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False 47.49/23.23 new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False 47.49/23.23 new_esEs21(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) 47.49/23.23 new_esEs25(yvy4001, yvy3001, app(ty_Maybe, cfa)) -> new_esEs6(yvy4001, yvy3001, cfa) 47.49/23.23 new_compare([], [], bf) -> EQ 47.49/23.23 new_ltEs15(LT, EQ) -> True 47.49/23.23 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Float) -> new_ltEs5(yvy49000, yvy50000) 47.49/23.23 new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 47.49/23.23 new_ltEs18(yvy4900, yvy5000, ty_Char) -> new_ltEs6(yvy4900, yvy5000) 47.49/23.23 new_ltEs18(yvy4900, yvy5000, app(ty_Ratio, bbg)) -> new_ltEs17(yvy4900, yvy5000, bbg) 47.49/23.23 new_esEs32(yvy400, yvy300, app(app(ty_@2, ced), cee)) -> new_esEs4(yvy400, yvy300, ced, cee) 47.49/23.23 new_lt20(yvy49001, yvy50001, ty_Double) -> new_lt7(yvy49001, yvy50001) 47.49/23.23 new_esEs26(yvy4000, yvy3000, app(app(ty_@2, cgd), cge)) -> new_esEs4(yvy4000, yvy3000, cgd, cge) 47.49/23.23 new_compare24(yvy49000, yvy50000, True) -> EQ 47.49/23.23 new_lt8(yvy49000, yvy50000, app(ty_[], bcf)) -> new_lt12(yvy49000, yvy50000, bcf) 47.49/23.23 new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(app(ty_@3, ge), gf), gg), ga) -> new_ltEs12(yvy49000, yvy50000, ge, gf, gg) 47.49/23.23 new_esEs21(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) 47.49/23.23 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, app(app(ty_Either, bge), bgf)) -> new_esEs7(yvy4000, yvy3000, bge, bgf) 47.49/23.23 new_esEs11(True, True) -> True 47.49/23.23 new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False 47.49/23.23 new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False 47.49/23.23 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(ty_[], he)) -> new_ltEs8(yvy49000, yvy50000, he) 47.49/23.23 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, app(ty_Maybe, bga)) -> new_esEs6(yvy4000, yvy3000, bga) 47.49/23.23 new_esEs25(yvy4001, yvy3001, app(ty_Ratio, cfd)) -> new_esEs15(yvy4001, yvy3001, cfd) 47.49/23.23 new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) 47.49/23.23 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Int) -> new_ltEs7(yvy49000, yvy50000) 47.49/23.23 new_esEs15(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bag) -> new_asAs(new_esEs20(yvy4000, yvy3000, bag), new_esEs19(yvy4001, yvy3001, bag)) 47.49/23.23 new_compare28(yvy49000, yvy50000, False, bcb, bcc, bcd) -> new_compare112(yvy49000, yvy50000, new_ltEs12(yvy49000, yvy50000, bcb, bcc, bcd), bcb, bcc, bcd) 47.49/23.23 new_esEs22(yvy4002, yvy3002, ty_Float) -> new_esEs13(yvy4002, yvy3002) 47.49/23.23 new_esEs27(yvy49001, yvy50001, ty_Integer) -> new_esEs10(yvy49001, yvy50001) 47.49/23.23 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(app(ty_@2, hf), hg)) -> new_ltEs11(yvy49000, yvy50000, hf, hg) 47.49/23.23 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 47.49/23.23 new_ltEs15(GT, GT) -> True 47.49/23.23 new_compare111(yvy198, yvy199, False, bce) -> GT 47.49/23.23 new_esEs30(yvy20, yvy15, ty_Bool) -> new_esEs11(yvy20, yvy15) 47.49/23.23 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(ty_Maybe, bac)) -> new_ltEs4(yvy49000, yvy50000, bac) 47.49/23.23 new_esEs30(yvy20, yvy15, app(ty_Maybe, ddc)) -> new_esEs6(yvy20, yvy15, ddc) 47.49/23.23 new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 47.49/23.23 new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) 47.49/23.23 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Int, ga) -> new_ltEs7(yvy49000, yvy50000) 47.49/23.23 new_not(False) -> True 47.49/23.23 new_compare5(yvy49000, yvy50000, app(app(ty_Either, cf), cg)) -> new_compare16(yvy49000, yvy50000, cf, cg) 47.49/23.23 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.23 new_compare112(yvy49000, yvy50000, True, bcb, bcc, bcd) -> LT 47.49/23.23 new_esEs28(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) 47.49/23.23 new_compare5(yvy49000, yvy50000, ty_Bool) -> new_compare14(yvy49000, yvy50000) 47.49/23.23 new_lt13(yvy49000, yvy50000, bcb, bcc, bcd) -> new_esEs12(new_compare13(yvy49000, yvy50000, bcb, bcc, bcd), LT) 47.49/23.23 new_primCompAux0(yvy49000, yvy50000, yvy221, bf) -> new_primCompAux00(yvy221, new_compare5(yvy49000, yvy50000, bf)) 47.49/23.23 new_esEs27(yvy49001, yvy50001, app(app(ty_Either, dbc), dbd)) -> new_esEs7(yvy49001, yvy50001, dbc, dbd) 47.49/23.23 new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 47.49/23.23 new_esEs22(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) 47.49/23.23 new_lt7(yvy49000, yvy50000) -> new_esEs12(new_compare18(yvy49000, yvy50000), LT) 47.49/23.23 new_esEs28(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) 47.49/23.23 new_esEs12(LT, EQ) -> False 47.49/23.23 new_esEs12(EQ, LT) -> False 47.49/23.23 new_esEs21(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) 47.49/23.23 new_compare29(yvy49000, yvy50000, True) -> EQ 47.49/23.23 new_primPlusNat0(Succ(yvy16100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat0(yvy16100, yvy3000000))) 47.49/23.23 new_lt4(yvy49000, yvy50000, bd, be) -> new_esEs12(new_compare12(yvy49000, yvy50000, bd, be), LT) 47.49/23.23 new_esEs32(yvy400, yvy300, ty_Bool) -> new_esEs11(yvy400, yvy300) 47.49/23.23 new_compare5(yvy49000, yvy50000, app(app(app(ty_@3, cb), cc), cd)) -> new_compare13(yvy49000, yvy50000, cb, cc, cd) 47.49/23.23 new_esEs27(yvy49001, yvy50001, app(ty_Ratio, dbe)) -> new_esEs15(yvy49001, yvy50001, dbe) 47.49/23.23 new_lt19(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) 47.49/23.23 new_esEs28(yvy49000, yvy50000, app(app(app(ty_@3, che), chf), chg)) -> new_esEs5(yvy49000, yvy50000, che, chf, chg) 47.49/23.23 new_compare112(yvy49000, yvy50000, False, bcb, bcc, bcd) -> GT 47.49/23.23 new_compare27(yvy49000, yvy50000, True, bd, be) -> EQ 47.49/23.23 new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.23 new_compare15(yvy49000, yvy50000, bah) -> new_compare25(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, bah), bah) 47.49/23.23 new_esEs21(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) 47.49/23.23 new_esEs12(LT, GT) -> False 47.49/23.23 new_esEs12(GT, LT) -> False 47.49/23.23 new_lt20(yvy49001, yvy50001, ty_Int) -> new_lt11(yvy49001, yvy50001) 47.49/23.23 new_ltEs19(yvy49001, yvy50001, ty_Int) -> new_ltEs7(yvy49001, yvy50001) 47.49/23.23 new_ltEs20(yvy49002, yvy50002, app(ty_Ratio, dcg)) -> new_ltEs17(yvy49002, yvy50002, dcg) 47.49/23.23 new_esEs8([], [], ee) -> True 47.49/23.23 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Char, ga) -> new_ltEs6(yvy49000, yvy50000) 47.49/23.23 new_ltEs20(yvy49002, yvy50002, ty_Char) -> new_ltEs6(yvy49002, yvy50002) 47.49/23.23 new_compare25(Nothing, Nothing, False, bba) -> LT 47.49/23.23 new_lt20(yvy49001, yvy50001, app(ty_Maybe, dbb)) -> new_lt15(yvy49001, yvy50001, dbb) 47.49/23.23 new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Ratio, ed)) -> new_ltEs17(yvy49000, yvy50000, ed) 47.49/23.23 new_lt8(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) 47.49/23.23 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Float) -> new_ltEs5(yvy49000, yvy50000) 47.49/23.23 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 47.49/23.23 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 47.49/23.23 new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) 47.49/23.23 new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.49/23.23 new_lt20(yvy49001, yvy50001, app(app(ty_@2, dae), daf)) -> new_lt4(yvy49001, yvy50001, dae, daf) 47.49/23.23 new_esEs28(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) 47.49/23.23 new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.23 new_compare111(yvy198, yvy199, True, bce) -> LT 47.49/23.23 new_ltEs13(True, False) -> False 47.49/23.23 new_ltEs20(yvy49002, yvy50002, ty_Int) -> new_ltEs7(yvy49002, yvy50002) 47.49/23.23 new_esEs32(yvy400, yvy300, ty_Int) -> new_esEs16(yvy400, yvy300) 47.49/23.23 new_esEs27(yvy49001, yvy50001, app(app(ty_@2, dae), daf)) -> new_esEs4(yvy49001, yvy50001, dae, daf) 47.49/23.23 new_ltEs15(LT, LT) -> True 47.49/23.23 new_esEs13(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 47.49/23.23 new_esEs22(yvy4002, yvy3002, ty_@0) -> new_esEs14(yvy4002, yvy3002) 47.49/23.23 new_esEs28(yvy49000, yvy50000, app(ty_Maybe, chh)) -> new_esEs6(yvy49000, yvy50000, chh) 47.49/23.23 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 47.49/23.23 new_esEs26(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.23 new_esEs28(yvy49000, yvy50000, app(app(ty_@2, chc), chd)) -> new_esEs4(yvy49000, yvy50000, chc, chd) 47.49/23.23 new_compare7(Char(yvy49000), Char(yvy50000)) -> new_primCmpNat0(yvy49000, yvy50000) 47.49/23.23 new_lt5(yvy49000, yvy50000) -> new_esEs12(new_compare11(yvy49000, yvy50000), LT) 47.49/23.23 new_lt20(yvy49001, yvy50001, app(app(ty_Either, dbc), dbd)) -> new_lt16(yvy49001, yvy50001, dbc, dbd) 47.49/23.23 new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) 47.49/23.23 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Char) -> new_ltEs6(yvy49000, yvy50000) 47.49/23.23 new_esEs26(yvy4000, yvy3000, app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs5(yvy4000, yvy3000, cfh, cga, cgb) 47.49/23.23 new_lt20(yvy49001, yvy50001, ty_Integer) -> new_lt5(yvy49001, yvy50001) 47.49/23.23 new_esEs30(yvy20, yvy15, ty_Int) -> new_esEs16(yvy20, yvy15) 47.49/23.23 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Double) -> new_ltEs16(yvy49000, yvy50000) 47.49/23.23 new_ltEs10(yvy4900, yvy5000) -> new_fsEs(new_compare11(yvy4900, yvy5000)) 47.49/23.23 new_lt14(yvy49000, yvy50000) -> new_esEs12(new_compare14(yvy49000, yvy50000), LT) 47.49/23.23 new_esEs27(yvy49001, yvy50001, app(ty_Maybe, dbb)) -> new_esEs6(yvy49001, yvy50001, dbb) 47.49/23.23 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_@0) -> new_ltEs9(yvy49000, yvy50000) 47.49/23.23 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Double, bee) -> new_esEs18(yvy4000, yvy3000) 47.49/23.23 new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_[], dc)) -> new_ltEs8(yvy49000, yvy50000, dc) 47.49/23.23 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Integer) -> new_ltEs10(yvy49000, yvy50000) 47.49/23.23 new_esEs27(yvy49001, yvy50001, ty_Double) -> new_esEs18(yvy49001, yvy50001) 47.49/23.23 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 47.49/23.23 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 47.49/23.23 new_compare25(Nothing, Just(yvy5000), False, bba) -> LT 47.49/23.23 new_compare5(yvy49000, yvy50000, app(app(ty_@2, bh), ca)) -> new_compare12(yvy49000, yvy50000, bh, ca) 47.49/23.23 new_esEs28(yvy49000, yvy50000, app(ty_[], chb)) -> new_esEs8(yvy49000, yvy50000, chb) 47.49/23.23 new_lt19(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) 47.49/23.23 new_lt18(yvy49000, yvy50000, bcg) -> new_esEs12(new_compare19(yvy49000, yvy50000, bcg), LT) 47.49/23.23 new_compare5(yvy49000, yvy50000, ty_Char) -> new_compare7(yvy49000, yvy50000) 47.49/23.23 new_ltEs19(yvy49001, yvy50001, app(ty_Maybe, bdf)) -> new_ltEs4(yvy49001, yvy50001, bdf) 47.49/23.23 new_compare5(yvy49000, yvy50000, app(ty_[], bg)) -> new_compare(yvy49000, yvy50000, bg) 47.49/23.23 new_compare14(yvy49000, yvy50000) -> new_compare24(yvy49000, yvy50000, new_esEs11(yvy49000, yvy50000)) 47.49/23.23 new_primEqNat0(Zero, Zero) -> True 47.49/23.23 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Integer, ga) -> new_ltEs10(yvy49000, yvy50000) 47.49/23.23 new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.49/23.23 new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) 47.49/23.23 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Bool) -> new_ltEs13(yvy49000, yvy50000) 47.49/23.23 new_esEs30(yvy20, yvy15, app(app(ty_Either, ddg), ddh)) -> new_esEs7(yvy20, yvy15, ddg, ddh) 47.49/23.23 new_esEs30(yvy20, yvy15, ty_Ordering) -> new_esEs12(yvy20, yvy15) 47.49/23.23 new_compare5(yvy49000, yvy50000, ty_Ordering) -> new_compare17(yvy49000, yvy50000) 47.49/23.23 new_esEs6(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.23 new_asAs(False, yvy201) -> False 47.49/23.23 new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(app(ty_@3, df), dg), dh)) -> new_ltEs12(yvy49000, yvy50000, df, dg, dh) 47.49/23.23 new_esEs28(yvy49000, yvy50000, app(ty_Ratio, dac)) -> new_esEs15(yvy49000, yvy50000, dac) 47.49/23.23 new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 47.49/23.23 new_esEs30(yvy20, yvy15, ty_Integer) -> new_esEs10(yvy20, yvy15) 47.49/23.23 new_ltEs20(yvy49002, yvy50002, app(ty_Maybe, dcd)) -> new_ltEs4(yvy49002, yvy50002, dcd) 47.49/23.23 new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) 47.49/23.23 new_lt8(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) 47.49/23.23 new_esEs7(Left(yvy4000), Right(yvy3000), bfe, bee) -> False 47.49/23.23 new_esEs7(Right(yvy4000), Left(yvy3000), bfe, bee) -> False 47.49/23.23 new_ltEs17(yvy4900, yvy5000, bbg) -> new_fsEs(new_compare19(yvy4900, yvy5000, bbg)) 47.49/23.23 new_lt16(yvy49000, yvy50000, bbh, bca) -> new_esEs12(new_compare16(yvy49000, yvy50000, bbh, bca), LT) 47.49/23.23 new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.23 new_ltEs18(yvy4900, yvy5000, ty_Int) -> new_ltEs7(yvy4900, yvy5000) 47.49/23.23 new_lt19(yvy49000, yvy50000, app(app(ty_Either, daa), dab)) -> new_lt16(yvy49000, yvy50000, daa, dab) 47.49/23.23 new_esEs27(yvy49001, yvy50001, app(app(app(ty_@3, dag), dah), dba)) -> new_esEs5(yvy49001, yvy50001, dag, dah, dba) 47.49/23.23 47.49/23.23 The set Q consists of the following terms: 47.49/23.23 47.49/23.23 new_esEs27(x0, x1, ty_@0) 47.49/23.23 new_esEs8(:(x0, x1), :(x2, x3), x4) 47.49/23.23 new_esEs25(x0, x1, app(ty_Maybe, x2)) 47.49/23.23 new_compare12(x0, x1, x2, x3) 47.49/23.23 new_esEs8([], [], x0) 47.49/23.23 new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) 47.49/23.23 new_lt20(x0, x1, app(ty_Ratio, x2)) 47.49/23.23 new_esEs26(x0, x1, ty_Float) 47.49/23.23 new_esEs12(EQ, EQ) 47.49/23.23 new_esEs28(x0, x1, ty_Char) 47.49/23.23 new_esEs32(x0, x1, ty_Integer) 47.49/23.23 new_compare5(x0, x1, app(ty_Maybe, x2)) 47.49/23.23 new_primMulInt(Neg(x0), Neg(x1)) 47.49/23.23 new_lt20(x0, x1, ty_@0) 47.49/23.23 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.23 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.23 new_esEs26(x0, x1, app(ty_[], x2)) 47.49/23.23 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.23 new_primCmpNat0(Succ(x0), Zero) 47.49/23.23 new_compare29(x0, x1, True) 47.49/23.23 new_compare5(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.23 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.23 new_compare13(x0, x1, x2, x3, x4) 47.49/23.23 new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) 47.49/23.23 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 47.49/23.23 new_primEqInt(Pos(Zero), Pos(Zero)) 47.49/23.23 new_esEs32(x0, x1, ty_Bool) 47.49/23.23 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.23 new_primMulInt(Pos(x0), Pos(x1)) 47.49/23.23 new_esEs27(x0, x1, app(ty_Ratio, x2)) 47.49/23.23 new_ltEs14(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 47.49/23.23 new_primCompAux00(x0, GT) 47.49/23.23 new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 47.49/23.23 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 47.49/23.23 new_esEs7(Left(x0), Left(x1), ty_Float, x2) 47.49/23.23 new_lt8(x0, x1, ty_Float) 47.49/23.23 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.23 new_ltEs4(Just(x0), Just(x1), ty_Float) 47.49/23.23 new_compare27(x0, x1, True, x2, x3) 47.49/23.23 new_asAs(False, x0) 47.49/23.23 new_ltEs20(x0, x1, app(ty_[], x2)) 47.49/23.23 new_esEs7(Right(x0), Right(x1), x2, ty_Bool) 47.49/23.23 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.23 new_ltEs14(Left(x0), Left(x1), app(ty_[], x2), x3) 47.49/23.23 new_esEs27(x0, x1, ty_Integer) 47.49/23.23 new_primEqInt(Neg(Zero), Neg(Zero)) 47.49/23.23 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.23 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.23 new_compare15(x0, x1, x2) 47.49/23.23 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.23 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 47.49/23.23 new_sr(x0, x1) 47.49/23.23 new_esEs28(x0, x1, ty_Bool) 47.49/23.23 new_esEs27(x0, x1, ty_Char) 47.49/23.23 new_primCmpNat0(Zero, Succ(x0)) 47.49/23.23 new_ltEs19(x0, x1, app(ty_[], x2)) 47.49/23.23 new_lt19(x0, x1, ty_Double) 47.49/23.23 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.23 new_ltEs13(False, True) 47.49/23.23 new_ltEs13(True, False) 47.49/23.23 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.23 new_ltEs18(x0, x1, ty_Int) 47.49/23.23 new_lt17(x0, x1) 47.49/23.23 new_esEs9(x0, x1, ty_Double) 47.49/23.23 new_esEs28(x0, x1, ty_Ordering) 47.49/23.23 new_lt8(x0, x1, ty_Integer) 47.49/23.23 new_compare110(x0, x1, False) 47.49/23.23 new_compare10(x0, x1, False, x2, x3) 47.49/23.23 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.23 new_esEs19(x0, x1, ty_Integer) 47.49/23.23 new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 47.49/23.23 new_ltEs14(Right(x0), Right(x1), x2, ty_Integer) 47.49/23.23 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.23 new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 47.49/23.23 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 47.49/23.23 new_esEs22(x0, x1, app(ty_[], x2)) 47.49/23.23 new_ltEs19(x0, x1, ty_Float) 47.49/23.23 new_esEs28(x0, x1, app(ty_[], x2)) 47.49/23.23 new_esEs7(Right(x0), Right(x1), x2, ty_Char) 47.49/23.23 new_esEs9(x0, x1, ty_Int) 47.49/23.23 new_ltEs14(Right(x0), Right(x1), x2, ty_Bool) 47.49/23.23 new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 47.49/23.23 new_esEs32(x0, x1, ty_@0) 47.49/23.23 new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 47.49/23.23 new_esEs6(Nothing, Nothing, x0) 47.49/23.23 new_ltEs14(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 47.49/23.23 new_lt8(x0, x1, ty_Bool) 47.49/23.23 new_esEs18(Double(x0, x1), Double(x2, x3)) 47.49/23.23 new_ltEs8(x0, x1, x2) 47.49/23.23 new_primEqInt(Pos(Zero), Neg(Zero)) 47.49/23.23 new_primEqInt(Neg(Zero), Pos(Zero)) 47.49/23.23 new_esEs24(x0, x1, app(ty_Maybe, x2)) 47.49/23.23 new_esEs23(x0, x1, app(ty_Ratio, x2)) 47.49/23.23 new_compare114(x0, x1, False, x2, x3) 47.49/23.23 new_esEs30(x0, x1, ty_Float) 47.49/23.23 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 47.49/23.23 new_esEs12(LT, GT) 47.49/23.23 new_esEs12(GT, LT) 47.49/23.23 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 47.49/23.23 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 47.49/23.23 new_esEs17(Char(x0), Char(x1)) 47.49/23.23 new_compare25(x0, x1, True, x2) 47.49/23.23 new_esEs21(x0, x1, ty_Float) 47.49/23.23 new_esEs7(Right(x0), Right(x1), x2, ty_Int) 47.49/23.23 new_esEs32(x0, x1, ty_Float) 47.49/23.23 new_esEs7(Right(x0), Right(x1), x2, ty_Float) 47.49/23.23 new_ltEs18(x0, x1, ty_Double) 47.49/23.23 new_primCompAux0(x0, x1, x2, x3) 47.49/23.23 new_ltEs20(x0, x1, ty_Ordering) 47.49/23.23 new_esEs27(x0, x1, ty_Bool) 47.49/23.23 new_ltEs17(x0, x1, x2) 47.49/23.23 new_compare14(x0, x1) 47.49/23.23 new_ltEs18(x0, x1, ty_Char) 47.49/23.23 new_asAs(True, x0) 47.49/23.23 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 47.49/23.23 new_esEs24(x0, x1, ty_Integer) 47.49/23.23 new_esEs30(x0, x1, ty_@0) 47.49/23.23 new_esEs7(Right(x0), Right(x1), x2, ty_@0) 47.49/23.23 new_pePe(True, x0) 47.49/23.23 new_ltEs7(x0, x1) 47.49/23.23 new_ltEs15(EQ, EQ) 47.49/23.23 new_compare([], [], x0) 47.49/23.23 new_primEqNat0(Succ(x0), Zero) 47.49/23.23 new_esEs28(x0, x1, ty_Integer) 47.49/23.23 new_compare30(x0, x1, x2) 47.49/23.23 new_esEs25(x0, x1, ty_Float) 47.49/23.23 new_esEs7(Left(x0), Left(x1), ty_Integer, x2) 47.49/23.23 new_primMulNat0(Succ(x0), Succ(x1)) 47.49/23.23 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.23 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 47.49/23.23 new_compare5(x0, x1, ty_Ordering) 47.49/23.23 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.23 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.23 new_lt19(x0, x1, ty_Char) 47.49/23.23 new_ltEs14(Left(x0), Left(x1), ty_Char, x2) 47.49/23.23 new_ltEs19(x0, x1, ty_Integer) 47.49/23.23 new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 47.49/23.23 new_lt5(x0, x1) 47.49/23.23 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 47.49/23.23 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 47.49/23.23 new_compare(:(x0, x1), :(x2, x3), x4) 47.49/23.23 new_esEs9(x0, x1, ty_Char) 47.49/23.23 new_ltEs4(Just(x0), Just(x1), ty_Bool) 47.49/23.23 new_ltEs14(Left(x0), Left(x1), ty_Int, x2) 47.49/23.23 new_lt6(x0, x1) 47.49/23.23 new_lt19(x0, x1, ty_Int) 47.49/23.23 new_primEqNat0(Succ(x0), Succ(x1)) 47.49/23.23 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.23 new_ltEs6(x0, x1) 47.49/23.23 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.23 new_compare7(Char(x0), Char(x1)) 47.49/23.23 new_esEs12(GT, GT) 47.49/23.23 new_esEs12(LT, EQ) 47.49/23.23 new_esEs12(EQ, LT) 47.49/23.23 new_compare25(Nothing, Nothing, False, x0) 47.49/23.23 new_ltEs5(x0, x1) 47.49/23.23 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.23 new_ltEs15(GT, LT) 47.49/23.23 new_ltEs15(LT, GT) 47.49/23.23 new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 47.49/23.23 new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 47.49/23.23 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 47.49/23.23 new_ltEs4(Just(x0), Just(x1), ty_Integer) 47.49/23.23 new_esEs27(x0, x1, ty_Int) 47.49/23.23 new_esEs6(Just(x0), Just(x1), ty_Integer) 47.49/23.23 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.23 new_esEs6(Just(x0), Just(x1), ty_Float) 47.49/23.23 new_lt20(x0, x1, app(ty_[], x2)) 47.49/23.23 new_esEs7(Left(x0), Left(x1), ty_@0, x2) 47.49/23.23 new_compare5(x0, x1, ty_Double) 47.49/23.23 new_compare28(x0, x1, False, x2, x3, x4) 47.49/23.23 new_primMulNat0(Succ(x0), Zero) 47.49/23.23 new_esEs27(x0, x1, ty_Float) 47.49/23.23 new_ltEs14(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 47.49/23.23 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.23 new_esEs25(x0, x1, ty_Bool) 47.49/23.23 new_compare25(Just(x0), Nothing, False, x1) 47.49/23.23 new_esEs6(Just(x0), Just(x1), ty_Ordering) 47.49/23.23 new_lt8(x0, x1, app(ty_[], x2)) 47.49/23.23 new_ltEs14(Right(x0), Right(x1), x2, ty_Char) 47.49/23.23 new_esEs9(x0, x1, ty_Bool) 47.49/23.23 new_lt7(x0, x1) 47.49/23.23 new_esEs32(x0, x1, ty_Double) 47.49/23.23 new_lt19(x0, x1, app(ty_Maybe, x2)) 47.49/23.23 new_lt8(x0, x1, ty_@0) 47.49/23.23 new_esEs7(Left(x0), Right(x1), x2, x3) 47.49/23.23 new_esEs7(Right(x0), Left(x1), x2, x3) 47.49/23.23 new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 47.49/23.23 new_esEs9(x0, x1, ty_Ordering) 47.49/23.23 new_primCmpInt(Neg(Zero), Neg(Zero)) 47.49/23.23 new_compare16(x0, x1, x2, x3) 47.49/23.23 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.23 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.23 new_esEs28(x0, x1, ty_Double) 47.49/23.23 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.23 new_primCmpInt(Pos(Zero), Neg(Zero)) 47.49/23.23 new_primCmpInt(Neg(Zero), Pos(Zero)) 47.49/23.23 new_primPlusNat0(Succ(x0), Zero) 47.49/23.23 new_esEs23(x0, x1, ty_Float) 47.49/23.23 new_esEs21(x0, x1, ty_Integer) 47.49/23.23 new_ltEs14(Right(x0), Right(x1), x2, ty_Int) 47.49/23.23 new_esEs28(x0, x1, ty_@0) 47.49/23.23 new_lt19(x0, x1, ty_Bool) 47.49/23.23 new_ltEs14(Left(x0), Left(x1), ty_Bool, x2) 47.49/23.23 new_esEs25(x0, x1, ty_Ordering) 47.49/23.23 new_lt19(x0, x1, ty_Ordering) 47.49/23.23 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.23 new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 47.49/23.23 new_esEs22(x0, x1, ty_Integer) 47.49/23.23 new_esEs21(x0, x1, app(ty_Ratio, x2)) 47.49/23.23 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.23 new_esEs11(False, False) 47.49/23.23 new_compare111(x0, x1, False, x2) 47.49/23.23 new_compare(:(x0, x1), [], x2) 47.49/23.23 new_esEs8([], :(x0, x1), x2) 47.49/23.23 new_esEs22(x0, x1, app(ty_Ratio, x2)) 47.49/23.23 new_compare114(x0, x1, True, x2, x3) 47.49/23.23 new_ltEs14(Left(x0), Left(x1), ty_Ordering, x2) 47.49/23.23 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.23 new_compare33(x0) 47.49/23.23 new_esEs28(x0, x1, app(ty_Ratio, x2)) 47.49/23.23 new_lt19(x0, x1, app(ty_[], x2)) 47.49/23.23 new_esEs9(x0, x1, ty_Integer) 47.49/23.23 new_ltEs14(Right(x0), Right(x1), x2, app(ty_[], x3)) 47.49/23.23 new_ltEs20(x0, x1, ty_@0) 47.49/23.23 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.23 new_ltEs4(Just(x0), Just(x1), ty_Char) 47.49/23.23 new_lt8(x0, x1, app(ty_Ratio, x2)) 47.49/23.23 new_ltEs14(Right(x0), Right(x1), x2, ty_Float) 47.49/23.23 new_compare113(x0, x1, True) 47.49/23.23 new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 47.49/23.23 new_lt18(x0, x1, x2) 47.49/23.23 new_lt20(x0, x1, app(ty_Maybe, x2)) 47.49/23.23 new_lt20(x0, x1, ty_Double) 47.49/23.23 new_ltEs19(x0, x1, ty_Bool) 47.49/23.23 new_ltEs20(x0, x1, ty_Double) 47.49/23.23 new_esEs24(x0, x1, ty_@0) 47.49/23.23 new_esEs7(Right(x0), Right(x1), x2, ty_Integer) 47.49/23.23 new_lt19(x0, x1, ty_Integer) 47.49/23.23 new_esEs22(x0, x1, ty_Ordering) 47.49/23.23 new_esEs13(Float(x0, x1), Float(x2, x3)) 47.49/23.23 new_esEs6(Just(x0), Just(x1), ty_Bool) 47.49/23.23 new_compare8(x0, x1) 47.49/23.23 new_ltEs14(Left(x0), Left(x1), ty_Integer, x2) 47.49/23.23 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 47.49/23.23 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 47.49/23.23 new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) 47.49/23.23 new_ltEs13(True, True) 47.49/23.23 new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) 47.49/23.23 new_esEs23(x0, x1, app(ty_[], x2)) 47.49/23.23 new_esEs21(x0, x1, ty_Ordering) 47.49/23.23 new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 47.49/23.23 new_esEs25(x0, x1, ty_Integer) 47.49/23.23 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 47.49/23.23 new_ltEs4(Nothing, Just(x0), x1) 47.49/23.23 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.23 new_esEs25(x0, x1, ty_Char) 47.49/23.23 new_compare17(x0, x1) 47.49/23.23 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.23 new_esEs22(x0, x1, ty_@0) 47.49/23.23 new_esEs26(x0, x1, ty_Ordering) 47.49/23.23 new_esEs7(Left(x0), Left(x1), ty_Int, x2) 47.49/23.23 new_ltEs19(x0, x1, ty_Char) 47.49/23.23 new_esEs24(x0, x1, ty_Ordering) 47.49/23.23 new_compare([], :(x0, x1), x2) 47.49/23.23 new_esEs30(x0, x1, app(ty_[], x2)) 47.49/23.23 new_primCompAux00(x0, EQ) 47.49/23.23 new_esEs22(x0, x1, ty_Bool) 47.49/23.23 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.23 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.23 new_ltEs14(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 47.49/23.23 new_ltEs4(Just(x0), Just(x1), ty_Int) 47.49/23.23 new_primMulNat0(Zero, Zero) 47.49/23.23 new_compare24(x0, x1, True) 47.49/23.23 new_compare5(x0, x1, ty_@0) 47.49/23.23 new_ltEs18(x0, x1, ty_Float) 47.49/23.23 new_primPlusNat1(Zero, x0) 47.49/23.23 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.23 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.23 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.23 new_esEs24(x0, x1, ty_Int) 47.49/23.23 new_lt8(x0, x1, ty_Double) 47.49/23.23 new_esEs6(Just(x0), Just(x1), ty_Char) 47.49/23.23 new_esEs25(x0, x1, ty_Int) 47.49/23.23 new_esEs7(Left(x0), Left(x1), ty_Char, x2) 47.49/23.23 new_esEs23(x0, x1, ty_Char) 47.49/23.23 new_ltEs4(Just(x0), Just(x1), ty_Ordering) 47.49/23.23 new_compare5(x0, x1, ty_Bool) 47.49/23.23 new_sr0(Integer(x0), Integer(x1)) 47.49/23.23 new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) 47.49/23.23 new_fsEs(x0) 47.49/23.23 new_ltEs14(Right(x0), Right(x1), x2, ty_Double) 47.49/23.23 new_compare9(@0, @0) 47.49/23.23 new_ltEs18(x0, x1, app(ty_[], x2)) 47.49/23.23 new_esEs25(x0, x1, app(ty_Ratio, x2)) 47.49/23.23 new_ltEs19(x0, x1, ty_Ordering) 47.49/23.23 new_esEs24(x0, x1, ty_Char) 47.49/23.23 new_esEs9(x0, x1, app(ty_[], x2)) 47.49/23.23 new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 47.49/23.23 new_esEs32(x0, x1, app(ty_Ratio, x2)) 47.49/23.23 new_esEs21(x0, x1, ty_Bool) 47.49/23.23 new_esEs28(x0, x1, app(ty_Maybe, x2)) 47.49/23.23 new_esEs24(x0, x1, ty_Double) 47.49/23.23 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 47.49/23.23 new_ltEs11(@2(x0, x1), @2(x2, x3), x4, x5) 47.49/23.23 new_primPlusNat1(Succ(x0), x1) 47.49/23.23 new_esEs23(x0, x1, ty_Int) 47.49/23.23 new_compare112(x0, x1, True, x2, x3, x4) 47.49/23.23 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 47.49/23.23 new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 47.49/23.23 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.23 new_esEs23(x0, x1, ty_@0) 47.49/23.23 new_esEs6(Just(x0), Just(x1), ty_Int) 47.49/23.23 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.23 new_ltEs19(x0, x1, ty_Int) 47.49/23.23 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 47.49/23.23 new_esEs6(Nothing, Just(x0), x1) 47.49/23.23 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.24 new_esEs9(x0, x1, app(ty_Maybe, x2)) 47.49/23.24 new_esEs6(Just(x0), Just(x1), ty_@0) 47.49/23.24 new_lt8(x0, x1, ty_Ordering) 47.49/23.24 new_primPlusNat0(Zero, Zero) 47.49/23.24 new_esEs25(x0, x1, app(ty_[], x2)) 47.49/23.24 new_compare10(x0, x1, True, x2, x3) 47.49/23.24 new_compare26(x0, x1, False, x2, x3) 47.49/23.24 new_lt8(x0, x1, ty_Int) 47.49/23.24 new_esEs30(x0, x1, ty_Int) 47.49/23.24 new_ltEs14(Left(x0), Left(x1), ty_@0, x2) 47.49/23.24 new_lt19(x0, x1, ty_@0) 47.49/23.24 new_not(True) 47.49/23.24 new_compare5(x0, x1, app(ty_Ratio, x2)) 47.49/23.24 new_esEs8(:(x0, x1), [], x2) 47.49/23.24 new_esEs23(x0, x1, ty_Bool) 47.49/23.24 new_esEs22(x0, x1, ty_Char) 47.49/23.24 new_esEs12(EQ, GT) 47.49/23.24 new_esEs12(GT, EQ) 47.49/23.24 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.24 new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) 47.49/23.24 new_lt19(x0, x1, ty_Float) 47.49/23.24 new_ltEs14(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 47.49/23.24 new_ltEs13(False, False) 47.49/23.24 new_esEs25(x0, x1, ty_Double) 47.49/23.24 new_esEs25(x0, x1, ty_@0) 47.49/23.24 new_lt15(x0, x1, x2) 47.49/23.24 new_compare26(x0, x1, True, x2, x3) 47.49/23.24 new_esEs26(x0, x1, app(ty_Ratio, x2)) 47.49/23.24 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 47.49/23.24 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 47.49/23.24 new_esEs11(True, True) 47.49/23.24 new_esEs15(:%(x0, x1), :%(x2, x3), x4) 47.49/23.24 new_esEs32(x0, x1, app(ty_[], x2)) 47.49/23.24 new_esEs7(Left(x0), Left(x1), ty_Double, x2) 47.49/23.24 new_esEs32(x0, x1, app(ty_Maybe, x2)) 47.49/23.24 new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 47.49/23.24 new_lt13(x0, x1, x2, x3, x4) 47.49/23.24 new_ltEs14(Right(x0), Right(x1), x2, ty_Ordering) 47.49/23.24 new_ltEs15(GT, EQ) 47.49/23.24 new_esEs23(x0, x1, ty_Double) 47.49/23.24 new_ltEs15(EQ, GT) 47.49/23.24 new_ltEs4(Just(x0), Nothing, x1) 47.49/23.24 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 47.49/23.24 new_esEs21(x0, x1, ty_Char) 47.49/23.24 new_esEs11(False, True) 47.49/23.24 new_esEs11(True, False) 47.49/23.24 new_compare113(x0, x1, False) 47.49/23.24 new_compare111(x0, x1, True, x2) 47.49/23.24 new_lt4(x0, x1, x2, x3) 47.49/23.24 new_lt8(x0, x1, ty_Char) 47.49/23.24 new_ltEs20(x0, x1, ty_Integer) 47.49/23.24 new_compare27(x0, x1, False, x2, x3) 47.49/23.24 new_compare112(x0, x1, False, x2, x3, x4) 47.49/23.24 new_esEs30(x0, x1, ty_Double) 47.49/23.24 new_esEs26(x0, x1, ty_Int) 47.49/23.24 new_primPlusNat0(Zero, Succ(x0)) 47.49/23.24 new_compare5(x0, x1, ty_Integer) 47.49/23.24 new_esEs30(x0, x1, ty_Char) 47.49/23.24 new_primCmpNat0(Succ(x0), Succ(x1)) 47.49/23.24 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 47.49/23.24 new_ltEs14(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 47.49/23.24 new_compare31(x0, x1) 47.49/23.24 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.24 new_esEs9(x0, x1, ty_@0) 47.49/23.24 new_esEs21(x0, x1, app(ty_[], x2)) 47.49/23.24 new_esEs12(LT, LT) 47.49/23.24 new_esEs22(x0, x1, app(ty_Maybe, x2)) 47.49/23.24 new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) 47.49/23.24 new_esEs21(x0, x1, ty_Int) 47.49/23.24 new_ltEs14(Left(x0), Left(x1), ty_Float, x2) 47.49/23.24 new_esEs26(x0, x1, ty_Double) 47.49/23.24 new_esEs22(x0, x1, ty_Int) 47.49/23.24 new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.24 new_esEs26(x0, x1, ty_Char) 47.49/23.24 new_esEs21(x0, x1, ty_@0) 47.49/23.24 new_lt14(x0, x1) 47.49/23.24 new_esEs7(Left(x0), Left(x1), ty_Bool, x2) 47.49/23.24 new_esEs9(x0, x1, ty_Float) 47.49/23.24 new_esEs20(x0, x1, ty_Int) 47.49/23.24 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.24 new_primCmpInt(Pos(Zero), Pos(Zero)) 47.49/23.24 new_esEs27(x0, x1, app(ty_Maybe, x2)) 47.49/23.24 new_esEs20(x0, x1, ty_Integer) 47.49/23.24 new_esEs32(x0, x1, ty_Int) 47.49/23.24 new_lt16(x0, x1, x2, x3) 47.49/23.24 new_esEs22(x0, x1, ty_Double) 47.49/23.24 new_esEs27(x0, x1, ty_Double) 47.49/23.24 new_esEs14(@0, @0) 47.49/23.24 new_pePe(False, x0) 47.49/23.24 new_ltEs9(x0, x1) 47.49/23.24 new_esEs22(x0, x1, ty_Float) 47.49/23.24 new_compare29(x0, x1, False) 47.49/23.24 new_esEs24(x0, x1, app(ty_Ratio, x2)) 47.49/23.24 new_ltEs14(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 47.49/23.24 new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 47.49/23.24 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.24 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.24 new_esEs16(x0, x1) 47.49/23.24 new_esEs26(x0, x1, ty_Bool) 47.49/23.24 new_esEs30(x0, x1, app(ty_Maybe, x2)) 47.49/23.24 new_lt10(x0, x1) 47.49/23.24 new_ltEs14(Right(x0), Left(x1), x2, x3) 47.49/23.24 new_esEs26(x0, x1, ty_@0) 47.49/23.24 new_ltEs14(Left(x0), Right(x1), x2, x3) 47.49/23.24 new_ltEs18(x0, x1, ty_@0) 47.49/23.24 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.24 new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 47.49/23.24 new_ltEs18(x0, x1, ty_Bool) 47.49/23.24 new_esEs32(x0, x1, ty_Ordering) 47.49/23.24 new_compare5(x0, x1, ty_Float) 47.49/23.24 new_esEs10(Integer(x0), Integer(x1)) 47.49/23.24 new_esEs23(x0, x1, app(ty_Maybe, x2)) 47.49/23.24 new_compare32(x0, x1) 47.49/23.24 new_esEs7(Right(x0), Right(x1), x2, ty_Double) 47.49/23.24 new_lt19(x0, x1, app(ty_Ratio, x2)) 47.49/23.24 new_esEs24(x0, x1, app(ty_[], x2)) 47.49/23.24 new_esEs21(x0, x1, ty_Double) 47.49/23.24 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 47.49/23.24 new_ltEs4(Just(x0), Just(x1), ty_@0) 47.49/23.24 new_compare5(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.24 new_lt20(x0, x1, ty_Float) 47.49/23.24 new_ltEs4(Nothing, Nothing, x0) 47.49/23.24 new_esEs26(x0, x1, ty_Integer) 47.49/23.24 new_ltEs10(x0, x1) 47.49/23.24 new_compare5(x0, x1, ty_Int) 47.49/23.24 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 47.49/23.24 new_ltEs14(Right(x0), Right(x1), x2, ty_@0) 47.49/23.24 new_lt20(x0, x1, ty_Ordering) 47.49/23.24 new_ltEs15(EQ, LT) 47.49/23.24 new_ltEs15(LT, EQ) 47.49/23.24 new_esEs30(x0, x1, ty_Bool) 47.49/23.24 new_lt8(x0, x1, app(ty_Maybe, x2)) 47.49/23.24 new_esEs23(x0, x1, ty_Integer) 47.49/23.24 new_esEs27(x0, x1, app(ty_[], x2)) 47.49/23.24 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.24 new_compare5(x0, x1, app(ty_[], x2)) 47.49/23.24 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 47.49/23.24 new_esEs24(x0, x1, ty_Bool) 47.49/23.24 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 47.49/23.24 new_ltEs14(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 47.49/23.24 new_ltEs15(GT, GT) 47.49/23.24 new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 47.49/23.24 new_esEs27(x0, x1, ty_Ordering) 47.49/23.24 new_esEs30(x0, x1, app(ty_Ratio, x2)) 47.49/23.24 new_esEs26(x0, x1, app(ty_Maybe, x2)) 47.49/23.24 new_compare5(x0, x1, ty_Char) 47.49/23.24 new_lt20(x0, x1, ty_Integer) 47.49/23.24 new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 47.49/23.24 new_esEs32(x0, x1, ty_Char) 47.49/23.24 new_ltEs14(Left(x0), Left(x1), ty_Double, x2) 47.49/23.24 new_ltEs19(x0, x1, ty_@0) 47.49/23.24 new_lt12(x0, x1, x2) 47.49/23.24 new_ltEs16(x0, x1) 47.49/23.24 new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 47.49/23.24 new_lt11(x0, x1) 47.49/23.24 new_ltEs18(x0, x1, ty_Integer) 47.49/23.24 new_primEqNat0(Zero, Zero) 47.49/23.24 new_esEs9(x0, x1, app(ty_Ratio, x2)) 47.49/23.24 new_esEs23(x0, x1, ty_Ordering) 47.49/23.24 new_not(False) 47.49/23.24 new_esEs21(x0, x1, app(ty_Maybe, x2)) 47.49/23.24 new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 47.49/23.24 new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 47.49/23.24 new_esEs6(Just(x0), Nothing, x1) 47.49/23.24 new_ltEs20(x0, x1, ty_Bool) 47.49/23.24 new_ltEs19(x0, x1, ty_Double) 47.49/23.24 new_esEs30(x0, x1, ty_Integer) 47.49/23.24 new_ltEs20(x0, x1, ty_Float) 47.49/23.24 new_compare11(Integer(x0), Integer(x1)) 47.49/23.24 new_primCompAux00(x0, LT) 47.49/23.24 new_compare110(x0, x1, True) 47.49/23.24 new_compare25(Nothing, Just(x0), False, x1) 47.49/23.24 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 47.49/23.24 new_ltEs15(LT, LT) 47.49/23.24 new_esEs6(Just(x0), Just(x1), ty_Double) 47.49/23.24 new_lt20(x0, x1, ty_Int) 47.49/23.24 new_lt9(x0, x1) 47.49/23.24 new_ltEs20(x0, x1, ty_Char) 47.49/23.24 new_esEs28(x0, x1, ty_Int) 47.49/23.24 new_lt20(x0, x1, ty_Bool) 47.49/23.24 new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 47.49/23.24 new_ltEs18(x0, x1, ty_Ordering) 47.49/23.24 new_compare25(Just(x0), Just(x1), False, x2) 47.49/23.24 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.24 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.24 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.24 new_lt20(x0, x1, ty_Char) 47.49/23.24 new_compare24(x0, x1, False) 47.49/23.24 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 47.49/23.24 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 47.49/23.24 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 47.49/23.24 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 47.49/23.24 new_esEs24(x0, x1, ty_Float) 47.49/23.24 new_primPlusNat0(Succ(x0), Succ(x1)) 47.49/23.24 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 47.49/23.24 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 47.49/23.24 new_primMulInt(Pos(x0), Neg(x1)) 47.49/23.24 new_primMulInt(Neg(x0), Pos(x1)) 47.49/23.24 new_ltEs4(Just(x0), Just(x1), ty_Double) 47.49/23.24 new_esEs19(x0, x1, ty_Int) 47.49/23.24 new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 47.49/23.24 new_esEs30(x0, x1, ty_Ordering) 47.49/23.24 new_primMulNat0(Zero, Succ(x0)) 47.49/23.24 new_primCmpNat0(Zero, Zero) 47.49/23.24 new_primEqNat0(Zero, Succ(x0)) 47.49/23.24 new_esEs28(x0, x1, ty_Float) 47.49/23.24 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 47.49/23.24 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.24 new_ltEs20(x0, x1, ty_Int) 47.49/23.24 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.24 new_compare28(x0, x1, True, x2, x3, x4) 47.49/23.24 47.49/23.24 We have to consider all minimal (P,Q,R)-chains. 47.49/23.24 ---------------------------------------- 47.49/23.24 47.49/23.24 (30) QDPSizeChangeProof (EQUIVALENT) 47.49/23.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. 47.49/23.24 47.49/23.24 From the DPs we obtained the following set of size-change graphs: 47.49/23.24 *new_splitGT(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Nothing, h, ba) 47.49/23.24 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 >= 7, 3 >= 8 47.49/23.24 47.49/23.24 47.49/23.24 *new_splitGT3(Nothing, yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitGT1(yvy31, yvy32, yvy33, yvy34, new_esEs12(new_compare33(h), LT), h, ba) 47.49/23.24 The graph contains the following edges 2 >= 1, 3 >= 2, 4 >= 3, 5 >= 4, 7 >= 6, 8 >= 7 47.49/23.24 47.49/23.24 47.49/23.24 *new_splitGT3(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitGT2(yvy300, yvy31, yvy32, yvy33, yvy34, new_esEs12(new_compare25(Nothing, Just(yvy300), False, h), GT), h, ba) 47.49/23.24 The graph contains the following edges 1 > 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 7 >= 7, 8 >= 8 47.49/23.24 47.49/23.24 47.49/23.24 *new_splitGT1(yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_splitGT(yvy33, h, ba) 47.49/23.24 The graph contains the following edges 3 >= 1, 6 >= 2, 7 >= 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_splitGT10(yvy300, yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_splitGT(yvy33, h, ba) 47.49/23.24 The graph contains the following edges 4 >= 1, 7 >= 2, 8 >= 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_splitGT2(yvy300, yvy31, yvy32, yvy33, Branch(yvy340, yvy341, yvy342, yvy343, yvy344), True, h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Nothing, h, ba) 47.49/23.24 The graph contains the following edges 5 > 1, 5 > 2, 5 > 3, 5 > 4, 5 > 5, 7 >= 7, 8 >= 8 47.49/23.24 47.49/23.24 47.49/23.24 *new_splitGT2(yvy300, yvy31, yvy32, yvy33, yvy34, False, h, ba) -> new_splitGT10(yvy300, yvy31, yvy32, yvy33, yvy34, new_esEs12(new_compare31(yvy300, h), LT), h, ba) 47.49/23.24 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 7 >= 7, 8 >= 8 47.49/23.24 47.49/23.24 47.49/23.24 ---------------------------------------- 47.49/23.24 47.49/23.24 (31) 47.49/23.24 YES 47.49/23.24 47.49/23.24 ---------------------------------------- 47.49/23.24 47.49/23.24 (32) 47.49/23.24 Obligation: 47.49/23.24 Q DP problem: 47.49/23.24 The TRS P consists of the following rules: 47.49/23.24 47.49/23.24 new_primCompAux(yvy49000, yvy50000, yvy221, app(ty_[], ba)) -> new_compare0(yvy49000, yvy50000, ba) 47.49/23.24 new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, app(app(ty_@2, ge), gf), fa) -> new_lt0(yvy49001, yvy50001, ge, gf) 47.49/23.24 new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), app(app(ty_Either, dc), dd), ce) -> new_compare23(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, dc, dd), dc, dd) 47.49/23.24 new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), app(ty_Maybe, hb)), fa)) -> new_lt2(yvy49001, yvy50001, hb) 47.49/23.24 new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), app(app(ty_Either, hc), hd)), fa)) -> new_lt3(yvy49001, yvy50001, hc, hd) 47.49/23.24 new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), eh), app(app(ty_Either, bad), bae))) -> new_ltEs3(yvy49002, yvy50002, bad, bae) 47.49/23.24 new_lt2(yvy49000, yvy50000, db) -> new_compare22(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, db), db) 47.49/23.24 new_ltEs2(Just(yvy49000), Just(yvy50000), app(app(ty_@2, bag), bah)) -> new_ltEs0(yvy49000, yvy50000, bag, bah) 47.49/23.24 new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), de, app(app(ty_@2, dg), dh)) -> new_ltEs0(yvy49001, yvy50001, dg, dh) 47.49/23.24 new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, app(app(app(ty_@3, gg), gh), ha), fa) -> new_lt1(yvy49001, yvy50001, gg, gh, ha) 47.49/23.24 new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), de, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs1(yvy49001, yvy50001, ea, eb, ec) 47.49/23.24 new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, app(app(ty_@2, fb), fc)), eh), fa)) -> new_lt0(yvy49000, yvy50000, fb, fc) 47.49/23.24 new_compare22(Just(Right(yvy49000)), Just(Right(yvy50000)), False, app(app(ty_Either, bda), app(app(ty_Either, bea), beb))) -> new_ltEs3(yvy49000, yvy50000, bea, beb) 47.49/23.24 new_compare22(Just(Just(yvy49000)), Just(Just(yvy50000)), False, app(ty_Maybe, app(app(ty_Either, bbe), bbf))) -> new_ltEs3(yvy49000, yvy50000, bbe, bbf) 47.49/23.24 new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, app(ty_[], gd), fa) -> new_lt(yvy49001, yvy50001, gd) 47.49/23.24 new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, de), app(ty_Maybe, ed))) -> new_ltEs2(yvy49001, yvy50001, ed) 47.49/23.24 new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, app(ty_Maybe, fh)), eh), fa)) -> new_lt2(yvy49000, yvy50000, fh) 47.49/23.24 new_compare22(Just(Right(yvy49000)), Just(Right(yvy50000)), False, app(app(ty_Either, bda), app(ty_Maybe, bdh))) -> new_ltEs2(yvy49000, yvy50000, bdh) 47.49/23.24 new_ltEs(:(yvy49000, yvy49001), :(yvy50000, yvy50001), h) -> new_compare0(yvy49001, yvy50001, h) 47.49/23.24 new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), eh), app(ty_[], he))) -> new_ltEs(yvy49002, yvy50002, he) 47.49/23.24 new_compare22(Just(Right(yvy49000)), Just(Right(yvy50000)), False, app(app(ty_Either, bda), app(app(app(ty_@3, bde), bdf), bdg))) -> new_ltEs1(yvy49000, yvy50000, bde, bdf, bdg) 47.49/23.24 new_compare2(yvy49000, yvy50000, cf, cg, da) -> new_compare21(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, cf, cg, da), cf, cg, da) 47.49/23.24 new_lt1(yvy49000, yvy50000, cf, cg, da) -> new_compare21(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, cf, cg, da), cf, cg, da) 47.49/23.24 new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, app(ty_Maybe, db)), ce)) -> new_compare22(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, db), db) 47.49/23.24 new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, app(ty_Maybe, hb), fa) -> new_lt2(yvy49001, yvy50001, hb) 47.49/23.24 new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, de), app(app(ty_Either, ee), ef))) -> new_ltEs3(yvy49001, yvy50001, ee, ef) 47.49/23.24 new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, app(app(app(ty_@3, cf), cg), da)), ce)) -> new_compare21(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, cf, cg, da), cf, cg, da) 47.49/23.24 new_compare23(yvy49000, yvy50000, False, dc, dd) -> new_ltEs3(yvy49000, yvy50000, dc, dd) 47.49/23.24 new_ltEs3(Left(yvy49000), Left(yvy50000), app(app(ty_@2, bca), bcb), bbh) -> new_ltEs0(yvy49000, yvy50000, bca, bcb) 47.49/23.24 new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, app(app(ty_Either, hc), hd), fa) -> new_lt3(yvy49001, yvy50001, hc, hd) 47.49/23.24 new_ltEs3(Left(yvy49000), Left(yvy50000), app(ty_Maybe, bcf), bbh) -> new_ltEs2(yvy49000, yvy50000, bcf) 47.49/23.24 new_ltEs3(Right(yvy49000), Right(yvy50000), bda, app(ty_[], bdb)) -> new_ltEs(yvy49000, yvy50000, bdb) 47.49/23.24 new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, app(app(ty_Either, ga), gb)), eh), fa)) -> new_lt3(yvy49000, yvy50000, ga, gb) 47.49/23.24 new_compare22(Just(Just(yvy49000)), Just(Just(yvy50000)), False, app(ty_Maybe, app(app(app(ty_@3, bba), bbb), bbc))) -> new_ltEs1(yvy49000, yvy50000, bba, bbb, bbc) 47.49/23.24 new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), app(ty_Maybe, fh), eh, fa) -> new_lt2(yvy49000, yvy50000, fh) 47.49/23.24 new_compare22(Just(Just(yvy49000)), Just(Just(yvy50000)), False, app(ty_Maybe, app(ty_[], baf))) -> new_ltEs(yvy49000, yvy50000, baf) 47.49/23.24 new_compare22(Just(Left(yvy49000)), Just(Left(yvy50000)), False, app(app(ty_Either, app(app(app(ty_@3, bcc), bcd), bce)), bbh)) -> new_ltEs1(yvy49000, yvy50000, bcc, bcd, bce) 47.49/23.24 new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), app(app(ty_@2, ge), gf)), fa)) -> new_lt0(yvy49001, yvy50001, ge, gf) 47.49/23.24 new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, app(app(ty_Either, dc), dd)), ce)) -> new_compare23(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, dc, dd), dc, dd) 47.49/23.24 new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, de), app(app(ty_@2, dg), dh))) -> new_ltEs0(yvy49001, yvy50001, dg, dh) 47.49/23.24 new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), app(ty_[], gd)), fa)) -> new_lt(yvy49001, yvy50001, gd) 47.49/23.24 new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, de), app(ty_[], df))) -> new_ltEs(yvy49001, yvy50001, df) 47.49/23.24 new_ltEs(:(yvy49000, yvy49001), :(yvy50000, yvy50001), h) -> new_primCompAux(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, h), h) 47.49/23.24 new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), app(app(app(ty_@3, fd), ff), fg), eh, fa) -> new_lt1(yvy49000, yvy50000, fd, ff, fg) 47.49/23.24 new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, eh, app(ty_Maybe, bac)) -> new_ltEs2(yvy49002, yvy50002, bac) 47.49/23.24 new_compare4(yvy49000, yvy50000, dc, dd) -> new_compare23(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, dc, dd), dc, dd) 47.49/23.24 new_compare0(:(yvy49000, yvy49001), :(yvy50000, yvy50001), h) -> new_compare0(yvy49001, yvy50001, h) 47.49/23.24 new_ltEs3(Right(yvy49000), Right(yvy50000), bda, app(ty_Maybe, bdh)) -> new_ltEs2(yvy49000, yvy50000, bdh) 47.49/23.24 new_ltEs2(Just(yvy49000), Just(yvy50000), app(ty_[], baf)) -> new_ltEs(yvy49000, yvy50000, baf) 47.49/23.24 new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), app(ty_Maybe, db), ce) -> new_compare22(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, db), db) 47.49/23.24 new_ltEs2(Just(yvy49000), Just(yvy50000), app(ty_Maybe, bbd)) -> new_ltEs2(yvy49000, yvy50000, bbd) 47.49/23.24 new_compare20(yvy49000, yvy50000, False, cb, cc) -> new_ltEs0(yvy49000, yvy50000, cb, cc) 47.49/23.24 new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), app(app(ty_Either, ga), gb), eh, fa) -> new_lt3(yvy49000, yvy50000, ga, gb) 47.49/23.24 new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, eh, app(app(ty_@2, hf), hg)) -> new_ltEs0(yvy49002, yvy50002, hf, hg) 47.49/23.24 new_ltEs3(Left(yvy49000), Left(yvy50000), app(ty_[], bbg), bbh) -> new_ltEs(yvy49000, yvy50000, bbg) 47.49/23.24 new_compare22(Just(Just(yvy49000)), Just(Just(yvy50000)), False, app(ty_Maybe, app(app(ty_@2, bag), bah))) -> new_ltEs0(yvy49000, yvy50000, bag, bah) 47.49/23.24 new_compare22(Just(Left(yvy49000)), Just(Left(yvy50000)), False, app(app(ty_Either, app(ty_Maybe, bcf)), bbh)) -> new_ltEs2(yvy49000, yvy50000, bcf) 47.49/23.24 new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, app(app(app(ty_@3, fd), ff), fg)), eh), fa)) -> new_lt1(yvy49000, yvy50000, fd, ff, fg) 47.49/23.24 new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), de, app(ty_Maybe, ed)) -> new_ltEs2(yvy49001, yvy50001, ed) 47.49/23.24 new_ltEs3(Left(yvy49000), Left(yvy50000), app(app(ty_Either, bcg), bch), bbh) -> new_ltEs3(yvy49000, yvy50000, bcg, bch) 47.49/23.24 new_primCompAux(yvy49000, yvy50000, yvy221, app(ty_Maybe, bg)) -> new_compare3(yvy49000, yvy50000, bg) 47.49/23.24 new_compare22(Just(Left(yvy49000)), Just(Left(yvy50000)), False, app(app(ty_Either, app(ty_[], bbg)), bbh)) -> new_ltEs(yvy49000, yvy50000, bbg) 47.49/23.24 new_lt0(yvy49000, yvy50000, cb, cc) -> new_compare20(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, cb, cc), cb, cc) 47.49/23.24 new_compare22(Just(:(yvy49000, yvy49001)), Just(:(yvy50000, yvy50001)), False, app(ty_[], h)) -> new_primCompAux(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, h), h) 47.49/23.24 new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, de), app(app(app(ty_@3, ea), eb), ec))) -> new_ltEs1(yvy49001, yvy50001, ea, eb, ec) 47.49/23.24 new_compare22(Just(Left(yvy49000)), Just(Left(yvy50000)), False, app(app(ty_Either, app(app(ty_@2, bca), bcb)), bbh)) -> new_ltEs0(yvy49000, yvy50000, bca, bcb) 47.49/23.24 new_compare22(Just(Right(yvy49000)), Just(Right(yvy50000)), False, app(app(ty_Either, bda), app(app(ty_@2, bdc), bdd))) -> new_ltEs0(yvy49000, yvy50000, bdc, bdd) 47.49/23.24 new_ltEs3(Right(yvy49000), Right(yvy50000), bda, app(app(ty_@2, bdc), bdd)) -> new_ltEs0(yvy49000, yvy50000, bdc, bdd) 47.49/23.24 new_ltEs3(Right(yvy49000), Right(yvy50000), bda, app(app(app(ty_@3, bde), bdf), bdg)) -> new_ltEs1(yvy49000, yvy50000, bde, bdf, bdg) 47.49/23.24 new_compare22(Just(:(yvy49000, yvy49001)), Just(:(yvy50000, yvy50001)), False, app(ty_[], h)) -> new_compare0(yvy49001, yvy50001, h) 47.49/23.24 new_primCompAux(yvy49000, yvy50000, yvy221, app(app(ty_Either, bh), ca)) -> new_compare4(yvy49000, yvy50000, bh, ca) 47.49/23.24 new_compare21(yvy49000, yvy50000, False, cf, cg, da) -> new_ltEs1(yvy49000, yvy50000, cf, cg, da) 47.49/23.24 new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, eh, app(ty_[], he)) -> new_ltEs(yvy49002, yvy50002, he) 47.49/23.24 new_compare3(yvy49000, yvy50000, db) -> new_compare22(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, db), db) 47.49/23.24 new_ltEs3(Right(yvy49000), Right(yvy50000), bda, app(app(ty_Either, bea), beb)) -> new_ltEs3(yvy49000, yvy50000, bea, beb) 47.49/23.24 new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), eh), app(app(ty_@2, hf), hg))) -> new_ltEs0(yvy49002, yvy50002, hf, hg) 47.49/23.24 new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, app(ty_[], eg)), eh), fa)) -> new_lt(yvy49000, yvy50000, eg) 47.49/23.24 new_primCompAux(yvy49000, yvy50000, yvy221, app(app(app(ty_@3, bd), be), bf)) -> new_compare2(yvy49000, yvy50000, bd, be, bf) 47.49/23.24 new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, eh, app(app(ty_Either, bad), bae)) -> new_ltEs3(yvy49002, yvy50002, bad, bae) 47.49/23.24 new_ltEs3(Left(yvy49000), Left(yvy50000), app(app(app(ty_@3, bcc), bcd), bce), bbh) -> new_ltEs1(yvy49000, yvy50000, bcc, bcd, bce) 47.49/23.24 new_compare0(:(yvy49000, yvy49001), :(yvy50000, yvy50001), h) -> new_primCompAux(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, h), h) 47.49/23.24 new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), de, app(ty_[], df)) -> new_ltEs(yvy49001, yvy50001, df) 47.49/23.24 new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), app(app(ty_@2, fb), fc), eh, fa) -> new_lt0(yvy49000, yvy50000, fb, fc) 47.49/23.24 new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), de, app(app(ty_Either, ee), ef)) -> new_ltEs3(yvy49001, yvy50001, ee, ef) 47.49/23.24 new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), app(app(app(ty_@3, gg), gh), ha)), fa)) -> new_lt1(yvy49001, yvy50001, gg, gh, ha) 47.49/23.24 new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), eh), app(app(app(ty_@3, hh), baa), bab))) -> new_ltEs1(yvy49002, yvy50002, hh, baa, bab) 47.49/23.24 new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, eh, app(app(app(ty_@3, hh), baa), bab)) -> new_ltEs1(yvy49002, yvy50002, hh, baa, bab) 47.49/23.24 new_lt(yvy49000, yvy50000, cd) -> new_compare0(yvy49000, yvy50000, cd) 47.49/23.24 new_ltEs2(Just(yvy49000), Just(yvy50000), app(app(app(ty_@3, bba), bbb), bbc)) -> new_ltEs1(yvy49000, yvy50000, bba, bbb, bbc) 47.49/23.24 new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, app(ty_[], cd)), ce)) -> new_compare0(yvy49000, yvy50000, cd) 47.49/23.24 new_compare1(yvy49000, yvy50000, cb, cc) -> new_compare20(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, cb, cc), cb, cc) 47.49/23.24 new_compare22(Just(Just(yvy49000)), Just(Just(yvy50000)), False, app(ty_Maybe, app(ty_Maybe, bbd))) -> new_ltEs2(yvy49000, yvy50000, bbd) 47.49/23.24 new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), app(ty_[], cd), ce) -> new_compare0(yvy49000, yvy50000, cd) 47.49/23.24 new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, app(app(ty_@2, cb), cc)), ce)) -> new_compare20(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, cb, cc), cb, cc) 47.49/23.24 new_compare22(Just(Left(yvy49000)), Just(Left(yvy50000)), False, app(app(ty_Either, app(app(ty_Either, bcg), bch)), bbh)) -> new_ltEs3(yvy49000, yvy50000, bcg, bch) 47.49/23.24 new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), eh), app(ty_Maybe, bac))) -> new_ltEs2(yvy49002, yvy50002, bac) 47.49/23.24 new_compare22(Just(Right(yvy49000)), Just(Right(yvy50000)), False, app(app(ty_Either, bda), app(ty_[], bdb))) -> new_ltEs(yvy49000, yvy50000, bdb) 47.49/23.24 new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), app(ty_[], eg), eh, fa) -> new_lt(yvy49000, yvy50000, eg) 47.49/23.24 new_ltEs2(Just(yvy49000), Just(yvy50000), app(app(ty_Either, bbe), bbf)) -> new_ltEs3(yvy49000, yvy50000, bbe, bbf) 47.49/23.24 new_lt3(yvy49000, yvy50000, dc, dd) -> new_compare23(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, dc, dd), dc, dd) 47.49/23.24 new_primCompAux(yvy49000, yvy50000, yvy221, app(app(ty_@2, bb), bc)) -> new_compare1(yvy49000, yvy50000, bb, bc) 47.49/23.24 new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), app(app(ty_@2, cb), cc), ce) -> new_compare20(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, cb, cc), cb, cc) 47.49/23.24 new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), app(app(app(ty_@3, cf), cg), da), ce) -> new_compare21(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, cf, cg, da), cf, cg, da) 47.49/23.24 47.49/23.24 The TRS R consists of the following rules: 47.49/23.24 47.49/23.24 new_esEs22(yvy4002, yvy3002, app(ty_[], cdc)) -> new_esEs8(yvy4002, yvy3002, cdc) 47.49/23.24 new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) 47.49/23.24 new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT 47.49/23.24 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 47.49/23.24 new_primPlusNat0(Zero, Zero) -> Zero 47.49/23.24 new_compare13(yvy49000, yvy50000, cf, cg, da) -> new_compare28(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, cf, cg, da), cf, cg, da) 47.49/23.24 new_esEs23(yvy4001, yvy3001, app(ty_Maybe, cdg)) -> new_esEs6(yvy4001, yvy3001, cdg) 47.49/23.24 new_pePe(True, yvy220) -> True 47.49/23.24 new_ltEs20(yvy49002, yvy50002, ty_Ordering) -> new_ltEs15(yvy49002, yvy50002) 47.49/23.24 new_esEs7(Right(yvy4000), Right(yvy3000), cad, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.24 new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) 47.49/23.24 new_compare26(yvy49000, yvy50000, False, dc, dd) -> new_compare114(yvy49000, yvy50000, new_ltEs14(yvy49000, yvy50000, dc, dd), dc, dd) 47.49/23.24 new_lt20(yvy49001, yvy50001, ty_Ordering) -> new_lt17(yvy49001, yvy50001) 47.49/23.24 new_compare(:(yvy49000, yvy49001), [], h) -> GT 47.49/23.24 new_ltEs20(yvy49002, yvy50002, app(app(ty_@2, hf), hg)) -> new_ltEs11(yvy49002, yvy50002, hf, hg) 47.49/23.24 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 47.49/23.24 new_ltEs14(Right(yvy49000), Left(yvy50000), bda, bbh) -> False 47.49/23.24 new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Ratio, bef), bbh) -> new_ltEs17(yvy49000, yvy50000, bef) 47.49/23.24 new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT 47.49/23.24 new_lt20(yvy49001, yvy50001, app(ty_Ratio, dcb)) -> new_lt18(yvy49001, yvy50001, dcb) 47.49/23.24 new_compare(:(yvy49000, yvy49001), :(yvy50000, yvy50001), h) -> new_primCompAux0(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, h), h) 47.49/23.24 new_compare26(yvy49000, yvy50000, True, dc, dd) -> EQ 47.49/23.24 new_esEs8(:(yvy4000, yvy4001), :(yvy3000, yvy3001), beh) -> new_asAs(new_esEs9(yvy4000, yvy3000, beh), new_esEs8(yvy4001, yvy3001, beh)) 47.49/23.24 new_compare27(yvy49000, yvy50000, False, cb, cc) -> new_compare10(yvy49000, yvy50000, new_ltEs11(yvy49000, yvy50000, cb, cc), cb, cc) 47.49/23.24 new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) 47.49/23.24 new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.24 new_ltEs4(Nothing, Nothing, bed) -> True 47.49/23.24 new_ltEs4(Just(yvy49000), Nothing, bed) -> False 47.49/23.24 new_lt8(yvy49000, yvy50000, app(app(ty_@2, cb), cc)) -> new_lt4(yvy49000, yvy50000, cb, cc) 47.49/23.24 new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat1(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) 47.49/23.24 new_compare113(yvy49000, yvy50000, False) -> GT 47.49/23.24 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Int) -> new_ltEs7(yvy49000, yvy50000) 47.49/23.24 new_ltEs15(EQ, LT) -> False 47.49/23.24 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.24 new_esEs28(yvy49000, yvy50000, app(app(ty_Either, ga), gb)) -> new_esEs7(yvy49000, yvy50000, ga, gb) 47.49/23.24 new_lt19(yvy49000, yvy50000, app(app(ty_@2, fb), fc)) -> new_lt4(yvy49000, yvy50000, fb, fc) 47.49/23.24 new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.24 new_ltEs20(yvy49002, yvy50002, app(app(ty_Either, bad), bae)) -> new_ltEs14(yvy49002, yvy50002, bad, bae) 47.49/23.24 new_esEs28(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) 47.49/23.24 new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Maybe, bbd)) -> new_ltEs4(yvy49000, yvy50000, bbd) 47.49/23.24 new_ltEs19(yvy49001, yvy50001, ty_Ordering) -> new_ltEs15(yvy49001, yvy50001) 47.49/23.24 new_ltEs18(yvy4900, yvy5000, ty_Float) -> new_ltEs5(yvy4900, yvy5000) 47.49/23.24 new_lt9(yvy49000, yvy50000) -> new_esEs12(new_compare6(yvy49000, yvy50000), LT) 47.49/23.24 new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False 47.49/23.24 new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False 47.49/23.24 new_ltEs14(Right(yvy49000), Right(yvy50000), bda, app(ty_Ratio, beg)) -> new_ltEs17(yvy49000, yvy50000, beg) 47.49/23.24 new_ltEs15(GT, LT) -> False 47.49/23.24 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.24 new_esEs7(Right(yvy4000), Right(yvy3000), cad, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.24 new_lt19(yvy49000, yvy50000, app(ty_Ratio, dca)) -> new_lt18(yvy49000, yvy50000, dca) 47.49/23.24 new_esEs24(yvy4000, yvy3000, app(ty_Ratio, cfd)) -> new_esEs15(yvy4000, yvy3000, cfd) 47.49/23.24 new_esEs24(yvy4000, yvy3000, app(app(ty_@2, cfb), cfc)) -> new_esEs4(yvy4000, yvy3000, cfb, cfc) 47.49/23.24 new_ltEs13(True, True) -> True 47.49/23.24 new_compare29(yvy49000, yvy50000, False) -> new_compare113(yvy49000, yvy50000, new_ltEs15(yvy49000, yvy50000)) 47.49/23.24 new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) 47.49/23.24 new_lt15(yvy49000, yvy50000, db) -> new_esEs12(new_compare15(yvy49000, yvy50000, db), LT) 47.49/23.24 new_ltEs20(yvy49002, yvy50002, ty_Integer) -> new_ltEs10(yvy49002, yvy50002) 47.49/23.24 new_ltEs19(yvy49001, yvy50001, app(app(ty_@2, dg), dh)) -> new_ltEs11(yvy49001, yvy50001, dg, dh) 47.49/23.24 new_ltEs14(Right(yvy49000), Right(yvy50000), bda, ty_Bool) -> new_ltEs13(yvy49000, yvy50000) 47.49/23.24 new_not(True) -> False 47.49/23.24 new_esEs28(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) 47.49/23.24 new_esEs28(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) 47.49/23.24 new_ltEs19(yvy49001, yvy50001, app(ty_Ratio, bgh)) -> new_ltEs17(yvy49001, yvy50001, bgh) 47.49/23.24 new_primCompAux00(yvy225, LT) -> LT 47.49/23.24 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.24 new_primCmpNat0(Zero, Zero) -> EQ 47.49/23.24 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Ordering, bhd) -> new_esEs12(yvy4000, yvy3000) 47.49/23.24 new_esEs28(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) 47.49/23.24 new_lt20(yvy49001, yvy50001, ty_Bool) -> new_lt14(yvy49001, yvy50001) 47.49/23.24 new_esEs27(yvy49001, yvy50001, ty_Bool) -> new_esEs11(yvy49001, yvy50001) 47.49/23.24 new_ltEs19(yvy49001, yvy50001, ty_Integer) -> new_ltEs10(yvy49001, yvy50001) 47.49/23.24 new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.49/23.24 new_esEs27(yvy49001, yvy50001, app(ty_[], gd)) -> new_esEs8(yvy49001, yvy50001, gd) 47.49/23.24 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.24 new_esEs27(yvy49001, yvy50001, ty_Char) -> new_esEs17(yvy49001, yvy50001) 47.49/23.24 new_esEs12(LT, LT) -> True 47.49/23.24 new_esEs21(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) 47.49/23.24 new_primEqNat0(Succ(yvy40000), Zero) -> False 47.49/23.24 new_primEqNat0(Zero, Succ(yvy30000)) -> False 47.49/23.24 new_ltEs14(Right(yvy49000), Right(yvy50000), bda, app(app(app(ty_@3, bde), bdf), bdg)) -> new_ltEs12(yvy49000, yvy50000, bde, bdf, bdg) 47.49/23.24 new_esEs14(@0, @0) -> True 47.49/23.24 new_compare8(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) 47.49/23.24 new_ltEs19(yvy49001, yvy50001, ty_Char) -> new_ltEs6(yvy49001, yvy50001) 47.49/23.24 new_compare10(yvy49000, yvy50000, True, cb, cc) -> LT 47.49/23.24 new_ltEs15(GT, EQ) -> False 47.49/23.24 new_lt20(yvy49001, yvy50001, app(app(app(ty_@3, gg), gh), ha)) -> new_lt13(yvy49001, yvy50001, gg, gh, ha) 47.49/23.24 new_primCompAux00(yvy225, GT) -> GT 47.49/23.24 new_compare110(yvy49000, yvy50000, True) -> LT 47.49/23.24 new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, che), chf), chg)) -> new_esEs5(yvy4001, yvy3001, che, chf, chg) 47.49/23.24 new_compare16(yvy49000, yvy50000, dc, dd) -> new_compare26(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, dc, dd), dc, dd) 47.49/23.24 new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.24 new_esEs27(yvy49001, yvy50001, ty_Ordering) -> new_esEs12(yvy49001, yvy50001) 47.49/23.24 new_lt19(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) 47.49/23.24 new_ltEs20(yvy49002, yvy50002, ty_Bool) -> new_ltEs13(yvy49002, yvy50002) 47.49/23.24 new_esEs22(yvy4002, yvy3002, ty_Int) -> new_esEs16(yvy4002, yvy3002) 47.49/23.24 new_ltEs18(yvy4900, yvy5000, ty_Double) -> new_ltEs16(yvy4900, yvy5000) 47.49/23.24 new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT 47.49/23.24 new_esEs27(yvy49001, yvy50001, ty_Int) -> new_esEs16(yvy49001, yvy50001) 47.49/23.24 new_esEs7(Right(yvy4000), Right(yvy3000), cad, app(ty_Ratio, cbc)) -> new_esEs15(yvy4000, yvy3000, cbc) 47.49/23.24 new_esEs22(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) 47.49/23.24 new_compare12(yvy49000, yvy50000, cb, cc) -> new_compare27(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, cb, cc), cb, cc) 47.49/23.24 new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, cef), ceg), ceh)) -> new_esEs5(yvy4000, yvy3000, cef, ceg, ceh) 47.49/23.24 new_lt19(yvy49000, yvy50000, app(app(app(ty_@3, fd), ff), fg)) -> new_lt13(yvy49000, yvy50000, fd, ff, fg) 47.49/23.24 new_ltEs20(yvy49002, yvy50002, app(app(app(ty_@3, hh), baa), bab)) -> new_ltEs12(yvy49002, yvy50002, hh, baa, bab) 47.49/23.24 new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cbg, cbh, cca) -> new_asAs(new_esEs24(yvy4000, yvy3000, cbg), new_asAs(new_esEs23(yvy4001, yvy3001, cbh), new_esEs22(yvy4002, yvy3002, cca))) 47.49/23.24 new_compare5(yvy49000, yvy50000, ty_Int) -> new_compare8(yvy49000, yvy50000) 47.49/23.24 new_ltEs19(yvy49001, yvy50001, ty_Bool) -> new_ltEs13(yvy49001, yvy50001) 47.49/23.24 new_esEs7(Right(yvy4000), Right(yvy3000), cad, app(app(app(ty_@3, cae), caf), cag)) -> new_esEs5(yvy4000, yvy3000, cae, caf, cag) 47.49/23.24 new_ltEs18(yvy4900, yvy5000, ty_Integer) -> new_ltEs10(yvy4900, yvy5000) 47.49/23.24 new_esEs7(Right(yvy4000), Right(yvy3000), cad, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.24 new_esEs26(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.24 new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.24 new_esEs7(Left(yvy4000), Left(yvy3000), ty_@0, bhd) -> new_esEs14(yvy4000, yvy3000) 47.49/23.24 new_primCmpNat0(Zero, Succ(yvy5000)) -> LT 47.49/23.24 new_compare5(yvy49000, yvy50000, app(ty_Ratio, bec)) -> new_compare19(yvy49000, yvy50000, bec) 47.49/23.24 new_esEs7(Right(yvy4000), Right(yvy3000), cad, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.24 new_esEs26(yvy4000, yvy3000, app(ty_[], dbh)) -> new_esEs8(yvy4000, yvy3000, dbh) 47.49/23.24 new_esEs12(EQ, GT) -> False 47.49/23.24 new_esEs12(GT, EQ) -> False 47.49/23.24 new_lt8(yvy49000, yvy50000, app(ty_Ratio, bgg)) -> new_lt18(yvy49000, yvy50000, bgg) 47.49/23.24 new_ltEs19(yvy49001, yvy50001, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs12(yvy49001, yvy50001, ea, eb, ec) 47.49/23.24 new_ltEs14(Right(yvy49000), Right(yvy50000), bda, ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) 47.49/23.24 new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.24 new_lt8(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) 47.49/23.24 new_esEs21(yvy49000, yvy50000, app(app(app(ty_@3, cf), cg), da)) -> new_esEs5(yvy49000, yvy50000, cf, cg, da) 47.49/23.24 new_lt19(yvy49000, yvy50000, app(ty_[], eg)) -> new_lt12(yvy49000, yvy50000, eg) 47.49/23.24 new_primCmpNat0(Succ(yvy4900), Zero) -> GT 47.49/23.24 new_pePe(False, yvy220) -> yvy220 47.49/23.24 new_esEs27(yvy49001, yvy50001, ty_@0) -> new_esEs14(yvy49001, yvy50001) 47.49/23.24 new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Maybe, bcf), bbh) -> new_ltEs4(yvy49000, yvy50000, bcf) 47.49/23.24 new_esEs11(False, True) -> False 47.49/23.24 new_esEs11(True, False) -> False 47.49/23.24 new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cgh), cha)) -> new_esEs7(yvy4000, yvy3000, cgh, cha) 47.49/23.24 new_lt8(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) 47.49/23.24 new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_@2, bhf), bhg), bhd) -> new_esEs4(yvy4000, yvy3000, bhf, bhg) 47.49/23.24 new_compare114(yvy49000, yvy50000, True, dc, dd) -> LT 47.49/23.24 new_lt8(yvy49000, yvy50000, app(app(ty_Either, dc), dd)) -> new_lt16(yvy49000, yvy50000, dc, dd) 47.49/23.24 new_ltEs18(yvy4900, yvy5000, ty_@0) -> new_ltEs9(yvy4900, yvy5000) 47.49/23.24 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_@0) -> new_ltEs9(yvy49000, yvy50000) 47.49/23.24 new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 47.49/23.24 new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) 47.49/23.24 new_ltEs7(yvy4900, yvy5000) -> new_fsEs(new_compare8(yvy4900, yvy5000)) 47.49/23.24 new_ltEs19(yvy49001, yvy50001, ty_Double) -> new_ltEs16(yvy49001, yvy50001) 47.49/23.24 new_esEs22(yvy4002, yvy3002, ty_Bool) -> new_esEs11(yvy4002, yvy3002) 47.49/23.24 new_ltEs14(Right(yvy49000), Right(yvy50000), bda, ty_Char) -> new_ltEs6(yvy49000, yvy50000) 47.49/23.24 new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_[], bbg), bbh) -> new_ltEs8(yvy49000, yvy50000, bbg) 47.49/23.24 new_esEs21(yvy49000, yvy50000, app(ty_[], cd)) -> new_esEs8(yvy49000, yvy50000, cd) 47.49/23.24 new_esEs22(yvy4002, yvy3002, app(ty_Maybe, cce)) -> new_esEs6(yvy4002, yvy3002, cce) 47.49/23.24 new_esEs21(yvy49000, yvy50000, app(app(ty_@2, cb), cc)) -> new_esEs4(yvy49000, yvy50000, cb, cc) 47.49/23.24 new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False 47.49/23.24 new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False 47.49/23.24 new_esEs25(yvy4001, yvy3001, app(app(ty_@2, daa), dab)) -> new_esEs4(yvy4001, yvy3001, daa, dab) 47.49/23.24 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Bool, bhd) -> new_esEs11(yvy4000, yvy3000) 47.49/23.24 new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Ratio, bhh), bhd) -> new_esEs15(yvy4000, yvy3000, bhh) 47.49/23.24 new_ltEs18(yvy4900, yvy5000, ty_Bool) -> new_ltEs13(yvy4900, yvy5000) 47.49/23.24 new_ltEs18(yvy4900, yvy5000, app(app(app(ty_@3, gc), eh), fa)) -> new_ltEs12(yvy4900, yvy5000, gc, eh, fa) 47.49/23.24 new_esEs23(yvy4001, yvy3001, app(app(ty_Either, cec), ced)) -> new_esEs7(yvy4001, yvy3001, cec, ced) 47.49/23.24 new_esEs21(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) 47.49/23.24 new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 47.49/23.24 new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_@2, bca), bcb), bbh) -> new_ltEs11(yvy49000, yvy50000, bca, bcb) 47.49/23.24 new_ltEs20(yvy49002, yvy50002, ty_Double) -> new_ltEs16(yvy49002, yvy50002) 47.49/23.24 new_ltEs14(Right(yvy49000), Right(yvy50000), bda, app(app(ty_Either, bea), beb)) -> new_ltEs14(yvy49000, yvy50000, bea, beb) 47.49/23.24 new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.24 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Float, bbh) -> new_ltEs5(yvy49000, yvy50000) 47.49/23.24 new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT 47.49/23.24 new_compare114(yvy49000, yvy50000, False, dc, dd) -> GT 47.49/23.24 new_esEs25(yvy4001, yvy3001, app(ty_[], daf)) -> new_esEs8(yvy4001, yvy3001, daf) 47.49/23.24 new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.24 new_esEs4(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), chc, chd) -> new_asAs(new_esEs26(yvy4000, yvy3000, chc), new_esEs25(yvy4001, yvy3001, chd)) 47.49/23.24 new_ltEs5(yvy4900, yvy5000) -> new_fsEs(new_compare6(yvy4900, yvy5000)) 47.49/23.24 new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_Either, caa), cab), bhd) -> new_esEs7(yvy4000, yvy3000, caa, cab) 47.49/23.24 new_esEs26(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.24 new_esEs9(yvy4000, yvy3000, app(app(ty_@2, bfe), bff)) -> new_esEs4(yvy4000, yvy3000, bfe, bff) 47.49/23.24 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.24 new_compare25(Just(yvy4900), Nothing, False, bgd) -> GT 47.49/23.24 new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) 47.49/23.24 new_compare5(yvy49000, yvy50000, ty_@0) -> new_compare9(yvy49000, yvy50000) 47.49/23.24 new_esEs24(yvy4000, yvy3000, app(ty_Maybe, cfa)) -> new_esEs6(yvy4000, yvy3000, cfa) 47.49/23.24 new_lt11(yvy205, yvy204) -> new_esEs12(new_compare8(yvy205, yvy204), LT) 47.49/23.24 new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 47.49/23.24 new_lt6(yvy49000, yvy50000) -> new_esEs12(new_compare9(yvy49000, yvy50000), LT) 47.49/23.24 new_primMulNat0(Succ(yvy400100), Zero) -> Zero 47.49/23.24 new_primMulNat0(Zero, Succ(yvy300000)) -> Zero 47.49/23.24 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Double, bbh) -> new_ltEs16(yvy49000, yvy50000) 47.49/23.24 new_lt8(yvy49000, yvy50000, app(app(app(ty_@3, cf), cg), da)) -> new_lt13(yvy49000, yvy50000, cf, cg, da) 47.49/23.24 new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) 47.49/23.24 new_esEs6(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs5(yvy4000, yvy3000, cga, cgb, cgc) 47.49/23.24 new_esEs25(yvy4001, yvy3001, app(app(ty_Either, dad), dae)) -> new_esEs7(yvy4001, yvy3001, dad, dae) 47.49/23.24 new_compare5(yvy49000, yvy50000, ty_Float) -> new_compare6(yvy49000, yvy50000) 47.49/23.24 new_esEs9(yvy4000, yvy3000, app(ty_[], bgb)) -> new_esEs8(yvy4000, yvy3000, bgb) 47.49/23.24 new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, cdd), cde), cdf)) -> new_esEs5(yvy4001, yvy3001, cdd, cde, cdf) 47.49/23.24 new_esEs26(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.24 new_primPlusNat1(Succ(yvy1610), yvy300000) -> Succ(Succ(new_primPlusNat0(yvy1610, yvy300000))) 47.49/23.24 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Int, bhd) -> new_esEs16(yvy4000, yvy3000) 47.49/23.24 new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.24 new_esEs16(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) 47.49/23.24 new_primPlusNat0(Succ(yvy16100), Zero) -> Succ(yvy16100) 47.49/23.24 new_primPlusNat0(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) 47.49/23.24 new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) 47.49/23.24 new_primPlusNat1(Zero, yvy300000) -> Succ(yvy300000) 47.49/23.24 new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Int) -> new_compare8(new_sr(yvy49000, yvy50001), new_sr(yvy50000, yvy49001)) 47.49/23.24 new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.24 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_@0, bbh) -> new_ltEs9(yvy49000, yvy50000) 47.49/23.24 new_lt8(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) 47.49/23.24 new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_Either, bcg), bch), bbh) -> new_ltEs14(yvy49000, yvy50000, bcg, bch) 47.49/23.24 new_ltEs20(yvy49002, yvy50002, ty_@0) -> new_ltEs9(yvy49002, yvy50002) 47.49/23.24 new_ltEs18(yvy4900, yvy5000, app(app(ty_@2, de), ce)) -> new_ltEs11(yvy4900, yvy5000, de, ce) 47.49/23.24 new_ltEs9(yvy4900, yvy5000) -> new_fsEs(new_compare9(yvy4900, yvy5000)) 47.49/23.24 new_esEs22(yvy4002, yvy3002, app(ty_Ratio, cch)) -> new_esEs15(yvy4002, yvy3002, cch) 47.49/23.24 new_ltEs19(yvy49001, yvy50001, app(app(ty_Either, ee), ef)) -> new_ltEs14(yvy49001, yvy50001, ee, ef) 47.49/23.24 new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) 47.49/23.24 new_lt8(yvy49000, yvy50000, app(ty_Maybe, db)) -> new_lt15(yvy49000, yvy50000, db) 47.49/23.24 new_lt20(yvy49001, yvy50001, ty_Char) -> new_lt10(yvy49001, yvy50001) 47.49/23.24 new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.49/23.24 new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.49/23.24 new_esEs9(yvy4000, yvy3000, app(ty_Maybe, bfd)) -> new_esEs6(yvy4000, yvy3000, bfd) 47.49/23.24 new_esEs23(yvy4001, yvy3001, app(ty_Ratio, ceb)) -> new_esEs15(yvy4001, yvy3001, ceb) 47.49/23.24 new_compare25(Just(yvy4900), Just(yvy5000), False, bgd) -> new_compare111(yvy4900, yvy5000, new_ltEs18(yvy4900, yvy5000, bgd), bgd) 47.49/23.24 new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.49/23.24 new_ltEs20(yvy49002, yvy50002, ty_Float) -> new_ltEs5(yvy49002, yvy50002) 47.49/23.24 new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cge), cgf)) -> new_esEs4(yvy4000, yvy3000, cge, cgf) 47.49/23.24 new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.24 new_fsEs(yvy209) -> new_not(new_esEs12(yvy209, GT)) 47.49/23.24 new_ltEs18(yvy4900, yvy5000, app(app(ty_Either, bda), bbh)) -> new_ltEs14(yvy4900, yvy5000, bda, bbh) 47.49/23.24 new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cgg)) -> new_esEs15(yvy4000, yvy3000, cgg) 47.49/23.24 new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.24 new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) 47.49/23.24 new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_[], chb)) -> new_esEs8(yvy4000, yvy3000, chb) 47.49/23.24 new_compare25(yvy490, yvy500, True, bgd) -> EQ 47.49/23.24 new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_esEs5(yvy4000, yvy3000, bfa, bfb, bfc) 47.49/23.24 new_esEs9(yvy4000, yvy3000, app(ty_Ratio, bfg)) -> new_esEs15(yvy4000, yvy3000, bfg) 47.49/23.24 new_compare([], :(yvy50000, yvy50001), h) -> LT 47.49/23.24 new_lt20(yvy49001, yvy50001, app(ty_[], gd)) -> new_lt12(yvy49001, yvy50001, gd) 47.49/23.24 new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cgd)) -> new_esEs6(yvy4000, yvy3000, cgd) 47.49/23.24 new_esEs6(Nothing, Just(yvy3000), cfh) -> False 47.49/23.24 new_esEs6(Just(yvy4000), Nothing, cfh) -> False 47.49/23.24 new_esEs23(yvy4001, yvy3001, app(ty_[], cee)) -> new_esEs8(yvy4001, yvy3001, cee) 47.49/23.24 new_ltEs15(EQ, GT) -> True 47.49/23.24 new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.24 new_esEs6(Nothing, Nothing, cfh) -> True 47.49/23.24 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Double) -> new_ltEs16(yvy49000, yvy50000) 47.49/23.24 new_esEs11(False, False) -> True 47.49/23.24 new_esEs24(yvy4000, yvy3000, app(app(ty_Either, cfe), cff)) -> new_esEs7(yvy4000, yvy3000, cfe, cff) 47.49/23.24 new_ltEs18(yvy4900, yvy5000, ty_Ordering) -> new_ltEs15(yvy4900, yvy5000) 47.49/23.24 new_ltEs11(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), de, ce) -> new_pePe(new_lt8(yvy49000, yvy50000, de), new_asAs(new_esEs21(yvy49000, yvy50000, de), new_ltEs19(yvy49001, yvy50001, ce))) 47.49/23.24 new_ltEs14(Right(yvy49000), Right(yvy50000), bda, ty_Integer) -> new_ltEs10(yvy49000, yvy50000) 47.49/23.24 new_esEs21(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) 47.49/23.24 new_esEs7(Right(yvy4000), Right(yvy3000), cad, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.24 new_ltEs14(Left(yvy49000), Right(yvy50000), bda, bbh) -> True 47.49/23.24 new_ltEs19(yvy49001, yvy50001, ty_Float) -> new_ltEs5(yvy49001, yvy50001) 47.49/23.24 new_esEs23(yvy4001, yvy3001, app(app(ty_@2, cdh), cea)) -> new_esEs4(yvy4001, yvy3001, cdh, cea) 47.49/23.24 new_esEs7(Right(yvy4000), Right(yvy3000), cad, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.24 new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.49/23.24 new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.49/23.24 new_esEs26(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.24 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Ordering, bbh) -> new_ltEs15(yvy49000, yvy50000) 47.49/23.24 new_ltEs6(yvy4900, yvy5000) -> new_fsEs(new_compare7(yvy4900, yvy5000)) 47.49/23.24 new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.24 new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.24 new_esEs8(:(yvy4000, yvy4001), [], beh) -> False 47.49/23.24 new_esEs8([], :(yvy3000, yvy3001), beh) -> False 47.49/23.24 new_esEs26(yvy4000, yvy3000, app(app(ty_Either, dbf), dbg)) -> new_esEs7(yvy4000, yvy3000, dbf, dbg) 47.49/23.24 new_lt19(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) 47.49/23.24 new_lt17(yvy49000, yvy50000) -> new_esEs12(new_compare17(yvy49000, yvy50000), LT) 47.49/23.24 new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Integer) -> new_compare11(new_sr0(yvy49000, yvy50001), new_sr0(yvy50000, yvy49001)) 47.49/23.24 new_esEs22(yvy4002, yvy3002, app(app(ty_@2, ccf), ccg)) -> new_esEs4(yvy4002, yvy3002, ccf, ccg) 47.49/23.24 new_esEs22(yvy4002, yvy3002, ty_Double) -> new_esEs18(yvy4002, yvy3002) 47.49/23.24 new_esEs26(yvy4000, yvy3000, app(ty_Ratio, dbe)) -> new_esEs15(yvy4000, yvy3000, dbe) 47.49/23.24 new_compare5(yvy49000, yvy50000, app(ty_Maybe, bg)) -> new_compare15(yvy49000, yvy50000, bg) 47.49/23.24 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Integer, bhd) -> new_esEs10(yvy4000, yvy3000) 47.49/23.24 new_ltEs19(yvy49001, yvy50001, ty_@0) -> new_ltEs9(yvy49001, yvy50001) 47.49/23.24 new_esEs22(yvy4002, yvy3002, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_esEs5(yvy4002, yvy3002, ccb, ccc, ccd) 47.49/23.24 new_lt20(yvy49001, yvy50001, ty_@0) -> new_lt6(yvy49001, yvy50001) 47.49/23.24 new_esEs7(Right(yvy4000), Right(yvy3000), cad, app(app(ty_@2, cba), cbb)) -> new_esEs4(yvy4000, yvy3000, cba, cbb) 47.49/23.24 new_sr0(Integer(yvy490000), Integer(yvy500010)) -> Integer(new_primMulInt(yvy490000, yvy500010)) 47.49/23.24 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Bool, bbh) -> new_ltEs13(yvy49000, yvy50000) 47.49/23.24 new_esEs18(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 47.49/23.24 new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.24 new_esEs28(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) 47.49/23.24 new_esEs7(Right(yvy4000), Right(yvy3000), cad, app(ty_[], cbf)) -> new_esEs8(yvy4000, yvy3000, cbf) 47.49/23.24 new_ltEs15(LT, GT) -> True 47.49/23.24 new_lt19(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) 47.49/23.24 new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) 47.49/23.24 new_esEs12(GT, GT) -> True 47.49/23.24 new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) 47.49/23.24 new_esEs24(yvy4000, yvy3000, app(ty_[], cfg)) -> new_esEs8(yvy4000, yvy3000, cfg) 47.49/23.24 new_asAs(True, yvy201) -> yvy201 47.49/23.24 new_esEs26(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.24 new_esEs21(yvy49000, yvy50000, app(ty_Maybe, db)) -> new_esEs6(yvy49000, yvy50000, db) 47.49/23.24 new_esEs10(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) 47.49/23.24 new_compare10(yvy49000, yvy50000, False, cb, cc) -> GT 47.49/23.24 new_lt8(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) 47.49/23.24 new_lt8(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) 47.49/23.24 new_compare113(yvy49000, yvy50000, True) -> LT 47.49/23.24 new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.24 new_ltEs16(yvy4900, yvy5000) -> new_fsEs(new_compare18(yvy4900, yvy5000)) 47.49/23.24 new_lt20(yvy49001, yvy50001, ty_Float) -> new_lt9(yvy49001, yvy50001) 47.49/23.24 new_ltEs4(Nothing, Just(yvy50000), bed) -> True 47.49/23.24 new_esEs21(yvy49000, yvy50000, app(ty_Ratio, bgg)) -> new_esEs15(yvy49000, yvy50000, bgg) 47.49/23.24 new_ltEs18(yvy4900, yvy5000, app(ty_Maybe, bed)) -> new_ltEs4(yvy4900, yvy5000, bed) 47.49/23.24 new_lt8(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) 47.49/23.24 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Float, bhd) -> new_esEs13(yvy4000, yvy3000) 47.49/23.24 new_ltEs8(yvy4900, yvy5000, h) -> new_fsEs(new_compare(yvy4900, yvy5000, h)) 47.49/23.24 new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) 47.49/23.24 new_ltEs18(yvy4900, yvy5000, app(ty_[], h)) -> new_ltEs8(yvy4900, yvy5000, h) 47.49/23.24 new_compare110(yvy49000, yvy50000, False) -> GT 47.49/23.24 new_primCompAux00(yvy225, EQ) -> yvy225 47.49/23.24 new_lt19(yvy49000, yvy50000, app(ty_Maybe, fh)) -> new_lt15(yvy49000, yvy50000, fh) 47.49/23.24 new_esEs12(EQ, EQ) -> True 47.49/23.24 new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) 47.49/23.24 new_lt19(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) 47.49/23.24 new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) 47.49/23.24 new_esEs21(yvy49000, yvy50000, app(app(ty_Either, dc), dd)) -> new_esEs7(yvy49000, yvy50000, dc, dd) 47.49/23.24 new_primMulNat0(Zero, Zero) -> Zero 47.49/23.24 new_compare24(yvy49000, yvy50000, False) -> new_compare110(yvy49000, yvy50000, new_ltEs13(yvy49000, yvy50000)) 47.49/23.24 new_compare5(yvy49000, yvy50000, ty_Integer) -> new_compare11(yvy49000, yvy50000) 47.49/23.24 new_esEs22(yvy4002, yvy3002, ty_Integer) -> new_esEs10(yvy4002, yvy3002) 47.49/23.24 new_esEs21(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) 47.49/23.24 new_lt19(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) 47.49/23.24 new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.24 new_ltEs12(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, eh, fa) -> new_pePe(new_lt19(yvy49000, yvy50000, gc), new_asAs(new_esEs28(yvy49000, yvy50000, gc), new_pePe(new_lt20(yvy49001, yvy50001, eh), new_asAs(new_esEs27(yvy49001, yvy50001, eh), new_ltEs20(yvy49002, yvy50002, fa))))) 47.49/23.24 new_ltEs19(yvy49001, yvy50001, app(ty_[], df)) -> new_ltEs8(yvy49001, yvy50001, df) 47.49/23.24 new_compare5(yvy49000, yvy50000, ty_Double) -> new_compare18(yvy49000, yvy50000) 47.49/23.24 new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_@2, bag), bah)) -> new_ltEs11(yvy49000, yvy50000, bag, bah) 47.49/23.24 new_compare11(Integer(yvy49000), Integer(yvy50000)) -> new_primCmpInt(yvy49000, yvy50000) 47.49/23.24 new_compare9(@0, @0) -> EQ 47.49/23.24 new_esEs22(yvy4002, yvy3002, app(app(ty_Either, cda), cdb)) -> new_esEs7(yvy4002, yvy3002, cda, cdb) 47.49/23.24 new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.24 new_compare28(yvy49000, yvy50000, True, cf, cg, da) -> EQ 47.49/23.24 new_esEs27(yvy49001, yvy50001, ty_Float) -> new_esEs13(yvy49001, yvy50001) 47.49/23.24 new_esEs26(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.24 new_ltEs13(False, True) -> True 47.49/23.24 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.24 new_ltEs13(False, False) -> True 47.49/23.24 new_esEs9(yvy4000, yvy3000, app(app(ty_Either, bfh), bga)) -> new_esEs7(yvy4000, yvy3000, bfh, bga) 47.49/23.24 new_esEs7(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, bha), bhb), bhc), bhd) -> new_esEs5(yvy4000, yvy3000, bha, bhb, bhc) 47.49/23.24 new_ltEs15(EQ, EQ) -> True 47.49/23.24 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) 47.49/23.24 new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Maybe, bhe), bhd) -> new_esEs6(yvy4000, yvy3000, bhe) 47.49/23.24 new_esEs26(yvy4000, yvy3000, app(ty_Maybe, dbb)) -> new_esEs6(yvy4000, yvy3000, dbb) 47.49/23.24 new_esEs7(Right(yvy4000), Right(yvy3000), cad, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.24 new_esEs26(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.24 new_lt12(yvy49000, yvy50000, cd) -> new_esEs12(new_compare(yvy49000, yvy50000, cd), LT) 47.49/23.24 new_lt10(yvy49000, yvy50000) -> new_esEs12(new_compare7(yvy49000, yvy50000), LT) 47.49/23.24 new_lt19(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) 47.49/23.24 new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.24 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Char, bhd) -> new_esEs17(yvy4000, yvy3000) 47.49/23.24 new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.24 new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_[], cac), bhd) -> new_esEs8(yvy4000, yvy3000, cac) 47.49/23.24 new_ltEs20(yvy49002, yvy50002, app(ty_[], he)) -> new_ltEs8(yvy49002, yvy50002, he) 47.49/23.24 new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_Either, bbe), bbf)) -> new_ltEs14(yvy49000, yvy50000, bbe, bbf) 47.49/23.24 new_compare17(yvy49000, yvy50000) -> new_compare29(yvy49000, yvy50000, new_esEs12(yvy49000, yvy50000)) 47.49/23.24 new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False 47.49/23.24 new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False 47.49/23.24 new_esEs21(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) 47.49/23.24 new_esEs25(yvy4001, yvy3001, app(ty_Maybe, chh)) -> new_esEs6(yvy4001, yvy3001, chh) 47.49/23.24 new_compare([], [], h) -> EQ 47.49/23.24 new_ltEs15(LT, EQ) -> True 47.49/23.24 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Float) -> new_ltEs5(yvy49000, yvy50000) 47.49/23.24 new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 47.49/23.24 new_ltEs18(yvy4900, yvy5000, ty_Char) -> new_ltEs6(yvy4900, yvy5000) 47.49/23.24 new_ltEs18(yvy4900, yvy5000, app(ty_Ratio, bge)) -> new_ltEs17(yvy4900, yvy5000, bge) 47.49/23.24 new_lt20(yvy49001, yvy50001, ty_Double) -> new_lt7(yvy49001, yvy50001) 47.49/23.24 new_esEs26(yvy4000, yvy3000, app(app(ty_@2, dbc), dbd)) -> new_esEs4(yvy4000, yvy3000, dbc, dbd) 47.49/23.24 new_compare24(yvy49000, yvy50000, True) -> EQ 47.49/23.24 new_lt8(yvy49000, yvy50000, app(ty_[], cd)) -> new_lt12(yvy49000, yvy50000, cd) 47.49/23.24 new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(app(ty_@3, bcc), bcd), bce), bbh) -> new_ltEs12(yvy49000, yvy50000, bcc, bcd, bce) 47.49/23.24 new_esEs21(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) 47.49/23.24 new_esEs7(Right(yvy4000), Right(yvy3000), cad, app(app(ty_Either, cbd), cbe)) -> new_esEs7(yvy4000, yvy3000, cbd, cbe) 47.49/23.24 new_esEs11(True, True) -> True 47.49/23.24 new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False 47.49/23.24 new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False 47.49/23.24 new_ltEs14(Right(yvy49000), Right(yvy50000), bda, app(ty_[], bdb)) -> new_ltEs8(yvy49000, yvy50000, bdb) 47.49/23.24 new_esEs7(Right(yvy4000), Right(yvy3000), cad, app(ty_Maybe, cah)) -> new_esEs6(yvy4000, yvy3000, cah) 47.49/23.24 new_esEs25(yvy4001, yvy3001, app(ty_Ratio, dac)) -> new_esEs15(yvy4001, yvy3001, dac) 47.49/23.24 new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) 47.49/23.24 new_ltEs14(Right(yvy49000), Right(yvy50000), bda, ty_Int) -> new_ltEs7(yvy49000, yvy50000) 47.49/23.24 new_esEs15(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bgc) -> new_asAs(new_esEs20(yvy4000, yvy3000, bgc), new_esEs19(yvy4001, yvy3001, bgc)) 47.49/23.24 new_compare28(yvy49000, yvy50000, False, cf, cg, da) -> new_compare112(yvy49000, yvy50000, new_ltEs12(yvy49000, yvy50000, cf, cg, da), cf, cg, da) 47.49/23.24 new_esEs22(yvy4002, yvy3002, ty_Float) -> new_esEs13(yvy4002, yvy3002) 47.49/23.24 new_esEs27(yvy49001, yvy50001, ty_Integer) -> new_esEs10(yvy49001, yvy50001) 47.49/23.24 new_ltEs14(Right(yvy49000), Right(yvy50000), bda, app(app(ty_@2, bdc), bdd)) -> new_ltEs11(yvy49000, yvy50000, bdc, bdd) 47.49/23.24 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 47.49/23.24 new_ltEs15(GT, GT) -> True 47.49/23.24 new_compare111(yvy198, yvy199, False, bgf) -> GT 47.49/23.24 new_ltEs14(Right(yvy49000), Right(yvy50000), bda, app(ty_Maybe, bdh)) -> new_ltEs4(yvy49000, yvy50000, bdh) 47.49/23.24 new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 47.49/23.24 new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) 47.49/23.24 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Int, bbh) -> new_ltEs7(yvy49000, yvy50000) 47.49/23.24 new_not(False) -> True 47.49/23.24 new_compare5(yvy49000, yvy50000, app(app(ty_Either, bh), ca)) -> new_compare16(yvy49000, yvy50000, bh, ca) 47.49/23.24 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.24 new_compare112(yvy49000, yvy50000, True, cf, cg, da) -> LT 47.49/23.24 new_esEs28(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) 47.49/23.24 new_compare5(yvy49000, yvy50000, ty_Bool) -> new_compare14(yvy49000, yvy50000) 47.49/23.24 new_lt13(yvy49000, yvy50000, cf, cg, da) -> new_esEs12(new_compare13(yvy49000, yvy50000, cf, cg, da), LT) 47.49/23.24 new_primCompAux0(yvy49000, yvy50000, yvy221, h) -> new_primCompAux00(yvy221, new_compare5(yvy49000, yvy50000, h)) 47.49/23.24 new_esEs27(yvy49001, yvy50001, app(app(ty_Either, hc), hd)) -> new_esEs7(yvy49001, yvy50001, hc, hd) 47.49/23.24 new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 47.49/23.24 new_esEs22(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) 47.49/23.24 new_lt7(yvy49000, yvy50000) -> new_esEs12(new_compare18(yvy49000, yvy50000), LT) 47.49/23.24 new_esEs28(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) 47.49/23.24 new_esEs12(LT, EQ) -> False 47.49/23.24 new_esEs12(EQ, LT) -> False 47.49/23.24 new_esEs21(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) 47.49/23.24 new_compare29(yvy49000, yvy50000, True) -> EQ 47.49/23.24 new_primPlusNat0(Succ(yvy16100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat0(yvy16100, yvy3000000))) 47.49/23.24 new_lt4(yvy49000, yvy50000, cb, cc) -> new_esEs12(new_compare12(yvy49000, yvy50000, cb, cc), LT) 47.49/23.24 new_compare5(yvy49000, yvy50000, app(app(app(ty_@3, bd), be), bf)) -> new_compare13(yvy49000, yvy50000, bd, be, bf) 47.49/23.24 new_esEs27(yvy49001, yvy50001, app(ty_Ratio, dcb)) -> new_esEs15(yvy49001, yvy50001, dcb) 47.49/23.24 new_lt19(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) 47.49/23.24 new_esEs28(yvy49000, yvy50000, app(app(app(ty_@3, fd), ff), fg)) -> new_esEs5(yvy49000, yvy50000, fd, ff, fg) 47.49/23.24 new_compare112(yvy49000, yvy50000, False, cf, cg, da) -> GT 47.49/23.24 new_compare27(yvy49000, yvy50000, True, cb, cc) -> EQ 47.49/23.24 new_esEs7(Right(yvy4000), Right(yvy3000), cad, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.24 new_compare15(yvy49000, yvy50000, db) -> new_compare25(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, db), db) 47.49/23.24 new_esEs21(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) 47.49/23.24 new_esEs12(LT, GT) -> False 47.49/23.24 new_esEs12(GT, LT) -> False 47.49/23.24 new_lt20(yvy49001, yvy50001, ty_Int) -> new_lt11(yvy49001, yvy50001) 47.49/23.24 new_ltEs19(yvy49001, yvy50001, ty_Int) -> new_ltEs7(yvy49001, yvy50001) 47.49/23.24 new_ltEs20(yvy49002, yvy50002, app(ty_Ratio, dcc)) -> new_ltEs17(yvy49002, yvy50002, dcc) 47.49/23.24 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Char, bbh) -> new_ltEs6(yvy49000, yvy50000) 47.49/23.24 new_esEs8([], [], beh) -> True 47.49/23.24 new_ltEs20(yvy49002, yvy50002, ty_Char) -> new_ltEs6(yvy49002, yvy50002) 47.49/23.24 new_compare25(Nothing, Nothing, False, bgd) -> LT 47.49/23.24 new_lt20(yvy49001, yvy50001, app(ty_Maybe, hb)) -> new_lt15(yvy49001, yvy50001, hb) 47.49/23.24 new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Ratio, bee)) -> new_ltEs17(yvy49000, yvy50000, bee) 47.49/23.24 new_lt8(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) 47.49/23.24 new_ltEs14(Right(yvy49000), Right(yvy50000), bda, ty_Float) -> new_ltEs5(yvy49000, yvy50000) 47.49/23.24 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 47.49/23.24 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 47.49/23.24 new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) 47.49/23.24 new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.49/23.24 new_lt20(yvy49001, yvy50001, app(app(ty_@2, ge), gf)) -> new_lt4(yvy49001, yvy50001, ge, gf) 47.49/23.24 new_esEs28(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) 47.49/23.24 new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.24 new_compare111(yvy198, yvy199, True, bgf) -> LT 47.49/23.24 new_ltEs13(True, False) -> False 47.49/23.24 new_ltEs20(yvy49002, yvy50002, ty_Int) -> new_ltEs7(yvy49002, yvy50002) 47.49/23.24 new_esEs27(yvy49001, yvy50001, app(app(ty_@2, ge), gf)) -> new_esEs4(yvy49001, yvy50001, ge, gf) 47.49/23.24 new_ltEs15(LT, LT) -> True 47.49/23.24 new_esEs13(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 47.49/23.24 new_esEs22(yvy4002, yvy3002, ty_@0) -> new_esEs14(yvy4002, yvy3002) 47.49/23.24 new_esEs28(yvy49000, yvy50000, app(ty_Maybe, fh)) -> new_esEs6(yvy49000, yvy50000, fh) 47.49/23.24 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 47.49/23.24 new_esEs26(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.24 new_esEs28(yvy49000, yvy50000, app(app(ty_@2, fb), fc)) -> new_esEs4(yvy49000, yvy50000, fb, fc) 47.49/23.24 new_compare7(Char(yvy49000), Char(yvy50000)) -> new_primCmpNat0(yvy49000, yvy50000) 47.49/23.24 new_lt5(yvy49000, yvy50000) -> new_esEs12(new_compare11(yvy49000, yvy50000), LT) 47.49/23.24 new_lt20(yvy49001, yvy50001, app(app(ty_Either, hc), hd)) -> new_lt16(yvy49001, yvy50001, hc, hd) 47.49/23.24 new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) 47.49/23.24 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Char) -> new_ltEs6(yvy49000, yvy50000) 47.49/23.24 new_esEs26(yvy4000, yvy3000, app(app(app(ty_@3, dag), dah), dba)) -> new_esEs5(yvy4000, yvy3000, dag, dah, dba) 47.49/23.24 new_lt20(yvy49001, yvy50001, ty_Integer) -> new_lt5(yvy49001, yvy50001) 47.49/23.24 new_ltEs14(Right(yvy49000), Right(yvy50000), bda, ty_Double) -> new_ltEs16(yvy49000, yvy50000) 47.49/23.24 new_ltEs10(yvy4900, yvy5000) -> new_fsEs(new_compare11(yvy4900, yvy5000)) 47.49/23.24 new_lt14(yvy49000, yvy50000) -> new_esEs12(new_compare14(yvy49000, yvy50000), LT) 47.49/23.24 new_esEs27(yvy49001, yvy50001, app(ty_Maybe, hb)) -> new_esEs6(yvy49001, yvy50001, hb) 47.49/23.24 new_ltEs14(Right(yvy49000), Right(yvy50000), bda, ty_@0) -> new_ltEs9(yvy49000, yvy50000) 47.49/23.24 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Double, bhd) -> new_esEs18(yvy4000, yvy3000) 47.49/23.24 new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_[], baf)) -> new_ltEs8(yvy49000, yvy50000, baf) 47.49/23.24 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Integer) -> new_ltEs10(yvy49000, yvy50000) 47.49/23.24 new_esEs27(yvy49001, yvy50001, ty_Double) -> new_esEs18(yvy49001, yvy50001) 47.49/23.24 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 47.49/23.24 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 47.49/23.24 new_compare25(Nothing, Just(yvy5000), False, bgd) -> LT 47.49/23.24 new_compare5(yvy49000, yvy50000, app(app(ty_@2, bb), bc)) -> new_compare12(yvy49000, yvy50000, bb, bc) 47.49/23.24 new_esEs28(yvy49000, yvy50000, app(ty_[], eg)) -> new_esEs8(yvy49000, yvy50000, eg) 47.49/23.24 new_lt19(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) 47.49/23.24 new_lt18(yvy49000, yvy50000, bgg) -> new_esEs12(new_compare19(yvy49000, yvy50000, bgg), LT) 47.49/23.24 new_compare5(yvy49000, yvy50000, ty_Char) -> new_compare7(yvy49000, yvy50000) 47.49/23.24 new_ltEs19(yvy49001, yvy50001, app(ty_Maybe, ed)) -> new_ltEs4(yvy49001, yvy50001, ed) 47.49/23.24 new_compare5(yvy49000, yvy50000, app(ty_[], ba)) -> new_compare(yvy49000, yvy50000, ba) 47.49/23.24 new_compare14(yvy49000, yvy50000) -> new_compare24(yvy49000, yvy50000, new_esEs11(yvy49000, yvy50000)) 47.49/23.24 new_primEqNat0(Zero, Zero) -> True 47.49/23.24 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Integer, bbh) -> new_ltEs10(yvy49000, yvy50000) 47.49/23.24 new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.49/23.24 new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) 47.49/23.24 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Bool) -> new_ltEs13(yvy49000, yvy50000) 47.49/23.24 new_compare5(yvy49000, yvy50000, ty_Ordering) -> new_compare17(yvy49000, yvy50000) 47.49/23.24 new_esEs6(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.24 new_asAs(False, yvy201) -> False 47.49/23.24 new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(app(ty_@3, bba), bbb), bbc)) -> new_ltEs12(yvy49000, yvy50000, bba, bbb, bbc) 47.49/23.24 new_esEs28(yvy49000, yvy50000, app(ty_Ratio, dca)) -> new_esEs15(yvy49000, yvy50000, dca) 47.49/23.24 new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 47.49/23.24 new_ltEs20(yvy49002, yvy50002, app(ty_Maybe, bac)) -> new_ltEs4(yvy49002, yvy50002, bac) 47.49/23.24 new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) 47.49/23.24 new_lt8(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) 47.49/23.24 new_esEs7(Left(yvy4000), Right(yvy3000), cad, bhd) -> False 47.49/23.24 new_esEs7(Right(yvy4000), Left(yvy3000), cad, bhd) -> False 47.49/23.24 new_ltEs17(yvy4900, yvy5000, bge) -> new_fsEs(new_compare19(yvy4900, yvy5000, bge)) 47.49/23.24 new_lt16(yvy49000, yvy50000, dc, dd) -> new_esEs12(new_compare16(yvy49000, yvy50000, dc, dd), LT) 47.49/23.24 new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.24 new_ltEs18(yvy4900, yvy5000, ty_Int) -> new_ltEs7(yvy4900, yvy5000) 47.49/23.24 new_lt19(yvy49000, yvy50000, app(app(ty_Either, ga), gb)) -> new_lt16(yvy49000, yvy50000, ga, gb) 47.49/23.24 new_esEs27(yvy49001, yvy50001, app(app(app(ty_@3, gg), gh), ha)) -> new_esEs5(yvy49001, yvy50001, gg, gh, ha) 47.49/23.24 47.49/23.24 The set Q consists of the following terms: 47.49/23.24 47.49/23.24 new_esEs27(x0, x1, ty_@0) 47.49/23.24 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.24 new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 47.49/23.24 new_esEs26(x0, x1, ty_Float) 47.49/23.24 new_esEs12(EQ, EQ) 47.49/23.24 new_esEs28(x0, x1, ty_Char) 47.49/23.24 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.24 new_primMulInt(Neg(x0), Neg(x1)) 47.49/23.24 new_lt8(x0, x1, app(ty_Ratio, x2)) 47.49/23.24 new_compare25(Nothing, Nothing, False, x0) 47.49/23.24 new_esEs7(Left(x0), Left(x1), ty_Float, x2) 47.49/23.24 new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 47.49/23.24 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 47.49/23.24 new_lt20(x0, x1, ty_@0) 47.49/23.24 new_primCmpNat0(Succ(x0), Zero) 47.49/23.24 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 47.49/23.24 new_compare29(x0, x1, True) 47.49/23.24 new_lt19(x0, x1, app(ty_[], x2)) 47.49/23.24 new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) 47.49/23.24 new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.24 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 47.49/23.24 new_compare111(x0, x1, True, x2) 47.49/23.24 new_lt15(x0, x1, x2) 47.49/23.24 new_primEqInt(Pos(Zero), Pos(Zero)) 47.49/23.24 new_lt19(x0, x1, app(ty_Ratio, x2)) 47.49/23.24 new_primMulInt(Pos(x0), Pos(x1)) 47.49/23.24 new_compare112(x0, x1, True, x2, x3, x4) 47.49/23.24 new_compare26(x0, x1, False, x2, x3) 47.49/23.24 new_primCompAux00(x0, GT) 47.49/23.24 new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 47.49/23.24 new_ltEs14(Right(x0), Right(x1), x2, ty_Integer) 47.49/23.24 new_esEs25(x0, x1, app(ty_Maybe, x2)) 47.49/23.24 new_compare27(x0, x1, True, x2, x3) 47.49/23.24 new_lt8(x0, x1, ty_Float) 47.49/23.24 new_ltEs4(Just(x0), Just(x1), ty_Float) 47.49/23.24 new_esEs8(:(x0, x1), :(x2, x3), x4) 47.49/23.24 new_lt13(x0, x1, x2, x3, x4) 47.49/23.24 new_asAs(False, x0) 47.49/23.24 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.24 new_lt12(x0, x1, x2) 47.49/23.24 new_esEs6(Nothing, Nothing, x0) 47.49/23.24 new_esEs27(x0, x1, ty_Integer) 47.49/23.24 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.24 new_primEqInt(Neg(Zero), Neg(Zero)) 47.49/23.24 new_ltEs14(Right(x0), Right(x1), x2, ty_@0) 47.49/23.24 new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 47.49/23.24 new_ltEs18(x0, x1, app(ty_[], x2)) 47.49/23.24 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 47.49/23.24 new_ltEs4(Nothing, Nothing, x0) 47.49/23.24 new_esEs8([], [], x0) 47.49/23.24 new_sr(x0, x1) 47.49/23.24 new_esEs28(x0, x1, ty_Bool) 47.49/23.24 new_esEs27(x0, x1, ty_Char) 47.49/23.24 new_primCmpNat0(Zero, Succ(x0)) 47.49/23.24 new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) 47.49/23.24 new_lt19(x0, x1, ty_Double) 47.49/23.24 new_ltEs13(False, True) 47.49/23.24 new_ltEs13(True, False) 47.49/23.24 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.24 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.24 new_ltEs18(x0, x1, ty_Int) 47.49/23.24 new_lt17(x0, x1) 47.49/23.24 new_esEs9(x0, x1, ty_Double) 47.49/23.24 new_esEs9(x0, x1, app(ty_[], x2)) 47.49/23.24 new_esEs28(x0, x1, ty_Ordering) 47.49/23.24 new_esEs22(x0, x1, app(ty_[], x2)) 47.49/23.24 new_lt8(x0, x1, ty_Integer) 47.49/23.24 new_compare110(x0, x1, False) 47.49/23.24 new_esEs9(x0, x1, app(ty_Maybe, x2)) 47.49/23.24 new_esEs19(x0, x1, ty_Integer) 47.49/23.24 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.24 new_ltEs19(x0, x1, ty_Float) 47.49/23.24 new_esEs24(x0, x1, app(ty_Maybe, x2)) 47.49/23.24 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 47.49/23.24 new_esEs9(x0, x1, ty_Int) 47.49/23.24 new_ltEs8(x0, x1, x2) 47.49/23.24 new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 47.49/23.24 new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 47.49/23.24 new_lt8(x0, x1, ty_Bool) 47.49/23.24 new_esEs18(Double(x0, x1), Double(x2, x3)) 47.49/23.24 new_primEqInt(Pos(Zero), Neg(Zero)) 47.49/23.24 new_primEqInt(Neg(Zero), Pos(Zero)) 47.49/23.24 new_compare26(x0, x1, True, x2, x3) 47.49/23.24 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.24 new_esEs12(LT, GT) 47.49/23.24 new_esEs12(GT, LT) 47.49/23.24 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 47.49/23.24 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 47.49/23.24 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 47.49/23.24 new_compare5(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.24 new_esEs17(Char(x0), Char(x1)) 47.49/23.24 new_esEs7(Right(x0), Right(x1), x2, ty_Double) 47.49/23.24 new_esEs7(Left(x0), Left(x1), ty_Integer, x2) 47.49/23.24 new_ltEs11(@2(x0, x1), @2(x2, x3), x4, x5) 47.49/23.24 new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 47.49/23.24 new_esEs7(Right(x0), Right(x1), x2, ty_Char) 47.49/23.24 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 47.49/23.24 new_esEs21(x0, x1, ty_Float) 47.49/23.24 new_ltEs18(x0, x1, ty_Double) 47.49/23.24 new_ltEs14(Left(x0), Left(x1), ty_Integer, x2) 47.49/23.24 new_ltEs20(x0, x1, ty_Ordering) 47.49/23.24 new_esEs27(x0, x1, ty_Bool) 47.49/23.24 new_esEs7(Right(x0), Right(x1), x2, ty_@0) 47.49/23.24 new_compare14(x0, x1) 47.49/23.24 new_compare25(Just(x0), Just(x1), False, x2) 47.49/23.24 new_ltEs18(x0, x1, ty_Char) 47.49/23.24 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.24 new_asAs(True, x0) 47.49/23.24 new_esEs24(x0, x1, ty_Integer) 47.49/23.24 new_pePe(True, x0) 47.49/23.24 new_compare([], [], x0) 47.49/23.24 new_ltEs7(x0, x1) 47.49/23.24 new_ltEs15(EQ, EQ) 47.49/23.24 new_primEqNat0(Succ(x0), Zero) 47.49/23.24 new_esEs28(x0, x1, ty_Integer) 47.49/23.24 new_esEs7(Right(x0), Right(x1), x2, ty_Int) 47.49/23.24 new_esEs25(x0, x1, ty_Float) 47.49/23.24 new_primMulNat0(Succ(x0), Succ(x1)) 47.49/23.24 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.24 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.24 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.24 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 47.49/23.24 new_compare5(x0, x1, ty_Ordering) 47.49/23.24 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.24 new_lt19(x0, x1, ty_Char) 47.49/23.24 new_ltEs19(x0, x1, ty_Integer) 47.49/23.24 new_compare5(x0, x1, app(ty_Maybe, x2)) 47.49/23.24 new_lt5(x0, x1) 47.49/23.24 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 47.49/23.24 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 47.49/23.24 new_lt20(x0, x1, app(ty_[], x2)) 47.49/23.24 new_esEs9(x0, x1, ty_Char) 47.49/23.24 new_esEs26(x0, x1, app(ty_Maybe, x2)) 47.49/23.24 new_ltEs14(Right(x0), Right(x1), x2, ty_Double) 47.49/23.24 new_ltEs4(Just(x0), Just(x1), ty_Bool) 47.49/23.24 new_lt18(x0, x1, x2) 47.49/23.24 new_lt6(x0, x1) 47.49/23.24 new_lt19(x0, x1, ty_Int) 47.49/23.24 new_primEqNat0(Succ(x0), Succ(x1)) 47.49/23.24 new_esEs7(Left(x0), Left(x1), ty_@0, x2) 47.49/23.24 new_esEs7(Right(x0), Right(x1), x2, ty_Integer) 47.49/23.24 new_ltEs6(x0, x1) 47.49/23.24 new_compare5(x0, x1, app(ty_[], x2)) 47.49/23.24 new_compare7(Char(x0), Char(x1)) 47.49/23.24 new_esEs12(GT, GT) 47.49/23.24 new_esEs6(Nothing, Just(x0), x1) 47.49/23.24 new_esEs12(LT, EQ) 47.49/23.24 new_esEs12(EQ, LT) 47.49/23.24 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.24 new_ltEs5(x0, x1) 47.49/23.24 new_esEs7(Right(x0), Right(x1), x2, ty_Bool) 47.49/23.24 new_lt16(x0, x1, x2, x3) 47.49/23.24 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 47.49/23.24 new_ltEs15(GT, LT) 47.49/23.24 new_ltEs15(LT, GT) 47.49/23.24 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.24 new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 47.49/23.24 new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 47.49/23.24 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 47.49/23.24 new_lt20(x0, x1, app(ty_Ratio, x2)) 47.49/23.24 new_ltEs4(Just(x0), Just(x1), ty_Integer) 47.49/23.24 new_ltEs14(Left(x0), Left(x1), ty_Bool, x2) 47.49/23.24 new_esEs27(x0, x1, ty_Int) 47.49/23.24 new_esEs6(Just(x0), Just(x1), ty_Integer) 47.49/23.24 new_esEs6(Just(x0), Just(x1), ty_Float) 47.49/23.24 new_compare5(x0, x1, ty_Double) 47.49/23.24 new_ltEs17(x0, x1, x2) 47.49/23.24 new_primMulNat0(Succ(x0), Zero) 47.49/23.24 new_esEs27(x0, x1, ty_Float) 47.49/23.24 new_esEs25(x0, x1, ty_Bool) 47.49/23.24 new_esEs6(Just(x0), Just(x1), ty_Ordering) 47.49/23.24 new_esEs9(x0, x1, ty_Bool) 47.49/23.24 new_lt7(x0, x1) 47.49/23.24 new_esEs28(x0, x1, app(ty_Maybe, x2)) 47.49/23.24 new_lt8(x0, x1, ty_@0) 47.49/23.24 new_esEs9(x0, x1, ty_Ordering) 47.49/23.24 new_primCmpInt(Neg(Zero), Neg(Zero)) 47.49/23.24 new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 47.49/23.24 new_esEs6(Just(x0), Nothing, x1) 47.49/23.24 new_esEs28(x0, x1, ty_Double) 47.49/23.24 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.24 new_primCmpInt(Pos(Zero), Neg(Zero)) 47.49/23.24 new_primCmpInt(Neg(Zero), Pos(Zero)) 47.49/23.24 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.24 new_primPlusNat0(Succ(x0), Zero) 47.49/23.24 new_esEs23(x0, x1, ty_Float) 47.49/23.24 new_esEs21(x0, x1, ty_Integer) 47.49/23.24 new_esEs28(x0, x1, ty_@0) 47.49/23.24 new_lt19(x0, x1, ty_Bool) 47.49/23.24 new_esEs25(x0, x1, ty_Ordering) 47.49/23.24 new_lt19(x0, x1, ty_Ordering) 47.49/23.24 new_compare(:(x0, x1), [], x2) 47.49/23.24 new_esEs22(x0, x1, ty_Integer) 47.49/23.24 new_lt20(x0, x1, app(ty_Maybe, x2)) 47.49/23.24 new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 47.49/23.24 new_esEs11(False, False) 47.49/23.24 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 47.49/23.24 new_compare28(x0, x1, False, x2, x3, x4) 47.49/23.24 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.24 new_esEs9(x0, x1, ty_Integer) 47.49/23.24 new_ltEs20(x0, x1, ty_@0) 47.49/23.24 new_esEs23(x0, x1, app(ty_[], x2)) 47.49/23.24 new_ltEs4(Just(x0), Just(x1), ty_Char) 47.49/23.24 new_esEs22(x0, x1, app(ty_Ratio, x2)) 47.49/23.24 new_ltEs4(Nothing, Just(x0), x1) 47.49/23.24 new_compare113(x0, x1, True) 47.49/23.24 new_compare25(x0, x1, True, x2) 47.49/23.24 new_compare112(x0, x1, False, x2, x3, x4) 47.49/23.24 new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) 47.49/23.24 new_lt20(x0, x1, ty_Double) 47.49/23.24 new_ltEs19(x0, x1, ty_Bool) 47.49/23.24 new_ltEs20(x0, x1, ty_Double) 47.49/23.24 new_ltEs14(Left(x0), Left(x1), ty_Float, x2) 47.49/23.24 new_esEs24(x0, x1, ty_@0) 47.49/23.24 new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 47.49/23.24 new_lt19(x0, x1, ty_Integer) 47.49/23.24 new_esEs22(x0, x1, ty_Ordering) 47.49/23.24 new_esEs13(Float(x0, x1), Float(x2, x3)) 47.49/23.24 new_esEs6(Just(x0), Just(x1), ty_Bool) 47.49/23.24 new_esEs25(x0, x1, app(ty_[], x2)) 47.49/23.24 new_compare8(x0, x1) 47.49/23.24 new_ltEs14(Right(x0), Left(x1), x2, x3) 47.49/23.24 new_ltEs14(Left(x0), Right(x1), x2, x3) 47.49/23.24 new_ltEs14(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 47.49/23.24 new_ltEs13(True, True) 47.49/23.24 new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) 47.49/23.24 new_esEs21(x0, x1, ty_Ordering) 47.49/23.24 new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 47.49/23.24 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 47.49/23.24 new_esEs25(x0, x1, ty_Integer) 47.49/23.24 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.24 new_esEs25(x0, x1, ty_Char) 47.49/23.24 new_compare17(x0, x1) 47.49/23.24 new_esEs22(x0, x1, ty_@0) 47.49/23.24 new_esEs26(x0, x1, ty_Ordering) 47.49/23.24 new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 47.49/23.24 new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) 47.49/23.24 new_ltEs19(x0, x1, ty_Char) 47.49/23.24 new_esEs24(x0, x1, ty_Ordering) 47.49/23.24 new_ltEs14(Left(x0), Left(x1), ty_Int, x2) 47.49/23.24 new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 47.49/23.24 new_lt19(x0, x1, app(ty_Maybe, x2)) 47.49/23.24 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.24 new_compare(:(x0, x1), :(x2, x3), x4) 47.49/23.24 new_primCompAux00(x0, EQ) 47.49/23.24 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.24 new_esEs22(x0, x1, ty_Bool) 47.49/23.24 new_esEs21(x0, x1, app(ty_[], x2)) 47.49/23.24 new_ltEs4(Just(x0), Just(x1), ty_Int) 47.49/23.24 new_primMulNat0(Zero, Zero) 47.49/23.24 new_compare24(x0, x1, True) 47.49/23.24 new_compare5(x0, x1, ty_@0) 47.49/23.24 new_ltEs18(x0, x1, ty_Float) 47.49/23.24 new_primPlusNat1(Zero, x0) 47.49/23.24 new_esEs24(x0, x1, ty_Int) 47.49/23.24 new_esEs25(x0, x1, app(ty_Ratio, x2)) 47.49/23.24 new_lt8(x0, x1, ty_Double) 47.49/23.24 new_esEs6(Just(x0), Just(x1), ty_Char) 47.49/23.24 new_esEs25(x0, x1, ty_Int) 47.49/23.24 new_esEs23(x0, x1, ty_Char) 47.49/23.24 new_ltEs4(Just(x0), Just(x1), ty_Ordering) 47.49/23.24 new_ltEs14(Left(x0), Left(x1), ty_Ordering, x2) 47.49/23.24 new_compare5(x0, x1, ty_Bool) 47.49/23.24 new_compare25(Just(x0), Nothing, False, x1) 47.49/23.24 new_esEs27(x0, x1, app(ty_Maybe, x2)) 47.49/23.24 new_sr0(Integer(x0), Integer(x1)) 47.49/23.24 new_ltEs14(Left(x0), Left(x1), ty_Double, x2) 47.49/23.24 new_fsEs(x0) 47.49/23.24 new_compare9(@0, @0) 47.49/23.24 new_ltEs14(Left(x0), Left(x1), ty_Char, x2) 47.49/23.24 new_ltEs19(x0, x1, ty_Ordering) 47.49/23.24 new_esEs24(x0, x1, ty_Char) 47.49/23.24 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.24 new_ltEs20(x0, x1, app(ty_[], x2)) 47.49/23.24 new_compare5(x0, x1, app(ty_Ratio, x2)) 47.49/23.24 new_lt8(x0, x1, app(ty_Maybe, x2)) 47.49/23.24 new_ltEs14(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 47.49/23.24 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.24 new_esEs21(x0, x1, ty_Bool) 47.49/23.24 new_esEs24(x0, x1, ty_Double) 47.49/23.24 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 47.49/23.24 new_esEs7(Left(x0), Left(x1), ty_Int, x2) 47.49/23.24 new_primPlusNat1(Succ(x0), x1) 47.49/23.24 new_esEs8([], :(x0, x1), x2) 47.49/23.24 new_esEs23(x0, x1, ty_Int) 47.49/23.24 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.24 new_compare5(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.24 new_esEs23(x0, x1, ty_@0) 47.49/23.24 new_esEs6(Just(x0), Just(x1), ty_Int) 47.49/23.24 new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) 47.49/23.24 new_ltEs19(x0, x1, ty_Int) 47.49/23.24 new_esEs7(Left(x0), Left(x1), ty_Double, x2) 47.49/23.24 new_compare15(x0, x1, x2) 47.49/23.24 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 47.49/23.24 new_esEs24(x0, x1, app(ty_[], x2)) 47.49/23.24 new_esEs24(x0, x1, app(ty_Ratio, x2)) 47.49/23.24 new_esEs7(Left(x0), Left(x1), ty_Char, x2) 47.49/23.24 new_esEs6(Just(x0), Just(x1), ty_@0) 47.49/23.24 new_compare13(x0, x1, x2, x3, x4) 47.49/23.24 new_lt8(x0, x1, ty_Ordering) 47.49/23.24 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.24 new_primPlusNat0(Zero, Zero) 47.49/23.24 new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 47.49/23.24 new_lt8(x0, x1, ty_Int) 47.49/23.24 new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 47.49/23.24 new_lt19(x0, x1, ty_@0) 47.49/23.24 new_not(True) 47.49/23.24 new_compare10(x0, x1, True, x2, x3) 47.49/23.24 new_esEs23(x0, x1, ty_Bool) 47.49/23.24 new_esEs22(x0, x1, ty_Char) 47.49/23.24 new_esEs12(EQ, GT) 47.49/23.24 new_esEs12(GT, EQ) 47.49/23.24 new_ltEs14(Left(x0), Left(x1), app(ty_[], x2), x3) 47.49/23.24 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.24 new_lt19(x0, x1, ty_Float) 47.49/23.24 new_esEs7(Left(x0), Right(x1), x2, x3) 47.49/23.24 new_esEs7(Right(x0), Left(x1), x2, x3) 47.49/23.24 new_esEs22(x0, x1, app(ty_Maybe, x2)) 47.49/23.24 new_ltEs14(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 47.49/23.24 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.24 new_ltEs13(False, False) 47.49/23.24 new_esEs25(x0, x1, ty_Double) 47.49/23.24 new_esEs25(x0, x1, ty_@0) 47.49/23.24 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.24 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 47.49/23.24 new_esEs11(True, True) 47.49/23.24 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 47.49/23.24 new_compare28(x0, x1, True, x2, x3, x4) 47.49/23.24 new_ltEs15(GT, EQ) 47.49/23.24 new_esEs23(x0, x1, ty_Double) 47.49/23.24 new_ltEs15(EQ, GT) 47.49/23.24 new_ltEs4(Just(x0), Nothing, x1) 47.49/23.24 new_esEs21(x0, x1, ty_Char) 47.49/23.24 new_esEs11(False, True) 47.49/23.24 new_esEs11(True, False) 47.49/23.24 new_compare113(x0, x1, False) 47.49/23.24 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 47.49/23.24 new_esEs7(Right(x0), Right(x1), x2, ty_Float) 47.49/23.24 new_lt8(x0, x1, ty_Char) 47.49/23.24 new_compare25(Nothing, Just(x0), False, x1) 47.49/23.24 new_ltEs20(x0, x1, ty_Integer) 47.49/23.24 new_compare27(x0, x1, False, x2, x3) 47.49/23.24 new_esEs26(x0, x1, ty_Int) 47.49/23.24 new_esEs28(x0, x1, app(ty_[], x2)) 47.49/23.24 new_primPlusNat0(Zero, Succ(x0)) 47.49/23.24 new_compare5(x0, x1, ty_Integer) 47.49/23.24 new_primCmpNat0(Succ(x0), Succ(x1)) 47.49/23.24 new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 47.49/23.24 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.24 new_esEs15(:%(x0, x1), :%(x2, x3), x4) 47.49/23.24 new_esEs9(x0, x1, ty_@0) 47.49/23.24 new_esEs12(LT, LT) 47.49/23.24 new_primCompAux0(x0, x1, x2, x3) 47.49/23.24 new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 47.49/23.24 new_esEs21(x0, x1, ty_Int) 47.49/23.24 new_lt4(x0, x1, x2, x3) 47.49/23.24 new_esEs26(x0, x1, ty_Double) 47.49/23.24 new_esEs22(x0, x1, ty_Int) 47.49/23.24 new_esEs26(x0, x1, ty_Char) 47.49/23.24 new_esEs21(x0, x1, ty_@0) 47.49/23.24 new_lt14(x0, x1) 47.49/23.24 new_esEs9(x0, x1, ty_Float) 47.49/23.24 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.24 new_compare114(x0, x1, False, x2, x3) 47.49/23.24 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 47.49/23.24 new_esEs20(x0, x1, ty_Int) 47.49/23.24 new_primCmpInt(Pos(Zero), Pos(Zero)) 47.49/23.24 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.24 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 47.49/23.24 new_esEs20(x0, x1, ty_Integer) 47.49/23.24 new_lt8(x0, x1, app(ty_[], x2)) 47.49/23.24 new_esEs22(x0, x1, ty_Double) 47.49/23.24 new_esEs27(x0, x1, ty_Double) 47.49/23.24 new_esEs27(x0, x1, app(ty_[], x2)) 47.49/23.24 new_esEs14(@0, @0) 47.49/23.24 new_pePe(False, x0) 47.49/23.24 new_ltEs9(x0, x1) 47.49/23.24 new_compare([], :(x0, x1), x2) 47.49/23.24 new_esEs22(x0, x1, ty_Float) 47.49/23.24 new_compare29(x0, x1, False) 47.49/23.24 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.24 new_esEs16(x0, x1) 47.49/23.24 new_esEs26(x0, x1, ty_Bool) 47.49/23.24 new_lt10(x0, x1) 47.49/23.24 new_ltEs14(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 47.49/23.24 new_esEs26(x0, x1, ty_@0) 47.49/23.24 new_esEs7(Left(x0), Left(x1), ty_Bool, x2) 47.49/23.24 new_ltEs18(x0, x1, ty_@0) 47.49/23.24 new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 47.49/23.24 new_ltEs18(x0, x1, ty_Bool) 47.49/23.24 new_esEs21(x0, x1, app(ty_Maybe, x2)) 47.49/23.24 new_compare5(x0, x1, ty_Float) 47.49/23.24 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 47.49/23.24 new_esEs10(Integer(x0), Integer(x1)) 47.49/23.24 new_esEs21(x0, x1, ty_Double) 47.49/23.24 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 47.49/23.24 new_ltEs4(Just(x0), Just(x1), ty_@0) 47.49/23.24 new_esEs8(:(x0, x1), [], x2) 47.49/23.24 new_esEs23(x0, x1, app(ty_Ratio, x2)) 47.49/23.24 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.24 new_lt20(x0, x1, ty_Float) 47.49/23.24 new_esEs26(x0, x1, ty_Integer) 47.49/23.24 new_ltEs10(x0, x1) 47.49/23.24 new_compare5(x0, x1, ty_Int) 47.49/23.24 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 47.49/23.24 new_lt20(x0, x1, ty_Ordering) 47.49/23.24 new_ltEs15(EQ, LT) 47.49/23.24 new_ltEs15(LT, EQ) 47.49/23.24 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.24 new_ltEs14(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 47.49/23.24 new_ltEs19(x0, x1, app(ty_[], x2)) 47.49/23.24 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 47.49/23.24 new_esEs21(x0, x1, app(ty_Ratio, x2)) 47.49/23.24 new_compare16(x0, x1, x2, x3) 47.49/23.24 new_esEs23(x0, x1, ty_Integer) 47.49/23.24 new_esEs26(x0, x1, app(ty_[], x2)) 47.49/23.24 new_ltEs14(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 47.49/23.24 new_ltEs14(Right(x0), Right(x1), x2, ty_Int) 47.49/23.24 new_ltEs14(Right(x0), Right(x1), x2, ty_Float) 47.49/23.24 new_esEs24(x0, x1, ty_Bool) 47.49/23.24 new_esEs26(x0, x1, app(ty_Ratio, x2)) 47.49/23.24 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 47.49/23.24 new_ltEs15(GT, GT) 47.49/23.24 new_compare114(x0, x1, True, x2, x3) 47.49/23.24 new_esEs27(x0, x1, ty_Ordering) 47.49/23.24 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.24 new_compare5(x0, x1, ty_Char) 47.49/23.24 new_lt20(x0, x1, ty_Integer) 47.49/23.24 new_ltEs14(Right(x0), Right(x1), x2, ty_Ordering) 47.49/23.24 new_ltEs19(x0, x1, ty_@0) 47.49/23.24 new_ltEs16(x0, x1) 47.49/23.24 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.24 new_lt11(x0, x1) 47.49/23.24 new_ltEs18(x0, x1, ty_Integer) 47.49/23.24 new_primEqNat0(Zero, Zero) 47.49/23.24 new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) 47.49/23.24 new_compare10(x0, x1, False, x2, x3) 47.49/23.24 new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 47.49/23.24 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.24 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.24 new_esEs23(x0, x1, ty_Ordering) 47.49/23.24 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.24 new_not(False) 47.49/23.24 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 47.49/23.24 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.24 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.24 new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 47.49/23.24 new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 47.49/23.24 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.24 new_esEs27(x0, x1, app(ty_Ratio, x2)) 47.49/23.24 new_ltEs20(x0, x1, ty_Bool) 47.49/23.24 new_ltEs14(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 47.49/23.24 new_ltEs19(x0, x1, ty_Double) 47.49/23.24 new_ltEs14(Right(x0), Right(x1), x2, app(ty_[], x3)) 47.49/23.24 new_ltEs14(Right(x0), Right(x1), x2, ty_Char) 47.49/23.24 new_esEs28(x0, x1, app(ty_Ratio, x2)) 47.49/23.24 new_ltEs20(x0, x1, ty_Float) 47.49/23.24 new_compare11(Integer(x0), Integer(x1)) 47.49/23.24 new_primCompAux00(x0, LT) 47.49/23.24 new_compare110(x0, x1, True) 47.49/23.24 new_ltEs14(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 47.49/23.24 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.24 new_ltEs14(Left(x0), Left(x1), ty_@0, x2) 47.49/23.24 new_ltEs15(LT, LT) 47.49/23.24 new_esEs6(Just(x0), Just(x1), ty_Double) 47.49/23.24 new_lt20(x0, x1, ty_Int) 47.49/23.24 new_lt9(x0, x1) 47.49/23.24 new_esEs23(x0, x1, app(ty_Maybe, x2)) 47.49/23.24 new_ltEs20(x0, x1, ty_Char) 47.49/23.24 new_esEs28(x0, x1, ty_Int) 47.49/23.24 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.24 new_compare111(x0, x1, False, x2) 47.49/23.24 new_esEs9(x0, x1, app(ty_Ratio, x2)) 47.49/23.24 new_lt20(x0, x1, ty_Bool) 47.49/23.24 new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 47.49/23.24 new_ltEs18(x0, x1, ty_Ordering) 47.49/23.24 new_lt20(x0, x1, ty_Char) 47.49/23.24 new_compare24(x0, x1, False) 47.49/23.24 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 47.49/23.24 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 47.49/23.24 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.24 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 47.49/23.24 new_esEs24(x0, x1, ty_Float) 47.49/23.24 new_primPlusNat0(Succ(x0), Succ(x1)) 47.49/23.24 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 47.49/23.24 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 47.49/23.24 new_ltEs14(Right(x0), Right(x1), x2, ty_Bool) 47.49/23.24 new_compare12(x0, x1, x2, x3) 47.49/23.24 new_primMulInt(Pos(x0), Neg(x1)) 47.49/23.24 new_primMulInt(Neg(x0), Pos(x1)) 47.49/23.24 new_ltEs4(Just(x0), Just(x1), ty_Double) 47.49/23.24 new_esEs19(x0, x1, ty_Int) 47.49/23.24 new_primMulNat0(Zero, Succ(x0)) 47.49/23.24 new_primCmpNat0(Zero, Zero) 47.49/23.24 new_primEqNat0(Zero, Succ(x0)) 47.49/23.24 new_esEs28(x0, x1, ty_Float) 47.49/23.24 new_ltEs20(x0, x1, ty_Int) 47.49/23.24 47.49/23.24 We have to consider all minimal (P,Q,R)-chains. 47.49/23.24 ---------------------------------------- 47.49/23.24 47.49/23.24 (33) QDPSizeChangeProof (EQUIVALENT) 47.49/23.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. 47.49/23.24 47.49/23.24 From the DPs we obtained the following set of size-change graphs: 47.49/23.24 *new_compare0(:(yvy49000, yvy49001), :(yvy50000, yvy50001), h) -> new_primCompAux(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, h), h) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare0(:(yvy49000, yvy49001), :(yvy50000, yvy50001), h) -> new_compare0(yvy49001, yvy50001, h) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_lt0(yvy49000, yvy50000, cb, cc) -> new_compare20(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, cb, cc), cb, cc) 47.49/23.24 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare23(yvy49000, yvy50000, False, dc, dd) -> new_ltEs3(yvy49000, yvy50000, dc, dd) 47.49/23.24 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_lt2(yvy49000, yvy50000, db) -> new_compare22(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, db), db) 47.49/23.24 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_lt3(yvy49000, yvy50000, dc, dd) -> new_compare23(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, dc, dd), dc, dd) 47.49/23.24 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(:(yvy49000, yvy49001)), Just(:(yvy50000, yvy50001)), False, app(ty_[], h)) -> new_primCompAux(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, h), h) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs(:(yvy49000, yvy49001), :(yvy50000, yvy50001), h) -> new_primCompAux(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, h), h) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, app(ty_Maybe, db)), ce)) -> new_compare22(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, db), db) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), de, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs1(yvy49001, yvy50001, ea, eb, ec) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), de, app(app(ty_@2, dg), dh)) -> new_ltEs0(yvy49001, yvy50001, dg, dh) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), app(ty_Maybe, db), ce) -> new_compare22(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, db), db) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare3(yvy49000, yvy50000, db) -> new_compare22(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, db), db) 47.49/23.24 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), de, app(ty_Maybe, ed)) -> new_ltEs2(yvy49001, yvy50001, ed) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_lt1(yvy49000, yvy50000, cf, cg, da) -> new_compare21(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, cf, cg, da), cf, cg, da) 47.49/23.24 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, eh, app(app(app(ty_@3, hh), baa), bab)) -> new_ltEs1(yvy49002, yvy50002, hh, baa, bab) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, eh, app(app(ty_@2, hf), hg)) -> new_ltEs0(yvy49002, yvy50002, hf, hg) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, eh, app(ty_Maybe, bac)) -> new_ltEs2(yvy49002, yvy50002, bac) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs2(Just(yvy49000), Just(yvy50000), app(ty_Maybe, bbd)) -> new_ltEs2(yvy49000, yvy50000, bbd) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_lt(yvy49000, yvy50000, cd) -> new_compare0(yvy49000, yvy50000, cd) 47.49/23.24 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs2(Just(yvy49000), Just(yvy50000), app(app(app(ty_@3, bba), bbb), bbc)) -> new_ltEs1(yvy49000, yvy50000, bba, bbb, bbc) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare21(yvy49000, yvy50000, False, cf, cg, da) -> new_ltEs1(yvy49000, yvy50000, cf, cg, da) 47.49/23.24 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs2(Just(yvy49000), Just(yvy50000), app(app(ty_@2, bag), bah)) -> new_ltEs0(yvy49000, yvy50000, bag, bah) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare20(yvy49000, yvy50000, False, cb, cc) -> new_ltEs0(yvy49000, yvy50000, cb, cc) 47.49/23.24 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), de, app(ty_[], df)) -> new_ltEs(yvy49001, yvy50001, df) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, eh, app(ty_[], he)) -> new_ltEs(yvy49002, yvy50002, he) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs2(Just(yvy49000), Just(yvy50000), app(ty_[], baf)) -> new_ltEs(yvy49000, yvy50000, baf) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs2(Just(yvy49000), Just(yvy50000), app(app(ty_Either, bbe), bbf)) -> new_ltEs3(yvy49000, yvy50000, bbe, bbf) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs(:(yvy49000, yvy49001), :(yvy50000, yvy50001), h) -> new_compare0(yvy49001, yvy50001, h) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_primCompAux(yvy49000, yvy50000, yvy221, app(app(app(ty_@3, bd), be), bf)) -> new_compare2(yvy49000, yvy50000, bd, be, bf) 47.49/23.24 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, app(app(ty_Either, dc), dd)), ce)) -> new_compare23(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, dc, dd), dc, dd) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), app(app(ty_Either, dc), dd), ce) -> new_compare23(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, dc, dd), dc, dd) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare4(yvy49000, yvy50000, dc, dd) -> new_compare23(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, dc, dd), dc, dd) 47.49/23.24 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), de, app(app(ty_Either, ee), ef)) -> new_ltEs3(yvy49001, yvy50001, ee, ef) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, eh, app(app(ty_Either, bad), bae)) -> new_ltEs3(yvy49002, yvy50002, bad, bae) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_primCompAux(yvy49000, yvy50000, yvy221, app(app(ty_Either, bh), ca)) -> new_compare4(yvy49000, yvy50000, bh, ca) 47.49/23.24 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), app(ty_[], cd), ce) -> new_compare0(yvy49000, yvy50000, cd) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_primCompAux(yvy49000, yvy50000, yvy221, app(ty_[], ba)) -> new_compare0(yvy49000, yvy50000, ba) 47.49/23.24 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, app(app(ty_@2, cb), cc)), ce)) -> new_compare20(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, cb, cc), cb, cc) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), app(app(ty_@2, cb), cc), ce) -> new_compare20(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, cb, cc), cb, cc) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), app(app(app(ty_@3, cf), cg), da), ce) -> new_compare21(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, cf, cg, da), cf, cg, da) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5, 3 > 6 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare1(yvy49000, yvy50000, cb, cc) -> new_compare20(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, cb, cc), cb, cc) 47.49/23.24 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare2(yvy49000, yvy50000, cf, cg, da) -> new_compare21(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, cf, cg, da), cf, cg, da) 47.49/23.24 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, app(app(app(ty_@3, cf), cg), da)), ce)) -> new_compare21(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, cf, cg, da), cf, cg, da) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 47.49/23.24 47.49/23.24 47.49/23.24 *new_primCompAux(yvy49000, yvy50000, yvy221, app(ty_Maybe, bg)) -> new_compare3(yvy49000, yvy50000, bg) 47.49/23.24 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_primCompAux(yvy49000, yvy50000, yvy221, app(app(ty_@2, bb), bc)) -> new_compare1(yvy49000, yvy50000, bb, bc) 47.49/23.24 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs3(Right(yvy49000), Right(yvy50000), bda, app(app(app(ty_@3, bde), bdf), bdg)) -> new_ltEs1(yvy49000, yvy50000, bde, bdf, bdg) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs3(Left(yvy49000), Left(yvy50000), app(app(app(ty_@3, bcc), bcd), bce), bbh) -> new_ltEs1(yvy49000, yvy50000, bcc, bcd, bce) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(Right(yvy49000)), Just(Right(yvy50000)), False, app(app(ty_Either, bda), app(app(app(ty_@3, bde), bdf), bdg))) -> new_ltEs1(yvy49000, yvy50000, bde, bdf, bdg) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(Just(yvy49000)), Just(Just(yvy50000)), False, app(ty_Maybe, app(app(app(ty_@3, bba), bbb), bbc))) -> new_ltEs1(yvy49000, yvy50000, bba, bbb, bbc) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(Left(yvy49000)), Just(Left(yvy50000)), False, app(app(ty_Either, app(app(app(ty_@3, bcc), bcd), bce)), bbh)) -> new_ltEs1(yvy49000, yvy50000, bcc, bcd, bce) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, de), app(app(app(ty_@3, ea), eb), ec))) -> new_ltEs1(yvy49001, yvy50001, ea, eb, ec) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), eh), app(app(app(ty_@3, hh), baa), bab))) -> new_ltEs1(yvy49002, yvy50002, hh, baa, bab) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs3(Left(yvy49000), Left(yvy50000), app(app(ty_@2, bca), bcb), bbh) -> new_ltEs0(yvy49000, yvy50000, bca, bcb) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs3(Right(yvy49000), Right(yvy50000), bda, app(app(ty_@2, bdc), bdd)) -> new_ltEs0(yvy49000, yvy50000, bdc, bdd) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, de), app(app(ty_@2, dg), dh))) -> new_ltEs0(yvy49001, yvy50001, dg, dh) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(Just(yvy49000)), Just(Just(yvy50000)), False, app(ty_Maybe, app(app(ty_@2, bag), bah))) -> new_ltEs0(yvy49000, yvy50000, bag, bah) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(Left(yvy49000)), Just(Left(yvy50000)), False, app(app(ty_Either, app(app(ty_@2, bca), bcb)), bbh)) -> new_ltEs0(yvy49000, yvy50000, bca, bcb) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(Right(yvy49000)), Just(Right(yvy50000)), False, app(app(ty_Either, bda), app(app(ty_@2, bdc), bdd))) -> new_ltEs0(yvy49000, yvy50000, bdc, bdd) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), eh), app(app(ty_@2, hf), hg))) -> new_ltEs0(yvy49002, yvy50002, hf, hg) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs3(Left(yvy49000), Left(yvy50000), app(ty_Maybe, bcf), bbh) -> new_ltEs2(yvy49000, yvy50000, bcf) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs3(Right(yvy49000), Right(yvy50000), bda, app(ty_Maybe, bdh)) -> new_ltEs2(yvy49000, yvy50000, bdh) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs3(Right(yvy49000), Right(yvy50000), bda, app(ty_[], bdb)) -> new_ltEs(yvy49000, yvy50000, bdb) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs3(Left(yvy49000), Left(yvy50000), app(ty_[], bbg), bbh) -> new_ltEs(yvy49000, yvy50000, bbg) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs3(Left(yvy49000), Left(yvy50000), app(app(ty_Either, bcg), bch), bbh) -> new_ltEs3(yvy49000, yvy50000, bcg, bch) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs3(Right(yvy49000), Right(yvy50000), bda, app(app(ty_Either, bea), beb)) -> new_ltEs3(yvy49000, yvy50000, bea, beb) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), app(ty_Maybe, hb)), fa)) -> new_lt2(yvy49001, yvy50001, hb) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, app(ty_Maybe, fh)), eh), fa)) -> new_lt2(yvy49000, yvy50000, fh) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, de), app(ty_Maybe, ed))) -> new_ltEs2(yvy49001, yvy50001, ed) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(Right(yvy49000)), Just(Right(yvy50000)), False, app(app(ty_Either, bda), app(ty_Maybe, bdh))) -> new_ltEs2(yvy49000, yvy50000, bdh) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(Left(yvy49000)), Just(Left(yvy50000)), False, app(app(ty_Either, app(ty_Maybe, bcf)), bbh)) -> new_ltEs2(yvy49000, yvy50000, bcf) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(Just(yvy49000)), Just(Just(yvy50000)), False, app(ty_Maybe, app(ty_Maybe, bbd))) -> new_ltEs2(yvy49000, yvy50000, bbd) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), eh), app(ty_Maybe, bac))) -> new_ltEs2(yvy49002, yvy50002, bac) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), eh), app(ty_[], he))) -> new_ltEs(yvy49002, yvy50002, he) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(Just(yvy49000)), Just(Just(yvy50000)), False, app(ty_Maybe, app(ty_[], baf))) -> new_ltEs(yvy49000, yvy50000, baf) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, de), app(ty_[], df))) -> new_ltEs(yvy49001, yvy50001, df) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(Left(yvy49000)), Just(Left(yvy50000)), False, app(app(ty_Either, app(ty_[], bbg)), bbh)) -> new_ltEs(yvy49000, yvy50000, bbg) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(Right(yvy49000)), Just(Right(yvy50000)), False, app(app(ty_Either, bda), app(ty_[], bdb))) -> new_ltEs(yvy49000, yvy50000, bdb) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, app(app(app(ty_@3, fd), ff), fg)), eh), fa)) -> new_lt1(yvy49000, yvy50000, fd, ff, fg) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), app(app(app(ty_@3, gg), gh), ha)), fa)) -> new_lt1(yvy49001, yvy50001, gg, gh, ha) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), eh), app(app(ty_Either, bad), bae))) -> new_ltEs3(yvy49002, yvy50002, bad, bae) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(Right(yvy49000)), Just(Right(yvy50000)), False, app(app(ty_Either, bda), app(app(ty_Either, bea), beb))) -> new_ltEs3(yvy49000, yvy50000, bea, beb) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(Just(yvy49000)), Just(Just(yvy50000)), False, app(ty_Maybe, app(app(ty_Either, bbe), bbf))) -> new_ltEs3(yvy49000, yvy50000, bbe, bbf) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, de), app(app(ty_Either, ee), ef))) -> new_ltEs3(yvy49001, yvy50001, ee, ef) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(Left(yvy49000)), Just(Left(yvy50000)), False, app(app(ty_Either, app(app(ty_Either, bcg), bch)), bbh)) -> new_ltEs3(yvy49000, yvy50000, bcg, bch) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(:(yvy49000, yvy49001)), Just(:(yvy50000, yvy50001)), False, app(ty_[], h)) -> new_compare0(yvy49001, yvy50001, h) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, app(ty_[], cd)), ce)) -> new_compare0(yvy49000, yvy50000, cd) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, app(app(ty_@2, fb), fc)), eh), fa)) -> new_lt0(yvy49000, yvy50000, fb, fc) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), app(app(ty_@2, ge), gf)), fa)) -> new_lt0(yvy49001, yvy50001, ge, gf) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), app(ty_[], gd)), fa)) -> new_lt(yvy49001, yvy50001, gd) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, app(ty_[], eg)), eh), fa)) -> new_lt(yvy49000, yvy50000, eg) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), app(app(ty_Either, hc), hd)), fa)) -> new_lt3(yvy49001, yvy50001, hc, hd) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, app(app(ty_Either, ga), gb)), eh), fa)) -> new_lt3(yvy49000, yvy50000, ga, gb) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, app(ty_Maybe, hb), fa) -> new_lt2(yvy49001, yvy50001, hb) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), app(ty_Maybe, fh), eh, fa) -> new_lt2(yvy49000, yvy50000, fh) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, app(app(app(ty_@3, gg), gh), ha), fa) -> new_lt1(yvy49001, yvy50001, gg, gh, ha) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), app(app(app(ty_@3, fd), ff), fg), eh, fa) -> new_lt1(yvy49000, yvy50000, fd, ff, fg) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, app(app(ty_@2, ge), gf), fa) -> new_lt0(yvy49001, yvy50001, ge, gf) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), app(app(ty_@2, fb), fc), eh, fa) -> new_lt0(yvy49000, yvy50000, fb, fc) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, app(ty_[], gd), fa) -> new_lt(yvy49001, yvy50001, gd) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), app(ty_[], eg), eh, fa) -> new_lt(yvy49000, yvy50000, eg) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, app(app(ty_Either, hc), hd), fa) -> new_lt3(yvy49001, yvy50001, hc, hd) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), app(app(ty_Either, ga), gb), eh, fa) -> new_lt3(yvy49000, yvy50000, ga, gb) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 47.49/23.24 47.49/23.24 47.49/23.24 ---------------------------------------- 47.49/23.24 47.49/23.24 (34) 47.49/23.24 YES 47.49/23.24 47.49/23.24 ---------------------------------------- 47.49/23.24 47.49/23.24 (35) 47.49/23.24 Obligation: 47.49/23.24 Q DP problem: 47.49/23.24 The TRS P consists of the following rules: 47.49/23.24 47.49/23.24 new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(ty_@2, eb), ec), ba, cf) -> new_esEs1(yvy4000, yvy3000, eb, ec) 47.49/23.24 new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ga, app(app(app(ty_@3, gb), gc), gd)) -> new_esEs(yvy4001, yvy3001, gb, gc, gd) 47.49/23.24 new_esEs3(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(ty_Either, bdh), bea)) -> new_esEs2(yvy4000, yvy3000, bdh, bea) 47.49/23.24 new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, ba, app(app(app(ty_@3, bb), bc), bd)) -> new_esEs(yvy4002, yvy3002, bb, bc, bd) 47.49/23.24 new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, ba, app(app(ty_@2, bf), bg)) -> new_esEs1(yvy4002, yvy3002, bf, bg) 47.49/23.24 new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, ba, app(ty_[], cb)) -> new_esEs3(yvy4002, yvy3002, cb) 47.49/23.24 new_esEs2(Right(yvy4000), Right(yvy3000), bbg, app(app(ty_Either, bcf), bcg)) -> new_esEs2(yvy4000, yvy3000, bcf, bcg) 47.49/23.24 new_esEs2(Right(yvy4000), Right(yvy3000), bbg, app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs(yvy4000, yvy3000, bbh, bca, bcb) 47.49/23.24 new_esEs0(Just(yvy4000), Just(yvy3000), app(app(ty_Either, ff), fg)) -> new_esEs2(yvy4000, yvy3000, ff, fg) 47.49/23.24 new_esEs3(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(ty_[], beb)) -> new_esEs3(yvy4000, yvy3000, beb) 47.49/23.24 new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, app(ty_[], de), cf) -> new_esEs3(yvy4001, yvy3001, de) 47.49/23.24 new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(ty_Either, bab), bac), hf) -> new_esEs2(yvy4000, yvy3000, bab, bac) 47.49/23.24 new_esEs2(Left(yvy4000), Left(yvy3000), app(ty_Maybe, bba), bah) -> new_esEs0(yvy4000, yvy3000, bba) 47.49/23.24 new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(ty_Maybe, ea), ba, cf) -> new_esEs0(yvy4000, yvy3000, ea) 47.49/23.24 new_esEs0(Just(yvy4000), Just(yvy3000), app(ty_[], fh)) -> new_esEs3(yvy4000, yvy3000, fh) 47.49/23.24 new_esEs2(Right(yvy4000), Right(yvy3000), bbg, app(ty_[], bch)) -> new_esEs3(yvy4000, yvy3000, bch) 47.49/23.24 new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(ty_[], ef), ba, cf) -> new_esEs3(yvy4000, yvy3000, ef) 47.49/23.24 new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, app(ty_Maybe, cg), cf) -> new_esEs0(yvy4001, yvy3001, cg) 47.49/23.24 new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(ty_[], bad), hf) -> new_esEs3(yvy4000, yvy3000, bad) 47.49/23.24 new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, app(app(app(ty_@3, cc), cd), ce), cf) -> new_esEs(yvy4001, yvy3001, cc, cd, ce) 47.49/23.24 new_esEs0(Just(yvy4000), Just(yvy3000), app(app(ty_@2, fc), fd)) -> new_esEs1(yvy4000, yvy3000, fc, fd) 47.49/23.24 new_esEs3(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(ty_@2, bdf), bdg)) -> new_esEs1(yvy4000, yvy3000, bdf, bdg) 47.49/23.24 new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, ba, app(ty_Maybe, be)) -> new_esEs0(yvy4002, yvy3002, be) 47.49/23.24 new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ga, app(ty_[], hb)) -> new_esEs3(yvy4001, yvy3001, hb) 47.49/23.24 new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, ba, app(app(ty_Either, bh), ca)) -> new_esEs2(yvy4002, yvy3002, bh, ca) 47.49/23.24 new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, app(app(ty_@2, da), db), cf) -> new_esEs1(yvy4001, yvy3001, da, db) 47.49/23.24 new_esEs2(Left(yvy4000), Left(yvy3000), app(app(ty_Either, bbd), bbe), bah) -> new_esEs2(yvy4000, yvy3000, bbd, bbe) 47.49/23.24 new_esEs3(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bda) -> new_esEs3(yvy4001, yvy3001, bda) 47.49/23.24 new_esEs2(Left(yvy4000), Left(yvy3000), app(ty_[], bbf), bah) -> new_esEs3(yvy4000, yvy3000, bbf) 47.49/23.24 new_esEs3(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs(yvy4000, yvy3000, bdb, bdc, bdd) 47.49/23.24 new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, app(app(ty_Either, dc), dd), cf) -> new_esEs2(yvy4001, yvy3001, dc, dd) 47.49/23.24 new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(app(ty_@3, df), dg), dh), ba, cf) -> new_esEs(yvy4000, yvy3000, df, dg, dh) 47.49/23.24 new_esEs3(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(ty_Maybe, bde)) -> new_esEs0(yvy4000, yvy3000, bde) 47.49/23.24 new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(app(ty_@3, hc), hd), he), hf) -> new_esEs(yvy4000, yvy3000, hc, hd, he) 47.49/23.24 new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(ty_@2, hh), baa), hf) -> new_esEs1(yvy4000, yvy3000, hh, baa) 47.49/23.24 new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ga, app(app(ty_Either, gh), ha)) -> new_esEs2(yvy4001, yvy3001, gh, ha) 47.49/23.24 new_esEs2(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, bae), baf), bag), bah) -> new_esEs(yvy4000, yvy3000, bae, baf, bag) 47.49/23.24 new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ga, app(ty_Maybe, ge)) -> new_esEs0(yvy4001, yvy3001, ge) 47.49/23.24 new_esEs2(Right(yvy4000), Right(yvy3000), bbg, app(app(ty_@2, bcd), bce)) -> new_esEs1(yvy4000, yvy3000, bcd, bce) 47.49/23.24 new_esEs0(Just(yvy4000), Just(yvy3000), app(ty_Maybe, fb)) -> new_esEs0(yvy4000, yvy3000, fb) 47.49/23.24 new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(ty_Maybe, hg), hf) -> new_esEs0(yvy4000, yvy3000, hg) 47.49/23.24 new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(ty_Either, ed), ee), ba, cf) -> new_esEs2(yvy4000, yvy3000, ed, ee) 47.49/23.24 new_esEs2(Right(yvy4000), Right(yvy3000), bbg, app(ty_Maybe, bcc)) -> new_esEs0(yvy4000, yvy3000, bcc) 47.49/23.24 new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ga, app(app(ty_@2, gf), gg)) -> new_esEs1(yvy4001, yvy3001, gf, gg) 47.49/23.24 new_esEs2(Left(yvy4000), Left(yvy3000), app(app(ty_@2, bbb), bbc), bah) -> new_esEs1(yvy4000, yvy3000, bbb, bbc) 47.49/23.24 new_esEs0(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, eg), eh), fa)) -> new_esEs(yvy4000, yvy3000, eg, eh, fa) 47.49/23.24 47.49/23.24 R is empty. 47.49/23.24 Q is empty. 47.49/23.24 We have to consider all minimal (P,Q,R)-chains. 47.49/23.24 ---------------------------------------- 47.49/23.24 47.49/23.24 (36) QDPSizeChangeProof (EQUIVALENT) 47.49/23.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. 47.49/23.24 47.49/23.24 From the DPs we obtained the following set of size-change graphs: 47.49/23.24 *new_esEs3(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs(yvy4000, yvy3000, bdb, bdc, bdd) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 47.49/23.24 47.49/23.24 47.49/23.24 *new_esEs0(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, eg), eh), fa)) -> new_esEs(yvy4000, yvy3000, eg, eh, fa) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 47.49/23.24 47.49/23.24 47.49/23.24 *new_esEs3(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(ty_@2, bdf), bdg)) -> new_esEs1(yvy4000, yvy3000, bdf, bdg) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_esEs0(Just(yvy4000), Just(yvy3000), app(app(ty_@2, fc), fd)) -> new_esEs1(yvy4000, yvy3000, fc, fd) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_esEs0(Just(yvy4000), Just(yvy3000), app(ty_[], fh)) -> new_esEs3(yvy4000, yvy3000, fh) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_esEs3(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(ty_Either, bdh), bea)) -> new_esEs2(yvy4000, yvy3000, bdh, bea) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_esEs3(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(ty_Maybe, bde)) -> new_esEs0(yvy4000, yvy3000, bde) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_esEs0(Just(yvy4000), Just(yvy3000), app(app(ty_Either, ff), fg)) -> new_esEs2(yvy4000, yvy3000, ff, fg) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_esEs0(Just(yvy4000), Just(yvy3000), app(ty_Maybe, fb)) -> new_esEs0(yvy4000, yvy3000, fb) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ga, app(app(app(ty_@3, gb), gc), gd)) -> new_esEs(yvy4001, yvy3001, gb, gc, gd) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 47.49/23.24 47.49/23.24 47.49/23.24 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(app(ty_@3, hc), hd), he), hf) -> new_esEs(yvy4000, yvy3000, hc, hd, he) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 47.49/23.24 47.49/23.24 47.49/23.24 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(ty_@2, hh), baa), hf) -> new_esEs1(yvy4000, yvy3000, hh, baa) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ga, app(app(ty_@2, gf), gg)) -> new_esEs1(yvy4001, yvy3001, gf, gg) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(ty_[], bad), hf) -> new_esEs3(yvy4000, yvy3000, bad) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ga, app(ty_[], hb)) -> new_esEs3(yvy4001, yvy3001, hb) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(ty_Either, bab), bac), hf) -> new_esEs2(yvy4000, yvy3000, bab, bac) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ga, app(app(ty_Either, gh), ha)) -> new_esEs2(yvy4001, yvy3001, gh, ha) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 47.49/23.24 47.49/23.24 47.49/23.24 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ga, app(ty_Maybe, ge)) -> new_esEs0(yvy4001, yvy3001, ge) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(ty_Maybe, hg), hf) -> new_esEs0(yvy4000, yvy3000, hg) 47.49/23.24 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 47.49/23.24 47.49/23.24 47.49/23.24 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, ba, app(app(app(ty_@3, bb), bc), bd)) -> new_esEs(yvy4002, yvy3002, bb, bc, bd) 47.49/23.25 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 47.49/23.25 47.49/23.25 47.49/23.25 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, app(app(app(ty_@3, cc), cd), ce), cf) -> new_esEs(yvy4001, yvy3001, cc, cd, ce) 47.49/23.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 47.49/23.25 47.49/23.25 47.49/23.25 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(app(ty_@3, df), dg), dh), ba, cf) -> new_esEs(yvy4000, yvy3000, df, dg, dh) 47.49/23.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 47.49/23.25 47.49/23.25 47.49/23.25 *new_esEs2(Right(yvy4000), Right(yvy3000), bbg, app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs(yvy4000, yvy3000, bbh, bca, bcb) 47.49/23.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 47.49/23.25 47.49/23.25 47.49/23.25 *new_esEs2(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, bae), baf), bag), bah) -> new_esEs(yvy4000, yvy3000, bae, baf, bag) 47.49/23.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 47.49/23.25 47.49/23.25 47.49/23.25 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(ty_@2, eb), ec), ba, cf) -> new_esEs1(yvy4000, yvy3000, eb, ec) 47.49/23.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 47.49/23.25 47.49/23.25 47.49/23.25 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, ba, app(app(ty_@2, bf), bg)) -> new_esEs1(yvy4002, yvy3002, bf, bg) 47.49/23.25 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 47.49/23.25 47.49/23.25 47.49/23.25 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, app(app(ty_@2, da), db), cf) -> new_esEs1(yvy4001, yvy3001, da, db) 47.49/23.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 47.49/23.25 47.49/23.25 47.49/23.25 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, ba, app(ty_[], cb)) -> new_esEs3(yvy4002, yvy3002, cb) 47.49/23.25 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 47.49/23.25 47.49/23.25 47.49/23.25 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, app(ty_[], de), cf) -> new_esEs3(yvy4001, yvy3001, de) 47.49/23.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 47.49/23.25 47.49/23.25 47.49/23.25 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(ty_[], ef), ba, cf) -> new_esEs3(yvy4000, yvy3000, ef) 47.49/23.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 47.49/23.25 47.49/23.25 47.49/23.25 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, ba, app(app(ty_Either, bh), ca)) -> new_esEs2(yvy4002, yvy3002, bh, ca) 47.49/23.25 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 47.49/23.25 47.49/23.25 47.49/23.25 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, app(app(ty_Either, dc), dd), cf) -> new_esEs2(yvy4001, yvy3001, dc, dd) 47.49/23.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 47.49/23.25 47.49/23.25 47.49/23.25 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(ty_Either, ed), ee), ba, cf) -> new_esEs2(yvy4000, yvy3000, ed, ee) 47.49/23.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 47.49/23.25 47.49/23.25 47.49/23.25 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(ty_Maybe, ea), ba, cf) -> new_esEs0(yvy4000, yvy3000, ea) 47.49/23.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 47.49/23.25 47.49/23.25 47.49/23.25 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, app(ty_Maybe, cg), cf) -> new_esEs0(yvy4001, yvy3001, cg) 47.49/23.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 47.49/23.25 47.49/23.25 47.49/23.25 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, ba, app(ty_Maybe, be)) -> new_esEs0(yvy4002, yvy3002, be) 47.49/23.25 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 47.49/23.25 47.49/23.25 47.49/23.25 *new_esEs2(Right(yvy4000), Right(yvy3000), bbg, app(app(ty_@2, bcd), bce)) -> new_esEs1(yvy4000, yvy3000, bcd, bce) 47.49/23.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 47.49/23.25 47.49/23.25 47.49/23.25 *new_esEs2(Left(yvy4000), Left(yvy3000), app(app(ty_@2, bbb), bbc), bah) -> new_esEs1(yvy4000, yvy3000, bbb, bbc) 47.49/23.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 47.49/23.25 47.49/23.25 47.49/23.25 *new_esEs2(Right(yvy4000), Right(yvy3000), bbg, app(ty_[], bch)) -> new_esEs3(yvy4000, yvy3000, bch) 47.49/23.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 47.49/23.25 47.49/23.25 47.49/23.25 *new_esEs2(Left(yvy4000), Left(yvy3000), app(ty_[], bbf), bah) -> new_esEs3(yvy4000, yvy3000, bbf) 47.49/23.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 47.49/23.25 47.49/23.25 47.49/23.25 *new_esEs2(Right(yvy4000), Right(yvy3000), bbg, app(app(ty_Either, bcf), bcg)) -> new_esEs2(yvy4000, yvy3000, bcf, bcg) 47.49/23.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 47.49/23.25 47.49/23.25 47.49/23.25 *new_esEs2(Left(yvy4000), Left(yvy3000), app(app(ty_Either, bbd), bbe), bah) -> new_esEs2(yvy4000, yvy3000, bbd, bbe) 47.49/23.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 47.49/23.25 47.49/23.25 47.49/23.25 *new_esEs2(Left(yvy4000), Left(yvy3000), app(ty_Maybe, bba), bah) -> new_esEs0(yvy4000, yvy3000, bba) 47.49/23.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 47.49/23.25 47.49/23.25 47.49/23.25 *new_esEs2(Right(yvy4000), Right(yvy3000), bbg, app(ty_Maybe, bcc)) -> new_esEs0(yvy4000, yvy3000, bcc) 47.49/23.25 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 47.49/23.25 47.49/23.25 47.49/23.25 *new_esEs3(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(ty_[], beb)) -> new_esEs3(yvy4000, yvy3000, beb) 47.49/23.25 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 47.49/23.25 47.49/23.25 47.49/23.25 *new_esEs3(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bda) -> new_esEs3(yvy4001, yvy3001, bda) 47.49/23.25 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 47.49/23.25 47.49/23.25 47.49/23.25 ---------------------------------------- 47.49/23.25 47.49/23.25 (37) 47.49/23.25 YES 47.49/23.25 47.49/23.25 ---------------------------------------- 47.49/23.25 47.49/23.25 (38) 47.49/23.25 Obligation: 47.49/23.25 Q DP problem: 47.49/23.25 The TRS P consists of the following rules: 47.49/23.25 47.49/23.25 new_addToFM_C21(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba) -> new_addToFM_C11(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt1(yvy400, h), h, ba) 47.49/23.25 new_addToFM_C20(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, False, h, ba) -> new_addToFM_C10(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, new_gt0(yvy500, h), h, ba) 47.49/23.25 new_addToFM_C(Branch(Just(yvy500), yvy51, yvy52, yvy53, yvy54), Nothing, yvy41, h, ba) -> new_addToFM_C20(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, new_esEs12(new_compare25(Nothing, Just(yvy500), False, h), LT), h, ba) 47.49/23.25 new_addToFM_C(Branch(Nothing, yvy51, yvy52, yvy53, yvy54), Nothing, yvy41, h, ba) -> new_addToFM_C2(yvy51, yvy52, yvy53, yvy54, yvy41, new_esEs12(new_compare25(Nothing, Nothing, True, h), LT), h, ba) 47.49/23.25 new_addToFM_C22(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba) -> new_addToFM_C(yvy53, Just(yvy400), yvy41, h, ba) 47.49/23.25 new_addToFM_C2(yvy51, yvy52, yvy53, yvy54, yvy41, True, h, ba) -> new_addToFM_C(yvy53, Nothing, yvy41, h, ba) 47.49/23.25 new_addToFM_C20(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, True, h, ba) -> new_addToFM_C(yvy53, Nothing, yvy41, h, ba) 47.49/23.25 new_addToFM_C11(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba) -> new_addToFM_C(yvy54, Just(yvy400), yvy41, h, ba) 47.49/23.25 new_addToFM_C(Branch(Nothing, yvy51, yvy52, yvy53, yvy54), Just(yvy400), yvy41, h, ba) -> new_addToFM_C21(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs12(new_compare25(Just(yvy400), Nothing, False, h), LT), h, ba) 47.49/23.25 new_addToFM_C12(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba) -> new_addToFM_C(yvy54, Just(yvy400), yvy41, h, ba) 47.49/23.25 new_addToFM_C2(yvy51, yvy52, yvy53, yvy54, yvy41, False, h, ba) -> new_addToFM_C1(yvy51, yvy52, yvy53, yvy54, yvy41, new_gt(h), h, ba) 47.49/23.25 new_addToFM_C21(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba) -> new_addToFM_C(yvy53, Just(yvy400), yvy41, h, ba) 47.49/23.25 new_addToFM_C22(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba) -> new_addToFM_C12(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt2(yvy400, yvy500, h), h, ba) 47.49/23.25 new_addToFM_C1(yvy51, yvy52, yvy53, yvy54, yvy41, True, h, ba) -> new_addToFM_C(yvy54, Nothing, yvy41, h, ba) 47.49/23.25 new_addToFM_C(Branch(Just(yvy500), yvy51, yvy52, yvy53, yvy54), Just(yvy400), yvy41, h, ba) -> new_addToFM_C22(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs12(new_compare25(Just(yvy400), Just(yvy500), new_esEs29(yvy400, yvy500, h), h), LT), h, ba) 47.49/23.25 new_addToFM_C10(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, True, h, ba) -> new_addToFM_C(yvy54, Nothing, yvy41, h, ba) 47.49/23.25 47.49/23.25 The TRS R consists of the following rules: 47.49/23.25 47.49/23.25 new_esEs22(yvy4002, yvy3002, app(ty_[], cac)) -> new_esEs8(yvy4002, yvy3002, cac) 47.49/23.25 new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) 47.49/23.25 new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT 47.49/23.25 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 47.49/23.25 new_primPlusNat0(Zero, Zero) -> Zero 47.49/23.25 new_compare13(yvy49000, yvy50000, bca, bcb, bcc) -> new_compare28(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, bca, bcb, bcc), bca, bcb, bcc) 47.49/23.25 new_esEs23(yvy4001, yvy3001, app(ty_Maybe, cag)) -> new_esEs6(yvy4001, yvy3001, cag) 47.49/23.25 new_pePe(True, yvy220) -> True 47.49/23.25 new_ltEs20(yvy49002, yvy50002, ty_Ordering) -> new_ltEs15(yvy49002, yvy50002) 47.49/23.25 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.25 new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) 47.49/23.25 new_compare26(yvy49000, yvy50000, False, bbg, bbh) -> new_compare114(yvy49000, yvy50000, new_ltEs14(yvy49000, yvy50000, bbg, bbh), bbg, bbh) 47.49/23.25 new_lt20(yvy49001, yvy50001, ty_Ordering) -> new_lt17(yvy49001, yvy50001) 47.49/23.25 new_esEs30(yvy20, yvy15, app(app(ty_@2, ddd), dde)) -> new_esEs4(yvy20, yvy15, ddd, dde) 47.49/23.25 new_compare(:(yvy49000, yvy49001), [], be) -> GT 47.49/23.25 new_ltEs20(yvy49002, yvy50002, app(app(ty_@2, dbf), dbg)) -> new_ltEs11(yvy49002, yvy50002, dbf, dbg) 47.49/23.25 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 47.49/23.25 new_ltEs14(Right(yvy49000), Left(yvy50000), hc, fh) -> False 47.49/23.25 new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Ratio, hb), fh) -> new_ltEs17(yvy49000, yvy50000, hb) 47.49/23.25 new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT 47.49/23.25 new_esEs29(yvy400, yvy500, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs5(yvy400, yvy500, bgg, bgh, bha) 47.49/23.25 new_lt20(yvy49001, yvy50001, app(ty_Ratio, dbd)) -> new_lt18(yvy49001, yvy50001, dbd) 47.49/23.25 new_compare(:(yvy49000, yvy49001), :(yvy50000, yvy50001), be) -> new_primCompAux0(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, be), be) 47.49/23.25 new_compare26(yvy49000, yvy50000, True, bbg, bbh) -> EQ 47.49/23.25 new_esEs8(:(yvy4000, yvy4001), :(yvy3000, yvy3001), ed) -> new_asAs(new_esEs9(yvy4000, yvy3000, ed), new_esEs8(yvy4001, yvy3001, ed)) 47.49/23.25 new_compare27(yvy49000, yvy50000, False, bc, bd) -> new_compare10(yvy49000, yvy50000, new_ltEs11(yvy49000, yvy50000, bc, bd), bc, bd) 47.49/23.25 new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) 47.49/23.25 new_esEs30(yvy20, yvy15, ty_Float) -> new_esEs13(yvy20, yvy15) 47.49/23.25 new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.25 new_ltEs4(Nothing, Nothing, da) -> True 47.49/23.25 new_ltEs4(Just(yvy49000), Nothing, da) -> False 47.49/23.25 new_lt8(yvy49000, yvy50000, app(app(ty_@2, bc), bd)) -> new_lt4(yvy49000, yvy50000, bc, bd) 47.49/23.25 new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat1(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) 47.49/23.25 new_compare113(yvy49000, yvy50000, False) -> GT 47.49/23.25 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Int) -> new_ltEs7(yvy49000, yvy50000) 47.49/23.25 new_ltEs15(EQ, LT) -> False 47.49/23.25 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.25 new_esEs28(yvy49000, yvy50000, app(app(ty_Either, chh), daa)) -> new_esEs7(yvy49000, yvy50000, chh, daa) 47.49/23.25 new_lt19(yvy49000, yvy50000, app(app(ty_@2, chb), chc)) -> new_lt4(yvy49000, yvy50000, chb, chc) 47.49/23.25 new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.25 new_ltEs20(yvy49002, yvy50002, app(app(ty_Either, dcd), dce)) -> new_ltEs14(yvy49002, yvy50002, dcd, dce) 47.49/23.25 new_esEs28(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) 47.49/23.25 new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Maybe, dh)) -> new_ltEs4(yvy49000, yvy50000, dh) 47.49/23.25 new_ltEs19(yvy49001, yvy50001, ty_Ordering) -> new_ltEs15(yvy49001, yvy50001) 47.49/23.25 new_ltEs18(yvy4900, yvy5000, ty_Float) -> new_ltEs5(yvy4900, yvy5000) 47.49/23.25 new_lt9(yvy49000, yvy50000) -> new_esEs12(new_compare6(yvy49000, yvy50000), LT) 47.49/23.25 new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False 47.49/23.25 new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False 47.49/23.25 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, app(ty_Ratio, bae)) -> new_ltEs17(yvy49000, yvy50000, bae) 47.49/23.25 new_ltEs15(GT, LT) -> False 47.49/23.25 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.25 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.25 new_lt19(yvy49000, yvy50000, app(ty_Ratio, dab)) -> new_lt18(yvy49000, yvy50000, dab) 47.49/23.25 new_esEs24(yvy4000, yvy3000, app(ty_Ratio, ccd)) -> new_esEs15(yvy4000, yvy3000, ccd) 47.49/23.25 new_esEs24(yvy4000, yvy3000, app(app(ty_@2, ccb), ccc)) -> new_esEs4(yvy4000, yvy3000, ccb, ccc) 47.49/23.25 new_ltEs13(True, True) -> True 47.49/23.25 new_compare29(yvy49000, yvy50000, False) -> new_compare113(yvy49000, yvy50000, new_ltEs15(yvy49000, yvy50000)) 47.49/23.25 new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) 47.49/23.25 new_esEs29(yvy400, yvy500, ty_Float) -> new_esEs13(yvy400, yvy500) 47.49/23.25 new_lt15(yvy49000, yvy50000, bag) -> new_esEs12(new_compare15(yvy49000, yvy50000, bag), LT) 47.49/23.25 new_ltEs20(yvy49002, yvy50002, ty_Integer) -> new_ltEs10(yvy49002, yvy50002) 47.49/23.25 new_ltEs19(yvy49001, yvy50001, app(app(ty_@2, bch), bda)) -> new_ltEs11(yvy49001, yvy50001, bch, bda) 47.49/23.25 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Bool) -> new_ltEs13(yvy49000, yvy50000) 47.49/23.25 new_not(True) -> False 47.49/23.25 new_esEs28(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) 47.49/23.25 new_esEs28(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) 47.49/23.25 new_ltEs19(yvy49001, yvy50001, app(ty_Ratio, bdh)) -> new_ltEs17(yvy49001, yvy50001, bdh) 47.49/23.25 new_primCompAux00(yvy225, LT) -> LT 47.49/23.25 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.25 new_primCmpNat0(Zero, Zero) -> EQ 47.49/23.25 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Ordering, bed) -> new_esEs12(yvy4000, yvy3000) 47.49/23.25 new_esEs28(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) 47.49/23.25 new_lt20(yvy49001, yvy50001, ty_Bool) -> new_lt14(yvy49001, yvy50001) 47.49/23.25 new_esEs27(yvy49001, yvy50001, ty_Bool) -> new_esEs11(yvy49001, yvy50001) 47.49/23.25 new_ltEs19(yvy49001, yvy50001, ty_Integer) -> new_ltEs10(yvy49001, yvy50001) 47.49/23.25 new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.49/23.25 new_esEs27(yvy49001, yvy50001, app(ty_[], dac)) -> new_esEs8(yvy49001, yvy50001, dac) 47.49/23.25 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.25 new_esEs27(yvy49001, yvy50001, ty_Char) -> new_esEs17(yvy49001, yvy50001) 47.49/23.25 new_esEs30(yvy20, yvy15, app(ty_Ratio, ddf)) -> new_esEs15(yvy20, yvy15, ddf) 47.49/23.25 new_esEs12(LT, LT) -> True 47.49/23.25 new_esEs21(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) 47.49/23.25 new_primEqNat0(Succ(yvy40000), Zero) -> False 47.49/23.25 new_primEqNat0(Zero, Succ(yvy30000)) -> False 47.49/23.25 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, app(app(app(ty_@3, hg), hh), baa)) -> new_ltEs12(yvy49000, yvy50000, hg, hh, baa) 47.49/23.25 new_esEs14(@0, @0) -> True 47.49/23.25 new_compare8(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) 47.49/23.25 new_ltEs19(yvy49001, yvy50001, ty_Char) -> new_ltEs6(yvy49001, yvy50001) 47.49/23.25 new_compare10(yvy49000, yvy50000, True, bc, bd) -> LT 47.49/23.25 new_ltEs15(GT, EQ) -> False 47.49/23.25 new_lt20(yvy49001, yvy50001, app(app(app(ty_@3, daf), dag), dah)) -> new_lt13(yvy49001, yvy50001, daf, dag, dah) 47.49/23.25 new_primCompAux00(yvy225, GT) -> GT 47.49/23.25 new_compare110(yvy49000, yvy50000, True) -> LT 47.49/23.25 new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, cee), cef), ceg)) -> new_esEs5(yvy4001, yvy3001, cee, cef, ceg) 47.49/23.25 new_compare16(yvy49000, yvy50000, bbg, bbh) -> new_compare26(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, bbg, bbh), bbg, bbh) 47.49/23.25 new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.25 new_esEs27(yvy49001, yvy50001, ty_Ordering) -> new_esEs12(yvy49001, yvy50001) 47.49/23.25 new_lt19(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) 47.49/23.25 new_ltEs20(yvy49002, yvy50002, ty_Bool) -> new_ltEs13(yvy49002, yvy50002) 47.49/23.25 new_esEs22(yvy4002, yvy3002, ty_Int) -> new_esEs16(yvy4002, yvy3002) 47.49/23.25 new_ltEs18(yvy4900, yvy5000, ty_Double) -> new_ltEs16(yvy4900, yvy5000) 47.49/23.25 new_esEs29(yvy400, yvy500, ty_Double) -> new_esEs18(yvy400, yvy500) 47.49/23.25 new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT 47.49/23.25 new_esEs27(yvy49001, yvy50001, ty_Int) -> new_esEs16(yvy49001, yvy50001) 47.49/23.25 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, app(ty_Ratio, bgc)) -> new_esEs15(yvy4000, yvy3000, bgc) 47.49/23.25 new_esEs22(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) 47.49/23.25 new_compare12(yvy49000, yvy50000, bc, bd) -> new_compare27(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, bc, bd), bc, bd) 47.49/23.25 new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs5(yvy4000, yvy3000, cbf, cbg, cbh) 47.49/23.25 new_lt19(yvy49000, yvy50000, app(app(app(ty_@3, chd), che), chf)) -> new_lt13(yvy49000, yvy50000, chd, che, chf) 47.49/23.25 new_ltEs20(yvy49002, yvy50002, app(app(app(ty_@3, dbh), dca), dcb)) -> new_ltEs12(yvy49002, yvy50002, dbh, dca, dcb) 47.49/23.25 new_esEs30(yvy20, yvy15, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs5(yvy20, yvy15, dch, dda, ddb) 47.49/23.25 new_esEs30(yvy20, yvy15, ty_Double) -> new_esEs18(yvy20, yvy15) 47.49/23.25 new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bgg, bgh, bha) -> new_asAs(new_esEs24(yvy4000, yvy3000, bgg), new_asAs(new_esEs23(yvy4001, yvy3001, bgh), new_esEs22(yvy4002, yvy3002, bha))) 47.49/23.25 new_compare5(yvy49000, yvy50000, ty_Int) -> new_compare8(yvy49000, yvy50000) 47.49/23.25 new_compare32(yvy400, h) -> new_compare25(Just(yvy400), Nothing, False, h) 47.49/23.25 new_ltEs19(yvy49001, yvy50001, ty_Bool) -> new_ltEs13(yvy49001, yvy50001) 47.49/23.25 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs5(yvy4000, yvy3000, bfe, bff, bfg) 47.49/23.25 new_ltEs18(yvy4900, yvy5000, ty_Integer) -> new_ltEs10(yvy4900, yvy5000) 47.49/23.25 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.25 new_esEs26(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.25 new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.25 new_esEs7(Left(yvy4000), Left(yvy3000), ty_@0, bed) -> new_esEs14(yvy4000, yvy3000) 47.49/23.25 new_primCmpNat0(Zero, Succ(yvy5000)) -> LT 47.49/23.25 new_compare5(yvy49000, yvy50000, app(ty_Ratio, cg)) -> new_compare19(yvy49000, yvy50000, cg) 47.49/23.25 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.25 new_esEs26(yvy4000, yvy3000, app(ty_[], cgh)) -> new_esEs8(yvy4000, yvy3000, cgh) 47.49/23.25 new_esEs12(EQ, GT) -> False 47.49/23.25 new_esEs12(GT, EQ) -> False 47.49/23.25 new_lt8(yvy49000, yvy50000, app(ty_Ratio, bcf)) -> new_lt18(yvy49000, yvy50000, bcf) 47.49/23.25 new_ltEs19(yvy49001, yvy50001, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_ltEs12(yvy49001, yvy50001, bdb, bdc, bdd) 47.49/23.25 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) 47.49/23.25 new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.25 new_lt8(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) 47.49/23.25 new_esEs21(yvy49000, yvy50000, app(app(app(ty_@3, bca), bcb), bcc)) -> new_esEs5(yvy49000, yvy50000, bca, bcb, bcc) 47.49/23.25 new_lt19(yvy49000, yvy50000, app(ty_[], cha)) -> new_lt12(yvy49000, yvy50000, cha) 47.49/23.25 new_primCmpNat0(Succ(yvy4900), Zero) -> GT 47.49/23.25 new_pePe(False, yvy220) -> yvy220 47.49/23.25 new_esEs27(yvy49001, yvy50001, ty_@0) -> new_esEs14(yvy49001, yvy50001) 47.49/23.25 new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Maybe, gg), fh) -> new_ltEs4(yvy49000, yvy50000, gg) 47.49/23.25 new_esEs11(False, True) -> False 47.49/23.25 new_esEs11(True, False) -> False 47.49/23.25 new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cdh), cea)) -> new_esEs7(yvy4000, yvy3000, cdh, cea) 47.49/23.25 new_lt8(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) 47.49/23.25 new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_@2, bef), beg), bed) -> new_esEs4(yvy4000, yvy3000, bef, beg) 47.49/23.25 new_compare114(yvy49000, yvy50000, True, bbg, bbh) -> LT 47.49/23.25 new_lt8(yvy49000, yvy50000, app(app(ty_Either, bbg), bbh)) -> new_lt16(yvy49000, yvy50000, bbg, bbh) 47.49/23.25 new_ltEs18(yvy4900, yvy5000, ty_@0) -> new_ltEs9(yvy4900, yvy5000) 47.49/23.25 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_@0) -> new_ltEs9(yvy49000, yvy50000) 47.49/23.25 new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 47.49/23.25 new_gt2(yvy35, yvy30, bb) -> new_esEs12(new_compare30(yvy35, yvy30, bb), GT) 47.49/23.25 new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) 47.49/23.25 new_ltEs7(yvy4900, yvy5000) -> new_fsEs(new_compare8(yvy4900, yvy5000)) 47.49/23.25 new_ltEs19(yvy49001, yvy50001, ty_Double) -> new_ltEs16(yvy49001, yvy50001) 47.49/23.25 new_esEs22(yvy4002, yvy3002, ty_Bool) -> new_esEs11(yvy4002, yvy3002) 47.49/23.25 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Char) -> new_ltEs6(yvy49000, yvy50000) 47.49/23.25 new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_[], ga), fh) -> new_ltEs8(yvy49000, yvy50000, ga) 47.49/23.25 new_esEs21(yvy49000, yvy50000, app(ty_[], bce)) -> new_esEs8(yvy49000, yvy50000, bce) 47.49/23.25 new_esEs22(yvy4002, yvy3002, app(ty_Maybe, bhe)) -> new_esEs6(yvy4002, yvy3002, bhe) 47.49/23.25 new_esEs21(yvy49000, yvy50000, app(app(ty_@2, bc), bd)) -> new_esEs4(yvy49000, yvy50000, bc, bd) 47.49/23.25 new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False 47.49/23.25 new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False 47.49/23.25 new_esEs25(yvy4001, yvy3001, app(app(ty_@2, cfa), cfb)) -> new_esEs4(yvy4001, yvy3001, cfa, cfb) 47.49/23.25 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Bool, bed) -> new_esEs11(yvy4000, yvy3000) 47.49/23.25 new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Ratio, beh), bed) -> new_esEs15(yvy4000, yvy3000, beh) 47.49/23.25 new_ltEs18(yvy4900, yvy5000, ty_Bool) -> new_ltEs13(yvy4900, yvy5000) 47.49/23.25 new_gt0(yvy300, h) -> new_esEs12(new_compare31(yvy300, h), GT) 47.49/23.25 new_ltEs18(yvy4900, yvy5000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_ltEs12(yvy4900, yvy5000, bbc, bbd, bbe) 47.49/23.25 new_esEs23(yvy4001, yvy3001, app(app(ty_Either, cbc), cbd)) -> new_esEs7(yvy4001, yvy3001, cbc, cbd) 47.49/23.25 new_esEs21(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) 47.49/23.25 new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 47.49/23.25 new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_@2, gb), gc), fh) -> new_ltEs11(yvy49000, yvy50000, gb, gc) 47.49/23.25 new_ltEs20(yvy49002, yvy50002, ty_Double) -> new_ltEs16(yvy49002, yvy50002) 47.49/23.25 new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.25 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, app(app(ty_Either, bac), bad)) -> new_ltEs14(yvy49000, yvy50000, bac, bad) 47.49/23.25 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Float, fh) -> new_ltEs5(yvy49000, yvy50000) 47.49/23.25 new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT 47.49/23.25 new_compare114(yvy49000, yvy50000, False, bbg, bbh) -> GT 47.49/23.25 new_esEs25(yvy4001, yvy3001, app(ty_[], cff)) -> new_esEs8(yvy4001, yvy3001, cff) 47.49/23.25 new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.25 new_esEs4(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cec, ced) -> new_asAs(new_esEs26(yvy4000, yvy3000, cec), new_esEs25(yvy4001, yvy3001, ced)) 47.49/23.25 new_ltEs5(yvy4900, yvy5000) -> new_fsEs(new_compare6(yvy4900, yvy5000)) 47.49/23.25 new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_Either, bfa), bfb), bed) -> new_esEs7(yvy4000, yvy3000, bfa, bfb) 47.49/23.25 new_esEs26(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.25 new_esEs9(yvy4000, yvy3000, app(app(ty_@2, fa), fb)) -> new_esEs4(yvy4000, yvy3000, fa, fb) 47.49/23.25 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.25 new_compare25(Just(yvy4900), Nothing, False, bah) -> GT 47.49/23.25 new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) 47.49/23.25 new_compare5(yvy49000, yvy50000, ty_@0) -> new_compare9(yvy49000, yvy50000) 47.49/23.25 new_esEs24(yvy4000, yvy3000, app(ty_Maybe, cca)) -> new_esEs6(yvy4000, yvy3000, cca) 47.49/23.25 new_lt11(yvy205, yvy204) -> new_esEs12(new_compare8(yvy205, yvy204), LT) 47.49/23.25 new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 47.49/23.25 new_lt6(yvy49000, yvy50000) -> new_esEs12(new_compare9(yvy49000, yvy50000), LT) 47.49/23.25 new_primMulNat0(Succ(yvy400100), Zero) -> Zero 47.49/23.25 new_primMulNat0(Zero, Succ(yvy300000)) -> Zero 47.49/23.25 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Double, fh) -> new_ltEs16(yvy49000, yvy50000) 47.49/23.25 new_lt8(yvy49000, yvy50000, app(app(app(ty_@3, bca), bcb), bcc)) -> new_lt13(yvy49000, yvy50000, bca, bcb, bcc) 47.49/23.25 new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) 47.49/23.25 new_esEs6(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, cda), cdb), cdc)) -> new_esEs5(yvy4000, yvy3000, cda, cdb, cdc) 47.49/23.25 new_esEs25(yvy4001, yvy3001, app(app(ty_Either, cfd), cfe)) -> new_esEs7(yvy4001, yvy3001, cfd, cfe) 47.49/23.25 new_compare5(yvy49000, yvy50000, ty_Float) -> new_compare6(yvy49000, yvy50000) 47.49/23.25 new_esEs9(yvy4000, yvy3000, app(ty_[], fg)) -> new_esEs8(yvy4000, yvy3000, fg) 47.49/23.25 new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, cad), cae), caf)) -> new_esEs5(yvy4001, yvy3001, cad, cae, caf) 47.49/23.25 new_esEs26(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.25 new_primPlusNat1(Succ(yvy1610), yvy300000) -> Succ(Succ(new_primPlusNat0(yvy1610, yvy300000))) 47.49/23.25 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Int, bed) -> new_esEs16(yvy4000, yvy3000) 47.49/23.25 new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.25 new_esEs16(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) 47.49/23.25 new_primPlusNat0(Succ(yvy16100), Zero) -> Succ(yvy16100) 47.49/23.25 new_primPlusNat0(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) 47.49/23.25 new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) 47.49/23.25 new_primPlusNat1(Zero, yvy300000) -> Succ(yvy300000) 47.49/23.25 new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Int) -> new_compare8(new_sr(yvy49000, yvy50001), new_sr(yvy50000, yvy49001)) 47.49/23.25 new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.25 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_@0, fh) -> new_ltEs9(yvy49000, yvy50000) 47.49/23.25 new_lt8(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) 47.49/23.25 new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_Either, gh), ha), fh) -> new_ltEs14(yvy49000, yvy50000, gh, ha) 47.49/23.25 new_ltEs20(yvy49002, yvy50002, ty_@0) -> new_ltEs9(yvy49002, yvy50002) 47.49/23.25 new_ltEs18(yvy4900, yvy5000, app(app(ty_@2, bba), bbb)) -> new_ltEs11(yvy4900, yvy5000, bba, bbb) 47.49/23.25 new_ltEs9(yvy4900, yvy5000) -> new_fsEs(new_compare9(yvy4900, yvy5000)) 47.49/23.25 new_esEs22(yvy4002, yvy3002, app(ty_Ratio, bhh)) -> new_esEs15(yvy4002, yvy3002, bhh) 47.49/23.25 new_ltEs19(yvy49001, yvy50001, app(app(ty_Either, bdf), bdg)) -> new_ltEs14(yvy49001, yvy50001, bdf, bdg) 47.49/23.25 new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) 47.49/23.25 new_lt8(yvy49000, yvy50000, app(ty_Maybe, bag)) -> new_lt15(yvy49000, yvy50000, bag) 47.49/23.25 new_esEs30(yvy20, yvy15, ty_@0) -> new_esEs14(yvy20, yvy15) 47.49/23.25 new_lt20(yvy49001, yvy50001, ty_Char) -> new_lt10(yvy49001, yvy50001) 47.49/23.25 new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.49/23.25 new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.49/23.25 new_esEs9(yvy4000, yvy3000, app(ty_Maybe, eh)) -> new_esEs6(yvy4000, yvy3000, eh) 47.49/23.25 new_esEs23(yvy4001, yvy3001, app(ty_Ratio, cbb)) -> new_esEs15(yvy4001, yvy3001, cbb) 47.49/23.25 new_compare25(Just(yvy4900), Just(yvy5000), False, bah) -> new_compare111(yvy4900, yvy5000, new_ltEs18(yvy4900, yvy5000, bah), bah) 47.49/23.25 new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.49/23.25 new_ltEs20(yvy49002, yvy50002, ty_Float) -> new_ltEs5(yvy49002, yvy50002) 47.49/23.25 new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cde), cdf)) -> new_esEs4(yvy4000, yvy3000, cde, cdf) 47.49/23.25 new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.25 new_fsEs(yvy209) -> new_not(new_esEs12(yvy209, GT)) 47.49/23.25 new_ltEs18(yvy4900, yvy5000, app(app(ty_Either, hc), fh)) -> new_ltEs14(yvy4900, yvy5000, hc, fh) 47.49/23.25 new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cdg)) -> new_esEs15(yvy4000, yvy3000, cdg) 47.49/23.25 new_esEs29(yvy400, yvy500, ty_@0) -> new_esEs14(yvy400, yvy500) 47.49/23.25 new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.25 new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) 47.49/23.25 new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_[], ceb)) -> new_esEs8(yvy4000, yvy3000, ceb) 47.49/23.25 new_compare25(yvy490, yvy500, True, bah) -> EQ 47.49/23.25 new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ee), ef), eg)) -> new_esEs5(yvy4000, yvy3000, ee, ef, eg) 47.49/23.25 new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fc)) -> new_esEs15(yvy4000, yvy3000, fc) 47.49/23.25 new_compare([], :(yvy50000, yvy50001), be) -> LT 47.49/23.25 new_lt20(yvy49001, yvy50001, app(ty_[], dac)) -> new_lt12(yvy49001, yvy50001, dac) 47.49/23.25 new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cdd)) -> new_esEs6(yvy4000, yvy3000, cdd) 47.49/23.25 new_esEs29(yvy400, yvy500, ty_Char) -> new_esEs17(yvy400, yvy500) 47.49/23.25 new_esEs6(Nothing, Just(yvy3000), cch) -> False 47.49/23.25 new_esEs6(Just(yvy4000), Nothing, cch) -> False 47.49/23.25 new_esEs23(yvy4001, yvy3001, app(ty_[], cbe)) -> new_esEs8(yvy4001, yvy3001, cbe) 47.49/23.25 new_ltEs15(EQ, GT) -> True 47.49/23.25 new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.25 new_esEs6(Nothing, Nothing, cch) -> True 47.49/23.25 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Double) -> new_ltEs16(yvy49000, yvy50000) 47.49/23.25 new_esEs11(False, False) -> True 47.49/23.25 new_esEs24(yvy4000, yvy3000, app(app(ty_Either, cce), ccf)) -> new_esEs7(yvy4000, yvy3000, cce, ccf) 47.49/23.25 new_ltEs18(yvy4900, yvy5000, ty_Ordering) -> new_ltEs15(yvy4900, yvy5000) 47.49/23.25 new_ltEs11(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), bba, bbb) -> new_pePe(new_lt8(yvy49000, yvy50000, bba), new_asAs(new_esEs21(yvy49000, yvy50000, bba), new_ltEs19(yvy49001, yvy50001, bbb))) 47.49/23.25 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Integer) -> new_ltEs10(yvy49000, yvy50000) 47.49/23.25 new_esEs21(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) 47.49/23.25 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.25 new_esEs30(yvy20, yvy15, ty_Char) -> new_esEs17(yvy20, yvy15) 47.49/23.25 new_ltEs14(Left(yvy49000), Right(yvy50000), hc, fh) -> True 47.49/23.25 new_ltEs19(yvy49001, yvy50001, ty_Float) -> new_ltEs5(yvy49001, yvy50001) 47.49/23.25 new_esEs23(yvy4001, yvy3001, app(app(ty_@2, cah), cba)) -> new_esEs4(yvy4001, yvy3001, cah, cba) 47.49/23.25 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.25 new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.49/23.25 new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.49/23.25 new_esEs26(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.25 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Ordering, fh) -> new_ltEs15(yvy49000, yvy50000) 47.49/23.25 new_ltEs6(yvy4900, yvy5000) -> new_fsEs(new_compare7(yvy4900, yvy5000)) 47.49/23.25 new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.25 new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.25 new_esEs8(:(yvy4000, yvy4001), [], ed) -> False 47.49/23.25 new_esEs8([], :(yvy3000, yvy3001), ed) -> False 47.49/23.25 new_esEs29(yvy400, yvy500, ty_Ordering) -> new_esEs12(yvy400, yvy500) 47.49/23.25 new_esEs26(yvy4000, yvy3000, app(app(ty_Either, cgf), cgg)) -> new_esEs7(yvy4000, yvy3000, cgf, cgg) 47.49/23.25 new_lt19(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) 47.49/23.25 new_lt17(yvy49000, yvy50000) -> new_esEs12(new_compare17(yvy49000, yvy50000), LT) 47.49/23.25 new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Integer) -> new_compare11(new_sr0(yvy49000, yvy50001), new_sr0(yvy50000, yvy49001)) 47.49/23.25 new_esEs22(yvy4002, yvy3002, app(app(ty_@2, bhf), bhg)) -> new_esEs4(yvy4002, yvy3002, bhf, bhg) 47.49/23.25 new_esEs22(yvy4002, yvy3002, ty_Double) -> new_esEs18(yvy4002, yvy3002) 47.49/23.25 new_esEs29(yvy400, yvy500, ty_Int) -> new_esEs16(yvy400, yvy500) 47.49/23.25 new_esEs26(yvy4000, yvy3000, app(ty_Ratio, cge)) -> new_esEs15(yvy4000, yvy3000, cge) 47.49/23.25 new_compare5(yvy49000, yvy50000, app(ty_Maybe, cd)) -> new_compare15(yvy49000, yvy50000, cd) 47.49/23.25 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Integer, bed) -> new_esEs10(yvy4000, yvy3000) 47.49/23.25 new_ltEs19(yvy49001, yvy50001, ty_@0) -> new_ltEs9(yvy49001, yvy50001) 47.49/23.25 new_esEs22(yvy4002, yvy3002, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_esEs5(yvy4002, yvy3002, bhb, bhc, bhd) 47.49/23.25 new_lt20(yvy49001, yvy50001, ty_@0) -> new_lt6(yvy49001, yvy50001) 47.49/23.25 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, app(app(ty_@2, bga), bgb)) -> new_esEs4(yvy4000, yvy3000, bga, bgb) 47.49/23.25 new_gt1(yvy400, h) -> new_esEs12(new_compare32(yvy400, h), GT) 47.49/23.25 new_sr0(Integer(yvy490000), Integer(yvy500010)) -> Integer(new_primMulInt(yvy490000, yvy500010)) 47.49/23.25 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Bool, fh) -> new_ltEs13(yvy49000, yvy50000) 47.49/23.25 new_esEs18(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 47.49/23.25 new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.25 new_esEs28(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) 47.49/23.25 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, app(ty_[], bgf)) -> new_esEs8(yvy4000, yvy3000, bgf) 47.49/23.25 new_ltEs15(LT, GT) -> True 47.49/23.25 new_lt19(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) 47.49/23.25 new_esEs30(yvy20, yvy15, app(ty_[], dea)) -> new_esEs8(yvy20, yvy15, dea) 47.49/23.25 new_compare33(h) -> new_compare25(Nothing, Nothing, True, h) 47.49/23.25 new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) 47.49/23.25 new_esEs12(GT, GT) -> True 47.49/23.25 new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) 47.49/23.25 new_esEs24(yvy4000, yvy3000, app(ty_[], ccg)) -> new_esEs8(yvy4000, yvy3000, ccg) 47.49/23.25 new_asAs(True, yvy201) -> yvy201 47.49/23.25 new_esEs26(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.25 new_esEs21(yvy49000, yvy50000, app(ty_Maybe, bag)) -> new_esEs6(yvy49000, yvy50000, bag) 47.49/23.25 new_esEs10(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) 47.49/23.25 new_compare10(yvy49000, yvy50000, False, bc, bd) -> GT 47.49/23.25 new_lt8(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) 47.49/23.25 new_lt8(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) 47.49/23.25 new_compare113(yvy49000, yvy50000, True) -> LT 47.49/23.25 new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.25 new_ltEs16(yvy4900, yvy5000) -> new_fsEs(new_compare18(yvy4900, yvy5000)) 47.49/23.25 new_lt20(yvy49001, yvy50001, ty_Float) -> new_lt9(yvy49001, yvy50001) 47.49/23.25 new_ltEs4(Nothing, Just(yvy50000), da) -> True 47.49/23.25 new_esEs21(yvy49000, yvy50000, app(ty_Ratio, bcf)) -> new_esEs15(yvy49000, yvy50000, bcf) 47.49/23.25 new_ltEs18(yvy4900, yvy5000, app(ty_Maybe, da)) -> new_ltEs4(yvy4900, yvy5000, da) 47.49/23.25 new_lt8(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) 47.49/23.25 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Float, bed) -> new_esEs13(yvy4000, yvy3000) 47.49/23.25 new_ltEs8(yvy4900, yvy5000, be) -> new_fsEs(new_compare(yvy4900, yvy5000, be)) 47.49/23.25 new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) 47.49/23.25 new_ltEs18(yvy4900, yvy5000, app(ty_[], be)) -> new_ltEs8(yvy4900, yvy5000, be) 47.49/23.25 new_compare110(yvy49000, yvy50000, False) -> GT 47.49/23.25 new_primCompAux00(yvy225, EQ) -> yvy225 47.49/23.25 new_lt19(yvy49000, yvy50000, app(ty_Maybe, chg)) -> new_lt15(yvy49000, yvy50000, chg) 47.49/23.25 new_esEs12(EQ, EQ) -> True 47.49/23.25 new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) 47.49/23.25 new_lt19(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) 47.49/23.25 new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) 47.49/23.25 new_esEs21(yvy49000, yvy50000, app(app(ty_Either, bbg), bbh)) -> new_esEs7(yvy49000, yvy50000, bbg, bbh) 47.49/23.25 new_primMulNat0(Zero, Zero) -> Zero 47.49/23.25 new_compare24(yvy49000, yvy50000, False) -> new_compare110(yvy49000, yvy50000, new_ltEs13(yvy49000, yvy50000)) 47.49/23.25 new_compare5(yvy49000, yvy50000, ty_Integer) -> new_compare11(yvy49000, yvy50000) 47.49/23.25 new_esEs22(yvy4002, yvy3002, ty_Integer) -> new_esEs10(yvy4002, yvy3002) 47.49/23.25 new_esEs21(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) 47.49/23.25 new_lt19(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) 47.49/23.25 new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.25 new_ltEs12(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), bbc, bbd, bbe) -> new_pePe(new_lt19(yvy49000, yvy50000, bbc), new_asAs(new_esEs28(yvy49000, yvy50000, bbc), new_pePe(new_lt20(yvy49001, yvy50001, bbd), new_asAs(new_esEs27(yvy49001, yvy50001, bbd), new_ltEs20(yvy49002, yvy50002, bbe))))) 47.49/23.25 new_ltEs19(yvy49001, yvy50001, app(ty_[], bcg)) -> new_ltEs8(yvy49001, yvy50001, bcg) 47.49/23.25 new_compare5(yvy49000, yvy50000, ty_Double) -> new_compare18(yvy49000, yvy50000) 47.49/23.25 new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_@2, dc), dd)) -> new_ltEs11(yvy49000, yvy50000, dc, dd) 47.49/23.25 new_compare11(Integer(yvy49000), Integer(yvy50000)) -> new_primCmpInt(yvy49000, yvy50000) 47.49/23.25 new_compare9(@0, @0) -> EQ 47.49/23.25 new_esEs22(yvy4002, yvy3002, app(app(ty_Either, caa), cab)) -> new_esEs7(yvy4002, yvy3002, caa, cab) 47.49/23.25 new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.25 new_compare28(yvy49000, yvy50000, True, bca, bcb, bcc) -> EQ 47.49/23.25 new_esEs27(yvy49001, yvy50001, ty_Float) -> new_esEs13(yvy49001, yvy50001) 47.49/23.25 new_esEs26(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.25 new_ltEs13(False, True) -> True 47.49/23.25 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.25 new_ltEs13(False, False) -> True 47.49/23.25 new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fd), ff)) -> new_esEs7(yvy4000, yvy3000, fd, ff) 47.49/23.25 new_esEs7(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, bea), beb), bec), bed) -> new_esEs5(yvy4000, yvy3000, bea, beb, bec) 47.49/23.25 new_ltEs15(EQ, EQ) -> True 47.49/23.25 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) 47.49/23.25 new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Maybe, bee), bed) -> new_esEs6(yvy4000, yvy3000, bee) 47.49/23.25 new_compare30(yvy20, yvy15, dcg) -> new_compare25(Just(yvy20), Just(yvy15), new_esEs30(yvy20, yvy15, dcg), dcg) 47.49/23.25 new_esEs26(yvy4000, yvy3000, app(ty_Maybe, cgb)) -> new_esEs6(yvy4000, yvy3000, cgb) 47.49/23.25 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.25 new_esEs26(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.25 new_lt12(yvy49000, yvy50000, bce) -> new_esEs12(new_compare(yvy49000, yvy50000, bce), LT) 47.49/23.25 new_lt10(yvy49000, yvy50000) -> new_esEs12(new_compare7(yvy49000, yvy50000), LT) 47.49/23.25 new_lt19(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) 47.49/23.25 new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.25 new_compare31(yvy300, h) -> new_compare25(Nothing, Just(yvy300), False, h) 47.49/23.25 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Char, bed) -> new_esEs17(yvy4000, yvy3000) 47.49/23.25 new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.25 new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_[], bfc), bed) -> new_esEs8(yvy4000, yvy3000, bfc) 47.49/23.25 new_ltEs20(yvy49002, yvy50002, app(ty_[], dbe)) -> new_ltEs8(yvy49002, yvy50002, dbe) 47.49/23.25 new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_Either, ea), eb)) -> new_ltEs14(yvy49000, yvy50000, ea, eb) 47.49/23.25 new_compare17(yvy49000, yvy50000) -> new_compare29(yvy49000, yvy50000, new_esEs12(yvy49000, yvy50000)) 47.49/23.25 new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False 47.49/23.25 new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False 47.49/23.25 new_esEs21(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) 47.49/23.25 new_esEs25(yvy4001, yvy3001, app(ty_Maybe, ceh)) -> new_esEs6(yvy4001, yvy3001, ceh) 47.49/23.25 new_compare([], [], be) -> EQ 47.49/23.25 new_ltEs15(LT, EQ) -> True 47.49/23.25 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Float) -> new_ltEs5(yvy49000, yvy50000) 47.49/23.25 new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 47.49/23.25 new_ltEs18(yvy4900, yvy5000, ty_Char) -> new_ltEs6(yvy4900, yvy5000) 47.49/23.25 new_ltEs18(yvy4900, yvy5000, app(ty_Ratio, bbf)) -> new_ltEs17(yvy4900, yvy5000, bbf) 47.49/23.25 new_lt20(yvy49001, yvy50001, ty_Double) -> new_lt7(yvy49001, yvy50001) 47.49/23.25 new_esEs26(yvy4000, yvy3000, app(app(ty_@2, cgc), cgd)) -> new_esEs4(yvy4000, yvy3000, cgc, cgd) 47.49/23.25 new_compare24(yvy49000, yvy50000, True) -> EQ 47.49/23.25 new_lt8(yvy49000, yvy50000, app(ty_[], bce)) -> new_lt12(yvy49000, yvy50000, bce) 47.49/23.25 new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(app(ty_@3, gd), ge), gf), fh) -> new_ltEs12(yvy49000, yvy50000, gd, ge, gf) 47.49/23.25 new_esEs21(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) 47.49/23.25 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, app(app(ty_Either, bgd), bge)) -> new_esEs7(yvy4000, yvy3000, bgd, bge) 47.49/23.25 new_esEs11(True, True) -> True 47.49/23.25 new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False 47.49/23.25 new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False 47.49/23.25 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, app(ty_[], hd)) -> new_ltEs8(yvy49000, yvy50000, hd) 47.49/23.25 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, app(ty_Maybe, bfh)) -> new_esEs6(yvy4000, yvy3000, bfh) 47.49/23.25 new_esEs25(yvy4001, yvy3001, app(ty_Ratio, cfc)) -> new_esEs15(yvy4001, yvy3001, cfc) 47.49/23.25 new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) 47.49/23.25 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Int) -> new_ltEs7(yvy49000, yvy50000) 47.49/23.25 new_esEs15(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), baf) -> new_asAs(new_esEs20(yvy4000, yvy3000, baf), new_esEs19(yvy4001, yvy3001, baf)) 47.49/23.25 new_compare28(yvy49000, yvy50000, False, bca, bcb, bcc) -> new_compare112(yvy49000, yvy50000, new_ltEs12(yvy49000, yvy50000, bca, bcb, bcc), bca, bcb, bcc) 47.49/23.25 new_esEs22(yvy4002, yvy3002, ty_Float) -> new_esEs13(yvy4002, yvy3002) 47.49/23.25 new_esEs27(yvy49001, yvy50001, ty_Integer) -> new_esEs10(yvy49001, yvy50001) 47.49/23.25 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, app(app(ty_@2, he), hf)) -> new_ltEs11(yvy49000, yvy50000, he, hf) 47.49/23.25 new_gt(h) -> new_esEs12(new_compare33(h), GT) 47.49/23.25 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 47.49/23.25 new_ltEs15(GT, GT) -> True 47.49/23.25 new_compare111(yvy198, yvy199, False, bcd) -> GT 47.49/23.25 new_esEs30(yvy20, yvy15, ty_Bool) -> new_esEs11(yvy20, yvy15) 47.49/23.25 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, app(ty_Maybe, bab)) -> new_ltEs4(yvy49000, yvy50000, bab) 47.49/23.25 new_esEs30(yvy20, yvy15, app(ty_Maybe, ddc)) -> new_esEs6(yvy20, yvy15, ddc) 47.49/23.25 new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 47.49/23.25 new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) 47.49/23.25 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Int, fh) -> new_ltEs7(yvy49000, yvy50000) 47.49/23.25 new_not(False) -> True 47.49/23.25 new_compare5(yvy49000, yvy50000, app(app(ty_Either, ce), cf)) -> new_compare16(yvy49000, yvy50000, ce, cf) 47.49/23.25 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.25 new_compare112(yvy49000, yvy50000, True, bca, bcb, bcc) -> LT 47.49/23.25 new_esEs28(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) 47.49/23.25 new_compare5(yvy49000, yvy50000, ty_Bool) -> new_compare14(yvy49000, yvy50000) 47.49/23.25 new_lt13(yvy49000, yvy50000, bca, bcb, bcc) -> new_esEs12(new_compare13(yvy49000, yvy50000, bca, bcb, bcc), LT) 47.49/23.25 new_primCompAux0(yvy49000, yvy50000, yvy221, be) -> new_primCompAux00(yvy221, new_compare5(yvy49000, yvy50000, be)) 47.49/23.25 new_esEs27(yvy49001, yvy50001, app(app(ty_Either, dbb), dbc)) -> new_esEs7(yvy49001, yvy50001, dbb, dbc) 47.49/23.25 new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 47.49/23.25 new_esEs22(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) 47.49/23.25 new_lt7(yvy49000, yvy50000) -> new_esEs12(new_compare18(yvy49000, yvy50000), LT) 47.49/23.25 new_esEs28(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) 47.49/23.25 new_esEs12(LT, EQ) -> False 47.49/23.25 new_esEs12(EQ, LT) -> False 47.49/23.25 new_esEs21(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) 47.49/23.25 new_compare29(yvy49000, yvy50000, True) -> EQ 47.49/23.25 new_primPlusNat0(Succ(yvy16100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat0(yvy16100, yvy3000000))) 47.49/23.25 new_lt4(yvy49000, yvy50000, bc, bd) -> new_esEs12(new_compare12(yvy49000, yvy50000, bc, bd), LT) 47.49/23.25 new_compare5(yvy49000, yvy50000, app(app(app(ty_@3, ca), cb), cc)) -> new_compare13(yvy49000, yvy50000, ca, cb, cc) 47.49/23.25 new_esEs27(yvy49001, yvy50001, app(ty_Ratio, dbd)) -> new_esEs15(yvy49001, yvy50001, dbd) 47.49/23.25 new_lt19(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) 47.49/23.25 new_esEs28(yvy49000, yvy50000, app(app(app(ty_@3, chd), che), chf)) -> new_esEs5(yvy49000, yvy50000, chd, che, chf) 47.49/23.25 new_esEs29(yvy400, yvy500, app(ty_Ratio, baf)) -> new_esEs15(yvy400, yvy500, baf) 47.49/23.25 new_compare112(yvy49000, yvy50000, False, bca, bcb, bcc) -> GT 47.49/23.25 new_compare27(yvy49000, yvy50000, True, bc, bd) -> EQ 47.49/23.25 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.25 new_compare15(yvy49000, yvy50000, bag) -> new_compare25(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, bag), bag) 47.49/23.25 new_esEs21(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) 47.49/23.25 new_esEs12(LT, GT) -> False 47.49/23.25 new_esEs12(GT, LT) -> False 47.49/23.25 new_lt20(yvy49001, yvy50001, ty_Int) -> new_lt11(yvy49001, yvy50001) 47.49/23.25 new_ltEs19(yvy49001, yvy50001, ty_Int) -> new_ltEs7(yvy49001, yvy50001) 47.49/23.25 new_ltEs20(yvy49002, yvy50002, app(ty_Ratio, dcf)) -> new_ltEs17(yvy49002, yvy50002, dcf) 47.49/23.25 new_esEs8([], [], ed) -> True 47.49/23.25 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Char, fh) -> new_ltEs6(yvy49000, yvy50000) 47.49/23.25 new_ltEs20(yvy49002, yvy50002, ty_Char) -> new_ltEs6(yvy49002, yvy50002) 47.49/23.25 new_compare25(Nothing, Nothing, False, bah) -> LT 47.49/23.25 new_lt20(yvy49001, yvy50001, app(ty_Maybe, dba)) -> new_lt15(yvy49001, yvy50001, dba) 47.49/23.25 new_esEs29(yvy400, yvy500, app(ty_Maybe, cch)) -> new_esEs6(yvy400, yvy500, cch) 47.49/23.25 new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Ratio, ec)) -> new_ltEs17(yvy49000, yvy50000, ec) 47.49/23.25 new_lt8(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) 47.49/23.25 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Float) -> new_ltEs5(yvy49000, yvy50000) 47.49/23.25 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 47.49/23.25 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 47.49/23.25 new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) 47.49/23.25 new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.49/23.25 new_lt20(yvy49001, yvy50001, app(app(ty_@2, dad), dae)) -> new_lt4(yvy49001, yvy50001, dad, dae) 47.49/23.25 new_esEs28(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) 47.49/23.25 new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.25 new_compare111(yvy198, yvy199, True, bcd) -> LT 47.49/23.25 new_ltEs13(True, False) -> False 47.49/23.25 new_ltEs20(yvy49002, yvy50002, ty_Int) -> new_ltEs7(yvy49002, yvy50002) 47.49/23.25 new_esEs27(yvy49001, yvy50001, app(app(ty_@2, dad), dae)) -> new_esEs4(yvy49001, yvy50001, dad, dae) 47.49/23.25 new_ltEs15(LT, LT) -> True 47.49/23.25 new_esEs13(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 47.49/23.25 new_esEs22(yvy4002, yvy3002, ty_@0) -> new_esEs14(yvy4002, yvy3002) 47.49/23.25 new_esEs28(yvy49000, yvy50000, app(ty_Maybe, chg)) -> new_esEs6(yvy49000, yvy50000, chg) 47.49/23.25 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 47.49/23.25 new_esEs26(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.25 new_esEs28(yvy49000, yvy50000, app(app(ty_@2, chb), chc)) -> new_esEs4(yvy49000, yvy50000, chb, chc) 47.49/23.25 new_compare7(Char(yvy49000), Char(yvy50000)) -> new_primCmpNat0(yvy49000, yvy50000) 47.49/23.25 new_lt5(yvy49000, yvy50000) -> new_esEs12(new_compare11(yvy49000, yvy50000), LT) 47.49/23.25 new_lt20(yvy49001, yvy50001, app(app(ty_Either, dbb), dbc)) -> new_lt16(yvy49001, yvy50001, dbb, dbc) 47.49/23.25 new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) 47.49/23.25 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Char) -> new_ltEs6(yvy49000, yvy50000) 47.49/23.25 new_esEs26(yvy4000, yvy3000, app(app(app(ty_@3, cfg), cfh), cga)) -> new_esEs5(yvy4000, yvy3000, cfg, cfh, cga) 47.49/23.25 new_lt20(yvy49001, yvy50001, ty_Integer) -> new_lt5(yvy49001, yvy50001) 47.49/23.25 new_esEs30(yvy20, yvy15, ty_Int) -> new_esEs16(yvy20, yvy15) 47.49/23.25 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Double) -> new_ltEs16(yvy49000, yvy50000) 47.49/23.25 new_ltEs10(yvy4900, yvy5000) -> new_fsEs(new_compare11(yvy4900, yvy5000)) 47.49/23.25 new_lt14(yvy49000, yvy50000) -> new_esEs12(new_compare14(yvy49000, yvy50000), LT) 47.49/23.25 new_esEs27(yvy49001, yvy50001, app(ty_Maybe, dba)) -> new_esEs6(yvy49001, yvy50001, dba) 47.49/23.25 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_@0) -> new_ltEs9(yvy49000, yvy50000) 47.49/23.25 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Double, bed) -> new_esEs18(yvy4000, yvy3000) 47.49/23.25 new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_[], db)) -> new_ltEs8(yvy49000, yvy50000, db) 47.49/23.25 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Integer) -> new_ltEs10(yvy49000, yvy50000) 47.49/23.25 new_esEs27(yvy49001, yvy50001, ty_Double) -> new_esEs18(yvy49001, yvy50001) 47.49/23.25 new_esEs29(yvy400, yvy500, ty_Integer) -> new_esEs10(yvy400, yvy500) 47.49/23.25 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 47.49/23.25 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 47.49/23.25 new_compare25(Nothing, Just(yvy5000), False, bah) -> LT 47.49/23.25 new_compare5(yvy49000, yvy50000, app(app(ty_@2, bg), bh)) -> new_compare12(yvy49000, yvy50000, bg, bh) 47.49/23.25 new_esEs29(yvy400, yvy500, app(app(ty_@2, cec), ced)) -> new_esEs4(yvy400, yvy500, cec, ced) 47.49/23.25 new_esEs28(yvy49000, yvy50000, app(ty_[], cha)) -> new_esEs8(yvy49000, yvy50000, cha) 47.49/23.25 new_lt19(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) 47.49/23.25 new_lt18(yvy49000, yvy50000, bcf) -> new_esEs12(new_compare19(yvy49000, yvy50000, bcf), LT) 47.49/23.25 new_esEs29(yvy400, yvy500, app(ty_[], ed)) -> new_esEs8(yvy400, yvy500, ed) 47.49/23.25 new_compare5(yvy49000, yvy50000, ty_Char) -> new_compare7(yvy49000, yvy50000) 47.49/23.25 new_ltEs19(yvy49001, yvy50001, app(ty_Maybe, bde)) -> new_ltEs4(yvy49001, yvy50001, bde) 47.49/23.25 new_compare5(yvy49000, yvy50000, app(ty_[], bf)) -> new_compare(yvy49000, yvy50000, bf) 47.49/23.25 new_compare14(yvy49000, yvy50000) -> new_compare24(yvy49000, yvy50000, new_esEs11(yvy49000, yvy50000)) 47.49/23.25 new_primEqNat0(Zero, Zero) -> True 47.49/23.25 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Integer, fh) -> new_ltEs10(yvy49000, yvy50000) 47.49/23.25 new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.49/23.25 new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) 47.49/23.25 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Bool) -> new_ltEs13(yvy49000, yvy50000) 47.49/23.25 new_esEs30(yvy20, yvy15, app(app(ty_Either, ddg), ddh)) -> new_esEs7(yvy20, yvy15, ddg, ddh) 47.49/23.25 new_esEs30(yvy20, yvy15, ty_Ordering) -> new_esEs12(yvy20, yvy15) 47.49/23.25 new_compare5(yvy49000, yvy50000, ty_Ordering) -> new_compare17(yvy49000, yvy50000) 47.49/23.25 new_esEs6(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.25 new_esEs29(yvy400, yvy500, ty_Bool) -> new_esEs11(yvy400, yvy500) 47.49/23.25 new_asAs(False, yvy201) -> False 47.49/23.25 new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(app(ty_@3, de), df), dg)) -> new_ltEs12(yvy49000, yvy50000, de, df, dg) 47.49/23.25 new_esEs29(yvy400, yvy500, app(app(ty_Either, bfd), bed)) -> new_esEs7(yvy400, yvy500, bfd, bed) 47.49/23.25 new_esEs28(yvy49000, yvy50000, app(ty_Ratio, dab)) -> new_esEs15(yvy49000, yvy50000, dab) 47.49/23.25 new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 47.49/23.25 new_esEs30(yvy20, yvy15, ty_Integer) -> new_esEs10(yvy20, yvy15) 47.49/23.25 new_ltEs20(yvy49002, yvy50002, app(ty_Maybe, dcc)) -> new_ltEs4(yvy49002, yvy50002, dcc) 47.49/23.25 new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) 47.49/23.25 new_lt8(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) 47.49/23.25 new_esEs7(Left(yvy4000), Right(yvy3000), bfd, bed) -> False 47.49/23.25 new_esEs7(Right(yvy4000), Left(yvy3000), bfd, bed) -> False 47.49/23.25 new_ltEs17(yvy4900, yvy5000, bbf) -> new_fsEs(new_compare19(yvy4900, yvy5000, bbf)) 47.49/23.25 new_lt16(yvy49000, yvy50000, bbg, bbh) -> new_esEs12(new_compare16(yvy49000, yvy50000, bbg, bbh), LT) 47.49/23.25 new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.25 new_ltEs18(yvy4900, yvy5000, ty_Int) -> new_ltEs7(yvy4900, yvy5000) 47.49/23.25 new_lt19(yvy49000, yvy50000, app(app(ty_Either, chh), daa)) -> new_lt16(yvy49000, yvy50000, chh, daa) 47.49/23.25 new_esEs27(yvy49001, yvy50001, app(app(app(ty_@3, daf), dag), dah)) -> new_esEs5(yvy49001, yvy50001, daf, dag, dah) 47.49/23.25 47.49/23.25 The set Q consists of the following terms: 47.49/23.25 47.49/23.25 new_esEs27(x0, x1, ty_@0) 47.49/23.25 new_ltEs14(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 47.49/23.25 new_esEs7(Right(x0), Right(x1), x2, ty_Double) 47.49/23.25 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.25 new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 47.49/23.25 new_esEs21(x0, x1, app(ty_[], x2)) 47.49/23.25 new_esEs26(x0, x1, ty_Float) 47.49/23.25 new_ltEs14(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 47.49/23.25 new_esEs12(EQ, EQ) 47.49/23.25 new_esEs28(x0, x1, ty_Char) 47.49/23.25 new_ltEs11(@2(x0, x1), @2(x2, x3), x4, x5) 47.49/23.25 new_primMulInt(Neg(x0), Neg(x1)) 47.49/23.25 new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) 47.49/23.25 new_compare111(x0, x1, True, x2) 47.49/23.25 new_ltEs14(Right(x0), Right(x1), x2, ty_Char) 47.49/23.25 new_lt20(x0, x1, ty_@0) 47.49/23.25 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.25 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.25 new_primCmpNat0(Succ(x0), Zero) 47.49/23.25 new_compare29(x0, x1, True) 47.49/23.25 new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 47.49/23.25 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.25 new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 47.49/23.25 new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) 47.49/23.25 new_esEs7(Left(x0), Right(x1), x2, x3) 47.49/23.25 new_esEs7(Right(x0), Left(x1), x2, x3) 47.49/23.25 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 47.49/23.25 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 47.49/23.25 new_compare26(x0, x1, False, x2, x3) 47.49/23.25 new_primEqInt(Pos(Zero), Pos(Zero)) 47.49/23.25 new_primMulInt(Pos(x0), Pos(x1)) 47.49/23.25 new_esEs7(Left(x0), Left(x1), ty_@0, x2) 47.49/23.25 new_primCompAux00(x0, GT) 47.49/23.25 new_esEs26(x0, x1, app(ty_Ratio, x2)) 47.49/23.25 new_esEs27(x0, x1, app(ty_Maybe, x2)) 47.49/23.25 new_compare28(x0, x1, True, x2, x3, x4) 47.49/23.25 new_lt8(x0, x1, ty_Float) 47.49/23.25 new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 47.49/23.25 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.25 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.25 new_ltEs4(Just(x0), Just(x1), ty_Float) 47.49/23.25 new_asAs(False, x0) 47.49/23.25 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.25 new_lt20(x0, x1, app(ty_Maybe, x2)) 47.49/23.25 new_esEs27(x0, x1, ty_Integer) 47.49/23.25 new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) 47.49/23.25 new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 47.49/23.25 new_ltEs14(Right(x0), Right(x1), x2, ty_@0) 47.49/23.25 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.25 new_compare25(Nothing, Just(x0), False, x1) 47.49/23.25 new_primEqInt(Neg(Zero), Neg(Zero)) 47.49/23.25 new_esEs7(Left(x0), Left(x1), ty_Integer, x2) 47.49/23.25 new_ltEs14(Right(x0), Right(x1), x2, ty_Int) 47.49/23.25 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 47.49/23.25 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.25 new_sr(x0, x1) 47.49/23.25 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.25 new_esEs28(x0, x1, ty_Bool) 47.49/23.25 new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) 47.49/23.25 new_esEs27(x0, x1, ty_Char) 47.49/23.25 new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 47.49/23.25 new_primCmpNat0(Zero, Succ(x0)) 47.49/23.25 new_compare5(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.25 new_lt19(x0, x1, ty_Double) 47.49/23.25 new_lt19(x0, x1, app(ty_Maybe, x2)) 47.49/23.25 new_compare13(x0, x1, x2, x3, x4) 47.49/23.25 new_compare(:(x0, x1), [], x2) 47.49/23.25 new_ltEs13(False, True) 47.49/23.25 new_ltEs13(True, False) 47.49/23.25 new_esEs25(x0, x1, app(ty_Maybe, x2)) 47.49/23.25 new_esEs25(x0, x1, app(ty_[], x2)) 47.49/23.25 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.25 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.25 new_ltEs18(x0, x1, ty_Int) 47.49/23.25 new_lt17(x0, x1) 47.49/23.25 new_esEs9(x0, x1, ty_Double) 47.49/23.25 new_esEs28(x0, x1, ty_Ordering) 47.49/23.25 new_lt8(x0, x1, ty_Integer) 47.49/23.25 new_compare110(x0, x1, False) 47.49/23.25 new_esEs19(x0, x1, ty_Integer) 47.49/23.25 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.25 new_esEs27(x0, x1, app(ty_[], x2)) 47.49/23.25 new_ltEs4(Nothing, Nothing, x0) 47.49/23.25 new_ltEs19(x0, x1, ty_Float) 47.49/23.25 new_esEs9(x0, x1, ty_Int) 47.49/23.25 new_esEs9(x0, x1, app(ty_[], x2)) 47.49/23.25 new_compare27(x0, x1, False, x2, x3) 47.49/23.25 new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 47.49/23.25 new_lt8(x0, x1, ty_Bool) 47.49/23.25 new_esEs18(Double(x0, x1), Double(x2, x3)) 47.49/23.25 new_primEqInt(Pos(Zero), Neg(Zero)) 47.49/23.25 new_primEqInt(Neg(Zero), Pos(Zero)) 47.49/23.25 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.25 new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 47.49/23.25 new_esEs30(x0, x1, ty_Float) 47.49/23.25 new_esEs12(LT, GT) 47.49/23.25 new_esEs12(GT, LT) 47.49/23.25 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 47.49/23.25 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 47.49/23.25 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 47.49/23.25 new_esEs17(Char(x0), Char(x1)) 47.49/23.25 new_esEs21(x0, x1, ty_Float) 47.49/23.25 new_ltEs4(Nothing, Just(x0), x1) 47.49/23.25 new_ltEs18(x0, x1, ty_Double) 47.49/23.25 new_ltEs20(x0, x1, ty_Ordering) 47.49/23.25 new_esEs27(x0, x1, ty_Bool) 47.49/23.25 new_lt4(x0, x1, x2, x3) 47.49/23.25 new_esEs29(x0, x1, ty_Integer) 47.49/23.25 new_compare14(x0, x1) 47.49/23.25 new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 47.49/23.25 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.25 new_compare10(x0, x1, True, x2, x3) 47.49/23.25 new_ltEs18(x0, x1, ty_Char) 47.49/23.25 new_compare111(x0, x1, False, x2) 47.49/23.25 new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 47.49/23.25 new_asAs(True, x0) 47.49/23.25 new_compare5(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.25 new_esEs24(x0, x1, ty_Integer) 47.49/23.25 new_esEs30(x0, x1, ty_@0) 47.49/23.25 new_pePe(True, x0) 47.49/23.25 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.25 new_ltEs18(x0, x1, app(ty_[], x2)) 47.49/23.25 new_ltEs7(x0, x1) 47.49/23.25 new_ltEs15(EQ, EQ) 47.49/23.25 new_primEqNat0(Succ(x0), Zero) 47.49/23.25 new_esEs28(x0, x1, ty_Integer) 47.49/23.25 new_esEs25(x0, x1, ty_Float) 47.49/23.25 new_primMulNat0(Succ(x0), Succ(x1)) 47.49/23.25 new_gt2(x0, x1, x2) 47.49/23.25 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 47.49/23.25 new_compare5(x0, x1, ty_Ordering) 47.49/23.25 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.25 new_lt19(x0, x1, ty_Char) 47.49/23.25 new_ltEs19(x0, x1, ty_Integer) 47.49/23.25 new_lt5(x0, x1) 47.49/23.25 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 47.49/23.25 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 47.49/23.25 new_esEs7(Right(x0), Right(x1), x2, ty_Bool) 47.49/23.25 new_esEs23(x0, x1, app(ty_Maybe, x2)) 47.49/23.25 new_esEs9(x0, x1, ty_Char) 47.49/23.25 new_ltEs4(Just(x0), Just(x1), ty_Bool) 47.49/23.25 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.25 new_lt6(x0, x1) 47.49/23.25 new_lt19(x0, x1, ty_Int) 47.49/23.25 new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) 47.49/23.25 new_primEqNat0(Succ(x0), Succ(x1)) 47.49/23.25 new_esEs22(x0, x1, app(ty_Ratio, x2)) 47.49/23.25 new_ltEs6(x0, x1) 47.49/23.25 new_esEs9(x0, x1, app(ty_Ratio, x2)) 47.49/23.25 new_compare7(Char(x0), Char(x1)) 47.49/23.25 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.25 new_esEs12(GT, GT) 47.49/23.25 new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 47.49/23.25 new_esEs12(LT, EQ) 47.49/23.25 new_esEs12(EQ, LT) 47.49/23.25 new_compare16(x0, x1, x2, x3) 47.49/23.25 new_compare25(Just(x0), Nothing, False, x1) 47.49/23.25 new_esEs7(Left(x0), Left(x1), ty_Int, x2) 47.49/23.25 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.25 new_ltEs5(x0, x1) 47.49/23.25 new_esEs21(x0, x1, app(ty_Maybe, x2)) 47.49/23.25 new_ltEs15(GT, LT) 47.49/23.25 new_ltEs15(LT, GT) 47.49/23.25 new_ltEs14(Left(x0), Left(x1), ty_Ordering, x2) 47.49/23.25 new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 47.49/23.25 new_esEs24(x0, x1, app(ty_[], x2)) 47.49/23.25 new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 47.49/23.25 new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 47.49/23.25 new_esEs8([], [], x0) 47.49/23.25 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.25 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 47.49/23.25 new_esEs29(x0, x1, ty_Bool) 47.49/23.25 new_ltEs4(Just(x0), Just(x1), ty_Integer) 47.49/23.25 new_ltEs14(Left(x0), Left(x1), ty_Double, x2) 47.49/23.25 new_esEs27(x0, x1, ty_Int) 47.49/23.25 new_esEs6(Just(x0), Just(x1), ty_Integer) 47.49/23.25 new_esEs6(Just(x0), Just(x1), ty_Float) 47.49/23.25 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.25 new_compare114(x0, x1, True, x2, x3) 47.49/23.25 new_ltEs14(Right(x0), Right(x1), x2, app(ty_[], x3)) 47.49/23.25 new_esEs7(Left(x0), Left(x1), ty_Float, x2) 47.49/23.25 new_compare5(x0, x1, ty_Double) 47.49/23.25 new_lt13(x0, x1, x2, x3, x4) 47.49/23.25 new_primMulNat0(Succ(x0), Zero) 47.49/23.25 new_esEs27(x0, x1, ty_Float) 47.49/23.25 new_esEs25(x0, x1, ty_Bool) 47.49/23.25 new_lt15(x0, x1, x2) 47.49/23.25 new_esEs6(Just(x0), Just(x1), ty_Ordering) 47.49/23.25 new_esEs9(x0, x1, ty_Bool) 47.49/23.25 new_lt7(x0, x1) 47.49/23.25 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 47.49/23.25 new_lt8(x0, x1, ty_@0) 47.49/23.25 new_esEs9(x0, x1, ty_Ordering) 47.49/23.25 new_esEs26(x0, x1, app(ty_Maybe, x2)) 47.49/23.25 new_primCmpInt(Neg(Zero), Neg(Zero)) 47.49/23.25 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 47.49/23.25 new_ltEs4(Just(x0), Nothing, x1) 47.49/23.25 new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 47.49/23.25 new_lt19(x0, x1, app(ty_Ratio, x2)) 47.49/23.25 new_compare5(x0, x1, app(ty_[], x2)) 47.49/23.25 new_esEs28(x0, x1, ty_Double) 47.49/23.25 new_primCmpInt(Pos(Zero), Neg(Zero)) 47.49/23.25 new_primCmpInt(Neg(Zero), Pos(Zero)) 47.49/23.25 new_primPlusNat0(Succ(x0), Zero) 47.49/23.25 new_esEs23(x0, x1, ty_Float) 47.49/23.25 new_esEs7(Right(x0), Right(x1), x2, ty_Char) 47.49/23.25 new_esEs21(x0, x1, ty_Integer) 47.49/23.25 new_esEs28(x0, x1, ty_@0) 47.49/23.25 new_lt19(x0, x1, ty_Bool) 47.49/23.25 new_esEs25(x0, x1, ty_Ordering) 47.49/23.25 new_lt19(x0, x1, ty_Ordering) 47.49/23.25 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 47.49/23.25 new_esEs22(x0, x1, ty_Integer) 47.49/23.25 new_esEs11(False, False) 47.49/23.25 new_ltEs14(Right(x0), Right(x1), x2, ty_Double) 47.49/23.25 new_esEs7(Right(x0), Right(x1), x2, ty_Int) 47.49/23.25 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.25 new_ltEs14(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 47.49/23.25 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.25 new_esEs15(:%(x0, x1), :%(x2, x3), x4) 47.49/23.25 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.25 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.25 new_compare33(x0) 47.49/23.25 new_esEs9(x0, x1, ty_Integer) 47.49/23.25 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.25 new_ltEs20(x0, x1, ty_@0) 47.49/23.25 new_ltEs4(Just(x0), Just(x1), ty_Char) 47.49/23.25 new_compare([], :(x0, x1), x2) 47.49/23.25 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 47.49/23.25 new_compare113(x0, x1, True) 47.49/23.25 new_compare([], [], x0) 47.49/23.25 new_lt20(x0, x1, ty_Double) 47.49/23.25 new_esEs7(Left(x0), Left(x1), ty_Char, x2) 47.49/23.25 new_ltEs19(x0, x1, ty_Bool) 47.49/23.25 new_ltEs20(x0, x1, ty_Double) 47.49/23.25 new_esEs24(x0, x1, ty_@0) 47.49/23.25 new_esEs7(Left(x0), Left(x1), ty_Bool, x2) 47.49/23.25 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.25 new_lt19(x0, x1, ty_Integer) 47.49/23.25 new_esEs22(x0, x1, ty_Ordering) 47.49/23.25 new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 47.49/23.25 new_compare25(Nothing, Nothing, False, x0) 47.49/23.25 new_esEs13(Float(x0, x1), Float(x2, x3)) 47.49/23.25 new_esEs6(Just(x0), Just(x1), ty_Bool) 47.49/23.25 new_lt8(x0, x1, app(ty_Maybe, x2)) 47.49/23.25 new_esEs6(Nothing, Nothing, x0) 47.49/23.25 new_compare8(x0, x1) 47.49/23.25 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 47.49/23.25 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.25 new_compare5(x0, x1, app(ty_Ratio, x2)) 47.49/23.25 new_esEs7(Right(x0), Right(x1), x2, ty_Float) 47.49/23.25 new_ltEs14(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 47.49/23.25 new_esEs29(x0, x1, ty_Float) 47.49/23.25 new_ltEs13(True, True) 47.49/23.25 new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) 47.49/23.25 new_esEs21(x0, x1, ty_Ordering) 47.49/23.25 new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 47.49/23.25 new_compare28(x0, x1, False, x2, x3, x4) 47.49/23.25 new_esEs25(x0, x1, ty_Integer) 47.49/23.25 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.25 new_esEs25(x0, x1, ty_Char) 47.49/23.25 new_compare17(x0, x1) 47.49/23.25 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 47.49/23.25 new_esEs22(x0, x1, ty_@0) 47.49/23.25 new_esEs26(x0, x1, ty_Ordering) 47.49/23.25 new_ltEs20(x0, x1, app(ty_[], x2)) 47.49/23.25 new_gt(x0) 47.49/23.25 new_ltEs19(x0, x1, ty_Char) 47.49/23.25 new_esEs24(x0, x1, ty_Ordering) 47.49/23.25 new_esEs6(Nothing, Just(x0), x1) 47.49/23.25 new_primCompAux0(x0, x1, x2, x3) 47.49/23.25 new_esEs30(x0, x1, app(ty_[], x2)) 47.49/23.25 new_primCompAux00(x0, EQ) 47.49/23.25 new_esEs22(x0, x1, ty_Bool) 47.49/23.25 new_ltEs4(Just(x0), Just(x1), ty_Int) 47.49/23.25 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.25 new_primMulNat0(Zero, Zero) 47.49/23.25 new_compare24(x0, x1, True) 47.49/23.25 new_compare5(x0, x1, ty_@0) 47.49/23.25 new_ltEs18(x0, x1, ty_Float) 47.49/23.25 new_primPlusNat1(Zero, x0) 47.49/23.25 new_esEs29(x0, x1, ty_Ordering) 47.49/23.25 new_esEs24(x0, x1, ty_Int) 47.49/23.25 new_compare5(x0, x1, app(ty_Maybe, x2)) 47.49/23.25 new_lt8(x0, x1, ty_Double) 47.49/23.25 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.25 new_esEs6(Just(x0), Just(x1), ty_Char) 47.49/23.25 new_esEs25(x0, x1, ty_Int) 47.49/23.25 new_esEs29(x0, x1, ty_Int) 47.49/23.25 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 47.49/23.25 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.25 new_ltEs14(Left(x0), Left(x1), ty_Integer, x2) 47.49/23.25 new_esEs23(x0, x1, ty_Char) 47.49/23.25 new_ltEs4(Just(x0), Just(x1), ty_Ordering) 47.49/23.25 new_compare5(x0, x1, ty_Bool) 47.49/23.25 new_lt12(x0, x1, x2) 47.49/23.25 new_ltEs14(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 47.49/23.25 new_sr0(Integer(x0), Integer(x1)) 47.49/23.25 new_lt16(x0, x1, x2, x3) 47.49/23.25 new_esEs29(x0, x1, ty_Double) 47.49/23.25 new_fsEs(x0) 47.49/23.25 new_compare9(@0, @0) 47.49/23.25 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 47.49/23.25 new_ltEs19(x0, x1, ty_Ordering) 47.49/23.25 new_esEs24(x0, x1, ty_Char) 47.49/23.25 new_compare10(x0, x1, False, x2, x3) 47.49/23.25 new_esEs21(x0, x1, ty_Bool) 47.49/23.25 new_esEs24(x0, x1, ty_Double) 47.49/23.25 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 47.49/23.25 new_esEs29(x0, x1, ty_Char) 47.49/23.25 new_primPlusNat1(Succ(x0), x1) 47.49/23.25 new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) 47.49/23.25 new_esEs23(x0, x1, ty_Int) 47.49/23.25 new_compare112(x0, x1, False, x2, x3, x4) 47.49/23.25 new_ltEs14(Left(x0), Left(x1), ty_@0, x2) 47.49/23.25 new_esEs23(x0, x1, ty_@0) 47.49/23.25 new_esEs6(Just(x0), Just(x1), ty_Int) 47.49/23.25 new_esEs23(x0, x1, app(ty_[], x2)) 47.49/23.25 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.25 new_ltEs19(x0, x1, ty_Int) 47.49/23.25 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.25 new_esEs29(x0, x1, app(ty_[], x2)) 47.49/23.25 new_esEs6(Just(x0), Just(x1), ty_@0) 47.49/23.25 new_lt8(x0, x1, ty_Ordering) 47.49/23.25 new_esEs23(x0, x1, app(ty_Ratio, x2)) 47.49/23.25 new_primPlusNat0(Zero, Zero) 47.49/23.25 new_lt8(x0, x1, ty_Int) 47.49/23.25 new_esEs30(x0, x1, ty_Int) 47.49/23.25 new_lt19(x0, x1, ty_@0) 47.49/23.25 new_not(True) 47.49/23.25 new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 47.49/23.25 new_esEs23(x0, x1, ty_Bool) 47.49/23.25 new_esEs22(x0, x1, ty_Char) 47.49/23.25 new_esEs12(EQ, GT) 47.49/23.25 new_esEs12(GT, EQ) 47.49/23.25 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.25 new_esEs6(Just(x0), Nothing, x1) 47.49/23.25 new_esEs28(x0, x1, app(ty_Ratio, x2)) 47.49/23.25 new_lt19(x0, x1, ty_Float) 47.49/23.25 new_ltEs13(False, False) 47.49/23.25 new_compare114(x0, x1, False, x2, x3) 47.49/23.25 new_esEs25(x0, x1, ty_Double) 47.49/23.25 new_esEs25(x0, x1, ty_@0) 47.49/23.25 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 47.49/23.25 new_esEs11(True, True) 47.49/23.25 new_ltEs14(Left(x0), Left(x1), app(ty_[], x2), x3) 47.49/23.25 new_compare27(x0, x1, True, x2, x3) 47.49/23.25 new_ltEs14(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 47.49/23.25 new_lt18(x0, x1, x2) 47.49/23.25 new_ltEs15(GT, EQ) 47.49/23.25 new_esEs23(x0, x1, ty_Double) 47.49/23.25 new_ltEs15(EQ, GT) 47.49/23.25 new_ltEs14(Right(x0), Right(x1), x2, ty_Float) 47.49/23.25 new_compare25(Just(x0), Just(x1), False, x2) 47.49/23.25 new_esEs21(x0, x1, ty_Char) 47.49/23.25 new_esEs11(False, True) 47.49/23.25 new_esEs11(True, False) 47.49/23.25 new_compare113(x0, x1, False) 47.49/23.25 new_esEs27(x0, x1, app(ty_Ratio, x2)) 47.49/23.25 new_lt8(x0, x1, ty_Char) 47.49/23.25 new_esEs29(x0, x1, app(ty_Ratio, x2)) 47.49/23.25 new_esEs21(x0, x1, app(ty_Ratio, x2)) 47.49/23.25 new_esEs28(x0, x1, app(ty_[], x2)) 47.49/23.25 new_ltEs20(x0, x1, ty_Integer) 47.49/23.25 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 47.49/23.25 new_esEs8([], :(x0, x1), x2) 47.49/23.25 new_esEs24(x0, x1, app(ty_Ratio, x2)) 47.49/23.25 new_esEs30(x0, x1, ty_Double) 47.49/23.25 new_esEs26(x0, x1, ty_Int) 47.49/23.25 new_primPlusNat0(Zero, Succ(x0)) 47.49/23.25 new_ltEs14(Left(x0), Left(x1), ty_Bool, x2) 47.49/23.25 new_compare5(x0, x1, ty_Integer) 47.49/23.25 new_compare26(x0, x1, True, x2, x3) 47.49/23.25 new_ltEs14(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 47.49/23.25 new_esEs30(x0, x1, ty_Char) 47.49/23.25 new_primCmpNat0(Succ(x0), Succ(x1)) 47.49/23.25 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.25 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.25 new_compare31(x0, x1) 47.49/23.25 new_esEs9(x0, x1, ty_@0) 47.49/23.25 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.25 new_esEs7(Right(x0), Right(x1), x2, ty_Integer) 47.49/23.25 new_esEs12(LT, LT) 47.49/23.25 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 47.49/23.25 new_lt8(x0, x1, app(ty_[], x2)) 47.49/23.25 new_esEs9(x0, x1, app(ty_Maybe, x2)) 47.49/23.25 new_esEs21(x0, x1, ty_Int) 47.49/23.25 new_esEs26(x0, x1, ty_Double) 47.49/23.25 new_esEs22(x0, x1, ty_Int) 47.49/23.25 new_esEs26(x0, x1, ty_Char) 47.49/23.25 new_esEs21(x0, x1, ty_@0) 47.49/23.25 new_lt14(x0, x1) 47.49/23.25 new_esEs9(x0, x1, ty_Float) 47.49/23.25 new_compare(:(x0, x1), :(x2, x3), x4) 47.49/23.25 new_esEs20(x0, x1, ty_Int) 47.49/23.25 new_ltEs19(x0, x1, app(ty_[], x2)) 47.49/23.25 new_primCmpInt(Pos(Zero), Pos(Zero)) 47.49/23.25 new_gt1(x0, x1) 47.49/23.25 new_esEs20(x0, x1, ty_Integer) 47.49/23.25 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.25 new_esEs7(Right(x0), Right(x1), x2, ty_@0) 47.49/23.25 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.25 new_esEs22(x0, x1, ty_Double) 47.49/23.25 new_esEs27(x0, x1, ty_Double) 47.49/23.25 new_esEs14(@0, @0) 47.49/23.25 new_pePe(False, x0) 47.49/23.25 new_ltEs9(x0, x1) 47.49/23.25 new_esEs22(x0, x1, ty_Float) 47.49/23.25 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.25 new_compare29(x0, x1, False) 47.49/23.25 new_esEs22(x0, x1, app(ty_[], x2)) 47.49/23.25 new_esEs16(x0, x1) 47.49/23.25 new_esEs26(x0, x1, ty_Bool) 47.49/23.25 new_esEs30(x0, x1, app(ty_Maybe, x2)) 47.49/23.25 new_lt10(x0, x1) 47.49/23.25 new_esEs26(x0, x1, ty_@0) 47.49/23.25 new_compare30(x0, x1, x2) 47.49/23.25 new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 47.49/23.25 new_ltEs18(x0, x1, ty_@0) 47.49/23.25 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.25 new_esEs8(:(x0, x1), :(x2, x3), x4) 47.49/23.25 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 47.49/23.25 new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 47.49/23.25 new_ltEs18(x0, x1, ty_Bool) 47.49/23.25 new_compare5(x0, x1, ty_Float) 47.49/23.25 new_esEs10(Integer(x0), Integer(x1)) 47.49/23.25 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.25 new_compare32(x0, x1) 47.49/23.25 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 47.49/23.25 new_esEs21(x0, x1, ty_Double) 47.49/23.25 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 47.49/23.25 new_ltEs4(Just(x0), Just(x1), ty_@0) 47.49/23.25 new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.25 new_lt20(x0, x1, ty_Float) 47.49/23.25 new_esEs26(x0, x1, ty_Integer) 47.49/23.25 new_ltEs14(Right(x0), Right(x1), x2, ty_Integer) 47.49/23.25 new_ltEs10(x0, x1) 47.49/23.25 new_ltEs14(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 47.49/23.25 new_compare5(x0, x1, ty_Int) 47.49/23.25 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 47.49/23.25 new_lt20(x0, x1, ty_Ordering) 47.49/23.25 new_ltEs15(EQ, LT) 47.49/23.25 new_ltEs15(LT, EQ) 47.49/23.25 new_esEs30(x0, x1, ty_Bool) 47.49/23.25 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 47.49/23.25 new_esEs23(x0, x1, ty_Integer) 47.49/23.25 new_ltEs14(Left(x0), Left(x1), ty_Char, x2) 47.49/23.25 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.25 new_compare15(x0, x1, x2) 47.49/23.25 new_esEs24(x0, x1, ty_Bool) 47.49/23.25 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 47.49/23.25 new_esEs29(x0, x1, app(ty_Maybe, x2)) 47.49/23.25 new_ltEs15(GT, GT) 47.49/23.25 new_esEs27(x0, x1, ty_Ordering) 47.49/23.25 new_esEs30(x0, x1, app(ty_Ratio, x2)) 47.49/23.25 new_gt0(x0, x1) 47.49/23.25 new_compare5(x0, x1, ty_Char) 47.49/23.25 new_esEs22(x0, x1, app(ty_Maybe, x2)) 47.49/23.25 new_lt20(x0, x1, ty_Integer) 47.49/23.25 new_ltEs19(x0, x1, ty_@0) 47.49/23.25 new_ltEs14(Left(x0), Left(x1), ty_Int, x2) 47.49/23.25 new_esEs24(x0, x1, app(ty_Maybe, x2)) 47.49/23.25 new_ltEs16(x0, x1) 47.49/23.25 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 47.49/23.25 new_lt11(x0, x1) 47.49/23.25 new_ltEs18(x0, x1, ty_Integer) 47.49/23.25 new_primEqNat0(Zero, Zero) 47.49/23.25 new_ltEs14(Right(x0), Right(x1), x2, ty_Bool) 47.49/23.25 new_esEs23(x0, x1, ty_Ordering) 47.49/23.25 new_ltEs14(Right(x0), Right(x1), x2, ty_Ordering) 47.49/23.25 new_not(False) 47.49/23.25 new_lt19(x0, x1, app(ty_[], x2)) 47.49/23.25 new_lt20(x0, x1, app(ty_[], x2)) 47.49/23.25 new_ltEs8(x0, x1, x2) 47.49/23.25 new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 47.49/23.25 new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 47.49/23.25 new_lt20(x0, x1, app(ty_Ratio, x2)) 47.49/23.25 new_esEs8(:(x0, x1), [], x2) 47.49/23.25 new_esEs28(x0, x1, app(ty_Maybe, x2)) 47.49/23.25 new_ltEs20(x0, x1, ty_Bool) 47.49/23.25 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.25 new_ltEs19(x0, x1, ty_Double) 47.49/23.25 new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 47.49/23.25 new_esEs30(x0, x1, ty_Integer) 47.49/23.25 new_ltEs20(x0, x1, ty_Float) 47.49/23.25 new_compare112(x0, x1, True, x2, x3, x4) 47.49/23.25 new_compare11(Integer(x0), Integer(x1)) 47.49/23.25 new_primCompAux00(x0, LT) 47.49/23.25 new_ltEs14(Left(x0), Left(x1), ty_Float, x2) 47.49/23.25 new_compare110(x0, x1, True) 47.49/23.25 new_compare25(x0, x1, True, x2) 47.49/23.25 new_lt8(x0, x1, app(ty_Ratio, x2)) 47.49/23.25 new_ltEs15(LT, LT) 47.49/23.25 new_esEs6(Just(x0), Just(x1), ty_Double) 47.49/23.25 new_lt20(x0, x1, ty_Int) 47.49/23.25 new_lt9(x0, x1) 47.49/23.25 new_esEs26(x0, x1, app(ty_[], x2)) 47.49/23.25 new_ltEs20(x0, x1, ty_Char) 47.49/23.25 new_esEs28(x0, x1, ty_Int) 47.49/23.25 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.25 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.25 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.25 new_ltEs17(x0, x1, x2) 47.49/23.25 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.25 new_lt20(x0, x1, ty_Bool) 47.49/23.25 new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 47.49/23.25 new_esEs29(x0, x1, ty_@0) 47.49/23.25 new_ltEs18(x0, x1, ty_Ordering) 47.49/23.25 new_esEs7(Left(x0), Left(x1), ty_Double, x2) 47.49/23.25 new_lt20(x0, x1, ty_Char) 47.49/23.25 new_compare24(x0, x1, False) 47.49/23.25 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 47.49/23.25 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 47.49/23.25 new_compare12(x0, x1, x2, x3) 47.49/23.25 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.25 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 47.49/23.25 new_esEs24(x0, x1, ty_Float) 47.49/23.25 new_primPlusNat0(Succ(x0), Succ(x1)) 47.49/23.25 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 47.49/23.25 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 47.49/23.25 new_primMulInt(Pos(x0), Neg(x1)) 47.49/23.25 new_primMulInt(Neg(x0), Pos(x1)) 47.49/23.25 new_ltEs4(Just(x0), Just(x1), ty_Double) 47.49/23.25 new_esEs19(x0, x1, ty_Int) 47.49/23.25 new_ltEs14(Right(x0), Left(x1), x2, x3) 47.49/23.25 new_ltEs14(Left(x0), Right(x1), x2, x3) 47.49/23.25 new_esEs25(x0, x1, app(ty_Ratio, x2)) 47.49/23.25 new_esEs30(x0, x1, ty_Ordering) 47.49/23.25 new_primMulNat0(Zero, Succ(x0)) 47.49/23.25 new_primCmpNat0(Zero, Zero) 47.49/23.25 new_primEqNat0(Zero, Succ(x0)) 47.49/23.25 new_esEs28(x0, x1, ty_Float) 47.49/23.25 new_ltEs20(x0, x1, ty_Int) 47.49/23.25 47.49/23.25 We have to consider all minimal (P,Q,R)-chains. 47.49/23.25 ---------------------------------------- 47.49/23.25 47.49/23.25 (39) DependencyGraphProof (EQUIVALENT) 47.49/23.25 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. 47.49/23.25 ---------------------------------------- 47.49/23.25 47.49/23.25 (40) 47.49/23.25 Complex Obligation (AND) 47.49/23.25 47.49/23.25 ---------------------------------------- 47.49/23.25 47.49/23.25 (41) 47.49/23.25 Obligation: 47.49/23.25 Q DP problem: 47.49/23.25 The TRS P consists of the following rules: 47.49/23.25 47.49/23.25 new_addToFM_C10(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, True, h, ba) -> new_addToFM_C(yvy54, Nothing, yvy41, h, ba) 47.49/23.25 new_addToFM_C(Branch(Just(yvy500), yvy51, yvy52, yvy53, yvy54), Nothing, yvy41, h, ba) -> new_addToFM_C20(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, new_esEs12(new_compare25(Nothing, Just(yvy500), False, h), LT), h, ba) 47.49/23.25 new_addToFM_C20(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, False, h, ba) -> new_addToFM_C10(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, new_gt0(yvy500, h), h, ba) 47.49/23.25 new_addToFM_C20(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, True, h, ba) -> new_addToFM_C(yvy53, Nothing, yvy41, h, ba) 47.49/23.25 new_addToFM_C(Branch(Nothing, yvy51, yvy52, yvy53, yvy54), Nothing, yvy41, h, ba) -> new_addToFM_C2(yvy51, yvy52, yvy53, yvy54, yvy41, new_esEs12(new_compare25(Nothing, Nothing, True, h), LT), h, ba) 47.49/23.25 new_addToFM_C2(yvy51, yvy52, yvy53, yvy54, yvy41, True, h, ba) -> new_addToFM_C(yvy53, Nothing, yvy41, h, ba) 47.49/23.25 new_addToFM_C2(yvy51, yvy52, yvy53, yvy54, yvy41, False, h, ba) -> new_addToFM_C1(yvy51, yvy52, yvy53, yvy54, yvy41, new_gt(h), h, ba) 47.49/23.25 new_addToFM_C1(yvy51, yvy52, yvy53, yvy54, yvy41, True, h, ba) -> new_addToFM_C(yvy54, Nothing, yvy41, h, ba) 47.49/23.25 47.49/23.25 The TRS R consists of the following rules: 47.49/23.25 47.49/23.25 new_esEs22(yvy4002, yvy3002, app(ty_[], cac)) -> new_esEs8(yvy4002, yvy3002, cac) 47.49/23.25 new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) 47.49/23.25 new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT 47.49/23.25 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 47.49/23.25 new_primPlusNat0(Zero, Zero) -> Zero 47.49/23.25 new_compare13(yvy49000, yvy50000, bca, bcb, bcc) -> new_compare28(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, bca, bcb, bcc), bca, bcb, bcc) 47.49/23.25 new_esEs23(yvy4001, yvy3001, app(ty_Maybe, cag)) -> new_esEs6(yvy4001, yvy3001, cag) 47.49/23.25 new_pePe(True, yvy220) -> True 47.49/23.25 new_ltEs20(yvy49002, yvy50002, ty_Ordering) -> new_ltEs15(yvy49002, yvy50002) 47.49/23.25 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.25 new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) 47.49/23.25 new_compare26(yvy49000, yvy50000, False, bbg, bbh) -> new_compare114(yvy49000, yvy50000, new_ltEs14(yvy49000, yvy50000, bbg, bbh), bbg, bbh) 47.49/23.25 new_lt20(yvy49001, yvy50001, ty_Ordering) -> new_lt17(yvy49001, yvy50001) 47.49/23.25 new_esEs30(yvy20, yvy15, app(app(ty_@2, ddd), dde)) -> new_esEs4(yvy20, yvy15, ddd, dde) 47.49/23.25 new_compare(:(yvy49000, yvy49001), [], be) -> GT 47.49/23.25 new_ltEs20(yvy49002, yvy50002, app(app(ty_@2, dbf), dbg)) -> new_ltEs11(yvy49002, yvy50002, dbf, dbg) 47.49/23.25 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 47.49/23.25 new_ltEs14(Right(yvy49000), Left(yvy50000), hc, fh) -> False 47.49/23.25 new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Ratio, hb), fh) -> new_ltEs17(yvy49000, yvy50000, hb) 47.49/23.25 new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT 47.49/23.25 new_esEs29(yvy400, yvy500, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs5(yvy400, yvy500, bgg, bgh, bha) 47.49/23.25 new_lt20(yvy49001, yvy50001, app(ty_Ratio, dbd)) -> new_lt18(yvy49001, yvy50001, dbd) 47.49/23.25 new_compare(:(yvy49000, yvy49001), :(yvy50000, yvy50001), be) -> new_primCompAux0(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, be), be) 47.49/23.25 new_compare26(yvy49000, yvy50000, True, bbg, bbh) -> EQ 47.49/23.25 new_esEs8(:(yvy4000, yvy4001), :(yvy3000, yvy3001), ed) -> new_asAs(new_esEs9(yvy4000, yvy3000, ed), new_esEs8(yvy4001, yvy3001, ed)) 47.49/23.25 new_compare27(yvy49000, yvy50000, False, bc, bd) -> new_compare10(yvy49000, yvy50000, new_ltEs11(yvy49000, yvy50000, bc, bd), bc, bd) 47.49/23.25 new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) 47.49/23.25 new_esEs30(yvy20, yvy15, ty_Float) -> new_esEs13(yvy20, yvy15) 47.49/23.25 new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.25 new_ltEs4(Nothing, Nothing, da) -> True 47.49/23.25 new_ltEs4(Just(yvy49000), Nothing, da) -> False 47.49/23.25 new_lt8(yvy49000, yvy50000, app(app(ty_@2, bc), bd)) -> new_lt4(yvy49000, yvy50000, bc, bd) 47.49/23.25 new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat1(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) 47.49/23.25 new_compare113(yvy49000, yvy50000, False) -> GT 47.49/23.25 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Int) -> new_ltEs7(yvy49000, yvy50000) 47.49/23.25 new_ltEs15(EQ, LT) -> False 47.49/23.25 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.25 new_esEs28(yvy49000, yvy50000, app(app(ty_Either, chh), daa)) -> new_esEs7(yvy49000, yvy50000, chh, daa) 47.49/23.25 new_lt19(yvy49000, yvy50000, app(app(ty_@2, chb), chc)) -> new_lt4(yvy49000, yvy50000, chb, chc) 47.49/23.25 new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.25 new_ltEs20(yvy49002, yvy50002, app(app(ty_Either, dcd), dce)) -> new_ltEs14(yvy49002, yvy50002, dcd, dce) 47.49/23.25 new_esEs28(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) 47.49/23.25 new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Maybe, dh)) -> new_ltEs4(yvy49000, yvy50000, dh) 47.49/23.25 new_ltEs19(yvy49001, yvy50001, ty_Ordering) -> new_ltEs15(yvy49001, yvy50001) 47.49/23.25 new_ltEs18(yvy4900, yvy5000, ty_Float) -> new_ltEs5(yvy4900, yvy5000) 47.49/23.25 new_lt9(yvy49000, yvy50000) -> new_esEs12(new_compare6(yvy49000, yvy50000), LT) 47.49/23.25 new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False 47.49/23.25 new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False 47.49/23.25 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, app(ty_Ratio, bae)) -> new_ltEs17(yvy49000, yvy50000, bae) 47.49/23.25 new_ltEs15(GT, LT) -> False 47.49/23.25 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.25 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.25 new_lt19(yvy49000, yvy50000, app(ty_Ratio, dab)) -> new_lt18(yvy49000, yvy50000, dab) 47.49/23.25 new_esEs24(yvy4000, yvy3000, app(ty_Ratio, ccd)) -> new_esEs15(yvy4000, yvy3000, ccd) 47.49/23.25 new_esEs24(yvy4000, yvy3000, app(app(ty_@2, ccb), ccc)) -> new_esEs4(yvy4000, yvy3000, ccb, ccc) 47.49/23.25 new_ltEs13(True, True) -> True 47.49/23.25 new_compare29(yvy49000, yvy50000, False) -> new_compare113(yvy49000, yvy50000, new_ltEs15(yvy49000, yvy50000)) 47.49/23.25 new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) 47.49/23.25 new_esEs29(yvy400, yvy500, ty_Float) -> new_esEs13(yvy400, yvy500) 47.49/23.25 new_lt15(yvy49000, yvy50000, bag) -> new_esEs12(new_compare15(yvy49000, yvy50000, bag), LT) 47.49/23.25 new_ltEs20(yvy49002, yvy50002, ty_Integer) -> new_ltEs10(yvy49002, yvy50002) 47.49/23.25 new_ltEs19(yvy49001, yvy50001, app(app(ty_@2, bch), bda)) -> new_ltEs11(yvy49001, yvy50001, bch, bda) 47.49/23.25 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Bool) -> new_ltEs13(yvy49000, yvy50000) 47.49/23.25 new_not(True) -> False 47.49/23.25 new_esEs28(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) 47.49/23.25 new_esEs28(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) 47.49/23.25 new_ltEs19(yvy49001, yvy50001, app(ty_Ratio, bdh)) -> new_ltEs17(yvy49001, yvy50001, bdh) 47.49/23.25 new_primCompAux00(yvy225, LT) -> LT 47.49/23.25 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.25 new_primCmpNat0(Zero, Zero) -> EQ 47.49/23.25 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Ordering, bed) -> new_esEs12(yvy4000, yvy3000) 47.49/23.25 new_esEs28(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) 47.49/23.25 new_lt20(yvy49001, yvy50001, ty_Bool) -> new_lt14(yvy49001, yvy50001) 47.49/23.25 new_esEs27(yvy49001, yvy50001, ty_Bool) -> new_esEs11(yvy49001, yvy50001) 47.49/23.25 new_ltEs19(yvy49001, yvy50001, ty_Integer) -> new_ltEs10(yvy49001, yvy50001) 47.49/23.25 new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.49/23.25 new_esEs27(yvy49001, yvy50001, app(ty_[], dac)) -> new_esEs8(yvy49001, yvy50001, dac) 47.49/23.25 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.25 new_esEs27(yvy49001, yvy50001, ty_Char) -> new_esEs17(yvy49001, yvy50001) 47.49/23.25 new_esEs30(yvy20, yvy15, app(ty_Ratio, ddf)) -> new_esEs15(yvy20, yvy15, ddf) 47.49/23.25 new_esEs12(LT, LT) -> True 47.49/23.25 new_esEs21(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) 47.49/23.25 new_primEqNat0(Succ(yvy40000), Zero) -> False 47.49/23.25 new_primEqNat0(Zero, Succ(yvy30000)) -> False 47.49/23.25 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, app(app(app(ty_@3, hg), hh), baa)) -> new_ltEs12(yvy49000, yvy50000, hg, hh, baa) 47.49/23.25 new_esEs14(@0, @0) -> True 47.49/23.25 new_compare8(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) 47.49/23.25 new_ltEs19(yvy49001, yvy50001, ty_Char) -> new_ltEs6(yvy49001, yvy50001) 47.49/23.25 new_compare10(yvy49000, yvy50000, True, bc, bd) -> LT 47.49/23.25 new_ltEs15(GT, EQ) -> False 47.49/23.25 new_lt20(yvy49001, yvy50001, app(app(app(ty_@3, daf), dag), dah)) -> new_lt13(yvy49001, yvy50001, daf, dag, dah) 47.49/23.25 new_primCompAux00(yvy225, GT) -> GT 47.49/23.25 new_compare110(yvy49000, yvy50000, True) -> LT 47.49/23.25 new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, cee), cef), ceg)) -> new_esEs5(yvy4001, yvy3001, cee, cef, ceg) 47.49/23.25 new_compare16(yvy49000, yvy50000, bbg, bbh) -> new_compare26(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, bbg, bbh), bbg, bbh) 47.49/23.25 new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.25 new_esEs27(yvy49001, yvy50001, ty_Ordering) -> new_esEs12(yvy49001, yvy50001) 47.49/23.25 new_lt19(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) 47.49/23.25 new_ltEs20(yvy49002, yvy50002, ty_Bool) -> new_ltEs13(yvy49002, yvy50002) 47.49/23.25 new_esEs22(yvy4002, yvy3002, ty_Int) -> new_esEs16(yvy4002, yvy3002) 47.49/23.25 new_ltEs18(yvy4900, yvy5000, ty_Double) -> new_ltEs16(yvy4900, yvy5000) 47.49/23.25 new_esEs29(yvy400, yvy500, ty_Double) -> new_esEs18(yvy400, yvy500) 47.49/23.25 new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT 47.49/23.25 new_esEs27(yvy49001, yvy50001, ty_Int) -> new_esEs16(yvy49001, yvy50001) 47.49/23.25 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, app(ty_Ratio, bgc)) -> new_esEs15(yvy4000, yvy3000, bgc) 47.49/23.25 new_esEs22(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) 47.49/23.25 new_compare12(yvy49000, yvy50000, bc, bd) -> new_compare27(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, bc, bd), bc, bd) 47.49/23.25 new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs5(yvy4000, yvy3000, cbf, cbg, cbh) 47.49/23.25 new_lt19(yvy49000, yvy50000, app(app(app(ty_@3, chd), che), chf)) -> new_lt13(yvy49000, yvy50000, chd, che, chf) 47.49/23.25 new_ltEs20(yvy49002, yvy50002, app(app(app(ty_@3, dbh), dca), dcb)) -> new_ltEs12(yvy49002, yvy50002, dbh, dca, dcb) 47.49/23.25 new_esEs30(yvy20, yvy15, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs5(yvy20, yvy15, dch, dda, ddb) 47.49/23.25 new_esEs30(yvy20, yvy15, ty_Double) -> new_esEs18(yvy20, yvy15) 47.49/23.25 new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bgg, bgh, bha) -> new_asAs(new_esEs24(yvy4000, yvy3000, bgg), new_asAs(new_esEs23(yvy4001, yvy3001, bgh), new_esEs22(yvy4002, yvy3002, bha))) 47.49/23.25 new_compare5(yvy49000, yvy50000, ty_Int) -> new_compare8(yvy49000, yvy50000) 47.49/23.25 new_compare32(yvy400, h) -> new_compare25(Just(yvy400), Nothing, False, h) 47.49/23.25 new_ltEs19(yvy49001, yvy50001, ty_Bool) -> new_ltEs13(yvy49001, yvy50001) 47.49/23.25 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs5(yvy4000, yvy3000, bfe, bff, bfg) 47.49/23.25 new_ltEs18(yvy4900, yvy5000, ty_Integer) -> new_ltEs10(yvy4900, yvy5000) 47.49/23.25 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.25 new_esEs26(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.25 new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.25 new_esEs7(Left(yvy4000), Left(yvy3000), ty_@0, bed) -> new_esEs14(yvy4000, yvy3000) 47.49/23.25 new_primCmpNat0(Zero, Succ(yvy5000)) -> LT 47.49/23.25 new_compare5(yvy49000, yvy50000, app(ty_Ratio, cg)) -> new_compare19(yvy49000, yvy50000, cg) 47.49/23.25 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.25 new_esEs26(yvy4000, yvy3000, app(ty_[], cgh)) -> new_esEs8(yvy4000, yvy3000, cgh) 47.49/23.25 new_esEs12(EQ, GT) -> False 47.49/23.25 new_esEs12(GT, EQ) -> False 47.49/23.25 new_lt8(yvy49000, yvy50000, app(ty_Ratio, bcf)) -> new_lt18(yvy49000, yvy50000, bcf) 47.49/23.25 new_ltEs19(yvy49001, yvy50001, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_ltEs12(yvy49001, yvy50001, bdb, bdc, bdd) 47.49/23.25 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) 47.49/23.25 new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.25 new_lt8(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) 47.49/23.25 new_esEs21(yvy49000, yvy50000, app(app(app(ty_@3, bca), bcb), bcc)) -> new_esEs5(yvy49000, yvy50000, bca, bcb, bcc) 47.49/23.25 new_lt19(yvy49000, yvy50000, app(ty_[], cha)) -> new_lt12(yvy49000, yvy50000, cha) 47.49/23.25 new_primCmpNat0(Succ(yvy4900), Zero) -> GT 47.49/23.25 new_pePe(False, yvy220) -> yvy220 47.49/23.25 new_esEs27(yvy49001, yvy50001, ty_@0) -> new_esEs14(yvy49001, yvy50001) 47.49/23.25 new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Maybe, gg), fh) -> new_ltEs4(yvy49000, yvy50000, gg) 47.49/23.25 new_esEs11(False, True) -> False 47.49/23.25 new_esEs11(True, False) -> False 47.49/23.25 new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cdh), cea)) -> new_esEs7(yvy4000, yvy3000, cdh, cea) 47.49/23.25 new_lt8(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) 47.49/23.25 new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_@2, bef), beg), bed) -> new_esEs4(yvy4000, yvy3000, bef, beg) 47.49/23.25 new_compare114(yvy49000, yvy50000, True, bbg, bbh) -> LT 47.49/23.25 new_lt8(yvy49000, yvy50000, app(app(ty_Either, bbg), bbh)) -> new_lt16(yvy49000, yvy50000, bbg, bbh) 47.49/23.25 new_ltEs18(yvy4900, yvy5000, ty_@0) -> new_ltEs9(yvy4900, yvy5000) 47.49/23.25 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_@0) -> new_ltEs9(yvy49000, yvy50000) 47.49/23.25 new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 47.49/23.25 new_gt2(yvy35, yvy30, bb) -> new_esEs12(new_compare30(yvy35, yvy30, bb), GT) 47.49/23.25 new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) 47.49/23.25 new_ltEs7(yvy4900, yvy5000) -> new_fsEs(new_compare8(yvy4900, yvy5000)) 47.49/23.25 new_ltEs19(yvy49001, yvy50001, ty_Double) -> new_ltEs16(yvy49001, yvy50001) 47.49/23.25 new_esEs22(yvy4002, yvy3002, ty_Bool) -> new_esEs11(yvy4002, yvy3002) 47.49/23.25 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Char) -> new_ltEs6(yvy49000, yvy50000) 47.49/23.25 new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_[], ga), fh) -> new_ltEs8(yvy49000, yvy50000, ga) 47.49/23.25 new_esEs21(yvy49000, yvy50000, app(ty_[], bce)) -> new_esEs8(yvy49000, yvy50000, bce) 47.49/23.25 new_esEs22(yvy4002, yvy3002, app(ty_Maybe, bhe)) -> new_esEs6(yvy4002, yvy3002, bhe) 47.49/23.25 new_esEs21(yvy49000, yvy50000, app(app(ty_@2, bc), bd)) -> new_esEs4(yvy49000, yvy50000, bc, bd) 47.49/23.25 new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False 47.49/23.25 new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False 47.49/23.25 new_esEs25(yvy4001, yvy3001, app(app(ty_@2, cfa), cfb)) -> new_esEs4(yvy4001, yvy3001, cfa, cfb) 47.49/23.25 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Bool, bed) -> new_esEs11(yvy4000, yvy3000) 47.49/23.25 new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Ratio, beh), bed) -> new_esEs15(yvy4000, yvy3000, beh) 47.49/23.25 new_ltEs18(yvy4900, yvy5000, ty_Bool) -> new_ltEs13(yvy4900, yvy5000) 47.49/23.25 new_gt0(yvy300, h) -> new_esEs12(new_compare31(yvy300, h), GT) 47.49/23.25 new_ltEs18(yvy4900, yvy5000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_ltEs12(yvy4900, yvy5000, bbc, bbd, bbe) 47.49/23.25 new_esEs23(yvy4001, yvy3001, app(app(ty_Either, cbc), cbd)) -> new_esEs7(yvy4001, yvy3001, cbc, cbd) 47.49/23.25 new_esEs21(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) 47.49/23.25 new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 47.49/23.25 new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_@2, gb), gc), fh) -> new_ltEs11(yvy49000, yvy50000, gb, gc) 47.49/23.25 new_ltEs20(yvy49002, yvy50002, ty_Double) -> new_ltEs16(yvy49002, yvy50002) 47.49/23.25 new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.25 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, app(app(ty_Either, bac), bad)) -> new_ltEs14(yvy49000, yvy50000, bac, bad) 47.49/23.25 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Float, fh) -> new_ltEs5(yvy49000, yvy50000) 47.49/23.25 new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT 47.49/23.25 new_compare114(yvy49000, yvy50000, False, bbg, bbh) -> GT 47.49/23.25 new_esEs25(yvy4001, yvy3001, app(ty_[], cff)) -> new_esEs8(yvy4001, yvy3001, cff) 47.49/23.25 new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.25 new_esEs4(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cec, ced) -> new_asAs(new_esEs26(yvy4000, yvy3000, cec), new_esEs25(yvy4001, yvy3001, ced)) 47.49/23.25 new_ltEs5(yvy4900, yvy5000) -> new_fsEs(new_compare6(yvy4900, yvy5000)) 47.49/23.25 new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_Either, bfa), bfb), bed) -> new_esEs7(yvy4000, yvy3000, bfa, bfb) 47.49/23.25 new_esEs26(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.25 new_esEs9(yvy4000, yvy3000, app(app(ty_@2, fa), fb)) -> new_esEs4(yvy4000, yvy3000, fa, fb) 47.49/23.25 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.25 new_compare25(Just(yvy4900), Nothing, False, bah) -> GT 47.49/23.25 new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) 47.49/23.25 new_compare5(yvy49000, yvy50000, ty_@0) -> new_compare9(yvy49000, yvy50000) 47.49/23.25 new_esEs24(yvy4000, yvy3000, app(ty_Maybe, cca)) -> new_esEs6(yvy4000, yvy3000, cca) 47.49/23.25 new_lt11(yvy205, yvy204) -> new_esEs12(new_compare8(yvy205, yvy204), LT) 47.49/23.25 new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 47.49/23.25 new_lt6(yvy49000, yvy50000) -> new_esEs12(new_compare9(yvy49000, yvy50000), LT) 47.49/23.25 new_primMulNat0(Succ(yvy400100), Zero) -> Zero 47.49/23.25 new_primMulNat0(Zero, Succ(yvy300000)) -> Zero 47.49/23.25 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Double, fh) -> new_ltEs16(yvy49000, yvy50000) 47.49/23.25 new_lt8(yvy49000, yvy50000, app(app(app(ty_@3, bca), bcb), bcc)) -> new_lt13(yvy49000, yvy50000, bca, bcb, bcc) 47.49/23.25 new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) 47.49/23.25 new_esEs6(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, cda), cdb), cdc)) -> new_esEs5(yvy4000, yvy3000, cda, cdb, cdc) 47.49/23.25 new_esEs25(yvy4001, yvy3001, app(app(ty_Either, cfd), cfe)) -> new_esEs7(yvy4001, yvy3001, cfd, cfe) 47.49/23.25 new_compare5(yvy49000, yvy50000, ty_Float) -> new_compare6(yvy49000, yvy50000) 47.49/23.25 new_esEs9(yvy4000, yvy3000, app(ty_[], fg)) -> new_esEs8(yvy4000, yvy3000, fg) 47.49/23.25 new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, cad), cae), caf)) -> new_esEs5(yvy4001, yvy3001, cad, cae, caf) 47.49/23.25 new_esEs26(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.25 new_primPlusNat1(Succ(yvy1610), yvy300000) -> Succ(Succ(new_primPlusNat0(yvy1610, yvy300000))) 47.49/23.25 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Int, bed) -> new_esEs16(yvy4000, yvy3000) 47.49/23.25 new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.25 new_esEs16(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) 47.49/23.25 new_primPlusNat0(Succ(yvy16100), Zero) -> Succ(yvy16100) 47.49/23.25 new_primPlusNat0(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) 47.49/23.25 new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) 47.49/23.25 new_primPlusNat1(Zero, yvy300000) -> Succ(yvy300000) 47.49/23.25 new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Int) -> new_compare8(new_sr(yvy49000, yvy50001), new_sr(yvy50000, yvy49001)) 47.49/23.25 new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.25 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_@0, fh) -> new_ltEs9(yvy49000, yvy50000) 47.49/23.25 new_lt8(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) 47.49/23.25 new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_Either, gh), ha), fh) -> new_ltEs14(yvy49000, yvy50000, gh, ha) 47.49/23.25 new_ltEs20(yvy49002, yvy50002, ty_@0) -> new_ltEs9(yvy49002, yvy50002) 47.49/23.25 new_ltEs18(yvy4900, yvy5000, app(app(ty_@2, bba), bbb)) -> new_ltEs11(yvy4900, yvy5000, bba, bbb) 47.49/23.25 new_ltEs9(yvy4900, yvy5000) -> new_fsEs(new_compare9(yvy4900, yvy5000)) 47.49/23.25 new_esEs22(yvy4002, yvy3002, app(ty_Ratio, bhh)) -> new_esEs15(yvy4002, yvy3002, bhh) 47.49/23.25 new_ltEs19(yvy49001, yvy50001, app(app(ty_Either, bdf), bdg)) -> new_ltEs14(yvy49001, yvy50001, bdf, bdg) 47.49/23.25 new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) 47.49/23.25 new_lt8(yvy49000, yvy50000, app(ty_Maybe, bag)) -> new_lt15(yvy49000, yvy50000, bag) 47.49/23.25 new_esEs30(yvy20, yvy15, ty_@0) -> new_esEs14(yvy20, yvy15) 47.49/23.25 new_lt20(yvy49001, yvy50001, ty_Char) -> new_lt10(yvy49001, yvy50001) 47.49/23.25 new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.49/23.25 new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.49/23.25 new_esEs9(yvy4000, yvy3000, app(ty_Maybe, eh)) -> new_esEs6(yvy4000, yvy3000, eh) 47.49/23.25 new_esEs23(yvy4001, yvy3001, app(ty_Ratio, cbb)) -> new_esEs15(yvy4001, yvy3001, cbb) 47.49/23.25 new_compare25(Just(yvy4900), Just(yvy5000), False, bah) -> new_compare111(yvy4900, yvy5000, new_ltEs18(yvy4900, yvy5000, bah), bah) 47.49/23.25 new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.49/23.25 new_ltEs20(yvy49002, yvy50002, ty_Float) -> new_ltEs5(yvy49002, yvy50002) 47.49/23.25 new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cde), cdf)) -> new_esEs4(yvy4000, yvy3000, cde, cdf) 47.49/23.25 new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.25 new_fsEs(yvy209) -> new_not(new_esEs12(yvy209, GT)) 47.49/23.25 new_ltEs18(yvy4900, yvy5000, app(app(ty_Either, hc), fh)) -> new_ltEs14(yvy4900, yvy5000, hc, fh) 47.49/23.25 new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cdg)) -> new_esEs15(yvy4000, yvy3000, cdg) 47.49/23.25 new_esEs29(yvy400, yvy500, ty_@0) -> new_esEs14(yvy400, yvy500) 47.49/23.25 new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.25 new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) 47.49/23.25 new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_[], ceb)) -> new_esEs8(yvy4000, yvy3000, ceb) 47.49/23.25 new_compare25(yvy490, yvy500, True, bah) -> EQ 47.49/23.25 new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ee), ef), eg)) -> new_esEs5(yvy4000, yvy3000, ee, ef, eg) 47.49/23.25 new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fc)) -> new_esEs15(yvy4000, yvy3000, fc) 47.49/23.25 new_compare([], :(yvy50000, yvy50001), be) -> LT 47.49/23.25 new_lt20(yvy49001, yvy50001, app(ty_[], dac)) -> new_lt12(yvy49001, yvy50001, dac) 47.49/23.25 new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cdd)) -> new_esEs6(yvy4000, yvy3000, cdd) 47.49/23.25 new_esEs29(yvy400, yvy500, ty_Char) -> new_esEs17(yvy400, yvy500) 47.49/23.25 new_esEs6(Nothing, Just(yvy3000), cch) -> False 47.49/23.25 new_esEs6(Just(yvy4000), Nothing, cch) -> False 47.49/23.25 new_esEs23(yvy4001, yvy3001, app(ty_[], cbe)) -> new_esEs8(yvy4001, yvy3001, cbe) 47.49/23.25 new_ltEs15(EQ, GT) -> True 47.49/23.25 new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.25 new_esEs6(Nothing, Nothing, cch) -> True 47.49/23.25 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Double) -> new_ltEs16(yvy49000, yvy50000) 47.49/23.25 new_esEs11(False, False) -> True 47.49/23.25 new_esEs24(yvy4000, yvy3000, app(app(ty_Either, cce), ccf)) -> new_esEs7(yvy4000, yvy3000, cce, ccf) 47.49/23.25 new_ltEs18(yvy4900, yvy5000, ty_Ordering) -> new_ltEs15(yvy4900, yvy5000) 47.49/23.25 new_ltEs11(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), bba, bbb) -> new_pePe(new_lt8(yvy49000, yvy50000, bba), new_asAs(new_esEs21(yvy49000, yvy50000, bba), new_ltEs19(yvy49001, yvy50001, bbb))) 47.49/23.25 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Integer) -> new_ltEs10(yvy49000, yvy50000) 47.49/23.25 new_esEs21(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) 47.49/23.25 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.25 new_esEs30(yvy20, yvy15, ty_Char) -> new_esEs17(yvy20, yvy15) 47.49/23.25 new_ltEs14(Left(yvy49000), Right(yvy50000), hc, fh) -> True 47.49/23.25 new_ltEs19(yvy49001, yvy50001, ty_Float) -> new_ltEs5(yvy49001, yvy50001) 47.49/23.25 new_esEs23(yvy4001, yvy3001, app(app(ty_@2, cah), cba)) -> new_esEs4(yvy4001, yvy3001, cah, cba) 47.49/23.25 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.25 new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.49/23.25 new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.49/23.25 new_esEs26(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.25 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Ordering, fh) -> new_ltEs15(yvy49000, yvy50000) 47.49/23.25 new_ltEs6(yvy4900, yvy5000) -> new_fsEs(new_compare7(yvy4900, yvy5000)) 47.49/23.25 new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.25 new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.25 new_esEs8(:(yvy4000, yvy4001), [], ed) -> False 47.49/23.25 new_esEs8([], :(yvy3000, yvy3001), ed) -> False 47.49/23.25 new_esEs29(yvy400, yvy500, ty_Ordering) -> new_esEs12(yvy400, yvy500) 47.49/23.25 new_esEs26(yvy4000, yvy3000, app(app(ty_Either, cgf), cgg)) -> new_esEs7(yvy4000, yvy3000, cgf, cgg) 47.49/23.25 new_lt19(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) 47.49/23.25 new_lt17(yvy49000, yvy50000) -> new_esEs12(new_compare17(yvy49000, yvy50000), LT) 47.49/23.25 new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Integer) -> new_compare11(new_sr0(yvy49000, yvy50001), new_sr0(yvy50000, yvy49001)) 47.49/23.25 new_esEs22(yvy4002, yvy3002, app(app(ty_@2, bhf), bhg)) -> new_esEs4(yvy4002, yvy3002, bhf, bhg) 47.49/23.25 new_esEs22(yvy4002, yvy3002, ty_Double) -> new_esEs18(yvy4002, yvy3002) 47.49/23.25 new_esEs29(yvy400, yvy500, ty_Int) -> new_esEs16(yvy400, yvy500) 47.49/23.25 new_esEs26(yvy4000, yvy3000, app(ty_Ratio, cge)) -> new_esEs15(yvy4000, yvy3000, cge) 47.49/23.25 new_compare5(yvy49000, yvy50000, app(ty_Maybe, cd)) -> new_compare15(yvy49000, yvy50000, cd) 47.49/23.25 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Integer, bed) -> new_esEs10(yvy4000, yvy3000) 47.49/23.25 new_ltEs19(yvy49001, yvy50001, ty_@0) -> new_ltEs9(yvy49001, yvy50001) 47.49/23.25 new_esEs22(yvy4002, yvy3002, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_esEs5(yvy4002, yvy3002, bhb, bhc, bhd) 47.49/23.25 new_lt20(yvy49001, yvy50001, ty_@0) -> new_lt6(yvy49001, yvy50001) 47.49/23.25 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, app(app(ty_@2, bga), bgb)) -> new_esEs4(yvy4000, yvy3000, bga, bgb) 47.49/23.25 new_gt1(yvy400, h) -> new_esEs12(new_compare32(yvy400, h), GT) 47.49/23.25 new_sr0(Integer(yvy490000), Integer(yvy500010)) -> Integer(new_primMulInt(yvy490000, yvy500010)) 47.49/23.25 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Bool, fh) -> new_ltEs13(yvy49000, yvy50000) 47.49/23.25 new_esEs18(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 47.49/23.25 new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.25 new_esEs28(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) 47.49/23.25 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, app(ty_[], bgf)) -> new_esEs8(yvy4000, yvy3000, bgf) 47.49/23.25 new_ltEs15(LT, GT) -> True 47.49/23.25 new_lt19(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) 47.49/23.25 new_esEs30(yvy20, yvy15, app(ty_[], dea)) -> new_esEs8(yvy20, yvy15, dea) 47.49/23.25 new_compare33(h) -> new_compare25(Nothing, Nothing, True, h) 47.49/23.25 new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) 47.49/23.25 new_esEs12(GT, GT) -> True 47.49/23.25 new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) 47.49/23.25 new_esEs24(yvy4000, yvy3000, app(ty_[], ccg)) -> new_esEs8(yvy4000, yvy3000, ccg) 47.49/23.25 new_asAs(True, yvy201) -> yvy201 47.49/23.25 new_esEs26(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.25 new_esEs21(yvy49000, yvy50000, app(ty_Maybe, bag)) -> new_esEs6(yvy49000, yvy50000, bag) 47.49/23.25 new_esEs10(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) 47.49/23.25 new_compare10(yvy49000, yvy50000, False, bc, bd) -> GT 47.49/23.25 new_lt8(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) 47.49/23.25 new_lt8(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) 47.49/23.25 new_compare113(yvy49000, yvy50000, True) -> LT 47.49/23.25 new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.25 new_ltEs16(yvy4900, yvy5000) -> new_fsEs(new_compare18(yvy4900, yvy5000)) 47.49/23.25 new_lt20(yvy49001, yvy50001, ty_Float) -> new_lt9(yvy49001, yvy50001) 47.49/23.25 new_ltEs4(Nothing, Just(yvy50000), da) -> True 47.49/23.25 new_esEs21(yvy49000, yvy50000, app(ty_Ratio, bcf)) -> new_esEs15(yvy49000, yvy50000, bcf) 47.49/23.25 new_ltEs18(yvy4900, yvy5000, app(ty_Maybe, da)) -> new_ltEs4(yvy4900, yvy5000, da) 47.49/23.25 new_lt8(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) 47.49/23.25 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Float, bed) -> new_esEs13(yvy4000, yvy3000) 47.49/23.25 new_ltEs8(yvy4900, yvy5000, be) -> new_fsEs(new_compare(yvy4900, yvy5000, be)) 47.49/23.25 new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) 47.49/23.25 new_ltEs18(yvy4900, yvy5000, app(ty_[], be)) -> new_ltEs8(yvy4900, yvy5000, be) 47.49/23.25 new_compare110(yvy49000, yvy50000, False) -> GT 47.49/23.25 new_primCompAux00(yvy225, EQ) -> yvy225 47.49/23.25 new_lt19(yvy49000, yvy50000, app(ty_Maybe, chg)) -> new_lt15(yvy49000, yvy50000, chg) 47.49/23.25 new_esEs12(EQ, EQ) -> True 47.49/23.25 new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) 47.49/23.25 new_lt19(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) 47.49/23.25 new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) 47.49/23.25 new_esEs21(yvy49000, yvy50000, app(app(ty_Either, bbg), bbh)) -> new_esEs7(yvy49000, yvy50000, bbg, bbh) 47.49/23.25 new_primMulNat0(Zero, Zero) -> Zero 47.49/23.25 new_compare24(yvy49000, yvy50000, False) -> new_compare110(yvy49000, yvy50000, new_ltEs13(yvy49000, yvy50000)) 47.49/23.25 new_compare5(yvy49000, yvy50000, ty_Integer) -> new_compare11(yvy49000, yvy50000) 47.49/23.25 new_esEs22(yvy4002, yvy3002, ty_Integer) -> new_esEs10(yvy4002, yvy3002) 47.49/23.25 new_esEs21(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) 47.49/23.25 new_lt19(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) 47.49/23.25 new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.25 new_ltEs12(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), bbc, bbd, bbe) -> new_pePe(new_lt19(yvy49000, yvy50000, bbc), new_asAs(new_esEs28(yvy49000, yvy50000, bbc), new_pePe(new_lt20(yvy49001, yvy50001, bbd), new_asAs(new_esEs27(yvy49001, yvy50001, bbd), new_ltEs20(yvy49002, yvy50002, bbe))))) 47.49/23.25 new_ltEs19(yvy49001, yvy50001, app(ty_[], bcg)) -> new_ltEs8(yvy49001, yvy50001, bcg) 47.49/23.25 new_compare5(yvy49000, yvy50000, ty_Double) -> new_compare18(yvy49000, yvy50000) 47.49/23.25 new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_@2, dc), dd)) -> new_ltEs11(yvy49000, yvy50000, dc, dd) 47.49/23.25 new_compare11(Integer(yvy49000), Integer(yvy50000)) -> new_primCmpInt(yvy49000, yvy50000) 47.49/23.25 new_compare9(@0, @0) -> EQ 47.49/23.25 new_esEs22(yvy4002, yvy3002, app(app(ty_Either, caa), cab)) -> new_esEs7(yvy4002, yvy3002, caa, cab) 47.49/23.25 new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.25 new_compare28(yvy49000, yvy50000, True, bca, bcb, bcc) -> EQ 47.49/23.25 new_esEs27(yvy49001, yvy50001, ty_Float) -> new_esEs13(yvy49001, yvy50001) 47.49/23.25 new_esEs26(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.25 new_ltEs13(False, True) -> True 47.49/23.25 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.25 new_ltEs13(False, False) -> True 47.49/23.25 new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fd), ff)) -> new_esEs7(yvy4000, yvy3000, fd, ff) 47.49/23.25 new_esEs7(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, bea), beb), bec), bed) -> new_esEs5(yvy4000, yvy3000, bea, beb, bec) 47.49/23.25 new_ltEs15(EQ, EQ) -> True 47.49/23.25 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) 47.49/23.25 new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Maybe, bee), bed) -> new_esEs6(yvy4000, yvy3000, bee) 47.49/23.25 new_compare30(yvy20, yvy15, dcg) -> new_compare25(Just(yvy20), Just(yvy15), new_esEs30(yvy20, yvy15, dcg), dcg) 47.49/23.25 new_esEs26(yvy4000, yvy3000, app(ty_Maybe, cgb)) -> new_esEs6(yvy4000, yvy3000, cgb) 47.49/23.25 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.25 new_esEs26(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.25 new_lt12(yvy49000, yvy50000, bce) -> new_esEs12(new_compare(yvy49000, yvy50000, bce), LT) 47.49/23.25 new_lt10(yvy49000, yvy50000) -> new_esEs12(new_compare7(yvy49000, yvy50000), LT) 47.49/23.25 new_lt19(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) 47.49/23.25 new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.25 new_compare31(yvy300, h) -> new_compare25(Nothing, Just(yvy300), False, h) 47.49/23.25 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Char, bed) -> new_esEs17(yvy4000, yvy3000) 47.49/23.25 new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.25 new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_[], bfc), bed) -> new_esEs8(yvy4000, yvy3000, bfc) 47.49/23.25 new_ltEs20(yvy49002, yvy50002, app(ty_[], dbe)) -> new_ltEs8(yvy49002, yvy50002, dbe) 47.49/23.25 new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_Either, ea), eb)) -> new_ltEs14(yvy49000, yvy50000, ea, eb) 47.49/23.25 new_compare17(yvy49000, yvy50000) -> new_compare29(yvy49000, yvy50000, new_esEs12(yvy49000, yvy50000)) 47.49/23.25 new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False 47.49/23.25 new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False 47.49/23.25 new_esEs21(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) 47.49/23.25 new_esEs25(yvy4001, yvy3001, app(ty_Maybe, ceh)) -> new_esEs6(yvy4001, yvy3001, ceh) 47.49/23.25 new_compare([], [], be) -> EQ 47.49/23.25 new_ltEs15(LT, EQ) -> True 47.49/23.25 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Float) -> new_ltEs5(yvy49000, yvy50000) 47.49/23.25 new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 47.49/23.25 new_ltEs18(yvy4900, yvy5000, ty_Char) -> new_ltEs6(yvy4900, yvy5000) 47.49/23.25 new_ltEs18(yvy4900, yvy5000, app(ty_Ratio, bbf)) -> new_ltEs17(yvy4900, yvy5000, bbf) 47.49/23.25 new_lt20(yvy49001, yvy50001, ty_Double) -> new_lt7(yvy49001, yvy50001) 47.49/23.25 new_esEs26(yvy4000, yvy3000, app(app(ty_@2, cgc), cgd)) -> new_esEs4(yvy4000, yvy3000, cgc, cgd) 47.49/23.25 new_compare24(yvy49000, yvy50000, True) -> EQ 47.49/23.25 new_lt8(yvy49000, yvy50000, app(ty_[], bce)) -> new_lt12(yvy49000, yvy50000, bce) 47.49/23.25 new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(app(ty_@3, gd), ge), gf), fh) -> new_ltEs12(yvy49000, yvy50000, gd, ge, gf) 47.49/23.25 new_esEs21(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) 47.49/23.25 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, app(app(ty_Either, bgd), bge)) -> new_esEs7(yvy4000, yvy3000, bgd, bge) 47.49/23.25 new_esEs11(True, True) -> True 47.49/23.25 new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False 47.49/23.25 new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False 47.49/23.25 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, app(ty_[], hd)) -> new_ltEs8(yvy49000, yvy50000, hd) 47.49/23.25 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, app(ty_Maybe, bfh)) -> new_esEs6(yvy4000, yvy3000, bfh) 47.49/23.25 new_esEs25(yvy4001, yvy3001, app(ty_Ratio, cfc)) -> new_esEs15(yvy4001, yvy3001, cfc) 47.49/23.25 new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) 47.49/23.25 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Int) -> new_ltEs7(yvy49000, yvy50000) 47.49/23.25 new_esEs15(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), baf) -> new_asAs(new_esEs20(yvy4000, yvy3000, baf), new_esEs19(yvy4001, yvy3001, baf)) 47.49/23.25 new_compare28(yvy49000, yvy50000, False, bca, bcb, bcc) -> new_compare112(yvy49000, yvy50000, new_ltEs12(yvy49000, yvy50000, bca, bcb, bcc), bca, bcb, bcc) 47.49/23.25 new_esEs22(yvy4002, yvy3002, ty_Float) -> new_esEs13(yvy4002, yvy3002) 47.49/23.25 new_esEs27(yvy49001, yvy50001, ty_Integer) -> new_esEs10(yvy49001, yvy50001) 47.49/23.25 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, app(app(ty_@2, he), hf)) -> new_ltEs11(yvy49000, yvy50000, he, hf) 47.49/23.25 new_gt(h) -> new_esEs12(new_compare33(h), GT) 47.49/23.25 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 47.49/23.25 new_ltEs15(GT, GT) -> True 47.49/23.25 new_compare111(yvy198, yvy199, False, bcd) -> GT 47.49/23.25 new_esEs30(yvy20, yvy15, ty_Bool) -> new_esEs11(yvy20, yvy15) 47.49/23.25 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, app(ty_Maybe, bab)) -> new_ltEs4(yvy49000, yvy50000, bab) 47.49/23.25 new_esEs30(yvy20, yvy15, app(ty_Maybe, ddc)) -> new_esEs6(yvy20, yvy15, ddc) 47.49/23.25 new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 47.49/23.25 new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) 47.49/23.25 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Int, fh) -> new_ltEs7(yvy49000, yvy50000) 47.49/23.25 new_not(False) -> True 47.49/23.25 new_compare5(yvy49000, yvy50000, app(app(ty_Either, ce), cf)) -> new_compare16(yvy49000, yvy50000, ce, cf) 47.49/23.25 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.25 new_compare112(yvy49000, yvy50000, True, bca, bcb, bcc) -> LT 47.49/23.25 new_esEs28(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) 47.49/23.25 new_compare5(yvy49000, yvy50000, ty_Bool) -> new_compare14(yvy49000, yvy50000) 47.49/23.25 new_lt13(yvy49000, yvy50000, bca, bcb, bcc) -> new_esEs12(new_compare13(yvy49000, yvy50000, bca, bcb, bcc), LT) 47.49/23.25 new_primCompAux0(yvy49000, yvy50000, yvy221, be) -> new_primCompAux00(yvy221, new_compare5(yvy49000, yvy50000, be)) 47.49/23.25 new_esEs27(yvy49001, yvy50001, app(app(ty_Either, dbb), dbc)) -> new_esEs7(yvy49001, yvy50001, dbb, dbc) 47.49/23.25 new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 47.49/23.25 new_esEs22(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) 47.49/23.25 new_lt7(yvy49000, yvy50000) -> new_esEs12(new_compare18(yvy49000, yvy50000), LT) 47.49/23.25 new_esEs28(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) 47.49/23.25 new_esEs12(LT, EQ) -> False 47.49/23.25 new_esEs12(EQ, LT) -> False 47.49/23.25 new_esEs21(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) 47.49/23.25 new_compare29(yvy49000, yvy50000, True) -> EQ 47.49/23.25 new_primPlusNat0(Succ(yvy16100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat0(yvy16100, yvy3000000))) 47.49/23.25 new_lt4(yvy49000, yvy50000, bc, bd) -> new_esEs12(new_compare12(yvy49000, yvy50000, bc, bd), LT) 47.49/23.25 new_compare5(yvy49000, yvy50000, app(app(app(ty_@3, ca), cb), cc)) -> new_compare13(yvy49000, yvy50000, ca, cb, cc) 47.49/23.25 new_esEs27(yvy49001, yvy50001, app(ty_Ratio, dbd)) -> new_esEs15(yvy49001, yvy50001, dbd) 47.49/23.25 new_lt19(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) 47.49/23.25 new_esEs28(yvy49000, yvy50000, app(app(app(ty_@3, chd), che), chf)) -> new_esEs5(yvy49000, yvy50000, chd, che, chf) 47.49/23.25 new_esEs29(yvy400, yvy500, app(ty_Ratio, baf)) -> new_esEs15(yvy400, yvy500, baf) 47.49/23.25 new_compare112(yvy49000, yvy50000, False, bca, bcb, bcc) -> GT 47.49/23.25 new_compare27(yvy49000, yvy50000, True, bc, bd) -> EQ 47.49/23.25 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.25 new_compare15(yvy49000, yvy50000, bag) -> new_compare25(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, bag), bag) 47.49/23.25 new_esEs21(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) 47.49/23.25 new_esEs12(LT, GT) -> False 47.49/23.25 new_esEs12(GT, LT) -> False 47.49/23.25 new_lt20(yvy49001, yvy50001, ty_Int) -> new_lt11(yvy49001, yvy50001) 47.49/23.25 new_ltEs19(yvy49001, yvy50001, ty_Int) -> new_ltEs7(yvy49001, yvy50001) 47.49/23.25 new_ltEs20(yvy49002, yvy50002, app(ty_Ratio, dcf)) -> new_ltEs17(yvy49002, yvy50002, dcf) 47.49/23.25 new_esEs8([], [], ed) -> True 47.49/23.25 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Char, fh) -> new_ltEs6(yvy49000, yvy50000) 47.49/23.25 new_ltEs20(yvy49002, yvy50002, ty_Char) -> new_ltEs6(yvy49002, yvy50002) 47.49/23.25 new_compare25(Nothing, Nothing, False, bah) -> LT 47.49/23.25 new_lt20(yvy49001, yvy50001, app(ty_Maybe, dba)) -> new_lt15(yvy49001, yvy50001, dba) 47.49/23.25 new_esEs29(yvy400, yvy500, app(ty_Maybe, cch)) -> new_esEs6(yvy400, yvy500, cch) 47.49/23.25 new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Ratio, ec)) -> new_ltEs17(yvy49000, yvy50000, ec) 47.49/23.25 new_lt8(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) 47.49/23.25 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Float) -> new_ltEs5(yvy49000, yvy50000) 47.49/23.25 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 47.49/23.25 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 47.49/23.25 new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) 47.49/23.25 new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.49/23.25 new_lt20(yvy49001, yvy50001, app(app(ty_@2, dad), dae)) -> new_lt4(yvy49001, yvy50001, dad, dae) 47.49/23.25 new_esEs28(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) 47.49/23.25 new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.25 new_compare111(yvy198, yvy199, True, bcd) -> LT 47.49/23.25 new_ltEs13(True, False) -> False 47.49/23.25 new_ltEs20(yvy49002, yvy50002, ty_Int) -> new_ltEs7(yvy49002, yvy50002) 47.49/23.25 new_esEs27(yvy49001, yvy50001, app(app(ty_@2, dad), dae)) -> new_esEs4(yvy49001, yvy50001, dad, dae) 47.49/23.25 new_ltEs15(LT, LT) -> True 47.49/23.25 new_esEs13(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 47.49/23.25 new_esEs22(yvy4002, yvy3002, ty_@0) -> new_esEs14(yvy4002, yvy3002) 47.49/23.25 new_esEs28(yvy49000, yvy50000, app(ty_Maybe, chg)) -> new_esEs6(yvy49000, yvy50000, chg) 47.49/23.25 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 47.49/23.25 new_esEs26(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.25 new_esEs28(yvy49000, yvy50000, app(app(ty_@2, chb), chc)) -> new_esEs4(yvy49000, yvy50000, chb, chc) 47.49/23.25 new_compare7(Char(yvy49000), Char(yvy50000)) -> new_primCmpNat0(yvy49000, yvy50000) 47.49/23.25 new_lt5(yvy49000, yvy50000) -> new_esEs12(new_compare11(yvy49000, yvy50000), LT) 47.49/23.25 new_lt20(yvy49001, yvy50001, app(app(ty_Either, dbb), dbc)) -> new_lt16(yvy49001, yvy50001, dbb, dbc) 47.49/23.25 new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) 47.49/23.25 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Char) -> new_ltEs6(yvy49000, yvy50000) 47.49/23.25 new_esEs26(yvy4000, yvy3000, app(app(app(ty_@3, cfg), cfh), cga)) -> new_esEs5(yvy4000, yvy3000, cfg, cfh, cga) 47.49/23.25 new_lt20(yvy49001, yvy50001, ty_Integer) -> new_lt5(yvy49001, yvy50001) 47.49/23.25 new_esEs30(yvy20, yvy15, ty_Int) -> new_esEs16(yvy20, yvy15) 47.49/23.25 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Double) -> new_ltEs16(yvy49000, yvy50000) 47.49/23.25 new_ltEs10(yvy4900, yvy5000) -> new_fsEs(new_compare11(yvy4900, yvy5000)) 47.49/23.25 new_lt14(yvy49000, yvy50000) -> new_esEs12(new_compare14(yvy49000, yvy50000), LT) 47.49/23.25 new_esEs27(yvy49001, yvy50001, app(ty_Maybe, dba)) -> new_esEs6(yvy49001, yvy50001, dba) 47.49/23.25 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_@0) -> new_ltEs9(yvy49000, yvy50000) 47.49/23.25 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Double, bed) -> new_esEs18(yvy4000, yvy3000) 47.49/23.25 new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_[], db)) -> new_ltEs8(yvy49000, yvy50000, db) 47.49/23.25 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Integer) -> new_ltEs10(yvy49000, yvy50000) 47.49/23.25 new_esEs27(yvy49001, yvy50001, ty_Double) -> new_esEs18(yvy49001, yvy50001) 47.49/23.25 new_esEs29(yvy400, yvy500, ty_Integer) -> new_esEs10(yvy400, yvy500) 47.49/23.25 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 47.49/23.25 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 47.49/23.25 new_compare25(Nothing, Just(yvy5000), False, bah) -> LT 47.49/23.25 new_compare5(yvy49000, yvy50000, app(app(ty_@2, bg), bh)) -> new_compare12(yvy49000, yvy50000, bg, bh) 47.49/23.25 new_esEs29(yvy400, yvy500, app(app(ty_@2, cec), ced)) -> new_esEs4(yvy400, yvy500, cec, ced) 47.49/23.25 new_esEs28(yvy49000, yvy50000, app(ty_[], cha)) -> new_esEs8(yvy49000, yvy50000, cha) 47.49/23.25 new_lt19(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) 47.49/23.25 new_lt18(yvy49000, yvy50000, bcf) -> new_esEs12(new_compare19(yvy49000, yvy50000, bcf), LT) 47.49/23.25 new_esEs29(yvy400, yvy500, app(ty_[], ed)) -> new_esEs8(yvy400, yvy500, ed) 47.49/23.25 new_compare5(yvy49000, yvy50000, ty_Char) -> new_compare7(yvy49000, yvy50000) 47.49/23.25 new_ltEs19(yvy49001, yvy50001, app(ty_Maybe, bde)) -> new_ltEs4(yvy49001, yvy50001, bde) 47.49/23.25 new_compare5(yvy49000, yvy50000, app(ty_[], bf)) -> new_compare(yvy49000, yvy50000, bf) 47.49/23.25 new_compare14(yvy49000, yvy50000) -> new_compare24(yvy49000, yvy50000, new_esEs11(yvy49000, yvy50000)) 47.49/23.25 new_primEqNat0(Zero, Zero) -> True 47.49/23.25 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Integer, fh) -> new_ltEs10(yvy49000, yvy50000) 47.49/23.25 new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.49/23.25 new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) 47.49/23.25 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Bool) -> new_ltEs13(yvy49000, yvy50000) 47.49/23.25 new_esEs30(yvy20, yvy15, app(app(ty_Either, ddg), ddh)) -> new_esEs7(yvy20, yvy15, ddg, ddh) 47.49/23.25 new_esEs30(yvy20, yvy15, ty_Ordering) -> new_esEs12(yvy20, yvy15) 47.49/23.25 new_compare5(yvy49000, yvy50000, ty_Ordering) -> new_compare17(yvy49000, yvy50000) 47.49/23.25 new_esEs6(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.25 new_esEs29(yvy400, yvy500, ty_Bool) -> new_esEs11(yvy400, yvy500) 47.49/23.25 new_asAs(False, yvy201) -> False 47.49/23.25 new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(app(ty_@3, de), df), dg)) -> new_ltEs12(yvy49000, yvy50000, de, df, dg) 47.49/23.25 new_esEs29(yvy400, yvy500, app(app(ty_Either, bfd), bed)) -> new_esEs7(yvy400, yvy500, bfd, bed) 47.49/23.25 new_esEs28(yvy49000, yvy50000, app(ty_Ratio, dab)) -> new_esEs15(yvy49000, yvy50000, dab) 47.49/23.25 new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 47.49/23.25 new_esEs30(yvy20, yvy15, ty_Integer) -> new_esEs10(yvy20, yvy15) 47.49/23.25 new_ltEs20(yvy49002, yvy50002, app(ty_Maybe, dcc)) -> new_ltEs4(yvy49002, yvy50002, dcc) 47.49/23.25 new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) 47.49/23.25 new_lt8(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) 47.49/23.25 new_esEs7(Left(yvy4000), Right(yvy3000), bfd, bed) -> False 47.49/23.25 new_esEs7(Right(yvy4000), Left(yvy3000), bfd, bed) -> False 47.49/23.25 new_ltEs17(yvy4900, yvy5000, bbf) -> new_fsEs(new_compare19(yvy4900, yvy5000, bbf)) 47.49/23.25 new_lt16(yvy49000, yvy50000, bbg, bbh) -> new_esEs12(new_compare16(yvy49000, yvy50000, bbg, bbh), LT) 47.49/23.25 new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.25 new_ltEs18(yvy4900, yvy5000, ty_Int) -> new_ltEs7(yvy4900, yvy5000) 47.49/23.25 new_lt19(yvy49000, yvy50000, app(app(ty_Either, chh), daa)) -> new_lt16(yvy49000, yvy50000, chh, daa) 47.49/23.25 new_esEs27(yvy49001, yvy50001, app(app(app(ty_@3, daf), dag), dah)) -> new_esEs5(yvy49001, yvy50001, daf, dag, dah) 47.49/23.25 47.49/23.25 The set Q consists of the following terms: 47.49/23.25 47.49/23.25 new_esEs27(x0, x1, ty_@0) 47.49/23.25 new_ltEs14(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 47.49/23.25 new_esEs7(Right(x0), Right(x1), x2, ty_Double) 47.49/23.25 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.25 new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 47.49/23.25 new_esEs21(x0, x1, app(ty_[], x2)) 47.49/23.25 new_esEs26(x0, x1, ty_Float) 47.49/23.25 new_ltEs14(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 47.49/23.25 new_esEs12(EQ, EQ) 47.49/23.25 new_esEs28(x0, x1, ty_Char) 47.49/23.25 new_ltEs11(@2(x0, x1), @2(x2, x3), x4, x5) 47.49/23.25 new_primMulInt(Neg(x0), Neg(x1)) 47.49/23.25 new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) 47.49/23.25 new_compare111(x0, x1, True, x2) 47.49/23.25 new_ltEs14(Right(x0), Right(x1), x2, ty_Char) 47.49/23.25 new_lt20(x0, x1, ty_@0) 47.49/23.25 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.25 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.25 new_primCmpNat0(Succ(x0), Zero) 47.49/23.25 new_compare29(x0, x1, True) 47.49/23.25 new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 47.49/23.25 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.25 new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 47.49/23.25 new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) 47.49/23.25 new_esEs7(Left(x0), Right(x1), x2, x3) 47.49/23.25 new_esEs7(Right(x0), Left(x1), x2, x3) 47.49/23.25 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 47.49/23.25 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 47.49/23.25 new_compare26(x0, x1, False, x2, x3) 47.49/23.25 new_primEqInt(Pos(Zero), Pos(Zero)) 47.49/23.25 new_primMulInt(Pos(x0), Pos(x1)) 47.49/23.25 new_esEs7(Left(x0), Left(x1), ty_@0, x2) 47.49/23.25 new_primCompAux00(x0, GT) 47.49/23.25 new_esEs26(x0, x1, app(ty_Ratio, x2)) 47.49/23.25 new_esEs27(x0, x1, app(ty_Maybe, x2)) 47.49/23.25 new_compare28(x0, x1, True, x2, x3, x4) 47.49/23.25 new_lt8(x0, x1, ty_Float) 47.49/23.25 new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 47.49/23.25 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.25 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.25 new_ltEs4(Just(x0), Just(x1), ty_Float) 47.49/23.25 new_asAs(False, x0) 47.49/23.25 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.25 new_lt20(x0, x1, app(ty_Maybe, x2)) 47.49/23.25 new_esEs27(x0, x1, ty_Integer) 47.49/23.25 new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) 47.49/23.25 new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 47.49/23.25 new_ltEs14(Right(x0), Right(x1), x2, ty_@0) 47.49/23.25 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.25 new_compare25(Nothing, Just(x0), False, x1) 47.49/23.25 new_primEqInt(Neg(Zero), Neg(Zero)) 47.49/23.25 new_esEs7(Left(x0), Left(x1), ty_Integer, x2) 47.49/23.25 new_ltEs14(Right(x0), Right(x1), x2, ty_Int) 47.49/23.25 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 47.49/23.25 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.25 new_sr(x0, x1) 47.49/23.25 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.25 new_esEs28(x0, x1, ty_Bool) 47.49/23.25 new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) 47.49/23.25 new_esEs27(x0, x1, ty_Char) 47.49/23.25 new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 47.49/23.25 new_primCmpNat0(Zero, Succ(x0)) 47.49/23.25 new_compare5(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.25 new_lt19(x0, x1, ty_Double) 47.49/23.25 new_lt19(x0, x1, app(ty_Maybe, x2)) 47.49/23.25 new_compare13(x0, x1, x2, x3, x4) 47.49/23.25 new_compare(:(x0, x1), [], x2) 47.49/23.25 new_ltEs13(False, True) 47.49/23.25 new_ltEs13(True, False) 47.49/23.25 new_esEs25(x0, x1, app(ty_Maybe, x2)) 47.49/23.25 new_esEs25(x0, x1, app(ty_[], x2)) 47.49/23.25 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.25 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.25 new_ltEs18(x0, x1, ty_Int) 47.49/23.25 new_lt17(x0, x1) 47.49/23.25 new_esEs9(x0, x1, ty_Double) 47.49/23.25 new_esEs28(x0, x1, ty_Ordering) 47.49/23.25 new_lt8(x0, x1, ty_Integer) 47.49/23.25 new_compare110(x0, x1, False) 47.49/23.25 new_esEs19(x0, x1, ty_Integer) 47.49/23.25 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.25 new_esEs27(x0, x1, app(ty_[], x2)) 47.49/23.25 new_ltEs4(Nothing, Nothing, x0) 47.49/23.25 new_ltEs19(x0, x1, ty_Float) 47.49/23.25 new_esEs9(x0, x1, ty_Int) 47.49/23.25 new_esEs9(x0, x1, app(ty_[], x2)) 47.49/23.25 new_compare27(x0, x1, False, x2, x3) 47.49/23.25 new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 47.49/23.25 new_lt8(x0, x1, ty_Bool) 47.49/23.25 new_esEs18(Double(x0, x1), Double(x2, x3)) 47.49/23.25 new_primEqInt(Pos(Zero), Neg(Zero)) 47.49/23.25 new_primEqInt(Neg(Zero), Pos(Zero)) 47.49/23.25 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.25 new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 47.49/23.25 new_esEs30(x0, x1, ty_Float) 47.49/23.25 new_esEs12(LT, GT) 47.49/23.25 new_esEs12(GT, LT) 47.49/23.25 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 47.49/23.25 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 47.49/23.25 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 47.49/23.25 new_esEs17(Char(x0), Char(x1)) 47.49/23.25 new_esEs21(x0, x1, ty_Float) 47.49/23.25 new_ltEs4(Nothing, Just(x0), x1) 47.49/23.25 new_ltEs18(x0, x1, ty_Double) 47.49/23.25 new_ltEs20(x0, x1, ty_Ordering) 47.49/23.25 new_esEs27(x0, x1, ty_Bool) 47.49/23.25 new_lt4(x0, x1, x2, x3) 47.49/23.25 new_esEs29(x0, x1, ty_Integer) 47.49/23.25 new_compare14(x0, x1) 47.49/23.25 new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 47.49/23.25 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.25 new_compare10(x0, x1, True, x2, x3) 47.49/23.25 new_ltEs18(x0, x1, ty_Char) 47.49/23.25 new_compare111(x0, x1, False, x2) 47.49/23.25 new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 47.49/23.25 new_asAs(True, x0) 47.49/23.25 new_compare5(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.25 new_esEs24(x0, x1, ty_Integer) 47.49/23.25 new_esEs30(x0, x1, ty_@0) 47.49/23.25 new_pePe(True, x0) 47.49/23.25 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.25 new_ltEs18(x0, x1, app(ty_[], x2)) 47.49/23.25 new_ltEs7(x0, x1) 47.49/23.25 new_ltEs15(EQ, EQ) 47.49/23.25 new_primEqNat0(Succ(x0), Zero) 47.49/23.25 new_esEs28(x0, x1, ty_Integer) 47.49/23.25 new_esEs25(x0, x1, ty_Float) 47.49/23.25 new_primMulNat0(Succ(x0), Succ(x1)) 47.49/23.25 new_gt2(x0, x1, x2) 47.49/23.25 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 47.49/23.25 new_compare5(x0, x1, ty_Ordering) 47.49/23.25 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.25 new_lt19(x0, x1, ty_Char) 47.49/23.25 new_ltEs19(x0, x1, ty_Integer) 47.49/23.25 new_lt5(x0, x1) 47.49/23.25 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 47.49/23.25 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 47.49/23.25 new_esEs7(Right(x0), Right(x1), x2, ty_Bool) 47.49/23.25 new_esEs23(x0, x1, app(ty_Maybe, x2)) 47.49/23.25 new_esEs9(x0, x1, ty_Char) 47.49/23.25 new_ltEs4(Just(x0), Just(x1), ty_Bool) 47.49/23.25 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.25 new_lt6(x0, x1) 47.49/23.25 new_lt19(x0, x1, ty_Int) 47.49/23.25 new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) 47.49/23.25 new_primEqNat0(Succ(x0), Succ(x1)) 47.49/23.25 new_esEs22(x0, x1, app(ty_Ratio, x2)) 47.49/23.25 new_ltEs6(x0, x1) 47.49/23.25 new_esEs9(x0, x1, app(ty_Ratio, x2)) 47.49/23.25 new_compare7(Char(x0), Char(x1)) 47.49/23.25 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.25 new_esEs12(GT, GT) 47.49/23.25 new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 47.49/23.25 new_esEs12(LT, EQ) 47.49/23.25 new_esEs12(EQ, LT) 47.49/23.25 new_compare16(x0, x1, x2, x3) 47.49/23.25 new_compare25(Just(x0), Nothing, False, x1) 47.49/23.26 new_esEs7(Left(x0), Left(x1), ty_Int, x2) 47.49/23.26 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.26 new_ltEs5(x0, x1) 47.49/23.26 new_esEs21(x0, x1, app(ty_Maybe, x2)) 47.49/23.26 new_ltEs15(GT, LT) 47.49/23.26 new_ltEs15(LT, GT) 47.49/23.26 new_ltEs14(Left(x0), Left(x1), ty_Ordering, x2) 47.49/23.26 new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 47.49/23.26 new_esEs24(x0, x1, app(ty_[], x2)) 47.49/23.26 new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 47.49/23.26 new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 47.49/23.26 new_esEs8([], [], x0) 47.49/23.26 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.26 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 47.49/23.26 new_esEs29(x0, x1, ty_Bool) 47.49/23.26 new_ltEs4(Just(x0), Just(x1), ty_Integer) 47.49/23.26 new_ltEs14(Left(x0), Left(x1), ty_Double, x2) 47.49/23.26 new_esEs27(x0, x1, ty_Int) 47.49/23.26 new_esEs6(Just(x0), Just(x1), ty_Integer) 47.49/23.26 new_esEs6(Just(x0), Just(x1), ty_Float) 47.49/23.26 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.26 new_compare114(x0, x1, True, x2, x3) 47.49/23.26 new_ltEs14(Right(x0), Right(x1), x2, app(ty_[], x3)) 47.49/23.26 new_esEs7(Left(x0), Left(x1), ty_Float, x2) 47.49/23.26 new_compare5(x0, x1, ty_Double) 47.49/23.26 new_lt13(x0, x1, x2, x3, x4) 47.49/23.26 new_primMulNat0(Succ(x0), Zero) 47.49/23.26 new_esEs27(x0, x1, ty_Float) 47.49/23.26 new_esEs25(x0, x1, ty_Bool) 47.49/23.26 new_lt15(x0, x1, x2) 47.49/23.26 new_esEs6(Just(x0), Just(x1), ty_Ordering) 47.49/23.26 new_esEs9(x0, x1, ty_Bool) 47.49/23.26 new_lt7(x0, x1) 47.49/23.26 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 47.49/23.26 new_lt8(x0, x1, ty_@0) 47.49/23.26 new_esEs9(x0, x1, ty_Ordering) 47.49/23.26 new_esEs26(x0, x1, app(ty_Maybe, x2)) 47.49/23.26 new_primCmpInt(Neg(Zero), Neg(Zero)) 47.49/23.26 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 47.49/23.26 new_ltEs4(Just(x0), Nothing, x1) 47.49/23.26 new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 47.49/23.26 new_lt19(x0, x1, app(ty_Ratio, x2)) 47.49/23.26 new_compare5(x0, x1, app(ty_[], x2)) 47.49/23.26 new_esEs28(x0, x1, ty_Double) 47.49/23.26 new_primCmpInt(Pos(Zero), Neg(Zero)) 47.49/23.26 new_primCmpInt(Neg(Zero), Pos(Zero)) 47.49/23.26 new_primPlusNat0(Succ(x0), Zero) 47.49/23.26 new_esEs23(x0, x1, ty_Float) 47.49/23.26 new_esEs7(Right(x0), Right(x1), x2, ty_Char) 47.49/23.26 new_esEs21(x0, x1, ty_Integer) 47.49/23.26 new_esEs28(x0, x1, ty_@0) 47.49/23.26 new_lt19(x0, x1, ty_Bool) 47.49/23.26 new_esEs25(x0, x1, ty_Ordering) 47.49/23.26 new_lt19(x0, x1, ty_Ordering) 47.49/23.26 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 47.49/23.26 new_esEs22(x0, x1, ty_Integer) 47.49/23.26 new_esEs11(False, False) 47.49/23.26 new_ltEs14(Right(x0), Right(x1), x2, ty_Double) 47.49/23.26 new_esEs7(Right(x0), Right(x1), x2, ty_Int) 47.49/23.26 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.26 new_ltEs14(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 47.49/23.26 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.26 new_esEs15(:%(x0, x1), :%(x2, x3), x4) 47.49/23.26 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.26 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.26 new_compare33(x0) 47.49/23.26 new_esEs9(x0, x1, ty_Integer) 47.49/23.26 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.26 new_ltEs20(x0, x1, ty_@0) 47.49/23.26 new_ltEs4(Just(x0), Just(x1), ty_Char) 47.49/23.26 new_compare([], :(x0, x1), x2) 47.49/23.26 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 47.49/23.26 new_compare113(x0, x1, True) 47.49/23.26 new_compare([], [], x0) 47.49/23.26 new_lt20(x0, x1, ty_Double) 47.49/23.26 new_esEs7(Left(x0), Left(x1), ty_Char, x2) 47.49/23.26 new_ltEs19(x0, x1, ty_Bool) 47.49/23.26 new_ltEs20(x0, x1, ty_Double) 47.49/23.26 new_esEs24(x0, x1, ty_@0) 47.49/23.26 new_esEs7(Left(x0), Left(x1), ty_Bool, x2) 47.49/23.26 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.26 new_lt19(x0, x1, ty_Integer) 47.49/23.26 new_esEs22(x0, x1, ty_Ordering) 47.49/23.26 new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 47.49/23.26 new_compare25(Nothing, Nothing, False, x0) 47.49/23.26 new_esEs13(Float(x0, x1), Float(x2, x3)) 47.49/23.26 new_esEs6(Just(x0), Just(x1), ty_Bool) 47.49/23.26 new_lt8(x0, x1, app(ty_Maybe, x2)) 47.49/23.26 new_esEs6(Nothing, Nothing, x0) 47.49/23.26 new_compare8(x0, x1) 47.49/23.26 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 47.49/23.26 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.26 new_compare5(x0, x1, app(ty_Ratio, x2)) 47.49/23.26 new_esEs7(Right(x0), Right(x1), x2, ty_Float) 47.49/23.26 new_ltEs14(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 47.49/23.26 new_esEs29(x0, x1, ty_Float) 47.49/23.26 new_ltEs13(True, True) 47.49/23.26 new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) 47.49/23.26 new_esEs21(x0, x1, ty_Ordering) 47.49/23.26 new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 47.49/23.26 new_compare28(x0, x1, False, x2, x3, x4) 47.49/23.26 new_esEs25(x0, x1, ty_Integer) 47.49/23.26 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.26 new_esEs25(x0, x1, ty_Char) 47.49/23.26 new_compare17(x0, x1) 47.49/23.26 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 47.49/23.26 new_esEs22(x0, x1, ty_@0) 47.49/23.26 new_esEs26(x0, x1, ty_Ordering) 47.49/23.26 new_ltEs20(x0, x1, app(ty_[], x2)) 47.49/23.26 new_gt(x0) 47.49/23.26 new_ltEs19(x0, x1, ty_Char) 47.49/23.26 new_esEs24(x0, x1, ty_Ordering) 47.49/23.26 new_esEs6(Nothing, Just(x0), x1) 47.49/23.26 new_primCompAux0(x0, x1, x2, x3) 47.49/23.26 new_esEs30(x0, x1, app(ty_[], x2)) 47.49/23.26 new_primCompAux00(x0, EQ) 47.49/23.26 new_esEs22(x0, x1, ty_Bool) 47.49/23.26 new_ltEs4(Just(x0), Just(x1), ty_Int) 47.49/23.26 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.26 new_primMulNat0(Zero, Zero) 47.49/23.26 new_compare24(x0, x1, True) 47.49/23.26 new_compare5(x0, x1, ty_@0) 47.49/23.26 new_ltEs18(x0, x1, ty_Float) 47.49/23.26 new_primPlusNat1(Zero, x0) 47.49/23.26 new_esEs29(x0, x1, ty_Ordering) 47.49/23.26 new_esEs24(x0, x1, ty_Int) 47.49/23.26 new_compare5(x0, x1, app(ty_Maybe, x2)) 47.49/23.26 new_lt8(x0, x1, ty_Double) 47.49/23.26 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.26 new_esEs6(Just(x0), Just(x1), ty_Char) 47.49/23.26 new_esEs25(x0, x1, ty_Int) 47.49/23.26 new_esEs29(x0, x1, ty_Int) 47.49/23.26 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 47.49/23.26 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.26 new_ltEs14(Left(x0), Left(x1), ty_Integer, x2) 47.49/23.26 new_esEs23(x0, x1, ty_Char) 47.49/23.26 new_ltEs4(Just(x0), Just(x1), ty_Ordering) 47.49/23.26 new_compare5(x0, x1, ty_Bool) 47.49/23.26 new_lt12(x0, x1, x2) 47.49/23.26 new_ltEs14(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 47.49/23.26 new_sr0(Integer(x0), Integer(x1)) 47.49/23.26 new_lt16(x0, x1, x2, x3) 47.49/23.26 new_esEs29(x0, x1, ty_Double) 47.49/23.26 new_fsEs(x0) 47.49/23.26 new_compare9(@0, @0) 47.49/23.26 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 47.49/23.26 new_ltEs19(x0, x1, ty_Ordering) 47.49/23.26 new_esEs24(x0, x1, ty_Char) 47.49/23.26 new_compare10(x0, x1, False, x2, x3) 47.49/23.26 new_esEs21(x0, x1, ty_Bool) 47.49/23.26 new_esEs24(x0, x1, ty_Double) 47.49/23.26 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 47.49/23.26 new_esEs29(x0, x1, ty_Char) 47.49/23.26 new_primPlusNat1(Succ(x0), x1) 47.49/23.26 new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) 47.49/23.26 new_esEs23(x0, x1, ty_Int) 47.49/23.26 new_compare112(x0, x1, False, x2, x3, x4) 47.49/23.26 new_ltEs14(Left(x0), Left(x1), ty_@0, x2) 47.49/23.26 new_esEs23(x0, x1, ty_@0) 47.49/23.26 new_esEs6(Just(x0), Just(x1), ty_Int) 47.49/23.26 new_esEs23(x0, x1, app(ty_[], x2)) 47.49/23.26 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.26 new_ltEs19(x0, x1, ty_Int) 47.49/23.26 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.26 new_esEs29(x0, x1, app(ty_[], x2)) 47.49/23.26 new_esEs6(Just(x0), Just(x1), ty_@0) 47.49/23.26 new_lt8(x0, x1, ty_Ordering) 47.49/23.26 new_esEs23(x0, x1, app(ty_Ratio, x2)) 47.49/23.26 new_primPlusNat0(Zero, Zero) 47.49/23.26 new_lt8(x0, x1, ty_Int) 47.49/23.26 new_esEs30(x0, x1, ty_Int) 47.49/23.26 new_lt19(x0, x1, ty_@0) 47.49/23.26 new_not(True) 47.49/23.26 new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 47.49/23.26 new_esEs23(x0, x1, ty_Bool) 47.49/23.26 new_esEs22(x0, x1, ty_Char) 47.49/23.26 new_esEs12(EQ, GT) 47.49/23.26 new_esEs12(GT, EQ) 47.49/23.26 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.26 new_esEs6(Just(x0), Nothing, x1) 47.49/23.26 new_esEs28(x0, x1, app(ty_Ratio, x2)) 47.49/23.26 new_lt19(x0, x1, ty_Float) 47.49/23.26 new_ltEs13(False, False) 47.49/23.26 new_compare114(x0, x1, False, x2, x3) 47.49/23.26 new_esEs25(x0, x1, ty_Double) 47.49/23.26 new_esEs25(x0, x1, ty_@0) 47.49/23.26 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 47.49/23.26 new_esEs11(True, True) 47.49/23.26 new_ltEs14(Left(x0), Left(x1), app(ty_[], x2), x3) 47.49/23.26 new_compare27(x0, x1, True, x2, x3) 47.49/23.26 new_ltEs14(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 47.49/23.26 new_lt18(x0, x1, x2) 47.49/23.26 new_ltEs15(GT, EQ) 47.49/23.26 new_esEs23(x0, x1, ty_Double) 47.49/23.26 new_ltEs15(EQ, GT) 47.49/23.26 new_ltEs14(Right(x0), Right(x1), x2, ty_Float) 47.49/23.26 new_compare25(Just(x0), Just(x1), False, x2) 47.49/23.26 new_esEs21(x0, x1, ty_Char) 47.49/23.26 new_esEs11(False, True) 47.49/23.26 new_esEs11(True, False) 47.49/23.26 new_compare113(x0, x1, False) 47.49/23.26 new_esEs27(x0, x1, app(ty_Ratio, x2)) 47.49/23.26 new_lt8(x0, x1, ty_Char) 47.49/23.26 new_esEs29(x0, x1, app(ty_Ratio, x2)) 47.49/23.26 new_esEs21(x0, x1, app(ty_Ratio, x2)) 47.49/23.26 new_esEs28(x0, x1, app(ty_[], x2)) 47.49/23.26 new_ltEs20(x0, x1, ty_Integer) 47.49/23.26 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 47.49/23.26 new_esEs8([], :(x0, x1), x2) 47.49/23.26 new_esEs24(x0, x1, app(ty_Ratio, x2)) 47.49/23.26 new_esEs30(x0, x1, ty_Double) 47.49/23.26 new_esEs26(x0, x1, ty_Int) 47.49/23.26 new_primPlusNat0(Zero, Succ(x0)) 47.49/23.26 new_ltEs14(Left(x0), Left(x1), ty_Bool, x2) 47.49/23.26 new_compare5(x0, x1, ty_Integer) 47.49/23.26 new_compare26(x0, x1, True, x2, x3) 47.49/23.26 new_ltEs14(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 47.49/23.26 new_esEs30(x0, x1, ty_Char) 47.49/23.26 new_primCmpNat0(Succ(x0), Succ(x1)) 47.49/23.26 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.26 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.26 new_compare31(x0, x1) 47.49/23.26 new_esEs9(x0, x1, ty_@0) 47.49/23.26 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.26 new_esEs7(Right(x0), Right(x1), x2, ty_Integer) 47.49/23.26 new_esEs12(LT, LT) 47.49/23.26 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 47.49/23.26 new_lt8(x0, x1, app(ty_[], x2)) 47.49/23.26 new_esEs9(x0, x1, app(ty_Maybe, x2)) 47.49/23.26 new_esEs21(x0, x1, ty_Int) 47.49/23.26 new_esEs26(x0, x1, ty_Double) 47.49/23.26 new_esEs22(x0, x1, ty_Int) 47.49/23.26 new_esEs26(x0, x1, ty_Char) 47.49/23.26 new_esEs21(x0, x1, ty_@0) 47.49/23.26 new_lt14(x0, x1) 47.49/23.26 new_esEs9(x0, x1, ty_Float) 47.49/23.26 new_compare(:(x0, x1), :(x2, x3), x4) 47.49/23.26 new_esEs20(x0, x1, ty_Int) 47.49/23.26 new_ltEs19(x0, x1, app(ty_[], x2)) 47.49/23.26 new_primCmpInt(Pos(Zero), Pos(Zero)) 47.49/23.26 new_gt1(x0, x1) 47.49/23.26 new_esEs20(x0, x1, ty_Integer) 47.49/23.26 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.26 new_esEs7(Right(x0), Right(x1), x2, ty_@0) 47.49/23.26 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.26 new_esEs22(x0, x1, ty_Double) 47.49/23.26 new_esEs27(x0, x1, ty_Double) 47.49/23.26 new_esEs14(@0, @0) 47.49/23.26 new_pePe(False, x0) 47.49/23.26 new_ltEs9(x0, x1) 47.49/23.26 new_esEs22(x0, x1, ty_Float) 47.49/23.26 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.26 new_compare29(x0, x1, False) 47.49/23.26 new_esEs22(x0, x1, app(ty_[], x2)) 47.49/23.26 new_esEs16(x0, x1) 47.49/23.26 new_esEs26(x0, x1, ty_Bool) 47.49/23.26 new_esEs30(x0, x1, app(ty_Maybe, x2)) 47.49/23.26 new_lt10(x0, x1) 47.49/23.26 new_esEs26(x0, x1, ty_@0) 47.49/23.26 new_compare30(x0, x1, x2) 47.49/23.26 new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 47.49/23.26 new_ltEs18(x0, x1, ty_@0) 47.49/23.26 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.26 new_esEs8(:(x0, x1), :(x2, x3), x4) 47.49/23.26 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 47.49/23.26 new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 47.49/23.26 new_ltEs18(x0, x1, ty_Bool) 47.49/23.26 new_compare5(x0, x1, ty_Float) 47.49/23.26 new_esEs10(Integer(x0), Integer(x1)) 47.49/23.26 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.26 new_compare32(x0, x1) 47.49/23.26 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 47.49/23.26 new_esEs21(x0, x1, ty_Double) 47.49/23.26 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 47.49/23.26 new_ltEs4(Just(x0), Just(x1), ty_@0) 47.49/23.26 new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.26 new_lt20(x0, x1, ty_Float) 47.49/23.26 new_esEs26(x0, x1, ty_Integer) 47.49/23.26 new_ltEs14(Right(x0), Right(x1), x2, ty_Integer) 47.49/23.26 new_ltEs10(x0, x1) 47.49/23.26 new_ltEs14(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 47.49/23.26 new_compare5(x0, x1, ty_Int) 47.49/23.26 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 47.49/23.26 new_lt20(x0, x1, ty_Ordering) 47.49/23.26 new_ltEs15(EQ, LT) 47.49/23.26 new_ltEs15(LT, EQ) 47.49/23.26 new_esEs30(x0, x1, ty_Bool) 47.49/23.26 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 47.49/23.26 new_esEs23(x0, x1, ty_Integer) 47.49/23.26 new_ltEs14(Left(x0), Left(x1), ty_Char, x2) 47.49/23.26 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.26 new_compare15(x0, x1, x2) 47.49/23.26 new_esEs24(x0, x1, ty_Bool) 47.49/23.26 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 47.49/23.26 new_esEs29(x0, x1, app(ty_Maybe, x2)) 47.49/23.26 new_ltEs15(GT, GT) 47.49/23.26 new_esEs27(x0, x1, ty_Ordering) 47.49/23.26 new_esEs30(x0, x1, app(ty_Ratio, x2)) 47.49/23.26 new_gt0(x0, x1) 47.49/23.26 new_compare5(x0, x1, ty_Char) 47.49/23.26 new_esEs22(x0, x1, app(ty_Maybe, x2)) 47.49/23.26 new_lt20(x0, x1, ty_Integer) 47.49/23.26 new_ltEs19(x0, x1, ty_@0) 47.49/23.26 new_ltEs14(Left(x0), Left(x1), ty_Int, x2) 47.49/23.26 new_esEs24(x0, x1, app(ty_Maybe, x2)) 47.49/23.26 new_ltEs16(x0, x1) 47.49/23.26 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 47.49/23.26 new_lt11(x0, x1) 47.49/23.26 new_ltEs18(x0, x1, ty_Integer) 47.49/23.26 new_primEqNat0(Zero, Zero) 47.49/23.26 new_ltEs14(Right(x0), Right(x1), x2, ty_Bool) 47.49/23.26 new_esEs23(x0, x1, ty_Ordering) 47.49/23.26 new_ltEs14(Right(x0), Right(x1), x2, ty_Ordering) 47.49/23.26 new_not(False) 47.49/23.26 new_lt19(x0, x1, app(ty_[], x2)) 47.49/23.26 new_lt20(x0, x1, app(ty_[], x2)) 47.49/23.26 new_ltEs8(x0, x1, x2) 47.49/23.26 new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 47.49/23.26 new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 47.49/23.26 new_lt20(x0, x1, app(ty_Ratio, x2)) 47.49/23.26 new_esEs8(:(x0, x1), [], x2) 47.49/23.26 new_esEs28(x0, x1, app(ty_Maybe, x2)) 47.49/23.26 new_ltEs20(x0, x1, ty_Bool) 47.49/23.26 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.26 new_ltEs19(x0, x1, ty_Double) 47.49/23.26 new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 47.49/23.26 new_esEs30(x0, x1, ty_Integer) 47.49/23.26 new_ltEs20(x0, x1, ty_Float) 47.49/23.26 new_compare112(x0, x1, True, x2, x3, x4) 47.49/23.26 new_compare11(Integer(x0), Integer(x1)) 47.49/23.26 new_primCompAux00(x0, LT) 47.49/23.26 new_ltEs14(Left(x0), Left(x1), ty_Float, x2) 47.49/23.26 new_compare110(x0, x1, True) 47.49/23.26 new_compare25(x0, x1, True, x2) 47.49/23.26 new_lt8(x0, x1, app(ty_Ratio, x2)) 47.49/23.26 new_ltEs15(LT, LT) 47.49/23.26 new_esEs6(Just(x0), Just(x1), ty_Double) 47.49/23.26 new_lt20(x0, x1, ty_Int) 47.49/23.26 new_lt9(x0, x1) 47.49/23.26 new_esEs26(x0, x1, app(ty_[], x2)) 47.49/23.26 new_ltEs20(x0, x1, ty_Char) 47.49/23.26 new_esEs28(x0, x1, ty_Int) 47.49/23.26 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.26 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.26 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.26 new_ltEs17(x0, x1, x2) 47.49/23.26 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.26 new_lt20(x0, x1, ty_Bool) 47.49/23.26 new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 47.49/23.26 new_esEs29(x0, x1, ty_@0) 47.49/23.26 new_ltEs18(x0, x1, ty_Ordering) 47.49/23.26 new_esEs7(Left(x0), Left(x1), ty_Double, x2) 47.49/23.26 new_lt20(x0, x1, ty_Char) 47.49/23.26 new_compare24(x0, x1, False) 47.49/23.26 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 47.49/23.26 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 47.49/23.26 new_compare12(x0, x1, x2, x3) 47.49/23.26 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.26 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 47.49/23.26 new_esEs24(x0, x1, ty_Float) 47.49/23.26 new_primPlusNat0(Succ(x0), Succ(x1)) 47.49/23.26 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 47.49/23.26 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 47.49/23.26 new_primMulInt(Pos(x0), Neg(x1)) 47.49/23.26 new_primMulInt(Neg(x0), Pos(x1)) 47.49/23.26 new_ltEs4(Just(x0), Just(x1), ty_Double) 47.49/23.26 new_esEs19(x0, x1, ty_Int) 47.49/23.26 new_ltEs14(Right(x0), Left(x1), x2, x3) 47.49/23.26 new_ltEs14(Left(x0), Right(x1), x2, x3) 47.49/23.26 new_esEs25(x0, x1, app(ty_Ratio, x2)) 47.49/23.26 new_esEs30(x0, x1, ty_Ordering) 47.49/23.26 new_primMulNat0(Zero, Succ(x0)) 47.49/23.26 new_primCmpNat0(Zero, Zero) 47.49/23.26 new_primEqNat0(Zero, Succ(x0)) 47.49/23.26 new_esEs28(x0, x1, ty_Float) 47.49/23.26 new_ltEs20(x0, x1, ty_Int) 47.49/23.26 47.49/23.26 We have to consider all minimal (P,Q,R)-chains. 47.49/23.26 ---------------------------------------- 47.49/23.26 47.49/23.26 (42) QDPSizeChangeProof (EQUIVALENT) 47.49/23.26 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. 47.49/23.26 47.49/23.26 From the DPs we obtained the following set of size-change graphs: 47.49/23.26 *new_addToFM_C20(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, False, h, ba) -> new_addToFM_C10(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, new_gt0(yvy500, h), h, ba) 47.49/23.26 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9 47.49/23.26 47.49/23.26 47.49/23.26 *new_addToFM_C20(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, True, h, ba) -> new_addToFM_C(yvy53, Nothing, yvy41, h, ba) 47.49/23.26 The graph contains the following edges 4 >= 1, 6 >= 3, 8 >= 4, 9 >= 5 47.49/23.26 47.49/23.26 47.49/23.26 *new_addToFM_C2(yvy51, yvy52, yvy53, yvy54, yvy41, False, h, ba) -> new_addToFM_C1(yvy51, yvy52, yvy53, yvy54, yvy41, new_gt(h), h, ba) 47.49/23.26 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 7 >= 7, 8 >= 8 47.49/23.26 47.49/23.26 47.49/23.26 *new_addToFM_C(Branch(Just(yvy500), yvy51, yvy52, yvy53, yvy54), Nothing, yvy41, h, ba) -> new_addToFM_C20(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, new_esEs12(new_compare25(Nothing, Just(yvy500), False, h), LT), h, ba) 47.49/23.26 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 3 >= 6, 4 >= 8, 5 >= 9 47.49/23.26 47.49/23.26 47.49/23.26 *new_addToFM_C(Branch(Nothing, yvy51, yvy52, yvy53, yvy54), Nothing, yvy41, h, ba) -> new_addToFM_C2(yvy51, yvy52, yvy53, yvy54, yvy41, new_esEs12(new_compare25(Nothing, Nothing, True, h), LT), h, ba) 47.49/23.26 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 3 >= 5, 4 >= 7, 5 >= 8 47.49/23.26 47.49/23.26 47.49/23.26 *new_addToFM_C10(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, True, h, ba) -> new_addToFM_C(yvy54, Nothing, yvy41, h, ba) 47.49/23.26 The graph contains the following edges 5 >= 1, 6 >= 3, 8 >= 4, 9 >= 5 47.49/23.26 47.49/23.26 47.49/23.26 *new_addToFM_C2(yvy51, yvy52, yvy53, yvy54, yvy41, True, h, ba) -> new_addToFM_C(yvy53, Nothing, yvy41, h, ba) 47.49/23.26 The graph contains the following edges 3 >= 1, 5 >= 3, 7 >= 4, 8 >= 5 47.49/23.26 47.49/23.26 47.49/23.26 *new_addToFM_C1(yvy51, yvy52, yvy53, yvy54, yvy41, True, h, ba) -> new_addToFM_C(yvy54, Nothing, yvy41, h, ba) 47.49/23.26 The graph contains the following edges 4 >= 1, 5 >= 3, 7 >= 4, 8 >= 5 47.49/23.26 47.49/23.26 47.49/23.26 ---------------------------------------- 47.49/23.26 47.49/23.26 (43) 47.49/23.26 YES 47.49/23.26 47.49/23.26 ---------------------------------------- 47.49/23.26 47.49/23.26 (44) 47.49/23.26 Obligation: 47.49/23.26 Q DP problem: 47.49/23.26 The TRS P consists of the following rules: 47.49/23.26 47.49/23.26 new_addToFM_C11(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba) -> new_addToFM_C(yvy54, Just(yvy400), yvy41, h, ba) 47.49/23.26 new_addToFM_C(Branch(Nothing, yvy51, yvy52, yvy53, yvy54), Just(yvy400), yvy41, h, ba) -> new_addToFM_C21(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs12(new_compare25(Just(yvy400), Nothing, False, h), LT), h, ba) 47.49/23.26 new_addToFM_C21(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba) -> new_addToFM_C11(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt1(yvy400, h), h, ba) 47.49/23.26 new_addToFM_C21(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba) -> new_addToFM_C(yvy53, Just(yvy400), yvy41, h, ba) 47.49/23.26 new_addToFM_C(Branch(Just(yvy500), yvy51, yvy52, yvy53, yvy54), Just(yvy400), yvy41, h, ba) -> new_addToFM_C22(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs12(new_compare25(Just(yvy400), Just(yvy500), new_esEs29(yvy400, yvy500, h), h), LT), h, ba) 47.49/23.26 new_addToFM_C22(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba) -> new_addToFM_C(yvy53, Just(yvy400), yvy41, h, ba) 47.49/23.26 new_addToFM_C22(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba) -> new_addToFM_C12(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt2(yvy400, yvy500, h), h, ba) 47.49/23.26 new_addToFM_C12(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba) -> new_addToFM_C(yvy54, Just(yvy400), yvy41, h, ba) 47.49/23.26 47.49/23.26 The TRS R consists of the following rules: 47.49/23.26 47.49/23.26 new_esEs22(yvy4002, yvy3002, app(ty_[], cac)) -> new_esEs8(yvy4002, yvy3002, cac) 47.49/23.26 new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) 47.49/23.26 new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT 47.49/23.26 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 47.49/23.26 new_primPlusNat0(Zero, Zero) -> Zero 47.49/23.26 new_compare13(yvy49000, yvy50000, bca, bcb, bcc) -> new_compare28(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, bca, bcb, bcc), bca, bcb, bcc) 47.49/23.26 new_esEs23(yvy4001, yvy3001, app(ty_Maybe, cag)) -> new_esEs6(yvy4001, yvy3001, cag) 47.49/23.26 new_pePe(True, yvy220) -> True 47.49/23.26 new_ltEs20(yvy49002, yvy50002, ty_Ordering) -> new_ltEs15(yvy49002, yvy50002) 47.49/23.26 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.26 new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) 47.49/23.26 new_compare26(yvy49000, yvy50000, False, bbg, bbh) -> new_compare114(yvy49000, yvy50000, new_ltEs14(yvy49000, yvy50000, bbg, bbh), bbg, bbh) 47.49/23.26 new_lt20(yvy49001, yvy50001, ty_Ordering) -> new_lt17(yvy49001, yvy50001) 47.49/23.26 new_esEs30(yvy20, yvy15, app(app(ty_@2, ddd), dde)) -> new_esEs4(yvy20, yvy15, ddd, dde) 47.49/23.26 new_compare(:(yvy49000, yvy49001), [], be) -> GT 47.49/23.26 new_ltEs20(yvy49002, yvy50002, app(app(ty_@2, dbf), dbg)) -> new_ltEs11(yvy49002, yvy50002, dbf, dbg) 47.49/23.26 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 47.49/23.26 new_ltEs14(Right(yvy49000), Left(yvy50000), hc, fh) -> False 47.49/23.26 new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Ratio, hb), fh) -> new_ltEs17(yvy49000, yvy50000, hb) 47.49/23.26 new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT 47.49/23.26 new_esEs29(yvy400, yvy500, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs5(yvy400, yvy500, bgg, bgh, bha) 47.49/23.26 new_lt20(yvy49001, yvy50001, app(ty_Ratio, dbd)) -> new_lt18(yvy49001, yvy50001, dbd) 47.49/23.26 new_compare(:(yvy49000, yvy49001), :(yvy50000, yvy50001), be) -> new_primCompAux0(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, be), be) 47.49/23.26 new_compare26(yvy49000, yvy50000, True, bbg, bbh) -> EQ 47.49/23.26 new_esEs8(:(yvy4000, yvy4001), :(yvy3000, yvy3001), ed) -> new_asAs(new_esEs9(yvy4000, yvy3000, ed), new_esEs8(yvy4001, yvy3001, ed)) 47.49/23.26 new_compare27(yvy49000, yvy50000, False, bc, bd) -> new_compare10(yvy49000, yvy50000, new_ltEs11(yvy49000, yvy50000, bc, bd), bc, bd) 47.49/23.26 new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) 47.49/23.26 new_esEs30(yvy20, yvy15, ty_Float) -> new_esEs13(yvy20, yvy15) 47.49/23.26 new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.26 new_ltEs4(Nothing, Nothing, da) -> True 47.49/23.26 new_ltEs4(Just(yvy49000), Nothing, da) -> False 47.49/23.26 new_lt8(yvy49000, yvy50000, app(app(ty_@2, bc), bd)) -> new_lt4(yvy49000, yvy50000, bc, bd) 47.49/23.26 new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat1(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) 47.49/23.26 new_compare113(yvy49000, yvy50000, False) -> GT 47.49/23.26 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Int) -> new_ltEs7(yvy49000, yvy50000) 47.49/23.26 new_ltEs15(EQ, LT) -> False 47.49/23.26 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.26 new_esEs28(yvy49000, yvy50000, app(app(ty_Either, chh), daa)) -> new_esEs7(yvy49000, yvy50000, chh, daa) 47.49/23.26 new_lt19(yvy49000, yvy50000, app(app(ty_@2, chb), chc)) -> new_lt4(yvy49000, yvy50000, chb, chc) 47.49/23.26 new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.26 new_ltEs20(yvy49002, yvy50002, app(app(ty_Either, dcd), dce)) -> new_ltEs14(yvy49002, yvy50002, dcd, dce) 47.49/23.26 new_esEs28(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) 47.49/23.26 new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Maybe, dh)) -> new_ltEs4(yvy49000, yvy50000, dh) 47.49/23.26 new_ltEs19(yvy49001, yvy50001, ty_Ordering) -> new_ltEs15(yvy49001, yvy50001) 47.49/23.26 new_ltEs18(yvy4900, yvy5000, ty_Float) -> new_ltEs5(yvy4900, yvy5000) 47.49/23.26 new_lt9(yvy49000, yvy50000) -> new_esEs12(new_compare6(yvy49000, yvy50000), LT) 47.49/23.26 new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False 47.49/23.26 new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False 47.49/23.26 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, app(ty_Ratio, bae)) -> new_ltEs17(yvy49000, yvy50000, bae) 47.49/23.26 new_ltEs15(GT, LT) -> False 47.49/23.26 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.26 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.26 new_lt19(yvy49000, yvy50000, app(ty_Ratio, dab)) -> new_lt18(yvy49000, yvy50000, dab) 47.49/23.26 new_esEs24(yvy4000, yvy3000, app(ty_Ratio, ccd)) -> new_esEs15(yvy4000, yvy3000, ccd) 47.49/23.26 new_esEs24(yvy4000, yvy3000, app(app(ty_@2, ccb), ccc)) -> new_esEs4(yvy4000, yvy3000, ccb, ccc) 47.49/23.26 new_ltEs13(True, True) -> True 47.49/23.26 new_compare29(yvy49000, yvy50000, False) -> new_compare113(yvy49000, yvy50000, new_ltEs15(yvy49000, yvy50000)) 47.49/23.26 new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) 47.49/23.26 new_esEs29(yvy400, yvy500, ty_Float) -> new_esEs13(yvy400, yvy500) 47.49/23.26 new_lt15(yvy49000, yvy50000, bag) -> new_esEs12(new_compare15(yvy49000, yvy50000, bag), LT) 47.49/23.26 new_ltEs20(yvy49002, yvy50002, ty_Integer) -> new_ltEs10(yvy49002, yvy50002) 47.49/23.26 new_ltEs19(yvy49001, yvy50001, app(app(ty_@2, bch), bda)) -> new_ltEs11(yvy49001, yvy50001, bch, bda) 47.49/23.26 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Bool) -> new_ltEs13(yvy49000, yvy50000) 47.49/23.26 new_not(True) -> False 47.49/23.26 new_esEs28(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) 47.49/23.26 new_esEs28(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) 47.49/23.26 new_ltEs19(yvy49001, yvy50001, app(ty_Ratio, bdh)) -> new_ltEs17(yvy49001, yvy50001, bdh) 47.49/23.26 new_primCompAux00(yvy225, LT) -> LT 47.49/23.26 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.26 new_primCmpNat0(Zero, Zero) -> EQ 47.49/23.26 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Ordering, bed) -> new_esEs12(yvy4000, yvy3000) 47.49/23.26 new_esEs28(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) 47.49/23.26 new_lt20(yvy49001, yvy50001, ty_Bool) -> new_lt14(yvy49001, yvy50001) 47.49/23.26 new_esEs27(yvy49001, yvy50001, ty_Bool) -> new_esEs11(yvy49001, yvy50001) 47.49/23.26 new_ltEs19(yvy49001, yvy50001, ty_Integer) -> new_ltEs10(yvy49001, yvy50001) 47.49/23.26 new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.49/23.26 new_esEs27(yvy49001, yvy50001, app(ty_[], dac)) -> new_esEs8(yvy49001, yvy50001, dac) 47.49/23.26 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.26 new_esEs27(yvy49001, yvy50001, ty_Char) -> new_esEs17(yvy49001, yvy50001) 47.49/23.26 new_esEs30(yvy20, yvy15, app(ty_Ratio, ddf)) -> new_esEs15(yvy20, yvy15, ddf) 47.49/23.26 new_esEs12(LT, LT) -> True 47.49/23.26 new_esEs21(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) 47.49/23.26 new_primEqNat0(Succ(yvy40000), Zero) -> False 47.49/23.26 new_primEqNat0(Zero, Succ(yvy30000)) -> False 47.49/23.26 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, app(app(app(ty_@3, hg), hh), baa)) -> new_ltEs12(yvy49000, yvy50000, hg, hh, baa) 47.49/23.26 new_esEs14(@0, @0) -> True 47.49/23.26 new_compare8(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) 47.49/23.26 new_ltEs19(yvy49001, yvy50001, ty_Char) -> new_ltEs6(yvy49001, yvy50001) 47.49/23.26 new_compare10(yvy49000, yvy50000, True, bc, bd) -> LT 47.49/23.26 new_ltEs15(GT, EQ) -> False 47.49/23.26 new_lt20(yvy49001, yvy50001, app(app(app(ty_@3, daf), dag), dah)) -> new_lt13(yvy49001, yvy50001, daf, dag, dah) 47.49/23.26 new_primCompAux00(yvy225, GT) -> GT 47.49/23.26 new_compare110(yvy49000, yvy50000, True) -> LT 47.49/23.26 new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, cee), cef), ceg)) -> new_esEs5(yvy4001, yvy3001, cee, cef, ceg) 47.49/23.26 new_compare16(yvy49000, yvy50000, bbg, bbh) -> new_compare26(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, bbg, bbh), bbg, bbh) 47.49/23.26 new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.26 new_esEs27(yvy49001, yvy50001, ty_Ordering) -> new_esEs12(yvy49001, yvy50001) 47.49/23.26 new_lt19(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) 47.49/23.26 new_ltEs20(yvy49002, yvy50002, ty_Bool) -> new_ltEs13(yvy49002, yvy50002) 47.49/23.26 new_esEs22(yvy4002, yvy3002, ty_Int) -> new_esEs16(yvy4002, yvy3002) 47.49/23.26 new_ltEs18(yvy4900, yvy5000, ty_Double) -> new_ltEs16(yvy4900, yvy5000) 47.49/23.26 new_esEs29(yvy400, yvy500, ty_Double) -> new_esEs18(yvy400, yvy500) 47.49/23.26 new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT 47.49/23.26 new_esEs27(yvy49001, yvy50001, ty_Int) -> new_esEs16(yvy49001, yvy50001) 47.49/23.26 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, app(ty_Ratio, bgc)) -> new_esEs15(yvy4000, yvy3000, bgc) 47.49/23.26 new_esEs22(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) 47.49/23.26 new_compare12(yvy49000, yvy50000, bc, bd) -> new_compare27(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, bc, bd), bc, bd) 47.49/23.26 new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs5(yvy4000, yvy3000, cbf, cbg, cbh) 47.49/23.26 new_lt19(yvy49000, yvy50000, app(app(app(ty_@3, chd), che), chf)) -> new_lt13(yvy49000, yvy50000, chd, che, chf) 47.49/23.26 new_ltEs20(yvy49002, yvy50002, app(app(app(ty_@3, dbh), dca), dcb)) -> new_ltEs12(yvy49002, yvy50002, dbh, dca, dcb) 47.49/23.26 new_esEs30(yvy20, yvy15, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs5(yvy20, yvy15, dch, dda, ddb) 47.49/23.26 new_esEs30(yvy20, yvy15, ty_Double) -> new_esEs18(yvy20, yvy15) 47.49/23.26 new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bgg, bgh, bha) -> new_asAs(new_esEs24(yvy4000, yvy3000, bgg), new_asAs(new_esEs23(yvy4001, yvy3001, bgh), new_esEs22(yvy4002, yvy3002, bha))) 47.49/23.26 new_compare5(yvy49000, yvy50000, ty_Int) -> new_compare8(yvy49000, yvy50000) 47.49/23.26 new_compare32(yvy400, h) -> new_compare25(Just(yvy400), Nothing, False, h) 47.49/23.26 new_ltEs19(yvy49001, yvy50001, ty_Bool) -> new_ltEs13(yvy49001, yvy50001) 47.49/23.26 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs5(yvy4000, yvy3000, bfe, bff, bfg) 47.49/23.26 new_ltEs18(yvy4900, yvy5000, ty_Integer) -> new_ltEs10(yvy4900, yvy5000) 47.49/23.26 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.26 new_esEs26(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.26 new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.26 new_esEs7(Left(yvy4000), Left(yvy3000), ty_@0, bed) -> new_esEs14(yvy4000, yvy3000) 47.49/23.26 new_primCmpNat0(Zero, Succ(yvy5000)) -> LT 47.49/23.26 new_compare5(yvy49000, yvy50000, app(ty_Ratio, cg)) -> new_compare19(yvy49000, yvy50000, cg) 47.49/23.26 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.26 new_esEs26(yvy4000, yvy3000, app(ty_[], cgh)) -> new_esEs8(yvy4000, yvy3000, cgh) 47.49/23.26 new_esEs12(EQ, GT) -> False 47.49/23.26 new_esEs12(GT, EQ) -> False 47.49/23.26 new_lt8(yvy49000, yvy50000, app(ty_Ratio, bcf)) -> new_lt18(yvy49000, yvy50000, bcf) 47.49/23.26 new_ltEs19(yvy49001, yvy50001, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_ltEs12(yvy49001, yvy50001, bdb, bdc, bdd) 47.49/23.26 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) 47.49/23.26 new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.26 new_lt8(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) 47.49/23.26 new_esEs21(yvy49000, yvy50000, app(app(app(ty_@3, bca), bcb), bcc)) -> new_esEs5(yvy49000, yvy50000, bca, bcb, bcc) 47.49/23.26 new_lt19(yvy49000, yvy50000, app(ty_[], cha)) -> new_lt12(yvy49000, yvy50000, cha) 47.49/23.26 new_primCmpNat0(Succ(yvy4900), Zero) -> GT 47.49/23.26 new_pePe(False, yvy220) -> yvy220 47.49/23.26 new_esEs27(yvy49001, yvy50001, ty_@0) -> new_esEs14(yvy49001, yvy50001) 47.49/23.26 new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Maybe, gg), fh) -> new_ltEs4(yvy49000, yvy50000, gg) 47.49/23.26 new_esEs11(False, True) -> False 47.49/23.26 new_esEs11(True, False) -> False 47.49/23.26 new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cdh), cea)) -> new_esEs7(yvy4000, yvy3000, cdh, cea) 47.49/23.26 new_lt8(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) 47.49/23.26 new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_@2, bef), beg), bed) -> new_esEs4(yvy4000, yvy3000, bef, beg) 47.49/23.26 new_compare114(yvy49000, yvy50000, True, bbg, bbh) -> LT 47.49/23.26 new_lt8(yvy49000, yvy50000, app(app(ty_Either, bbg), bbh)) -> new_lt16(yvy49000, yvy50000, bbg, bbh) 47.49/23.26 new_ltEs18(yvy4900, yvy5000, ty_@0) -> new_ltEs9(yvy4900, yvy5000) 47.49/23.26 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_@0) -> new_ltEs9(yvy49000, yvy50000) 47.49/23.26 new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 47.49/23.26 new_gt2(yvy35, yvy30, bb) -> new_esEs12(new_compare30(yvy35, yvy30, bb), GT) 47.49/23.26 new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) 47.49/23.26 new_ltEs7(yvy4900, yvy5000) -> new_fsEs(new_compare8(yvy4900, yvy5000)) 47.49/23.26 new_ltEs19(yvy49001, yvy50001, ty_Double) -> new_ltEs16(yvy49001, yvy50001) 47.49/23.26 new_esEs22(yvy4002, yvy3002, ty_Bool) -> new_esEs11(yvy4002, yvy3002) 47.49/23.26 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Char) -> new_ltEs6(yvy49000, yvy50000) 47.49/23.26 new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_[], ga), fh) -> new_ltEs8(yvy49000, yvy50000, ga) 47.49/23.26 new_esEs21(yvy49000, yvy50000, app(ty_[], bce)) -> new_esEs8(yvy49000, yvy50000, bce) 47.49/23.26 new_esEs22(yvy4002, yvy3002, app(ty_Maybe, bhe)) -> new_esEs6(yvy4002, yvy3002, bhe) 47.49/23.26 new_esEs21(yvy49000, yvy50000, app(app(ty_@2, bc), bd)) -> new_esEs4(yvy49000, yvy50000, bc, bd) 47.49/23.26 new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False 47.49/23.26 new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False 47.49/23.26 new_esEs25(yvy4001, yvy3001, app(app(ty_@2, cfa), cfb)) -> new_esEs4(yvy4001, yvy3001, cfa, cfb) 47.49/23.26 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Bool, bed) -> new_esEs11(yvy4000, yvy3000) 47.49/23.26 new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Ratio, beh), bed) -> new_esEs15(yvy4000, yvy3000, beh) 47.49/23.26 new_ltEs18(yvy4900, yvy5000, ty_Bool) -> new_ltEs13(yvy4900, yvy5000) 47.49/23.26 new_gt0(yvy300, h) -> new_esEs12(new_compare31(yvy300, h), GT) 47.49/23.26 new_ltEs18(yvy4900, yvy5000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_ltEs12(yvy4900, yvy5000, bbc, bbd, bbe) 47.49/23.26 new_esEs23(yvy4001, yvy3001, app(app(ty_Either, cbc), cbd)) -> new_esEs7(yvy4001, yvy3001, cbc, cbd) 47.49/23.26 new_esEs21(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) 47.49/23.26 new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 47.49/23.26 new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_@2, gb), gc), fh) -> new_ltEs11(yvy49000, yvy50000, gb, gc) 47.49/23.26 new_ltEs20(yvy49002, yvy50002, ty_Double) -> new_ltEs16(yvy49002, yvy50002) 47.49/23.26 new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.26 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, app(app(ty_Either, bac), bad)) -> new_ltEs14(yvy49000, yvy50000, bac, bad) 47.49/23.26 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Float, fh) -> new_ltEs5(yvy49000, yvy50000) 47.49/23.26 new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT 47.49/23.26 new_compare114(yvy49000, yvy50000, False, bbg, bbh) -> GT 47.49/23.26 new_esEs25(yvy4001, yvy3001, app(ty_[], cff)) -> new_esEs8(yvy4001, yvy3001, cff) 47.49/23.26 new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.26 new_esEs4(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cec, ced) -> new_asAs(new_esEs26(yvy4000, yvy3000, cec), new_esEs25(yvy4001, yvy3001, ced)) 47.49/23.26 new_ltEs5(yvy4900, yvy5000) -> new_fsEs(new_compare6(yvy4900, yvy5000)) 47.49/23.26 new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_Either, bfa), bfb), bed) -> new_esEs7(yvy4000, yvy3000, bfa, bfb) 47.49/23.26 new_esEs26(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.26 new_esEs9(yvy4000, yvy3000, app(app(ty_@2, fa), fb)) -> new_esEs4(yvy4000, yvy3000, fa, fb) 47.49/23.26 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.26 new_compare25(Just(yvy4900), Nothing, False, bah) -> GT 47.49/23.26 new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) 47.49/23.26 new_compare5(yvy49000, yvy50000, ty_@0) -> new_compare9(yvy49000, yvy50000) 47.49/23.26 new_esEs24(yvy4000, yvy3000, app(ty_Maybe, cca)) -> new_esEs6(yvy4000, yvy3000, cca) 47.49/23.26 new_lt11(yvy205, yvy204) -> new_esEs12(new_compare8(yvy205, yvy204), LT) 47.49/23.26 new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 47.49/23.26 new_lt6(yvy49000, yvy50000) -> new_esEs12(new_compare9(yvy49000, yvy50000), LT) 47.49/23.26 new_primMulNat0(Succ(yvy400100), Zero) -> Zero 47.49/23.26 new_primMulNat0(Zero, Succ(yvy300000)) -> Zero 47.49/23.26 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Double, fh) -> new_ltEs16(yvy49000, yvy50000) 47.49/23.26 new_lt8(yvy49000, yvy50000, app(app(app(ty_@3, bca), bcb), bcc)) -> new_lt13(yvy49000, yvy50000, bca, bcb, bcc) 47.49/23.26 new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) 47.49/23.26 new_esEs6(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, cda), cdb), cdc)) -> new_esEs5(yvy4000, yvy3000, cda, cdb, cdc) 47.49/23.26 new_esEs25(yvy4001, yvy3001, app(app(ty_Either, cfd), cfe)) -> new_esEs7(yvy4001, yvy3001, cfd, cfe) 47.49/23.26 new_compare5(yvy49000, yvy50000, ty_Float) -> new_compare6(yvy49000, yvy50000) 47.49/23.26 new_esEs9(yvy4000, yvy3000, app(ty_[], fg)) -> new_esEs8(yvy4000, yvy3000, fg) 47.49/23.26 new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, cad), cae), caf)) -> new_esEs5(yvy4001, yvy3001, cad, cae, caf) 47.49/23.26 new_esEs26(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.26 new_primPlusNat1(Succ(yvy1610), yvy300000) -> Succ(Succ(new_primPlusNat0(yvy1610, yvy300000))) 47.49/23.26 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Int, bed) -> new_esEs16(yvy4000, yvy3000) 47.49/23.26 new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.26 new_esEs16(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) 47.49/23.26 new_primPlusNat0(Succ(yvy16100), Zero) -> Succ(yvy16100) 47.49/23.26 new_primPlusNat0(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) 47.49/23.26 new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) 47.49/23.26 new_primPlusNat1(Zero, yvy300000) -> Succ(yvy300000) 47.49/23.26 new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Int) -> new_compare8(new_sr(yvy49000, yvy50001), new_sr(yvy50000, yvy49001)) 47.49/23.26 new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.26 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_@0, fh) -> new_ltEs9(yvy49000, yvy50000) 47.49/23.26 new_lt8(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) 47.49/23.26 new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_Either, gh), ha), fh) -> new_ltEs14(yvy49000, yvy50000, gh, ha) 47.49/23.26 new_ltEs20(yvy49002, yvy50002, ty_@0) -> new_ltEs9(yvy49002, yvy50002) 47.49/23.26 new_ltEs18(yvy4900, yvy5000, app(app(ty_@2, bba), bbb)) -> new_ltEs11(yvy4900, yvy5000, bba, bbb) 47.49/23.26 new_ltEs9(yvy4900, yvy5000) -> new_fsEs(new_compare9(yvy4900, yvy5000)) 47.49/23.26 new_esEs22(yvy4002, yvy3002, app(ty_Ratio, bhh)) -> new_esEs15(yvy4002, yvy3002, bhh) 47.49/23.26 new_ltEs19(yvy49001, yvy50001, app(app(ty_Either, bdf), bdg)) -> new_ltEs14(yvy49001, yvy50001, bdf, bdg) 47.49/23.26 new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) 47.49/23.26 new_lt8(yvy49000, yvy50000, app(ty_Maybe, bag)) -> new_lt15(yvy49000, yvy50000, bag) 47.49/23.26 new_esEs30(yvy20, yvy15, ty_@0) -> new_esEs14(yvy20, yvy15) 47.49/23.26 new_lt20(yvy49001, yvy50001, ty_Char) -> new_lt10(yvy49001, yvy50001) 47.49/23.26 new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.49/23.26 new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.49/23.26 new_esEs9(yvy4000, yvy3000, app(ty_Maybe, eh)) -> new_esEs6(yvy4000, yvy3000, eh) 47.49/23.26 new_esEs23(yvy4001, yvy3001, app(ty_Ratio, cbb)) -> new_esEs15(yvy4001, yvy3001, cbb) 47.49/23.26 new_compare25(Just(yvy4900), Just(yvy5000), False, bah) -> new_compare111(yvy4900, yvy5000, new_ltEs18(yvy4900, yvy5000, bah), bah) 47.49/23.26 new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.49/23.26 new_ltEs20(yvy49002, yvy50002, ty_Float) -> new_ltEs5(yvy49002, yvy50002) 47.49/23.26 new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cde), cdf)) -> new_esEs4(yvy4000, yvy3000, cde, cdf) 47.49/23.26 new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.26 new_fsEs(yvy209) -> new_not(new_esEs12(yvy209, GT)) 47.49/23.26 new_ltEs18(yvy4900, yvy5000, app(app(ty_Either, hc), fh)) -> new_ltEs14(yvy4900, yvy5000, hc, fh) 47.49/23.26 new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cdg)) -> new_esEs15(yvy4000, yvy3000, cdg) 47.49/23.26 new_esEs29(yvy400, yvy500, ty_@0) -> new_esEs14(yvy400, yvy500) 47.49/23.26 new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.26 new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) 47.49/23.26 new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_[], ceb)) -> new_esEs8(yvy4000, yvy3000, ceb) 47.49/23.26 new_compare25(yvy490, yvy500, True, bah) -> EQ 47.49/23.26 new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ee), ef), eg)) -> new_esEs5(yvy4000, yvy3000, ee, ef, eg) 47.49/23.26 new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fc)) -> new_esEs15(yvy4000, yvy3000, fc) 47.49/23.26 new_compare([], :(yvy50000, yvy50001), be) -> LT 47.49/23.26 new_lt20(yvy49001, yvy50001, app(ty_[], dac)) -> new_lt12(yvy49001, yvy50001, dac) 47.49/23.26 new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cdd)) -> new_esEs6(yvy4000, yvy3000, cdd) 47.49/23.26 new_esEs29(yvy400, yvy500, ty_Char) -> new_esEs17(yvy400, yvy500) 47.49/23.26 new_esEs6(Nothing, Just(yvy3000), cch) -> False 47.49/23.26 new_esEs6(Just(yvy4000), Nothing, cch) -> False 47.49/23.26 new_esEs23(yvy4001, yvy3001, app(ty_[], cbe)) -> new_esEs8(yvy4001, yvy3001, cbe) 47.49/23.26 new_ltEs15(EQ, GT) -> True 47.49/23.26 new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.26 new_esEs6(Nothing, Nothing, cch) -> True 47.49/23.26 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Double) -> new_ltEs16(yvy49000, yvy50000) 47.49/23.26 new_esEs11(False, False) -> True 47.49/23.26 new_esEs24(yvy4000, yvy3000, app(app(ty_Either, cce), ccf)) -> new_esEs7(yvy4000, yvy3000, cce, ccf) 47.49/23.26 new_ltEs18(yvy4900, yvy5000, ty_Ordering) -> new_ltEs15(yvy4900, yvy5000) 47.49/23.26 new_ltEs11(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), bba, bbb) -> new_pePe(new_lt8(yvy49000, yvy50000, bba), new_asAs(new_esEs21(yvy49000, yvy50000, bba), new_ltEs19(yvy49001, yvy50001, bbb))) 47.49/23.26 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Integer) -> new_ltEs10(yvy49000, yvy50000) 47.49/23.26 new_esEs21(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) 47.49/23.26 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.26 new_esEs30(yvy20, yvy15, ty_Char) -> new_esEs17(yvy20, yvy15) 47.49/23.26 new_ltEs14(Left(yvy49000), Right(yvy50000), hc, fh) -> True 47.49/23.26 new_ltEs19(yvy49001, yvy50001, ty_Float) -> new_ltEs5(yvy49001, yvy50001) 47.49/23.26 new_esEs23(yvy4001, yvy3001, app(app(ty_@2, cah), cba)) -> new_esEs4(yvy4001, yvy3001, cah, cba) 47.49/23.26 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.26 new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.49/23.26 new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.49/23.26 new_esEs26(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.26 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Ordering, fh) -> new_ltEs15(yvy49000, yvy50000) 47.49/23.26 new_ltEs6(yvy4900, yvy5000) -> new_fsEs(new_compare7(yvy4900, yvy5000)) 47.49/23.26 new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.26 new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.26 new_esEs8(:(yvy4000, yvy4001), [], ed) -> False 47.49/23.26 new_esEs8([], :(yvy3000, yvy3001), ed) -> False 47.49/23.26 new_esEs29(yvy400, yvy500, ty_Ordering) -> new_esEs12(yvy400, yvy500) 47.49/23.26 new_esEs26(yvy4000, yvy3000, app(app(ty_Either, cgf), cgg)) -> new_esEs7(yvy4000, yvy3000, cgf, cgg) 47.49/23.26 new_lt19(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) 47.49/23.26 new_lt17(yvy49000, yvy50000) -> new_esEs12(new_compare17(yvy49000, yvy50000), LT) 47.49/23.26 new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Integer) -> new_compare11(new_sr0(yvy49000, yvy50001), new_sr0(yvy50000, yvy49001)) 47.49/23.26 new_esEs22(yvy4002, yvy3002, app(app(ty_@2, bhf), bhg)) -> new_esEs4(yvy4002, yvy3002, bhf, bhg) 47.49/23.26 new_esEs22(yvy4002, yvy3002, ty_Double) -> new_esEs18(yvy4002, yvy3002) 47.49/23.26 new_esEs29(yvy400, yvy500, ty_Int) -> new_esEs16(yvy400, yvy500) 47.49/23.26 new_esEs26(yvy4000, yvy3000, app(ty_Ratio, cge)) -> new_esEs15(yvy4000, yvy3000, cge) 47.49/23.26 new_compare5(yvy49000, yvy50000, app(ty_Maybe, cd)) -> new_compare15(yvy49000, yvy50000, cd) 47.49/23.26 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Integer, bed) -> new_esEs10(yvy4000, yvy3000) 47.49/23.26 new_ltEs19(yvy49001, yvy50001, ty_@0) -> new_ltEs9(yvy49001, yvy50001) 47.49/23.26 new_esEs22(yvy4002, yvy3002, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_esEs5(yvy4002, yvy3002, bhb, bhc, bhd) 47.49/23.26 new_lt20(yvy49001, yvy50001, ty_@0) -> new_lt6(yvy49001, yvy50001) 47.49/23.26 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, app(app(ty_@2, bga), bgb)) -> new_esEs4(yvy4000, yvy3000, bga, bgb) 47.49/23.26 new_gt1(yvy400, h) -> new_esEs12(new_compare32(yvy400, h), GT) 47.49/23.26 new_sr0(Integer(yvy490000), Integer(yvy500010)) -> Integer(new_primMulInt(yvy490000, yvy500010)) 47.49/23.26 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Bool, fh) -> new_ltEs13(yvy49000, yvy50000) 47.49/23.26 new_esEs18(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 47.49/23.26 new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.26 new_esEs28(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) 47.49/23.26 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, app(ty_[], bgf)) -> new_esEs8(yvy4000, yvy3000, bgf) 47.49/23.26 new_ltEs15(LT, GT) -> True 47.49/23.26 new_lt19(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) 47.49/23.26 new_esEs30(yvy20, yvy15, app(ty_[], dea)) -> new_esEs8(yvy20, yvy15, dea) 47.49/23.26 new_compare33(h) -> new_compare25(Nothing, Nothing, True, h) 47.49/23.26 new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) 47.49/23.26 new_esEs12(GT, GT) -> True 47.49/23.26 new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) 47.49/23.26 new_esEs24(yvy4000, yvy3000, app(ty_[], ccg)) -> new_esEs8(yvy4000, yvy3000, ccg) 47.49/23.26 new_asAs(True, yvy201) -> yvy201 47.49/23.26 new_esEs26(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.26 new_esEs21(yvy49000, yvy50000, app(ty_Maybe, bag)) -> new_esEs6(yvy49000, yvy50000, bag) 47.49/23.26 new_esEs10(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) 47.49/23.26 new_compare10(yvy49000, yvy50000, False, bc, bd) -> GT 47.49/23.26 new_lt8(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) 47.49/23.26 new_lt8(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) 47.49/23.26 new_compare113(yvy49000, yvy50000, True) -> LT 47.49/23.26 new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.26 new_ltEs16(yvy4900, yvy5000) -> new_fsEs(new_compare18(yvy4900, yvy5000)) 47.49/23.26 new_lt20(yvy49001, yvy50001, ty_Float) -> new_lt9(yvy49001, yvy50001) 47.49/23.26 new_ltEs4(Nothing, Just(yvy50000), da) -> True 47.49/23.26 new_esEs21(yvy49000, yvy50000, app(ty_Ratio, bcf)) -> new_esEs15(yvy49000, yvy50000, bcf) 47.49/23.26 new_ltEs18(yvy4900, yvy5000, app(ty_Maybe, da)) -> new_ltEs4(yvy4900, yvy5000, da) 47.49/23.26 new_lt8(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) 47.49/23.26 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Float, bed) -> new_esEs13(yvy4000, yvy3000) 47.49/23.26 new_ltEs8(yvy4900, yvy5000, be) -> new_fsEs(new_compare(yvy4900, yvy5000, be)) 47.49/23.26 new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) 47.49/23.26 new_ltEs18(yvy4900, yvy5000, app(ty_[], be)) -> new_ltEs8(yvy4900, yvy5000, be) 47.49/23.26 new_compare110(yvy49000, yvy50000, False) -> GT 47.49/23.26 new_primCompAux00(yvy225, EQ) -> yvy225 47.49/23.26 new_lt19(yvy49000, yvy50000, app(ty_Maybe, chg)) -> new_lt15(yvy49000, yvy50000, chg) 47.49/23.26 new_esEs12(EQ, EQ) -> True 47.49/23.26 new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) 47.49/23.26 new_lt19(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) 47.49/23.26 new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) 47.49/23.26 new_esEs21(yvy49000, yvy50000, app(app(ty_Either, bbg), bbh)) -> new_esEs7(yvy49000, yvy50000, bbg, bbh) 47.49/23.26 new_primMulNat0(Zero, Zero) -> Zero 47.49/23.26 new_compare24(yvy49000, yvy50000, False) -> new_compare110(yvy49000, yvy50000, new_ltEs13(yvy49000, yvy50000)) 47.49/23.26 new_compare5(yvy49000, yvy50000, ty_Integer) -> new_compare11(yvy49000, yvy50000) 47.49/23.26 new_esEs22(yvy4002, yvy3002, ty_Integer) -> new_esEs10(yvy4002, yvy3002) 47.49/23.26 new_esEs21(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) 47.49/23.26 new_lt19(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) 47.49/23.26 new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.26 new_ltEs12(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), bbc, bbd, bbe) -> new_pePe(new_lt19(yvy49000, yvy50000, bbc), new_asAs(new_esEs28(yvy49000, yvy50000, bbc), new_pePe(new_lt20(yvy49001, yvy50001, bbd), new_asAs(new_esEs27(yvy49001, yvy50001, bbd), new_ltEs20(yvy49002, yvy50002, bbe))))) 47.49/23.26 new_ltEs19(yvy49001, yvy50001, app(ty_[], bcg)) -> new_ltEs8(yvy49001, yvy50001, bcg) 47.49/23.26 new_compare5(yvy49000, yvy50000, ty_Double) -> new_compare18(yvy49000, yvy50000) 47.49/23.26 new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_@2, dc), dd)) -> new_ltEs11(yvy49000, yvy50000, dc, dd) 47.49/23.26 new_compare11(Integer(yvy49000), Integer(yvy50000)) -> new_primCmpInt(yvy49000, yvy50000) 47.49/23.26 new_compare9(@0, @0) -> EQ 47.49/23.26 new_esEs22(yvy4002, yvy3002, app(app(ty_Either, caa), cab)) -> new_esEs7(yvy4002, yvy3002, caa, cab) 47.49/23.26 new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.26 new_compare28(yvy49000, yvy50000, True, bca, bcb, bcc) -> EQ 47.49/23.26 new_esEs27(yvy49001, yvy50001, ty_Float) -> new_esEs13(yvy49001, yvy50001) 47.49/23.26 new_esEs26(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.26 new_ltEs13(False, True) -> True 47.49/23.26 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.26 new_ltEs13(False, False) -> True 47.49/23.26 new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fd), ff)) -> new_esEs7(yvy4000, yvy3000, fd, ff) 47.49/23.26 new_esEs7(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, bea), beb), bec), bed) -> new_esEs5(yvy4000, yvy3000, bea, beb, bec) 47.49/23.26 new_ltEs15(EQ, EQ) -> True 47.49/23.26 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) 47.49/23.26 new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Maybe, bee), bed) -> new_esEs6(yvy4000, yvy3000, bee) 47.49/23.26 new_compare30(yvy20, yvy15, dcg) -> new_compare25(Just(yvy20), Just(yvy15), new_esEs30(yvy20, yvy15, dcg), dcg) 47.49/23.26 new_esEs26(yvy4000, yvy3000, app(ty_Maybe, cgb)) -> new_esEs6(yvy4000, yvy3000, cgb) 47.49/23.26 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.26 new_esEs26(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.26 new_lt12(yvy49000, yvy50000, bce) -> new_esEs12(new_compare(yvy49000, yvy50000, bce), LT) 47.49/23.26 new_lt10(yvy49000, yvy50000) -> new_esEs12(new_compare7(yvy49000, yvy50000), LT) 47.49/23.26 new_lt19(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) 47.49/23.26 new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.26 new_compare31(yvy300, h) -> new_compare25(Nothing, Just(yvy300), False, h) 47.49/23.26 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Char, bed) -> new_esEs17(yvy4000, yvy3000) 47.49/23.26 new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.26 new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_[], bfc), bed) -> new_esEs8(yvy4000, yvy3000, bfc) 47.49/23.26 new_ltEs20(yvy49002, yvy50002, app(ty_[], dbe)) -> new_ltEs8(yvy49002, yvy50002, dbe) 47.49/23.26 new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_Either, ea), eb)) -> new_ltEs14(yvy49000, yvy50000, ea, eb) 47.49/23.26 new_compare17(yvy49000, yvy50000) -> new_compare29(yvy49000, yvy50000, new_esEs12(yvy49000, yvy50000)) 47.49/23.26 new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False 47.49/23.26 new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False 47.49/23.26 new_esEs21(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) 47.49/23.26 new_esEs25(yvy4001, yvy3001, app(ty_Maybe, ceh)) -> new_esEs6(yvy4001, yvy3001, ceh) 47.49/23.26 new_compare([], [], be) -> EQ 47.49/23.26 new_ltEs15(LT, EQ) -> True 47.49/23.26 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Float) -> new_ltEs5(yvy49000, yvy50000) 47.49/23.26 new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 47.49/23.26 new_ltEs18(yvy4900, yvy5000, ty_Char) -> new_ltEs6(yvy4900, yvy5000) 47.49/23.26 new_ltEs18(yvy4900, yvy5000, app(ty_Ratio, bbf)) -> new_ltEs17(yvy4900, yvy5000, bbf) 47.49/23.26 new_lt20(yvy49001, yvy50001, ty_Double) -> new_lt7(yvy49001, yvy50001) 47.49/23.26 new_esEs26(yvy4000, yvy3000, app(app(ty_@2, cgc), cgd)) -> new_esEs4(yvy4000, yvy3000, cgc, cgd) 47.49/23.26 new_compare24(yvy49000, yvy50000, True) -> EQ 47.49/23.26 new_lt8(yvy49000, yvy50000, app(ty_[], bce)) -> new_lt12(yvy49000, yvy50000, bce) 47.49/23.26 new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(app(ty_@3, gd), ge), gf), fh) -> new_ltEs12(yvy49000, yvy50000, gd, ge, gf) 47.49/23.26 new_esEs21(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) 47.49/23.26 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, app(app(ty_Either, bgd), bge)) -> new_esEs7(yvy4000, yvy3000, bgd, bge) 47.49/23.26 new_esEs11(True, True) -> True 47.49/23.26 new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False 47.49/23.26 new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False 47.49/23.26 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, app(ty_[], hd)) -> new_ltEs8(yvy49000, yvy50000, hd) 47.49/23.26 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, app(ty_Maybe, bfh)) -> new_esEs6(yvy4000, yvy3000, bfh) 47.49/23.26 new_esEs25(yvy4001, yvy3001, app(ty_Ratio, cfc)) -> new_esEs15(yvy4001, yvy3001, cfc) 47.49/23.26 new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) 47.49/23.26 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Int) -> new_ltEs7(yvy49000, yvy50000) 47.49/23.26 new_esEs15(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), baf) -> new_asAs(new_esEs20(yvy4000, yvy3000, baf), new_esEs19(yvy4001, yvy3001, baf)) 47.49/23.26 new_compare28(yvy49000, yvy50000, False, bca, bcb, bcc) -> new_compare112(yvy49000, yvy50000, new_ltEs12(yvy49000, yvy50000, bca, bcb, bcc), bca, bcb, bcc) 47.49/23.26 new_esEs22(yvy4002, yvy3002, ty_Float) -> new_esEs13(yvy4002, yvy3002) 47.49/23.26 new_esEs27(yvy49001, yvy50001, ty_Integer) -> new_esEs10(yvy49001, yvy50001) 47.49/23.26 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, app(app(ty_@2, he), hf)) -> new_ltEs11(yvy49000, yvy50000, he, hf) 47.49/23.26 new_gt(h) -> new_esEs12(new_compare33(h), GT) 47.49/23.26 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 47.49/23.26 new_ltEs15(GT, GT) -> True 47.49/23.26 new_compare111(yvy198, yvy199, False, bcd) -> GT 47.49/23.26 new_esEs30(yvy20, yvy15, ty_Bool) -> new_esEs11(yvy20, yvy15) 47.49/23.26 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, app(ty_Maybe, bab)) -> new_ltEs4(yvy49000, yvy50000, bab) 47.49/23.26 new_esEs30(yvy20, yvy15, app(ty_Maybe, ddc)) -> new_esEs6(yvy20, yvy15, ddc) 47.49/23.26 new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 47.49/23.26 new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) 47.49/23.26 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Int, fh) -> new_ltEs7(yvy49000, yvy50000) 47.49/23.26 new_not(False) -> True 47.49/23.26 new_compare5(yvy49000, yvy50000, app(app(ty_Either, ce), cf)) -> new_compare16(yvy49000, yvy50000, ce, cf) 47.49/23.26 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.26 new_compare112(yvy49000, yvy50000, True, bca, bcb, bcc) -> LT 47.49/23.26 new_esEs28(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) 47.49/23.26 new_compare5(yvy49000, yvy50000, ty_Bool) -> new_compare14(yvy49000, yvy50000) 47.49/23.26 new_lt13(yvy49000, yvy50000, bca, bcb, bcc) -> new_esEs12(new_compare13(yvy49000, yvy50000, bca, bcb, bcc), LT) 47.49/23.26 new_primCompAux0(yvy49000, yvy50000, yvy221, be) -> new_primCompAux00(yvy221, new_compare5(yvy49000, yvy50000, be)) 47.49/23.26 new_esEs27(yvy49001, yvy50001, app(app(ty_Either, dbb), dbc)) -> new_esEs7(yvy49001, yvy50001, dbb, dbc) 47.49/23.26 new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 47.49/23.26 new_esEs22(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) 47.49/23.26 new_lt7(yvy49000, yvy50000) -> new_esEs12(new_compare18(yvy49000, yvy50000), LT) 47.49/23.26 new_esEs28(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) 47.49/23.26 new_esEs12(LT, EQ) -> False 47.49/23.26 new_esEs12(EQ, LT) -> False 47.49/23.26 new_esEs21(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) 47.49/23.26 new_compare29(yvy49000, yvy50000, True) -> EQ 47.49/23.26 new_primPlusNat0(Succ(yvy16100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat0(yvy16100, yvy3000000))) 47.49/23.26 new_lt4(yvy49000, yvy50000, bc, bd) -> new_esEs12(new_compare12(yvy49000, yvy50000, bc, bd), LT) 47.49/23.26 new_compare5(yvy49000, yvy50000, app(app(app(ty_@3, ca), cb), cc)) -> new_compare13(yvy49000, yvy50000, ca, cb, cc) 47.49/23.26 new_esEs27(yvy49001, yvy50001, app(ty_Ratio, dbd)) -> new_esEs15(yvy49001, yvy50001, dbd) 47.49/23.26 new_lt19(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) 47.49/23.26 new_esEs28(yvy49000, yvy50000, app(app(app(ty_@3, chd), che), chf)) -> new_esEs5(yvy49000, yvy50000, chd, che, chf) 47.49/23.26 new_esEs29(yvy400, yvy500, app(ty_Ratio, baf)) -> new_esEs15(yvy400, yvy500, baf) 47.49/23.26 new_compare112(yvy49000, yvy50000, False, bca, bcb, bcc) -> GT 47.49/23.26 new_compare27(yvy49000, yvy50000, True, bc, bd) -> EQ 47.49/23.26 new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.26 new_compare15(yvy49000, yvy50000, bag) -> new_compare25(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, bag), bag) 47.49/23.26 new_esEs21(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) 47.49/23.26 new_esEs12(LT, GT) -> False 47.49/23.26 new_esEs12(GT, LT) -> False 47.49/23.26 new_lt20(yvy49001, yvy50001, ty_Int) -> new_lt11(yvy49001, yvy50001) 47.49/23.26 new_ltEs19(yvy49001, yvy50001, ty_Int) -> new_ltEs7(yvy49001, yvy50001) 47.49/23.26 new_ltEs20(yvy49002, yvy50002, app(ty_Ratio, dcf)) -> new_ltEs17(yvy49002, yvy50002, dcf) 47.49/23.26 new_esEs8([], [], ed) -> True 47.49/23.26 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Char, fh) -> new_ltEs6(yvy49000, yvy50000) 47.49/23.26 new_ltEs20(yvy49002, yvy50002, ty_Char) -> new_ltEs6(yvy49002, yvy50002) 47.49/23.26 new_compare25(Nothing, Nothing, False, bah) -> LT 47.49/23.26 new_lt20(yvy49001, yvy50001, app(ty_Maybe, dba)) -> new_lt15(yvy49001, yvy50001, dba) 47.49/23.26 new_esEs29(yvy400, yvy500, app(ty_Maybe, cch)) -> new_esEs6(yvy400, yvy500, cch) 47.49/23.26 new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Ratio, ec)) -> new_ltEs17(yvy49000, yvy50000, ec) 47.49/23.26 new_lt8(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) 47.49/23.26 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Float) -> new_ltEs5(yvy49000, yvy50000) 47.49/23.26 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 47.49/23.26 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 47.49/23.26 new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) 47.49/23.26 new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.49/23.26 new_lt20(yvy49001, yvy50001, app(app(ty_@2, dad), dae)) -> new_lt4(yvy49001, yvy50001, dad, dae) 47.49/23.26 new_esEs28(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) 47.49/23.26 new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.26 new_compare111(yvy198, yvy199, True, bcd) -> LT 47.49/23.26 new_ltEs13(True, False) -> False 47.49/23.26 new_ltEs20(yvy49002, yvy50002, ty_Int) -> new_ltEs7(yvy49002, yvy50002) 47.49/23.26 new_esEs27(yvy49001, yvy50001, app(app(ty_@2, dad), dae)) -> new_esEs4(yvy49001, yvy50001, dad, dae) 47.49/23.26 new_ltEs15(LT, LT) -> True 47.49/23.26 new_esEs13(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 47.49/23.26 new_esEs22(yvy4002, yvy3002, ty_@0) -> new_esEs14(yvy4002, yvy3002) 47.49/23.26 new_esEs28(yvy49000, yvy50000, app(ty_Maybe, chg)) -> new_esEs6(yvy49000, yvy50000, chg) 47.49/23.26 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 47.49/23.26 new_esEs26(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.26 new_esEs28(yvy49000, yvy50000, app(app(ty_@2, chb), chc)) -> new_esEs4(yvy49000, yvy50000, chb, chc) 47.49/23.26 new_compare7(Char(yvy49000), Char(yvy50000)) -> new_primCmpNat0(yvy49000, yvy50000) 47.49/23.26 new_lt5(yvy49000, yvy50000) -> new_esEs12(new_compare11(yvy49000, yvy50000), LT) 47.49/23.26 new_lt20(yvy49001, yvy50001, app(app(ty_Either, dbb), dbc)) -> new_lt16(yvy49001, yvy50001, dbb, dbc) 47.49/23.26 new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) 47.49/23.26 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Char) -> new_ltEs6(yvy49000, yvy50000) 47.49/23.26 new_esEs26(yvy4000, yvy3000, app(app(app(ty_@3, cfg), cfh), cga)) -> new_esEs5(yvy4000, yvy3000, cfg, cfh, cga) 47.49/23.26 new_lt20(yvy49001, yvy50001, ty_Integer) -> new_lt5(yvy49001, yvy50001) 47.49/23.26 new_esEs30(yvy20, yvy15, ty_Int) -> new_esEs16(yvy20, yvy15) 47.49/23.26 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Double) -> new_ltEs16(yvy49000, yvy50000) 47.49/23.26 new_ltEs10(yvy4900, yvy5000) -> new_fsEs(new_compare11(yvy4900, yvy5000)) 47.49/23.26 new_lt14(yvy49000, yvy50000) -> new_esEs12(new_compare14(yvy49000, yvy50000), LT) 47.49/23.26 new_esEs27(yvy49001, yvy50001, app(ty_Maybe, dba)) -> new_esEs6(yvy49001, yvy50001, dba) 47.49/23.26 new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_@0) -> new_ltEs9(yvy49000, yvy50000) 47.49/23.26 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Double, bed) -> new_esEs18(yvy4000, yvy3000) 47.49/23.26 new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_[], db)) -> new_ltEs8(yvy49000, yvy50000, db) 47.49/23.26 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Integer) -> new_ltEs10(yvy49000, yvy50000) 47.49/23.26 new_esEs27(yvy49001, yvy50001, ty_Double) -> new_esEs18(yvy49001, yvy50001) 47.49/23.26 new_esEs29(yvy400, yvy500, ty_Integer) -> new_esEs10(yvy400, yvy500) 47.49/23.26 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 47.49/23.26 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 47.49/23.26 new_compare25(Nothing, Just(yvy5000), False, bah) -> LT 47.49/23.26 new_compare5(yvy49000, yvy50000, app(app(ty_@2, bg), bh)) -> new_compare12(yvy49000, yvy50000, bg, bh) 47.49/23.26 new_esEs29(yvy400, yvy500, app(app(ty_@2, cec), ced)) -> new_esEs4(yvy400, yvy500, cec, ced) 47.49/23.26 new_esEs28(yvy49000, yvy50000, app(ty_[], cha)) -> new_esEs8(yvy49000, yvy50000, cha) 47.49/23.26 new_lt19(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) 47.49/23.26 new_lt18(yvy49000, yvy50000, bcf) -> new_esEs12(new_compare19(yvy49000, yvy50000, bcf), LT) 47.49/23.26 new_esEs29(yvy400, yvy500, app(ty_[], ed)) -> new_esEs8(yvy400, yvy500, ed) 47.49/23.26 new_compare5(yvy49000, yvy50000, ty_Char) -> new_compare7(yvy49000, yvy50000) 47.49/23.26 new_ltEs19(yvy49001, yvy50001, app(ty_Maybe, bde)) -> new_ltEs4(yvy49001, yvy50001, bde) 47.49/23.26 new_compare5(yvy49000, yvy50000, app(ty_[], bf)) -> new_compare(yvy49000, yvy50000, bf) 47.49/23.26 new_compare14(yvy49000, yvy50000) -> new_compare24(yvy49000, yvy50000, new_esEs11(yvy49000, yvy50000)) 47.49/23.26 new_primEqNat0(Zero, Zero) -> True 47.49/23.26 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Integer, fh) -> new_ltEs10(yvy49000, yvy50000) 47.49/23.26 new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.49/23.26 new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) 47.49/23.26 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Bool) -> new_ltEs13(yvy49000, yvy50000) 47.49/23.26 new_esEs30(yvy20, yvy15, app(app(ty_Either, ddg), ddh)) -> new_esEs7(yvy20, yvy15, ddg, ddh) 47.49/23.26 new_esEs30(yvy20, yvy15, ty_Ordering) -> new_esEs12(yvy20, yvy15) 47.49/23.26 new_compare5(yvy49000, yvy50000, ty_Ordering) -> new_compare17(yvy49000, yvy50000) 47.49/23.26 new_esEs6(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.26 new_esEs29(yvy400, yvy500, ty_Bool) -> new_esEs11(yvy400, yvy500) 47.49/23.26 new_asAs(False, yvy201) -> False 47.49/23.26 new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(app(ty_@3, de), df), dg)) -> new_ltEs12(yvy49000, yvy50000, de, df, dg) 47.49/23.26 new_esEs29(yvy400, yvy500, app(app(ty_Either, bfd), bed)) -> new_esEs7(yvy400, yvy500, bfd, bed) 47.49/23.26 new_esEs28(yvy49000, yvy50000, app(ty_Ratio, dab)) -> new_esEs15(yvy49000, yvy50000, dab) 47.49/23.26 new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 47.49/23.26 new_esEs30(yvy20, yvy15, ty_Integer) -> new_esEs10(yvy20, yvy15) 47.49/23.26 new_ltEs20(yvy49002, yvy50002, app(ty_Maybe, dcc)) -> new_ltEs4(yvy49002, yvy50002, dcc) 47.49/23.26 new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) 47.49/23.26 new_lt8(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) 47.49/23.26 new_esEs7(Left(yvy4000), Right(yvy3000), bfd, bed) -> False 47.49/23.26 new_esEs7(Right(yvy4000), Left(yvy3000), bfd, bed) -> False 47.49/23.26 new_ltEs17(yvy4900, yvy5000, bbf) -> new_fsEs(new_compare19(yvy4900, yvy5000, bbf)) 47.49/23.26 new_lt16(yvy49000, yvy50000, bbg, bbh) -> new_esEs12(new_compare16(yvy49000, yvy50000, bbg, bbh), LT) 47.49/23.26 new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.26 new_ltEs18(yvy4900, yvy5000, ty_Int) -> new_ltEs7(yvy4900, yvy5000) 47.49/23.26 new_lt19(yvy49000, yvy50000, app(app(ty_Either, chh), daa)) -> new_lt16(yvy49000, yvy50000, chh, daa) 47.49/23.26 new_esEs27(yvy49001, yvy50001, app(app(app(ty_@3, daf), dag), dah)) -> new_esEs5(yvy49001, yvy50001, daf, dag, dah) 47.49/23.26 47.49/23.26 The set Q consists of the following terms: 47.49/23.26 47.49/23.26 new_esEs27(x0, x1, ty_@0) 47.49/23.26 new_ltEs14(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 47.49/23.26 new_esEs7(Right(x0), Right(x1), x2, ty_Double) 47.49/23.26 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.26 new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 47.49/23.26 new_esEs21(x0, x1, app(ty_[], x2)) 47.49/23.26 new_esEs26(x0, x1, ty_Float) 47.49/23.26 new_ltEs14(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 47.49/23.26 new_esEs12(EQ, EQ) 47.49/23.26 new_esEs28(x0, x1, ty_Char) 47.49/23.26 new_ltEs11(@2(x0, x1), @2(x2, x3), x4, x5) 47.49/23.26 new_primMulInt(Neg(x0), Neg(x1)) 47.49/23.26 new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) 47.49/23.26 new_compare111(x0, x1, True, x2) 47.49/23.26 new_ltEs14(Right(x0), Right(x1), x2, ty_Char) 47.49/23.26 new_lt20(x0, x1, ty_@0) 47.49/23.26 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.26 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.26 new_primCmpNat0(Succ(x0), Zero) 47.49/23.26 new_compare29(x0, x1, True) 47.49/23.26 new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 47.49/23.26 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.26 new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 47.49/23.26 new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) 47.49/23.26 new_esEs7(Left(x0), Right(x1), x2, x3) 47.49/23.26 new_esEs7(Right(x0), Left(x1), x2, x3) 47.49/23.26 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 47.49/23.26 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 47.49/23.26 new_compare26(x0, x1, False, x2, x3) 47.49/23.26 new_primEqInt(Pos(Zero), Pos(Zero)) 47.49/23.26 new_primMulInt(Pos(x0), Pos(x1)) 47.49/23.26 new_esEs7(Left(x0), Left(x1), ty_@0, x2) 47.49/23.26 new_primCompAux00(x0, GT) 47.49/23.26 new_esEs26(x0, x1, app(ty_Ratio, x2)) 47.49/23.26 new_esEs27(x0, x1, app(ty_Maybe, x2)) 47.49/23.26 new_compare28(x0, x1, True, x2, x3, x4) 47.49/23.26 new_lt8(x0, x1, ty_Float) 47.49/23.26 new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 47.49/23.26 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.26 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.26 new_ltEs4(Just(x0), Just(x1), ty_Float) 47.49/23.26 new_asAs(False, x0) 47.49/23.26 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.26 new_lt20(x0, x1, app(ty_Maybe, x2)) 47.49/23.26 new_esEs27(x0, x1, ty_Integer) 47.49/23.26 new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) 47.49/23.26 new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 47.49/23.26 new_ltEs14(Right(x0), Right(x1), x2, ty_@0) 47.49/23.26 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.26 new_compare25(Nothing, Just(x0), False, x1) 47.49/23.26 new_primEqInt(Neg(Zero), Neg(Zero)) 47.49/23.26 new_esEs7(Left(x0), Left(x1), ty_Integer, x2) 47.49/23.26 new_ltEs14(Right(x0), Right(x1), x2, ty_Int) 47.49/23.26 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 47.49/23.26 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.26 new_sr(x0, x1) 47.49/23.26 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.26 new_esEs28(x0, x1, ty_Bool) 47.49/23.26 new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) 47.49/23.26 new_esEs27(x0, x1, ty_Char) 47.49/23.26 new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 47.49/23.26 new_primCmpNat0(Zero, Succ(x0)) 47.49/23.26 new_compare5(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.26 new_lt19(x0, x1, ty_Double) 47.49/23.26 new_lt19(x0, x1, app(ty_Maybe, x2)) 47.49/23.26 new_compare13(x0, x1, x2, x3, x4) 47.49/23.26 new_compare(:(x0, x1), [], x2) 47.49/23.26 new_ltEs13(False, True) 47.49/23.26 new_ltEs13(True, False) 47.49/23.26 new_esEs25(x0, x1, app(ty_Maybe, x2)) 47.49/23.26 new_esEs25(x0, x1, app(ty_[], x2)) 47.49/23.26 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.26 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.26 new_ltEs18(x0, x1, ty_Int) 47.49/23.26 new_lt17(x0, x1) 47.49/23.26 new_esEs9(x0, x1, ty_Double) 47.49/23.26 new_esEs28(x0, x1, ty_Ordering) 47.49/23.26 new_lt8(x0, x1, ty_Integer) 47.49/23.26 new_compare110(x0, x1, False) 47.49/23.26 new_esEs19(x0, x1, ty_Integer) 47.49/23.26 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.26 new_esEs27(x0, x1, app(ty_[], x2)) 47.49/23.26 new_ltEs4(Nothing, Nothing, x0) 47.49/23.26 new_ltEs19(x0, x1, ty_Float) 47.49/23.26 new_esEs9(x0, x1, ty_Int) 47.49/23.26 new_esEs9(x0, x1, app(ty_[], x2)) 47.49/23.26 new_compare27(x0, x1, False, x2, x3) 47.49/23.26 new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 47.49/23.26 new_lt8(x0, x1, ty_Bool) 47.49/23.26 new_esEs18(Double(x0, x1), Double(x2, x3)) 47.49/23.26 new_primEqInt(Pos(Zero), Neg(Zero)) 47.49/23.26 new_primEqInt(Neg(Zero), Pos(Zero)) 47.49/23.26 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.26 new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 47.49/23.26 new_esEs30(x0, x1, ty_Float) 47.49/23.26 new_esEs12(LT, GT) 47.49/23.26 new_esEs12(GT, LT) 47.49/23.26 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 47.49/23.26 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 47.49/23.26 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 47.49/23.26 new_esEs17(Char(x0), Char(x1)) 47.49/23.26 new_esEs21(x0, x1, ty_Float) 47.49/23.26 new_ltEs4(Nothing, Just(x0), x1) 47.49/23.26 new_ltEs18(x0, x1, ty_Double) 47.49/23.26 new_ltEs20(x0, x1, ty_Ordering) 47.49/23.26 new_esEs27(x0, x1, ty_Bool) 47.49/23.26 new_lt4(x0, x1, x2, x3) 47.49/23.26 new_esEs29(x0, x1, ty_Integer) 47.49/23.26 new_compare14(x0, x1) 47.49/23.26 new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 47.49/23.26 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.26 new_compare10(x0, x1, True, x2, x3) 47.49/23.26 new_ltEs18(x0, x1, ty_Char) 47.49/23.26 new_compare111(x0, x1, False, x2) 47.49/23.26 new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 47.49/23.26 new_asAs(True, x0) 47.49/23.26 new_compare5(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.26 new_esEs24(x0, x1, ty_Integer) 47.49/23.26 new_esEs30(x0, x1, ty_@0) 47.49/23.26 new_pePe(True, x0) 47.49/23.26 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.26 new_ltEs18(x0, x1, app(ty_[], x2)) 47.49/23.26 new_ltEs7(x0, x1) 47.49/23.26 new_ltEs15(EQ, EQ) 47.49/23.26 new_primEqNat0(Succ(x0), Zero) 47.49/23.26 new_esEs28(x0, x1, ty_Integer) 47.49/23.26 new_esEs25(x0, x1, ty_Float) 47.49/23.26 new_primMulNat0(Succ(x0), Succ(x1)) 47.49/23.26 new_gt2(x0, x1, x2) 47.49/23.26 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 47.49/23.26 new_compare5(x0, x1, ty_Ordering) 47.49/23.26 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.26 new_lt19(x0, x1, ty_Char) 47.49/23.26 new_ltEs19(x0, x1, ty_Integer) 47.49/23.26 new_lt5(x0, x1) 47.49/23.26 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 47.49/23.26 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 47.49/23.26 new_esEs7(Right(x0), Right(x1), x2, ty_Bool) 47.49/23.26 new_esEs23(x0, x1, app(ty_Maybe, x2)) 47.49/23.26 new_esEs9(x0, x1, ty_Char) 47.49/23.26 new_ltEs4(Just(x0), Just(x1), ty_Bool) 47.49/23.26 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.26 new_lt6(x0, x1) 47.49/23.26 new_lt19(x0, x1, ty_Int) 47.49/23.26 new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) 47.49/23.26 new_primEqNat0(Succ(x0), Succ(x1)) 47.49/23.26 new_esEs22(x0, x1, app(ty_Ratio, x2)) 47.49/23.26 new_ltEs6(x0, x1) 47.49/23.26 new_esEs9(x0, x1, app(ty_Ratio, x2)) 47.49/23.26 new_compare7(Char(x0), Char(x1)) 47.49/23.26 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.26 new_esEs12(GT, GT) 47.49/23.26 new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 47.49/23.26 new_esEs12(LT, EQ) 47.49/23.26 new_esEs12(EQ, LT) 47.49/23.26 new_compare16(x0, x1, x2, x3) 47.49/23.26 new_compare25(Just(x0), Nothing, False, x1) 47.49/23.26 new_esEs7(Left(x0), Left(x1), ty_Int, x2) 47.49/23.26 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.26 new_ltEs5(x0, x1) 47.49/23.26 new_esEs21(x0, x1, app(ty_Maybe, x2)) 47.49/23.26 new_ltEs15(GT, LT) 47.49/23.26 new_ltEs15(LT, GT) 47.49/23.26 new_ltEs14(Left(x0), Left(x1), ty_Ordering, x2) 47.49/23.26 new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 47.49/23.26 new_esEs24(x0, x1, app(ty_[], x2)) 47.49/23.26 new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 47.49/23.26 new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 47.49/23.26 new_esEs8([], [], x0) 47.49/23.26 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.26 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 47.49/23.26 new_esEs29(x0, x1, ty_Bool) 47.49/23.26 new_ltEs4(Just(x0), Just(x1), ty_Integer) 47.49/23.26 new_ltEs14(Left(x0), Left(x1), ty_Double, x2) 47.49/23.26 new_esEs27(x0, x1, ty_Int) 47.49/23.26 new_esEs6(Just(x0), Just(x1), ty_Integer) 47.49/23.26 new_esEs6(Just(x0), Just(x1), ty_Float) 47.49/23.26 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.26 new_compare114(x0, x1, True, x2, x3) 47.49/23.26 new_ltEs14(Right(x0), Right(x1), x2, app(ty_[], x3)) 47.49/23.26 new_esEs7(Left(x0), Left(x1), ty_Float, x2) 47.49/23.26 new_compare5(x0, x1, ty_Double) 47.49/23.26 new_lt13(x0, x1, x2, x3, x4) 47.49/23.26 new_primMulNat0(Succ(x0), Zero) 47.49/23.26 new_esEs27(x0, x1, ty_Float) 47.49/23.26 new_esEs25(x0, x1, ty_Bool) 47.49/23.26 new_lt15(x0, x1, x2) 47.49/23.26 new_esEs6(Just(x0), Just(x1), ty_Ordering) 47.49/23.26 new_esEs9(x0, x1, ty_Bool) 47.49/23.26 new_lt7(x0, x1) 47.49/23.26 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 47.49/23.26 new_lt8(x0, x1, ty_@0) 47.49/23.26 new_esEs9(x0, x1, ty_Ordering) 47.49/23.26 new_esEs26(x0, x1, app(ty_Maybe, x2)) 47.49/23.26 new_primCmpInt(Neg(Zero), Neg(Zero)) 47.49/23.26 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 47.49/23.26 new_ltEs4(Just(x0), Nothing, x1) 47.49/23.26 new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 47.49/23.26 new_lt19(x0, x1, app(ty_Ratio, x2)) 47.49/23.26 new_compare5(x0, x1, app(ty_[], x2)) 47.49/23.26 new_esEs28(x0, x1, ty_Double) 47.49/23.26 new_primCmpInt(Pos(Zero), Neg(Zero)) 47.49/23.26 new_primCmpInt(Neg(Zero), Pos(Zero)) 47.49/23.26 new_primPlusNat0(Succ(x0), Zero) 47.49/23.26 new_esEs23(x0, x1, ty_Float) 47.49/23.26 new_esEs7(Right(x0), Right(x1), x2, ty_Char) 47.49/23.26 new_esEs21(x0, x1, ty_Integer) 47.49/23.26 new_esEs28(x0, x1, ty_@0) 47.49/23.26 new_lt19(x0, x1, ty_Bool) 47.49/23.26 new_esEs25(x0, x1, ty_Ordering) 47.49/23.26 new_lt19(x0, x1, ty_Ordering) 47.49/23.26 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 47.49/23.26 new_esEs22(x0, x1, ty_Integer) 47.49/23.26 new_esEs11(False, False) 47.49/23.26 new_ltEs14(Right(x0), Right(x1), x2, ty_Double) 47.49/23.26 new_esEs7(Right(x0), Right(x1), x2, ty_Int) 47.49/23.26 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.26 new_ltEs14(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 47.49/23.26 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.26 new_esEs15(:%(x0, x1), :%(x2, x3), x4) 47.49/23.26 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.26 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.26 new_compare33(x0) 47.49/23.26 new_esEs9(x0, x1, ty_Integer) 47.49/23.26 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.26 new_ltEs20(x0, x1, ty_@0) 47.49/23.26 new_ltEs4(Just(x0), Just(x1), ty_Char) 47.49/23.26 new_compare([], :(x0, x1), x2) 47.49/23.26 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 47.49/23.26 new_compare113(x0, x1, True) 47.49/23.26 new_compare([], [], x0) 47.49/23.26 new_lt20(x0, x1, ty_Double) 47.49/23.26 new_esEs7(Left(x0), Left(x1), ty_Char, x2) 47.49/23.26 new_ltEs19(x0, x1, ty_Bool) 47.49/23.26 new_ltEs20(x0, x1, ty_Double) 47.49/23.26 new_esEs24(x0, x1, ty_@0) 47.49/23.26 new_esEs7(Left(x0), Left(x1), ty_Bool, x2) 47.49/23.26 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.26 new_lt19(x0, x1, ty_Integer) 47.49/23.26 new_esEs22(x0, x1, ty_Ordering) 47.49/23.26 new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 47.49/23.26 new_compare25(Nothing, Nothing, False, x0) 47.49/23.26 new_esEs13(Float(x0, x1), Float(x2, x3)) 47.49/23.26 new_esEs6(Just(x0), Just(x1), ty_Bool) 47.49/23.26 new_lt8(x0, x1, app(ty_Maybe, x2)) 47.49/23.26 new_esEs6(Nothing, Nothing, x0) 47.49/23.26 new_compare8(x0, x1) 47.49/23.26 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 47.49/23.26 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.26 new_compare5(x0, x1, app(ty_Ratio, x2)) 47.49/23.26 new_esEs7(Right(x0), Right(x1), x2, ty_Float) 47.49/23.26 new_ltEs14(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 47.49/23.26 new_esEs29(x0, x1, ty_Float) 47.49/23.26 new_ltEs13(True, True) 47.49/23.26 new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) 47.49/23.26 new_esEs21(x0, x1, ty_Ordering) 47.49/23.26 new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 47.49/23.26 new_compare28(x0, x1, False, x2, x3, x4) 47.49/23.26 new_esEs25(x0, x1, ty_Integer) 47.49/23.26 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.26 new_esEs25(x0, x1, ty_Char) 47.49/23.26 new_compare17(x0, x1) 47.49/23.26 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 47.49/23.26 new_esEs22(x0, x1, ty_@0) 47.49/23.26 new_esEs26(x0, x1, ty_Ordering) 47.49/23.26 new_ltEs20(x0, x1, app(ty_[], x2)) 47.49/23.26 new_gt(x0) 47.49/23.26 new_ltEs19(x0, x1, ty_Char) 47.49/23.26 new_esEs24(x0, x1, ty_Ordering) 47.49/23.26 new_esEs6(Nothing, Just(x0), x1) 47.49/23.26 new_primCompAux0(x0, x1, x2, x3) 47.49/23.26 new_esEs30(x0, x1, app(ty_[], x2)) 47.49/23.26 new_primCompAux00(x0, EQ) 47.49/23.26 new_esEs22(x0, x1, ty_Bool) 47.49/23.26 new_ltEs4(Just(x0), Just(x1), ty_Int) 47.49/23.26 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.26 new_primMulNat0(Zero, Zero) 47.49/23.26 new_compare24(x0, x1, True) 47.49/23.26 new_compare5(x0, x1, ty_@0) 47.49/23.26 new_ltEs18(x0, x1, ty_Float) 47.49/23.26 new_primPlusNat1(Zero, x0) 47.49/23.26 new_esEs29(x0, x1, ty_Ordering) 47.49/23.26 new_esEs24(x0, x1, ty_Int) 47.49/23.26 new_compare5(x0, x1, app(ty_Maybe, x2)) 47.49/23.26 new_lt8(x0, x1, ty_Double) 47.49/23.26 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.26 new_esEs6(Just(x0), Just(x1), ty_Char) 47.49/23.26 new_esEs25(x0, x1, ty_Int) 47.49/23.26 new_esEs29(x0, x1, ty_Int) 47.49/23.26 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 47.49/23.26 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.26 new_ltEs14(Left(x0), Left(x1), ty_Integer, x2) 47.49/23.26 new_esEs23(x0, x1, ty_Char) 47.49/23.26 new_ltEs4(Just(x0), Just(x1), ty_Ordering) 47.49/23.26 new_compare5(x0, x1, ty_Bool) 47.49/23.26 new_lt12(x0, x1, x2) 47.49/23.26 new_ltEs14(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 47.49/23.26 new_sr0(Integer(x0), Integer(x1)) 47.49/23.26 new_lt16(x0, x1, x2, x3) 47.49/23.26 new_esEs29(x0, x1, ty_Double) 47.49/23.26 new_fsEs(x0) 47.49/23.26 new_compare9(@0, @0) 47.49/23.26 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 47.49/23.26 new_ltEs19(x0, x1, ty_Ordering) 47.49/23.26 new_esEs24(x0, x1, ty_Char) 47.49/23.26 new_compare10(x0, x1, False, x2, x3) 47.49/23.26 new_esEs21(x0, x1, ty_Bool) 47.49/23.26 new_esEs24(x0, x1, ty_Double) 47.49/23.26 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 47.49/23.26 new_esEs29(x0, x1, ty_Char) 47.49/23.26 new_primPlusNat1(Succ(x0), x1) 47.49/23.26 new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) 47.49/23.26 new_esEs23(x0, x1, ty_Int) 47.49/23.26 new_compare112(x0, x1, False, x2, x3, x4) 47.49/23.26 new_ltEs14(Left(x0), Left(x1), ty_@0, x2) 47.49/23.26 new_esEs23(x0, x1, ty_@0) 47.49/23.26 new_esEs6(Just(x0), Just(x1), ty_Int) 47.49/23.26 new_esEs23(x0, x1, app(ty_[], x2)) 47.49/23.26 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.26 new_ltEs19(x0, x1, ty_Int) 47.49/23.26 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.26 new_esEs29(x0, x1, app(ty_[], x2)) 47.49/23.26 new_esEs6(Just(x0), Just(x1), ty_@0) 47.49/23.26 new_lt8(x0, x1, ty_Ordering) 47.49/23.26 new_esEs23(x0, x1, app(ty_Ratio, x2)) 47.49/23.26 new_primPlusNat0(Zero, Zero) 47.49/23.26 new_lt8(x0, x1, ty_Int) 47.49/23.26 new_esEs30(x0, x1, ty_Int) 47.49/23.26 new_lt19(x0, x1, ty_@0) 47.49/23.26 new_not(True) 47.49/23.26 new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 47.49/23.26 new_esEs23(x0, x1, ty_Bool) 47.49/23.26 new_esEs22(x0, x1, ty_Char) 47.49/23.26 new_esEs12(EQ, GT) 47.49/23.26 new_esEs12(GT, EQ) 47.49/23.26 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.26 new_esEs6(Just(x0), Nothing, x1) 47.49/23.26 new_esEs28(x0, x1, app(ty_Ratio, x2)) 47.49/23.26 new_lt19(x0, x1, ty_Float) 47.49/23.26 new_ltEs13(False, False) 47.49/23.26 new_compare114(x0, x1, False, x2, x3) 47.49/23.26 new_esEs25(x0, x1, ty_Double) 47.49/23.26 new_esEs25(x0, x1, ty_@0) 47.49/23.26 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 47.49/23.26 new_esEs11(True, True) 47.49/23.26 new_ltEs14(Left(x0), Left(x1), app(ty_[], x2), x3) 47.49/23.26 new_compare27(x0, x1, True, x2, x3) 47.49/23.26 new_ltEs14(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 47.49/23.26 new_lt18(x0, x1, x2) 47.49/23.26 new_ltEs15(GT, EQ) 47.49/23.26 new_esEs23(x0, x1, ty_Double) 47.49/23.26 new_ltEs15(EQ, GT) 47.49/23.26 new_ltEs14(Right(x0), Right(x1), x2, ty_Float) 47.49/23.26 new_compare25(Just(x0), Just(x1), False, x2) 47.49/23.26 new_esEs21(x0, x1, ty_Char) 47.49/23.26 new_esEs11(False, True) 47.49/23.26 new_esEs11(True, False) 47.49/23.26 new_compare113(x0, x1, False) 47.49/23.26 new_esEs27(x0, x1, app(ty_Ratio, x2)) 47.49/23.26 new_lt8(x0, x1, ty_Char) 47.49/23.26 new_esEs29(x0, x1, app(ty_Ratio, x2)) 47.49/23.26 new_esEs21(x0, x1, app(ty_Ratio, x2)) 47.49/23.26 new_esEs28(x0, x1, app(ty_[], x2)) 47.49/23.26 new_ltEs20(x0, x1, ty_Integer) 47.49/23.26 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 47.49/23.26 new_esEs8([], :(x0, x1), x2) 47.49/23.26 new_esEs24(x0, x1, app(ty_Ratio, x2)) 47.49/23.26 new_esEs30(x0, x1, ty_Double) 47.49/23.26 new_esEs26(x0, x1, ty_Int) 47.49/23.26 new_primPlusNat0(Zero, Succ(x0)) 47.49/23.26 new_ltEs14(Left(x0), Left(x1), ty_Bool, x2) 47.49/23.26 new_compare5(x0, x1, ty_Integer) 47.49/23.26 new_compare26(x0, x1, True, x2, x3) 47.49/23.26 new_ltEs14(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 47.49/23.26 new_esEs30(x0, x1, ty_Char) 47.49/23.26 new_primCmpNat0(Succ(x0), Succ(x1)) 47.49/23.26 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.26 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.26 new_compare31(x0, x1) 47.49/23.26 new_esEs9(x0, x1, ty_@0) 47.49/23.26 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.26 new_esEs7(Right(x0), Right(x1), x2, ty_Integer) 47.49/23.26 new_esEs12(LT, LT) 47.49/23.26 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 47.49/23.26 new_lt8(x0, x1, app(ty_[], x2)) 47.49/23.26 new_esEs9(x0, x1, app(ty_Maybe, x2)) 47.49/23.26 new_esEs21(x0, x1, ty_Int) 47.49/23.26 new_esEs26(x0, x1, ty_Double) 47.49/23.26 new_esEs22(x0, x1, ty_Int) 47.49/23.26 new_esEs26(x0, x1, ty_Char) 47.49/23.26 new_esEs21(x0, x1, ty_@0) 47.49/23.26 new_lt14(x0, x1) 47.49/23.26 new_esEs9(x0, x1, ty_Float) 47.49/23.26 new_compare(:(x0, x1), :(x2, x3), x4) 47.49/23.26 new_esEs20(x0, x1, ty_Int) 47.49/23.26 new_ltEs19(x0, x1, app(ty_[], x2)) 47.49/23.26 new_primCmpInt(Pos(Zero), Pos(Zero)) 47.49/23.26 new_gt1(x0, x1) 47.49/23.26 new_esEs20(x0, x1, ty_Integer) 47.49/23.26 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.26 new_esEs7(Right(x0), Right(x1), x2, ty_@0) 47.49/23.26 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.26 new_esEs22(x0, x1, ty_Double) 47.49/23.26 new_esEs27(x0, x1, ty_Double) 47.49/23.26 new_esEs14(@0, @0) 47.49/23.26 new_pePe(False, x0) 47.49/23.26 new_ltEs9(x0, x1) 47.49/23.26 new_esEs22(x0, x1, ty_Float) 47.49/23.26 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.26 new_compare29(x0, x1, False) 47.49/23.26 new_esEs22(x0, x1, app(ty_[], x2)) 47.49/23.26 new_esEs16(x0, x1) 47.49/23.26 new_esEs26(x0, x1, ty_Bool) 47.49/23.26 new_esEs30(x0, x1, app(ty_Maybe, x2)) 47.49/23.26 new_lt10(x0, x1) 47.49/23.26 new_esEs26(x0, x1, ty_@0) 47.49/23.26 new_compare30(x0, x1, x2) 47.49/23.26 new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 47.49/23.26 new_ltEs18(x0, x1, ty_@0) 47.49/23.26 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.26 new_esEs8(:(x0, x1), :(x2, x3), x4) 47.49/23.26 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 47.49/23.26 new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 47.49/23.26 new_ltEs18(x0, x1, ty_Bool) 47.49/23.26 new_compare5(x0, x1, ty_Float) 47.49/23.26 new_esEs10(Integer(x0), Integer(x1)) 47.49/23.26 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.26 new_compare32(x0, x1) 47.49/23.26 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 47.49/23.26 new_esEs21(x0, x1, ty_Double) 47.49/23.26 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 47.49/23.26 new_ltEs4(Just(x0), Just(x1), ty_@0) 47.49/23.26 new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.26 new_lt20(x0, x1, ty_Float) 47.49/23.26 new_esEs26(x0, x1, ty_Integer) 47.49/23.26 new_ltEs14(Right(x0), Right(x1), x2, ty_Integer) 47.49/23.26 new_ltEs10(x0, x1) 47.49/23.26 new_ltEs14(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 47.49/23.26 new_compare5(x0, x1, ty_Int) 47.49/23.26 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 47.49/23.26 new_lt20(x0, x1, ty_Ordering) 47.49/23.26 new_ltEs15(EQ, LT) 47.49/23.26 new_ltEs15(LT, EQ) 47.49/23.26 new_esEs30(x0, x1, ty_Bool) 47.49/23.26 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 47.49/23.26 new_esEs23(x0, x1, ty_Integer) 47.49/23.26 new_ltEs14(Left(x0), Left(x1), ty_Char, x2) 47.49/23.26 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.26 new_compare15(x0, x1, x2) 47.49/23.26 new_esEs24(x0, x1, ty_Bool) 47.49/23.26 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 47.49/23.26 new_esEs29(x0, x1, app(ty_Maybe, x2)) 47.49/23.26 new_ltEs15(GT, GT) 47.49/23.26 new_esEs27(x0, x1, ty_Ordering) 47.49/23.26 new_esEs30(x0, x1, app(ty_Ratio, x2)) 47.49/23.26 new_gt0(x0, x1) 47.49/23.26 new_compare5(x0, x1, ty_Char) 47.49/23.26 new_esEs22(x0, x1, app(ty_Maybe, x2)) 47.49/23.26 new_lt20(x0, x1, ty_Integer) 47.49/23.26 new_ltEs19(x0, x1, ty_@0) 47.49/23.26 new_ltEs14(Left(x0), Left(x1), ty_Int, x2) 47.49/23.26 new_esEs24(x0, x1, app(ty_Maybe, x2)) 47.49/23.26 new_ltEs16(x0, x1) 47.49/23.26 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 47.49/23.26 new_lt11(x0, x1) 47.49/23.26 new_ltEs18(x0, x1, ty_Integer) 47.49/23.26 new_primEqNat0(Zero, Zero) 47.49/23.26 new_ltEs14(Right(x0), Right(x1), x2, ty_Bool) 47.49/23.26 new_esEs23(x0, x1, ty_Ordering) 47.49/23.26 new_ltEs14(Right(x0), Right(x1), x2, ty_Ordering) 47.49/23.26 new_not(False) 47.49/23.26 new_lt19(x0, x1, app(ty_[], x2)) 47.49/23.26 new_lt20(x0, x1, app(ty_[], x2)) 47.49/23.26 new_ltEs8(x0, x1, x2) 47.49/23.26 new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 47.49/23.26 new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 47.49/23.26 new_lt20(x0, x1, app(ty_Ratio, x2)) 47.49/23.26 new_esEs8(:(x0, x1), [], x2) 47.49/23.26 new_esEs28(x0, x1, app(ty_Maybe, x2)) 47.49/23.26 new_ltEs20(x0, x1, ty_Bool) 47.49/23.26 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.26 new_ltEs19(x0, x1, ty_Double) 47.49/23.26 new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 47.49/23.26 new_esEs30(x0, x1, ty_Integer) 47.49/23.26 new_ltEs20(x0, x1, ty_Float) 47.49/23.26 new_compare112(x0, x1, True, x2, x3, x4) 47.49/23.26 new_compare11(Integer(x0), Integer(x1)) 47.49/23.26 new_primCompAux00(x0, LT) 47.49/23.26 new_ltEs14(Left(x0), Left(x1), ty_Float, x2) 47.49/23.26 new_compare110(x0, x1, True) 47.49/23.26 new_compare25(x0, x1, True, x2) 47.49/23.26 new_lt8(x0, x1, app(ty_Ratio, x2)) 47.49/23.26 new_ltEs15(LT, LT) 47.49/23.26 new_esEs6(Just(x0), Just(x1), ty_Double) 47.49/23.26 new_lt20(x0, x1, ty_Int) 47.49/23.26 new_lt9(x0, x1) 47.49/23.26 new_esEs26(x0, x1, app(ty_[], x2)) 47.49/23.26 new_ltEs20(x0, x1, ty_Char) 47.49/23.26 new_esEs28(x0, x1, ty_Int) 47.49/23.26 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.26 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.26 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.26 new_ltEs17(x0, x1, x2) 47.49/23.26 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.26 new_lt20(x0, x1, ty_Bool) 47.49/23.26 new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 47.49/23.26 new_esEs29(x0, x1, ty_@0) 47.49/23.26 new_ltEs18(x0, x1, ty_Ordering) 47.49/23.26 new_esEs7(Left(x0), Left(x1), ty_Double, x2) 47.49/23.26 new_lt20(x0, x1, ty_Char) 47.49/23.26 new_compare24(x0, x1, False) 47.49/23.26 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 47.49/23.26 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 47.49/23.26 new_compare12(x0, x1, x2, x3) 47.49/23.26 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.26 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 47.49/23.26 new_esEs24(x0, x1, ty_Float) 47.49/23.26 new_primPlusNat0(Succ(x0), Succ(x1)) 47.49/23.26 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 47.49/23.26 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 47.49/23.26 new_primMulInt(Pos(x0), Neg(x1)) 47.49/23.26 new_primMulInt(Neg(x0), Pos(x1)) 47.49/23.26 new_ltEs4(Just(x0), Just(x1), ty_Double) 47.49/23.26 new_esEs19(x0, x1, ty_Int) 47.49/23.26 new_ltEs14(Right(x0), Left(x1), x2, x3) 47.49/23.26 new_ltEs14(Left(x0), Right(x1), x2, x3) 47.49/23.26 new_esEs25(x0, x1, app(ty_Ratio, x2)) 47.49/23.26 new_esEs30(x0, x1, ty_Ordering) 47.49/23.26 new_primMulNat0(Zero, Succ(x0)) 47.49/23.26 new_primCmpNat0(Zero, Zero) 47.49/23.26 new_primEqNat0(Zero, Succ(x0)) 47.49/23.26 new_esEs28(x0, x1, ty_Float) 47.49/23.26 new_ltEs20(x0, x1, ty_Int) 47.49/23.26 47.49/23.26 We have to consider all minimal (P,Q,R)-chains. 47.49/23.26 ---------------------------------------- 47.49/23.26 47.49/23.26 (45) QDPSizeChangeProof (EQUIVALENT) 47.49/23.26 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. 47.49/23.26 47.49/23.26 From the DPs we obtained the following set of size-change graphs: 47.49/23.26 *new_addToFM_C21(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba) -> new_addToFM_C11(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt1(yvy400, h), h, ba) 47.49/23.26 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9 47.49/23.26 47.49/23.26 47.49/23.26 *new_addToFM_C21(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba) -> new_addToFM_C(yvy53, Just(yvy400), yvy41, h, ba) 47.49/23.26 The graph contains the following edges 3 >= 1, 6 >= 3, 8 >= 4, 9 >= 5 47.49/23.26 47.49/23.26 47.49/23.26 *new_addToFM_C22(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba) -> new_addToFM_C12(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt2(yvy400, yvy500, h), h, ba) 47.49/23.26 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 9 >= 9, 10 >= 10 47.49/23.26 47.49/23.26 47.49/23.26 *new_addToFM_C(Branch(Nothing, yvy51, yvy52, yvy53, yvy54), Just(yvy400), yvy41, h, ba) -> new_addToFM_C21(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs12(new_compare25(Just(yvy400), Nothing, False, h), LT), h, ba) 47.49/23.26 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 2 > 5, 3 >= 6, 4 >= 8, 5 >= 9 47.49/23.26 47.49/23.26 47.49/23.26 *new_addToFM_C(Branch(Just(yvy500), yvy51, yvy52, yvy53, yvy54), Just(yvy400), yvy41, h, ba) -> new_addToFM_C22(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs12(new_compare25(Just(yvy400), Just(yvy500), new_esEs29(yvy400, yvy500, h), h), LT), h, ba) 47.49/23.26 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 7, 4 >= 9, 5 >= 10 47.49/23.26 47.49/23.26 47.49/23.26 *new_addToFM_C11(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba) -> new_addToFM_C(yvy54, Just(yvy400), yvy41, h, ba) 47.49/23.26 The graph contains the following edges 4 >= 1, 6 >= 3, 8 >= 4, 9 >= 5 47.49/23.26 47.49/23.26 47.49/23.26 *new_addToFM_C22(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba) -> new_addToFM_C(yvy53, Just(yvy400), yvy41, h, ba) 47.49/23.26 The graph contains the following edges 4 >= 1, 7 >= 3, 9 >= 4, 10 >= 5 47.49/23.26 47.49/23.26 47.49/23.26 *new_addToFM_C12(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba) -> new_addToFM_C(yvy54, Just(yvy400), yvy41, h, ba) 47.49/23.26 The graph contains the following edges 5 >= 1, 7 >= 3, 9 >= 4, 10 >= 5 47.49/23.26 47.49/23.26 47.49/23.26 ---------------------------------------- 47.49/23.26 47.49/23.26 (46) 47.49/23.26 YES 47.49/23.26 47.49/23.26 ---------------------------------------- 47.49/23.26 47.49/23.26 (47) 47.49/23.26 Obligation: 47.49/23.26 Q DP problem: 47.49/23.26 The TRS P consists of the following rules: 47.49/23.26 47.49/23.26 new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_lt11(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba)), new_sizeFM(Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), h, ba)), h, ba) 47.49/23.26 new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), yvy53, h, ba) 47.49/23.26 new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) 47.49/23.26 new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), yvy53, h, ba) 47.49/23.26 new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) 47.49/23.26 new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs12(new_primCmpInt1(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba), LT), h, ba) 47.49/23.26 new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs12(new_primCmpInt0(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba), LT), h, ba) 47.49/23.26 new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_lt11(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba)), new_sizeFM(Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), h, ba)), h, ba) 47.49/23.26 47.49/23.26 The TRS R consists of the following rules: 47.49/23.26 47.49/23.26 new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) 47.49/23.26 new_primCmpNat0(Succ(yvy4900), Zero) -> GT 47.49/23.26 new_primCmpNat0(Zero, Zero) -> EQ 47.49/23.26 new_primPlusNat0(Succ(yvy16100), Zero) -> Succ(yvy16100) 47.49/23.26 new_primPlusNat0(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) 47.49/23.26 new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT 47.49/23.26 new_primMulNat0(Zero, Zero) -> Zero 47.49/23.26 new_primPlusNat0(Zero, Zero) -> Zero 47.49/23.26 new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.26 new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.26 new_primPlusNat1(Zero, yvy300000) -> Succ(yvy300000) 47.49/23.26 new_primCmpInt2(yvy6200, yvy146) -> new_primCmpInt(Neg(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy146) 47.49/23.26 new_sizeFM(Branch(yvy540, yvy541, yvy542, yvy543, yvy544), h, ba) -> yvy542 47.49/23.26 new_primCmpInt1(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ 47.49/23.26 new_primCmpInt1(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> LT 47.49/23.26 new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) 47.49/23.26 new_primCmpInt0(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> GT 47.49/23.26 new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) 47.49/23.26 new_esEs12(LT, LT) -> True 47.49/23.26 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 47.49/23.26 new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT 47.49/23.26 new_primCmpInt1(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> new_primCmpInt2(yvy6200, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba)) 47.49/23.26 new_primCmpInt1(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ 47.49/23.26 new_compare8(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) 47.49/23.26 new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) 47.49/23.26 new_primCmpInt0(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> new_primCmpInt3(yvy6200, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba)) 47.49/23.26 new_esEs12(LT, EQ) -> False 47.49/23.26 new_esEs12(EQ, LT) -> False 47.49/23.26 new_primPlusNat0(Succ(yvy16100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat0(yvy16100, yvy3000000))) 47.49/23.26 new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat1(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) 47.49/23.26 new_primCmpInt1(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> GT 47.49/23.26 new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) -> yvy52 47.49/23.26 new_esEs12(GT, GT) -> True 47.49/23.26 new_primCmpInt3(yvy6200, yvy145) -> new_primCmpInt(Pos(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy145) 47.49/23.26 new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) 47.49/23.26 new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.26 new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) 47.49/23.26 new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT 47.49/23.26 new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT 47.49/23.26 new_esEs12(LT, GT) -> False 47.49/23.26 new_esEs12(GT, LT) -> False 47.49/23.26 new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.26 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 47.49/23.26 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 47.49/23.26 new_lt11(yvy205, yvy204) -> new_esEs12(new_compare8(yvy205, yvy204), LT) 47.49/23.26 new_primMulNat0(Succ(yvy400100), Zero) -> Zero 47.49/23.26 new_primMulNat0(Zero, Succ(yvy300000)) -> Zero 47.49/23.26 new_primCmpNat0(Zero, Succ(yvy5000)) -> LT 47.49/23.26 new_primCmpInt0(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ 47.49/23.26 new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) 47.49/23.26 new_primCmpInt0(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ 47.49/23.26 new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) 47.49/23.26 new_sizeFM(EmptyFM, h, ba) -> Pos(Zero) 47.49/23.26 new_esEs12(EQ, GT) -> False 47.49/23.26 new_esEs12(GT, EQ) -> False 47.49/23.26 new_primCmpInt0(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> LT 47.49/23.26 new_primPlusNat1(Succ(yvy1610), yvy300000) -> Succ(Succ(new_primPlusNat0(yvy1610, yvy300000))) 47.49/23.26 new_esEs12(EQ, EQ) -> True 47.49/23.26 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 47.49/23.26 new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) 47.49/23.26 47.49/23.26 The set Q consists of the following terms: 47.49/23.26 47.49/23.26 new_sr(x0, x1) 47.49/23.26 new_lt11(x0, x1) 47.49/23.26 new_primCmpInt(Neg(Zero), Neg(Zero)) 47.49/23.26 new_primMulNat0(Succ(x0), Succ(x1)) 47.49/23.26 new_sizeFM(EmptyFM, x0, x1) 47.49/23.26 new_sIZE_RATIO 47.49/23.26 new_primCmpNat0(Zero, Succ(x0)) 47.49/23.26 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 47.49/23.26 new_primCmpInt1(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) 47.49/23.26 new_primCmpInt1(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) 47.49/23.26 new_primCmpInt1(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 47.49/23.26 new_esEs12(EQ, GT) 47.49/23.26 new_esEs12(GT, EQ) 47.49/23.26 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 47.49/23.26 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 47.49/23.26 new_esEs12(EQ, EQ) 47.49/23.26 new_primCmpInt0(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) 47.49/23.26 new_primCmpInt(Pos(Zero), Neg(Zero)) 47.49/23.26 new_primCmpInt(Neg(Zero), Pos(Zero)) 47.49/23.26 new_primPlusNat0(Succ(x0), Zero) 47.49/23.26 new_primCmpInt3(x0, x1) 47.49/23.26 new_primMulInt(Neg(x0), Neg(x1)) 47.49/23.26 new_primMulNat0(Zero, Zero) 47.49/23.26 new_primPlusNat1(Zero, x0) 47.49/23.26 new_primCmpNat0(Succ(x0), Zero) 47.49/23.26 new_primCmpInt0(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) 47.49/23.26 new_esEs12(GT, GT) 47.49/23.26 new_esEs12(LT, EQ) 47.49/23.26 new_esEs12(EQ, LT) 47.49/23.26 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 47.49/23.26 new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6) 47.49/23.26 new_primPlusNat0(Zero, Succ(x0)) 47.49/23.26 new_primCmpInt1(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9) 47.49/23.26 new_primMulInt(Pos(x0), Pos(x1)) 47.49/23.26 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 47.49/23.26 new_primCmpInt1(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9) 47.49/23.26 new_esEs12(LT, GT) 47.49/23.26 new_esEs12(GT, LT) 47.49/23.26 new_primCmpNat0(Succ(x0), Succ(x1)) 47.49/23.26 new_primCmpInt0(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9) 47.49/23.26 new_primPlusNat1(Succ(x0), x1) 47.49/23.26 new_esEs12(LT, LT) 47.49/23.26 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 47.49/23.26 new_primPlusNat0(Succ(x0), Succ(x1)) 47.49/23.26 new_mkVBalBranch3Size_r0(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 47.49/23.26 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 47.49/23.26 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 47.49/23.26 new_primMulNat0(Succ(x0), Zero) 47.49/23.26 new_compare8(x0, x1) 47.49/23.26 new_primMulInt(Pos(x0), Neg(x1)) 47.49/23.26 new_primMulInt(Neg(x0), Pos(x1)) 47.49/23.26 new_primCmpInt2(x0, x1) 47.49/23.26 new_primCmpInt0(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9) 47.49/23.26 new_primMulNat0(Zero, Succ(x0)) 47.49/23.26 new_primCmpNat0(Zero, Zero) 47.49/23.26 new_sizeFM0(x0, x1, x2, x3, x4, x5, x6) 47.49/23.26 new_primCmpInt(Pos(Zero), Pos(Zero)) 47.49/23.26 new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 47.49/23.26 new_primPlusNat0(Zero, Zero) 47.49/23.26 new_primCmpInt0(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 47.49/23.26 47.49/23.26 We have to consider all minimal (P,Q,R)-chains. 47.49/23.26 ---------------------------------------- 47.49/23.26 47.49/23.26 (48) QDPOrderProof (EQUIVALENT) 47.49/23.26 We use the reduction pair processor [LPAR04,JAR06]. 47.49/23.26 47.49/23.26 47.49/23.26 The following pairs can be oriented strictly and are deleted. 47.49/23.26 47.49/23.26 new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_lt11(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba)), new_sizeFM(Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), h, ba)), h, ba) 47.49/23.26 The remaining pairs can at least be oriented weakly. 47.49/23.26 Used ordering: Polynomial interpretation [POLO]: 47.49/23.26 47.49/23.26 POL(Branch(x_1, x_2, x_3, x_4, x_5)) = x_1 + x_2 + x_3 + x_4 + x_5 47.49/23.26 POL(EQ) = 0 47.49/23.26 POL(False) = 0 47.49/23.26 POL(GT) = 1 47.49/23.26 POL(LT) = 0 47.49/23.26 POL(Neg(x_1)) = 1 47.49/23.26 POL(Pos(x_1)) = 0 47.49/23.26 POL(Succ(x_1)) = 0 47.49/23.26 POL(True) = 0 47.49/23.26 POL(Zero) = 0 47.49/23.26 POL(new_compare8(x_1, x_2)) = 1 + x_1 + x_2 47.49/23.26 POL(new_esEs12(x_1, x_2)) = 0 47.49/23.26 POL(new_lt11(x_1, x_2)) = 0 47.49/23.26 POL(new_mkVBalBranch(x_1, x_2, x_3, x_4, x_5, x_6)) = x_3 + x_5 + x_6 47.49/23.26 POL(new_mkVBalBranch3MkVBalBranch1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15)) = x_10 + x_14 + x_15 + x_6 + x_7 + x_9 47.49/23.26 POL(new_mkVBalBranch3MkVBalBranch10(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15)) = x_10 + x_14 + x_15 + x_6 + x_7 + x_9 47.49/23.26 POL(new_mkVBalBranch3MkVBalBranch2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15)) = x_10 + x_14 + x_15 + x_6 + x_7 + x_9 47.49/23.26 POL(new_mkVBalBranch3MkVBalBranch20(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15)) = 1 + x_10 + x_14 + x_15 + x_6 + x_7 + x_9 47.49/23.26 POL(new_mkVBalBranch3Size_r(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12)) = x_1 + x_10 + x_11 + x_12 + x_2 + x_3 + x_4 + x_5 + x_6 + x_7 + x_9 47.49/23.26 POL(new_mkVBalBranch3Size_r0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12)) = x_1 + x_10 + x_11 + x_12 + x_2 + x_3 + x_4 + x_5 + x_6 + x_7 + x_9 47.49/23.26 POL(new_primCmpInt(x_1, x_2)) = 0 47.49/23.26 POL(new_primCmpInt0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12)) = x_10 + x_11 + x_12 + x_2 + x_3 + x_4 + x_5 + x_6 + x_7 + x_8 + x_9 47.49/23.26 POL(new_primCmpInt1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12)) = x_10 + x_11 + x_12 + x_2 + x_3 + x_4 + x_5 + x_6 + x_7 + x_8 + x_9 47.49/23.26 POL(new_primCmpInt2(x_1, x_2)) = 1 + x_1 47.49/23.26 POL(new_primCmpInt3(x_1, x_2)) = 1 + x_1 47.49/23.26 POL(new_primCmpNat0(x_1, x_2)) = 0 47.49/23.26 POL(new_primMulInt(x_1, x_2)) = 1 47.49/23.26 POL(new_primMulNat0(x_1, x_2)) = 0 47.49/23.26 POL(new_primPlusNat0(x_1, x_2)) = 0 47.49/23.26 POL(new_primPlusNat1(x_1, x_2)) = 0 47.49/23.26 POL(new_sIZE_RATIO) = 0 47.49/23.26 POL(new_sizeFM(x_1, x_2, x_3)) = x_1 + x_2 + x_3 47.49/23.26 POL(new_sizeFM0(x_1, x_2, x_3, x_4, x_5, x_6, x_7)) = x_3 + x_4 47.49/23.26 POL(new_sr(x_1, x_2)) = 0 47.49/23.26 47.49/23.26 The following usable rules [FROCOS05] with respect to the argument filtering of the ordering [JAR06] were oriented: 47.49/23.26 none 47.49/23.26 47.49/23.26 47.49/23.26 ---------------------------------------- 47.49/23.26 47.49/23.26 (49) 47.49/23.26 Obligation: 47.49/23.26 Q DP problem: 47.49/23.26 The TRS P consists of the following rules: 47.49/23.26 47.49/23.26 new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_lt11(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba)), new_sizeFM(Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), h, ba)), h, ba) 47.49/23.26 new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), yvy53, h, ba) 47.49/23.26 new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) 47.49/23.26 new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), yvy53, h, ba) 47.49/23.26 new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) 47.49/23.26 new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs12(new_primCmpInt1(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba), LT), h, ba) 47.49/23.26 new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs12(new_primCmpInt0(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba), LT), h, ba) 47.49/23.26 47.49/23.26 The TRS R consists of the following rules: 47.49/23.26 47.49/23.26 new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) 47.49/23.26 new_primCmpNat0(Succ(yvy4900), Zero) -> GT 47.49/23.26 new_primCmpNat0(Zero, Zero) -> EQ 47.49/23.26 new_primPlusNat0(Succ(yvy16100), Zero) -> Succ(yvy16100) 47.49/23.26 new_primPlusNat0(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) 47.49/23.26 new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT 47.49/23.26 new_primMulNat0(Zero, Zero) -> Zero 47.49/23.26 new_primPlusNat0(Zero, Zero) -> Zero 47.49/23.26 new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.26 new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.26 new_primPlusNat1(Zero, yvy300000) -> Succ(yvy300000) 47.49/23.26 new_primCmpInt2(yvy6200, yvy146) -> new_primCmpInt(Neg(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy146) 47.49/23.26 new_sizeFM(Branch(yvy540, yvy541, yvy542, yvy543, yvy544), h, ba) -> yvy542 47.49/23.26 new_primCmpInt1(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ 47.49/23.26 new_primCmpInt1(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> LT 47.49/23.26 new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) 47.49/23.26 new_primCmpInt0(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> GT 47.49/23.26 new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) 47.49/23.26 new_esEs12(LT, LT) -> True 47.49/23.26 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 47.49/23.26 new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT 47.49/23.26 new_primCmpInt1(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> new_primCmpInt2(yvy6200, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba)) 47.49/23.26 new_primCmpInt1(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ 47.49/23.26 new_compare8(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) 47.49/23.26 new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) 47.49/23.26 new_primCmpInt0(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> new_primCmpInt3(yvy6200, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba)) 47.49/23.26 new_esEs12(LT, EQ) -> False 47.49/23.26 new_esEs12(EQ, LT) -> False 47.49/23.26 new_primPlusNat0(Succ(yvy16100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat0(yvy16100, yvy3000000))) 47.49/23.26 new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat1(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) 47.49/23.26 new_primCmpInt1(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> GT 47.49/23.26 new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) -> yvy52 47.49/23.26 new_esEs12(GT, GT) -> True 47.49/23.26 new_primCmpInt3(yvy6200, yvy145) -> new_primCmpInt(Pos(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy145) 47.49/23.26 new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) 47.49/23.26 new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.26 new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) 47.49/23.26 new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT 47.49/23.26 new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT 47.49/23.26 new_esEs12(LT, GT) -> False 47.49/23.26 new_esEs12(GT, LT) -> False 47.49/23.26 new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.26 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 47.49/23.26 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 47.49/23.26 new_lt11(yvy205, yvy204) -> new_esEs12(new_compare8(yvy205, yvy204), LT) 47.49/23.26 new_primMulNat0(Succ(yvy400100), Zero) -> Zero 47.49/23.26 new_primMulNat0(Zero, Succ(yvy300000)) -> Zero 47.49/23.26 new_primCmpNat0(Zero, Succ(yvy5000)) -> LT 47.49/23.26 new_primCmpInt0(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ 47.49/23.26 new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) 47.49/23.26 new_primCmpInt0(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ 47.49/23.26 new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) 47.49/23.26 new_sizeFM(EmptyFM, h, ba) -> Pos(Zero) 47.49/23.26 new_esEs12(EQ, GT) -> False 47.49/23.26 new_esEs12(GT, EQ) -> False 47.49/23.26 new_primCmpInt0(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> LT 47.49/23.26 new_primPlusNat1(Succ(yvy1610), yvy300000) -> Succ(Succ(new_primPlusNat0(yvy1610, yvy300000))) 47.49/23.26 new_esEs12(EQ, EQ) -> True 47.49/23.26 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 47.49/23.26 new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) 47.49/23.26 47.49/23.26 The set Q consists of the following terms: 47.49/23.26 47.49/23.26 new_sr(x0, x1) 47.49/23.26 new_lt11(x0, x1) 47.49/23.26 new_primCmpInt(Neg(Zero), Neg(Zero)) 47.49/23.26 new_primMulNat0(Succ(x0), Succ(x1)) 47.49/23.26 new_sizeFM(EmptyFM, x0, x1) 47.49/23.26 new_sIZE_RATIO 47.49/23.26 new_primCmpNat0(Zero, Succ(x0)) 47.49/23.26 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 47.49/23.26 new_primCmpInt1(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) 47.49/23.26 new_primCmpInt1(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) 47.49/23.26 new_primCmpInt1(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 47.49/23.26 new_esEs12(EQ, GT) 47.49/23.26 new_esEs12(GT, EQ) 47.49/23.26 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 47.49/23.26 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 47.49/23.26 new_esEs12(EQ, EQ) 47.49/23.26 new_primCmpInt0(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) 47.49/23.26 new_primCmpInt(Pos(Zero), Neg(Zero)) 47.49/23.26 new_primCmpInt(Neg(Zero), Pos(Zero)) 47.49/23.26 new_primPlusNat0(Succ(x0), Zero) 47.49/23.26 new_primCmpInt3(x0, x1) 47.49/23.26 new_primMulInt(Neg(x0), Neg(x1)) 47.49/23.26 new_primMulNat0(Zero, Zero) 47.49/23.26 new_primPlusNat1(Zero, x0) 47.49/23.26 new_primCmpNat0(Succ(x0), Zero) 47.49/23.26 new_primCmpInt0(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) 47.49/23.26 new_esEs12(GT, GT) 47.49/23.26 new_esEs12(LT, EQ) 47.49/23.26 new_esEs12(EQ, LT) 47.49/23.26 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 47.49/23.26 new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6) 47.49/23.26 new_primPlusNat0(Zero, Succ(x0)) 47.49/23.26 new_primCmpInt1(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9) 47.49/23.26 new_primMulInt(Pos(x0), Pos(x1)) 47.49/23.26 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 47.49/23.26 new_primCmpInt1(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9) 47.49/23.26 new_esEs12(LT, GT) 47.49/23.26 new_esEs12(GT, LT) 47.49/23.26 new_primCmpNat0(Succ(x0), Succ(x1)) 47.49/23.26 new_primCmpInt0(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9) 47.49/23.26 new_primPlusNat1(Succ(x0), x1) 47.49/23.26 new_esEs12(LT, LT) 47.49/23.26 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 47.49/23.26 new_primPlusNat0(Succ(x0), Succ(x1)) 47.49/23.26 new_mkVBalBranch3Size_r0(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 47.49/23.26 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 47.49/23.26 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 47.49/23.26 new_primMulNat0(Succ(x0), Zero) 47.49/23.26 new_compare8(x0, x1) 47.49/23.26 new_primMulInt(Pos(x0), Neg(x1)) 47.49/23.26 new_primMulInt(Neg(x0), Pos(x1)) 47.49/23.26 new_primCmpInt2(x0, x1) 47.49/23.26 new_primCmpInt0(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9) 47.49/23.26 new_primMulNat0(Zero, Succ(x0)) 47.49/23.26 new_primCmpNat0(Zero, Zero) 47.49/23.26 new_sizeFM0(x0, x1, x2, x3, x4, x5, x6) 47.49/23.26 new_primCmpInt(Pos(Zero), Pos(Zero)) 47.49/23.26 new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 47.49/23.26 new_primPlusNat0(Zero, Zero) 47.49/23.26 new_primCmpInt0(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 47.49/23.26 47.49/23.26 We have to consider all minimal (P,Q,R)-chains. 47.49/23.26 ---------------------------------------- 47.49/23.26 47.49/23.26 (50) DependencyGraphProof (EQUIVALENT) 47.49/23.26 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs with 1 less node. 47.49/23.26 ---------------------------------------- 47.49/23.26 47.49/23.26 (51) 47.49/23.26 Complex Obligation (AND) 47.49/23.26 47.49/23.26 ---------------------------------------- 47.49/23.26 47.49/23.26 (52) 47.49/23.26 Obligation: 47.49/23.26 Q DP problem: 47.49/23.26 The TRS P consists of the following rules: 47.49/23.26 47.49/23.26 new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs12(new_primCmpInt1(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba), LT), h, ba) 47.49/23.26 new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), yvy53, h, ba) 47.49/23.26 47.49/23.26 The TRS R consists of the following rules: 47.49/23.26 47.49/23.26 new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) 47.49/23.26 new_primCmpNat0(Succ(yvy4900), Zero) -> GT 47.49/23.26 new_primCmpNat0(Zero, Zero) -> EQ 47.49/23.26 new_primPlusNat0(Succ(yvy16100), Zero) -> Succ(yvy16100) 47.49/23.26 new_primPlusNat0(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) 47.49/23.26 new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT 47.49/23.26 new_primMulNat0(Zero, Zero) -> Zero 47.49/23.26 new_primPlusNat0(Zero, Zero) -> Zero 47.49/23.26 new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.26 new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.26 new_primPlusNat1(Zero, yvy300000) -> Succ(yvy300000) 47.49/23.26 new_primCmpInt2(yvy6200, yvy146) -> new_primCmpInt(Neg(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy146) 47.49/23.26 new_sizeFM(Branch(yvy540, yvy541, yvy542, yvy543, yvy544), h, ba) -> yvy542 47.49/23.26 new_primCmpInt1(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ 47.49/23.26 new_primCmpInt1(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> LT 47.49/23.26 new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) 47.49/23.26 new_primCmpInt0(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> GT 47.49/23.26 new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) 47.49/23.26 new_esEs12(LT, LT) -> True 47.49/23.26 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 47.49/23.26 new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT 47.49/23.26 new_primCmpInt1(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> new_primCmpInt2(yvy6200, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba)) 47.49/23.26 new_primCmpInt1(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ 47.49/23.26 new_compare8(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) 47.49/23.26 new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) 47.49/23.26 new_primCmpInt0(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> new_primCmpInt3(yvy6200, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba)) 47.49/23.26 new_esEs12(LT, EQ) -> False 47.49/23.26 new_esEs12(EQ, LT) -> False 47.49/23.26 new_primPlusNat0(Succ(yvy16100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat0(yvy16100, yvy3000000))) 47.49/23.26 new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat1(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) 47.49/23.26 new_primCmpInt1(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> GT 47.49/23.26 new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) -> yvy52 47.49/23.26 new_esEs12(GT, GT) -> True 47.49/23.26 new_primCmpInt3(yvy6200, yvy145) -> new_primCmpInt(Pos(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy145) 47.49/23.26 new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) 47.49/23.26 new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.26 new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) 47.49/23.26 new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT 47.49/23.26 new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT 47.49/23.26 new_esEs12(LT, GT) -> False 47.49/23.26 new_esEs12(GT, LT) -> False 47.49/23.26 new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.26 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 47.49/23.26 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 47.49/23.26 new_lt11(yvy205, yvy204) -> new_esEs12(new_compare8(yvy205, yvy204), LT) 47.49/23.26 new_primMulNat0(Succ(yvy400100), Zero) -> Zero 47.49/23.26 new_primMulNat0(Zero, Succ(yvy300000)) -> Zero 47.49/23.26 new_primCmpNat0(Zero, Succ(yvy5000)) -> LT 47.49/23.26 new_primCmpInt0(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ 47.49/23.26 new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) 47.49/23.26 new_primCmpInt0(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ 47.49/23.27 new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) 47.49/23.27 new_sizeFM(EmptyFM, h, ba) -> Pos(Zero) 47.49/23.27 new_esEs12(EQ, GT) -> False 47.49/23.27 new_esEs12(GT, EQ) -> False 47.49/23.27 new_primCmpInt0(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> LT 47.49/23.27 new_primPlusNat1(Succ(yvy1610), yvy300000) -> Succ(Succ(new_primPlusNat0(yvy1610, yvy300000))) 47.49/23.27 new_esEs12(EQ, EQ) -> True 47.49/23.27 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 47.49/23.27 new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) 47.49/23.27 47.49/23.27 The set Q consists of the following terms: 47.49/23.27 47.49/23.27 new_sr(x0, x1) 47.49/23.27 new_lt11(x0, x1) 47.49/23.27 new_primCmpInt(Neg(Zero), Neg(Zero)) 47.49/23.27 new_primMulNat0(Succ(x0), Succ(x1)) 47.49/23.27 new_sizeFM(EmptyFM, x0, x1) 47.49/23.27 new_sIZE_RATIO 47.49/23.27 new_primCmpNat0(Zero, Succ(x0)) 47.49/23.27 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 47.49/23.27 new_primCmpInt1(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) 47.49/23.27 new_primCmpInt1(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) 47.49/23.27 new_primCmpInt1(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 47.49/23.27 new_esEs12(EQ, GT) 47.49/23.27 new_esEs12(GT, EQ) 47.49/23.27 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 47.49/23.27 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 47.49/23.27 new_esEs12(EQ, EQ) 47.49/23.27 new_primCmpInt0(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) 47.49/23.27 new_primCmpInt(Pos(Zero), Neg(Zero)) 47.49/23.27 new_primCmpInt(Neg(Zero), Pos(Zero)) 47.49/23.27 new_primPlusNat0(Succ(x0), Zero) 47.49/23.27 new_primCmpInt3(x0, x1) 47.49/23.27 new_primMulInt(Neg(x0), Neg(x1)) 47.49/23.27 new_primMulNat0(Zero, Zero) 47.49/23.27 new_primPlusNat1(Zero, x0) 47.49/23.27 new_primCmpNat0(Succ(x0), Zero) 47.49/23.27 new_primCmpInt0(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) 47.49/23.27 new_esEs12(GT, GT) 47.49/23.27 new_esEs12(LT, EQ) 47.49/23.27 new_esEs12(EQ, LT) 47.49/23.27 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 47.49/23.27 new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6) 47.49/23.27 new_primPlusNat0(Zero, Succ(x0)) 47.49/23.27 new_primCmpInt1(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9) 47.49/23.27 new_primMulInt(Pos(x0), Pos(x1)) 47.49/23.27 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 47.49/23.27 new_primCmpInt1(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9) 47.49/23.27 new_esEs12(LT, GT) 47.49/23.27 new_esEs12(GT, LT) 47.49/23.27 new_primCmpNat0(Succ(x0), Succ(x1)) 47.49/23.27 new_primCmpInt0(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9) 47.49/23.27 new_primPlusNat1(Succ(x0), x1) 47.49/23.27 new_esEs12(LT, LT) 47.49/23.27 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 47.49/23.27 new_primPlusNat0(Succ(x0), Succ(x1)) 47.49/23.27 new_mkVBalBranch3Size_r0(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 47.49/23.27 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 47.49/23.27 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 47.49/23.27 new_primMulNat0(Succ(x0), Zero) 47.49/23.27 new_compare8(x0, x1) 47.49/23.27 new_primMulInt(Pos(x0), Neg(x1)) 47.49/23.27 new_primMulInt(Neg(x0), Pos(x1)) 47.49/23.27 new_primCmpInt2(x0, x1) 47.49/23.27 new_primCmpInt0(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9) 47.49/23.27 new_primMulNat0(Zero, Succ(x0)) 47.49/23.27 new_primCmpNat0(Zero, Zero) 47.49/23.27 new_sizeFM0(x0, x1, x2, x3, x4, x5, x6) 47.49/23.27 new_primCmpInt(Pos(Zero), Pos(Zero)) 47.49/23.27 new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 47.49/23.27 new_primPlusNat0(Zero, Zero) 47.49/23.27 new_primCmpInt0(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 47.49/23.27 47.49/23.27 We have to consider all minimal (P,Q,R)-chains. 47.49/23.27 ---------------------------------------- 47.49/23.27 47.49/23.27 (53) QDPSizeChangeProof (EQUIVALENT) 47.49/23.27 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. 47.49/23.27 47.49/23.27 From the DPs we obtained the following set of size-change graphs: 47.49/23.27 *new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), yvy53, h, ba) 47.49/23.27 The graph contains the following edges 11 >= 1, 12 >= 2, 4 >= 4, 14 >= 5, 15 >= 6 47.49/23.27 47.49/23.27 47.49/23.27 *new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs12(new_primCmpInt1(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba), LT), h, ba) 47.49/23.27 The graph contains the following edges 4 > 1, 4 > 2, 4 > 3, 4 > 4, 4 > 5, 3 > 6, 3 > 7, 3 > 8, 3 > 9, 3 > 10, 1 >= 11, 2 >= 12, 5 >= 14, 6 >= 15 47.49/23.27 47.49/23.27 47.49/23.27 ---------------------------------------- 47.49/23.27 47.49/23.27 (54) 47.49/23.27 YES 47.49/23.27 47.49/23.27 ---------------------------------------- 47.49/23.27 47.49/23.27 (55) 47.49/23.27 Obligation: 47.49/23.27 Q DP problem: 47.49/23.27 The TRS P consists of the following rules: 47.49/23.27 47.49/23.27 new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) 47.49/23.27 new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs12(new_primCmpInt0(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba), LT), h, ba) 47.49/23.27 new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_lt11(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba)), new_sizeFM(Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), h, ba)), h, ba) 47.49/23.27 new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), yvy53, h, ba) 47.49/23.27 47.49/23.27 The TRS R consists of the following rules: 47.49/23.27 47.49/23.27 new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) 47.49/23.27 new_primCmpNat0(Succ(yvy4900), Zero) -> GT 47.49/23.27 new_primCmpNat0(Zero, Zero) -> EQ 47.49/23.27 new_primPlusNat0(Succ(yvy16100), Zero) -> Succ(yvy16100) 47.49/23.27 new_primPlusNat0(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) 47.49/23.27 new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT 47.49/23.27 new_primMulNat0(Zero, Zero) -> Zero 47.49/23.27 new_primPlusNat0(Zero, Zero) -> Zero 47.49/23.27 new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.27 new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.27 new_primPlusNat1(Zero, yvy300000) -> Succ(yvy300000) 47.49/23.27 new_primCmpInt2(yvy6200, yvy146) -> new_primCmpInt(Neg(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy146) 47.49/23.27 new_sizeFM(Branch(yvy540, yvy541, yvy542, yvy543, yvy544), h, ba) -> yvy542 47.49/23.27 new_primCmpInt1(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ 47.49/23.27 new_primCmpInt1(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> LT 47.49/23.27 new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) 47.49/23.27 new_primCmpInt0(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> GT 47.49/23.27 new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) 47.49/23.27 new_esEs12(LT, LT) -> True 47.49/23.27 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 47.49/23.27 new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT 47.49/23.27 new_primCmpInt1(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> new_primCmpInt2(yvy6200, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba)) 47.49/23.27 new_primCmpInt1(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ 47.49/23.27 new_compare8(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) 47.49/23.27 new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) 47.49/23.27 new_primCmpInt0(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> new_primCmpInt3(yvy6200, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba)) 47.49/23.27 new_esEs12(LT, EQ) -> False 47.49/23.27 new_esEs12(EQ, LT) -> False 47.49/23.27 new_primPlusNat0(Succ(yvy16100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat0(yvy16100, yvy3000000))) 47.49/23.27 new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat1(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) 47.49/23.27 new_primCmpInt1(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> GT 47.49/23.27 new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) -> yvy52 47.49/23.27 new_esEs12(GT, GT) -> True 47.49/23.27 new_primCmpInt3(yvy6200, yvy145) -> new_primCmpInt(Pos(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy145) 47.49/23.27 new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) 47.49/23.27 new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.27 new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) 47.49/23.27 new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT 47.49/23.27 new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT 47.49/23.27 new_esEs12(LT, GT) -> False 47.49/23.27 new_esEs12(GT, LT) -> False 47.49/23.27 new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.27 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 47.49/23.27 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 47.49/23.27 new_lt11(yvy205, yvy204) -> new_esEs12(new_compare8(yvy205, yvy204), LT) 47.49/23.27 new_primMulNat0(Succ(yvy400100), Zero) -> Zero 47.49/23.27 new_primMulNat0(Zero, Succ(yvy300000)) -> Zero 47.49/23.27 new_primCmpNat0(Zero, Succ(yvy5000)) -> LT 47.49/23.27 new_primCmpInt0(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ 47.49/23.27 new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) 47.49/23.27 new_primCmpInt0(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ 47.49/23.27 new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) 47.49/23.27 new_sizeFM(EmptyFM, h, ba) -> Pos(Zero) 47.49/23.27 new_esEs12(EQ, GT) -> False 47.49/23.27 new_esEs12(GT, EQ) -> False 47.49/23.27 new_primCmpInt0(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> LT 47.49/23.27 new_primPlusNat1(Succ(yvy1610), yvy300000) -> Succ(Succ(new_primPlusNat0(yvy1610, yvy300000))) 47.49/23.27 new_esEs12(EQ, EQ) -> True 47.49/23.27 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 47.49/23.27 new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) 47.49/23.27 47.49/23.27 The set Q consists of the following terms: 47.49/23.27 47.49/23.27 new_sr(x0, x1) 47.49/23.27 new_lt11(x0, x1) 47.49/23.27 new_primCmpInt(Neg(Zero), Neg(Zero)) 47.49/23.27 new_primMulNat0(Succ(x0), Succ(x1)) 47.49/23.27 new_sizeFM(EmptyFM, x0, x1) 47.49/23.27 new_sIZE_RATIO 47.49/23.27 new_primCmpNat0(Zero, Succ(x0)) 47.49/23.27 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 47.49/23.27 new_primCmpInt1(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) 47.49/23.27 new_primCmpInt1(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) 47.49/23.27 new_primCmpInt1(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 47.49/23.27 new_esEs12(EQ, GT) 47.49/23.27 new_esEs12(GT, EQ) 47.49/23.27 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 47.49/23.27 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 47.49/23.27 new_esEs12(EQ, EQ) 47.49/23.27 new_primCmpInt0(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) 47.49/23.27 new_primCmpInt(Pos(Zero), Neg(Zero)) 47.49/23.27 new_primCmpInt(Neg(Zero), Pos(Zero)) 47.49/23.27 new_primPlusNat0(Succ(x0), Zero) 47.49/23.27 new_primCmpInt3(x0, x1) 47.49/23.27 new_primMulInt(Neg(x0), Neg(x1)) 47.49/23.27 new_primMulNat0(Zero, Zero) 47.49/23.27 new_primPlusNat1(Zero, x0) 47.49/23.27 new_primCmpNat0(Succ(x0), Zero) 47.49/23.27 new_primCmpInt0(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) 47.49/23.27 new_esEs12(GT, GT) 47.49/23.27 new_esEs12(LT, EQ) 47.49/23.27 new_esEs12(EQ, LT) 47.49/23.27 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 47.49/23.27 new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6) 47.49/23.27 new_primPlusNat0(Zero, Succ(x0)) 47.49/23.27 new_primCmpInt1(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9) 47.49/23.27 new_primMulInt(Pos(x0), Pos(x1)) 47.49/23.27 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 47.49/23.27 new_primCmpInt1(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9) 47.49/23.27 new_esEs12(LT, GT) 47.49/23.27 new_esEs12(GT, LT) 47.49/23.27 new_primCmpNat0(Succ(x0), Succ(x1)) 47.49/23.27 new_primCmpInt0(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9) 47.49/23.27 new_primPlusNat1(Succ(x0), x1) 47.49/23.27 new_esEs12(LT, LT) 47.49/23.27 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 47.49/23.27 new_primPlusNat0(Succ(x0), Succ(x1)) 47.49/23.27 new_mkVBalBranch3Size_r0(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 47.49/23.27 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 47.49/23.27 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 47.49/23.27 new_primMulNat0(Succ(x0), Zero) 47.49/23.27 new_compare8(x0, x1) 47.49/23.27 new_primMulInt(Pos(x0), Neg(x1)) 47.49/23.27 new_primMulInt(Neg(x0), Pos(x1)) 47.49/23.27 new_primCmpInt2(x0, x1) 47.49/23.27 new_primCmpInt0(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9) 47.49/23.27 new_primMulNat0(Zero, Succ(x0)) 47.49/23.27 new_primCmpNat0(Zero, Zero) 47.49/23.27 new_sizeFM0(x0, x1, x2, x3, x4, x5, x6) 47.49/23.27 new_primCmpInt(Pos(Zero), Pos(Zero)) 47.49/23.27 new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 47.49/23.27 new_primPlusNat0(Zero, Zero) 47.49/23.27 new_primCmpInt0(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 47.49/23.27 47.49/23.27 We have to consider all minimal (P,Q,R)-chains. 47.49/23.27 ---------------------------------------- 47.49/23.27 47.49/23.27 (56) QDPOrderProof (EQUIVALENT) 47.49/23.27 We use the reduction pair processor [LPAR04,JAR06]. 47.49/23.27 47.49/23.27 47.49/23.27 The following pairs can be oriented strictly and are deleted. 47.49/23.27 47.49/23.27 new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), yvy53, h, ba) 47.49/23.27 The remaining pairs can at least be oriented weakly. 47.49/23.27 Used ordering: Polynomial interpretation [POLO]: 47.49/23.27 47.49/23.27 POL(Branch(x_1, x_2, x_3, x_4, x_5)) = 1 + x_1 + x_2 + x_4 + x_5 47.49/23.27 POL(EQ) = 0 47.49/23.27 POL(False) = 1 47.49/23.27 POL(GT) = 1 47.49/23.27 POL(LT) = 1 47.49/23.27 POL(Neg(x_1)) = 0 47.49/23.27 POL(Pos(x_1)) = 0 47.49/23.27 POL(Succ(x_1)) = 0 47.49/23.27 POL(True) = 1 47.49/23.27 POL(Zero) = 0 47.49/23.27 POL(new_compare8(x_1, x_2)) = 1 + x_1 + x_2 47.49/23.27 POL(new_esEs12(x_1, x_2)) = x_2 47.49/23.27 POL(new_lt11(x_1, x_2)) = 1 47.49/23.27 POL(new_mkVBalBranch(x_1, x_2, x_3, x_4, x_5, x_6)) = x_4 + x_5 + x_6 47.49/23.27 POL(new_mkVBalBranch3MkVBalBranch1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15)) = 1 + x_1 + x_14 + x_15 + x_2 + x_4 + x_5 47.49/23.27 POL(new_mkVBalBranch3MkVBalBranch2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15)) = x_1 + x_13 + x_14 + x_15 + x_2 + x_4 + x_5 47.49/23.27 POL(new_mkVBalBranch3Size_r(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12)) = x_1 + x_10 + x_11 + x_12 + x_2 + x_3 + x_4 + x_5 + x_6 + x_7 + x_9 47.49/23.27 POL(new_primCmpInt(x_1, x_2)) = 0 47.49/23.27 POL(new_primCmpInt0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12)) = x_10 + x_11 + x_12 + x_2 + x_3 + x_4 + x_5 + x_6 + x_7 + x_8 + x_9 47.49/23.27 POL(new_primCmpInt3(x_1, x_2)) = 1 + x_1 47.49/23.27 POL(new_primCmpNat0(x_1, x_2)) = 0 47.49/23.27 POL(new_primMulInt(x_1, x_2)) = 1 47.49/23.27 POL(new_primMulNat0(x_1, x_2)) = 0 47.49/23.27 POL(new_primPlusNat0(x_1, x_2)) = 0 47.49/23.27 POL(new_primPlusNat1(x_1, x_2)) = x_2 47.49/23.27 POL(new_sIZE_RATIO) = 0 47.49/23.27 POL(new_sizeFM(x_1, x_2, x_3)) = 1 + x_1 + x_2 + x_3 47.49/23.27 POL(new_sizeFM0(x_1, x_2, x_3, x_4, x_5, x_6, x_7)) = x_2 + x_3 47.49/23.27 POL(new_sr(x_1, x_2)) = 1 47.49/23.27 47.49/23.27 The following usable rules [FROCOS05] with respect to the argument filtering of the ordering [JAR06] were oriented: 47.49/23.27 47.49/23.27 new_esEs12(LT, LT) -> True 47.49/23.27 new_esEs12(EQ, LT) -> False 47.49/23.27 new_esEs12(GT, LT) -> False 47.49/23.27 47.49/23.27 47.49/23.27 ---------------------------------------- 47.49/23.27 47.49/23.27 (57) 47.49/23.27 Obligation: 47.49/23.27 Q DP problem: 47.49/23.27 The TRS P consists of the following rules: 47.49/23.27 47.49/23.27 new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) 47.49/23.27 new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs12(new_primCmpInt0(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba), LT), h, ba) 47.49/23.27 new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_lt11(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba)), new_sizeFM(Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), h, ba)), h, ba) 47.49/23.27 47.49/23.27 The TRS R consists of the following rules: 47.49/23.27 47.49/23.27 new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) 47.49/23.27 new_primCmpNat0(Succ(yvy4900), Zero) -> GT 47.49/23.27 new_primCmpNat0(Zero, Zero) -> EQ 47.49/23.27 new_primPlusNat0(Succ(yvy16100), Zero) -> Succ(yvy16100) 47.49/23.27 new_primPlusNat0(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) 47.49/23.27 new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT 47.49/23.27 new_primMulNat0(Zero, Zero) -> Zero 47.49/23.27 new_primPlusNat0(Zero, Zero) -> Zero 47.49/23.27 new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.27 new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.27 new_primPlusNat1(Zero, yvy300000) -> Succ(yvy300000) 47.49/23.27 new_primCmpInt2(yvy6200, yvy146) -> new_primCmpInt(Neg(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy146) 47.49/23.27 new_sizeFM(Branch(yvy540, yvy541, yvy542, yvy543, yvy544), h, ba) -> yvy542 47.49/23.27 new_primCmpInt1(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ 47.49/23.27 new_primCmpInt1(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> LT 47.49/23.27 new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) 47.49/23.27 new_primCmpInt0(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> GT 47.49/23.27 new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) 47.49/23.27 new_esEs12(LT, LT) -> True 47.49/23.27 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 47.49/23.27 new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT 47.49/23.27 new_primCmpInt1(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> new_primCmpInt2(yvy6200, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba)) 47.49/23.27 new_primCmpInt1(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ 47.49/23.27 new_compare8(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) 47.49/23.27 new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) 47.49/23.27 new_primCmpInt0(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> new_primCmpInt3(yvy6200, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba)) 47.49/23.27 new_esEs12(LT, EQ) -> False 47.49/23.27 new_esEs12(EQ, LT) -> False 47.49/23.27 new_primPlusNat0(Succ(yvy16100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat0(yvy16100, yvy3000000))) 47.49/23.27 new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat1(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) 47.49/23.27 new_primCmpInt1(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> GT 47.49/23.27 new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) -> yvy52 47.49/23.27 new_esEs12(GT, GT) -> True 47.49/23.27 new_primCmpInt3(yvy6200, yvy145) -> new_primCmpInt(Pos(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy145) 47.49/23.27 new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) 47.49/23.27 new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.27 new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) 47.49/23.27 new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT 47.49/23.27 new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT 47.49/23.27 new_esEs12(LT, GT) -> False 47.49/23.27 new_esEs12(GT, LT) -> False 47.49/23.27 new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.27 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 47.49/23.27 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 47.49/23.27 new_lt11(yvy205, yvy204) -> new_esEs12(new_compare8(yvy205, yvy204), LT) 47.49/23.27 new_primMulNat0(Succ(yvy400100), Zero) -> Zero 47.49/23.27 new_primMulNat0(Zero, Succ(yvy300000)) -> Zero 47.49/23.27 new_primCmpNat0(Zero, Succ(yvy5000)) -> LT 47.49/23.27 new_primCmpInt0(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ 47.49/23.27 new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) 47.49/23.27 new_primCmpInt0(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ 47.49/23.27 new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) 47.49/23.27 new_sizeFM(EmptyFM, h, ba) -> Pos(Zero) 47.49/23.27 new_esEs12(EQ, GT) -> False 47.49/23.27 new_esEs12(GT, EQ) -> False 47.49/23.27 new_primCmpInt0(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> LT 47.49/23.27 new_primPlusNat1(Succ(yvy1610), yvy300000) -> Succ(Succ(new_primPlusNat0(yvy1610, yvy300000))) 47.49/23.27 new_esEs12(EQ, EQ) -> True 47.49/23.27 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 47.49/23.27 new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) 47.49/23.27 47.49/23.27 The set Q consists of the following terms: 47.49/23.27 47.49/23.27 new_sr(x0, x1) 47.49/23.27 new_lt11(x0, x1) 47.49/23.27 new_primCmpInt(Neg(Zero), Neg(Zero)) 47.49/23.27 new_primMulNat0(Succ(x0), Succ(x1)) 47.49/23.27 new_sizeFM(EmptyFM, x0, x1) 47.49/23.27 new_sIZE_RATIO 47.49/23.27 new_primCmpNat0(Zero, Succ(x0)) 47.49/23.27 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 47.49/23.27 new_primCmpInt1(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) 47.49/23.27 new_primCmpInt1(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) 47.49/23.27 new_primCmpInt1(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 47.49/23.27 new_esEs12(EQ, GT) 47.49/23.27 new_esEs12(GT, EQ) 47.49/23.27 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 47.49/23.27 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 47.49/23.27 new_esEs12(EQ, EQ) 47.49/23.27 new_primCmpInt0(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) 47.49/23.27 new_primCmpInt(Pos(Zero), Neg(Zero)) 47.49/23.27 new_primCmpInt(Neg(Zero), Pos(Zero)) 47.49/23.27 new_primPlusNat0(Succ(x0), Zero) 47.49/23.27 new_primCmpInt3(x0, x1) 47.49/23.27 new_primMulInt(Neg(x0), Neg(x1)) 47.49/23.27 new_primMulNat0(Zero, Zero) 47.49/23.27 new_primPlusNat1(Zero, x0) 47.49/23.27 new_primCmpNat0(Succ(x0), Zero) 47.49/23.27 new_primCmpInt0(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) 47.49/23.27 new_esEs12(GT, GT) 47.49/23.27 new_esEs12(LT, EQ) 47.49/23.27 new_esEs12(EQ, LT) 47.49/23.27 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 47.49/23.27 new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6) 47.49/23.27 new_primPlusNat0(Zero, Succ(x0)) 47.49/23.27 new_primCmpInt1(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9) 47.49/23.27 new_primMulInt(Pos(x0), Pos(x1)) 47.49/23.27 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 47.49/23.27 new_primCmpInt1(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9) 47.49/23.27 new_esEs12(LT, GT) 47.49/23.27 new_esEs12(GT, LT) 47.49/23.27 new_primCmpNat0(Succ(x0), Succ(x1)) 47.49/23.27 new_primCmpInt0(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9) 47.49/23.27 new_primPlusNat1(Succ(x0), x1) 47.49/23.27 new_esEs12(LT, LT) 47.49/23.27 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 47.49/23.27 new_primPlusNat0(Succ(x0), Succ(x1)) 47.49/23.27 new_mkVBalBranch3Size_r0(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 47.49/23.27 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 47.49/23.27 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 47.49/23.27 new_primMulNat0(Succ(x0), Zero) 47.49/23.27 new_compare8(x0, x1) 47.49/23.27 new_primMulInt(Pos(x0), Neg(x1)) 47.49/23.27 new_primMulInt(Neg(x0), Pos(x1)) 47.49/23.27 new_primCmpInt2(x0, x1) 47.49/23.27 new_primCmpInt0(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9) 47.49/23.27 new_primMulNat0(Zero, Succ(x0)) 47.49/23.27 new_primCmpNat0(Zero, Zero) 47.49/23.27 new_sizeFM0(x0, x1, x2, x3, x4, x5, x6) 47.49/23.27 new_primCmpInt(Pos(Zero), Pos(Zero)) 47.49/23.27 new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 47.49/23.27 new_primPlusNat0(Zero, Zero) 47.49/23.27 new_primCmpInt0(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 47.49/23.27 47.49/23.27 We have to consider all minimal (P,Q,R)-chains. 47.49/23.27 ---------------------------------------- 47.49/23.27 47.49/23.27 (58) QDPSizeChangeProof (EQUIVALENT) 47.49/23.27 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. 47.49/23.27 47.49/23.27 From the DPs we obtained the following set of size-change graphs: 47.49/23.27 *new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs12(new_primCmpInt0(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba), LT), h, ba) 47.49/23.27 The graph contains the following edges 4 > 1, 4 > 2, 4 > 3, 4 > 4, 4 > 5, 3 > 6, 3 > 7, 3 > 8, 3 > 9, 3 > 10, 1 >= 11, 2 >= 12, 5 >= 14, 6 >= 15 47.49/23.27 47.49/23.27 47.49/23.27 *new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_lt11(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba)), new_sizeFM(Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), h, ba)), h, ba) 47.49/23.27 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 9, 10 >= 10, 11 >= 11, 12 >= 12, 14 >= 14, 15 >= 15 47.49/23.27 47.49/23.27 47.49/23.27 *new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) 47.49/23.27 The graph contains the following edges 11 >= 1, 12 >= 2, 10 >= 3, 14 >= 5, 15 >= 6 47.49/23.27 47.49/23.27 47.49/23.27 ---------------------------------------- 47.49/23.27 47.49/23.27 (59) 47.49/23.27 YES 47.49/23.27 47.49/23.27 ---------------------------------------- 47.49/23.27 47.49/23.27 (60) 47.49/23.27 Obligation: 47.49/23.27 Q DP problem: 47.49/23.27 The TRS P consists of the following rules: 47.49/23.27 47.49/23.27 new_splitLT3(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitLT2(yvy300, yvy31, yvy32, yvy33, yvy34, new_esEs12(new_compare25(Nothing, Just(yvy300), False, h), LT), h, ba) 47.49/23.27 new_splitLT20(yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba) -> new_splitLT11(yvy31, yvy32, yvy33, yvy34, yvy400, new_gt1(yvy400, h), h, ba) 47.49/23.27 new_splitLT(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), h, ba) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Nothing, h, ba) 47.49/23.27 new_splitLT1(yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_splitLT(yvy34, h, ba) 47.49/23.27 new_splitLT11(yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba) -> new_splitLT0(yvy34, yvy400, h, ba) 47.49/23.27 new_splitLT21(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, False, bb, bc) -> new_splitLT12(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, new_gt2(yvy35, yvy30, bb), bb, bc) 47.49/23.27 new_splitLT20(yvy31, yvy32, Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy34, yvy400, True, h, ba) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Just(yvy400), h, ba) 47.49/23.27 new_splitLT12(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, bb, bc) -> new_splitLT0(yvy34, yvy35, bb, bc) 47.49/23.27 new_splitLT21(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, bb, bc) -> new_splitLT0(yvy33, yvy35, bb, bc) 47.49/23.27 new_splitLT3(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitLT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare25(Just(yvy400), Just(yvy300), new_esEs31(yvy400, yvy300, h), h), LT), h, ba) 47.49/23.27 new_splitLT2(yvy300, yvy31, yvy32, yvy33, yvy34, False, h, ba) -> new_splitLT10(yvy300, yvy31, yvy32, yvy33, yvy34, new_gt0(yvy300, h), h, ba) 47.49/23.27 new_splitLT10(yvy300, yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_splitLT(yvy34, h, ba) 47.49/23.27 new_splitLT3(Nothing, yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitLT1(yvy31, yvy32, yvy33, yvy34, new_gt(h), h, ba) 47.49/23.27 new_splitLT3(Nothing, yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitLT20(yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare25(Just(yvy400), Nothing, False, h), LT), h, ba) 47.49/23.27 new_splitLT2(yvy300, yvy31, yvy32, Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy34, True, h, ba) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Nothing, h, ba) 47.49/23.27 new_splitLT0(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy400, h, ba) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Just(yvy400), h, ba) 47.49/23.27 47.49/23.27 The TRS R consists of the following rules: 47.49/23.27 47.49/23.27 new_esEs22(yvy4002, yvy3002, app(ty_[], cag)) -> new_esEs8(yvy4002, yvy3002, cag) 47.49/23.27 new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) 47.49/23.27 new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT 47.49/23.27 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 47.49/23.27 new_primPlusNat0(Zero, Zero) -> Zero 47.49/23.27 new_compare13(yvy49000, yvy50000, bdb, bdc, bdd) -> new_compare28(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, bdb, bdc, bdd), bdb, bdc, bdd) 47.49/23.27 new_esEs23(yvy4001, yvy3001, app(ty_Maybe, cbc)) -> new_esEs6(yvy4001, yvy3001, cbc) 47.49/23.27 new_pePe(True, yvy220) -> True 47.49/23.27 new_ltEs20(yvy49002, yvy50002, ty_Ordering) -> new_ltEs15(yvy49002, yvy50002) 47.49/23.27 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.27 new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) 47.49/23.27 new_compare26(yvy49000, yvy50000, False, bch, bda) -> new_compare114(yvy49000, yvy50000, new_ltEs14(yvy49000, yvy50000, bch, bda), bch, bda) 47.49/23.27 new_lt20(yvy49001, yvy50001, ty_Ordering) -> new_lt17(yvy49001, yvy50001) 47.49/23.27 new_esEs30(yvy20, yvy15, app(app(ty_@2, dde), ddf)) -> new_esEs4(yvy20, yvy15, dde, ddf) 47.49/23.27 new_compare(:(yvy49000, yvy49001), [], bf) -> GT 47.49/23.27 new_ltEs20(yvy49002, yvy50002, app(app(ty_@2, dbg), dbh)) -> new_ltEs11(yvy49002, yvy50002, dbg, dbh) 47.49/23.27 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 47.49/23.27 new_ltEs14(Right(yvy49000), Left(yvy50000), hd, ga) -> False 47.49/23.27 new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Ratio, hc), ga) -> new_ltEs17(yvy49000, yvy50000, hc) 47.49/23.27 new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT 47.49/23.27 new_lt20(yvy49001, yvy50001, app(ty_Ratio, dbe)) -> new_lt18(yvy49001, yvy50001, dbe) 47.49/23.27 new_compare(:(yvy49000, yvy49001), :(yvy50000, yvy50001), bf) -> new_primCompAux0(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, bf), bf) 47.49/23.27 new_compare26(yvy49000, yvy50000, True, bch, bda) -> EQ 47.49/23.27 new_esEs8(:(yvy4000, yvy4001), :(yvy3000, yvy3001), ee) -> new_asAs(new_esEs9(yvy4000, yvy3000, ee), new_esEs8(yvy4001, yvy3001, ee)) 47.49/23.27 new_compare27(yvy49000, yvy50000, False, bd, be) -> new_compare10(yvy49000, yvy50000, new_ltEs11(yvy49000, yvy50000, bd, be), bd, be) 47.49/23.27 new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) 47.49/23.27 new_esEs30(yvy20, yvy15, ty_Float) -> new_esEs13(yvy20, yvy15) 47.49/23.27 new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.27 new_ltEs4(Nothing, Nothing, db) -> True 47.49/23.27 new_ltEs4(Just(yvy49000), Nothing, db) -> False 47.49/23.27 new_lt8(yvy49000, yvy50000, app(app(ty_@2, bd), be)) -> new_lt4(yvy49000, yvy50000, bd, be) 47.49/23.27 new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat1(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) 47.49/23.27 new_compare113(yvy49000, yvy50000, False) -> GT 47.49/23.27 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Int) -> new_ltEs7(yvy49000, yvy50000) 47.49/23.27 new_ltEs15(EQ, LT) -> False 47.49/23.27 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.27 new_esEs28(yvy49000, yvy50000, app(app(ty_Either, daa), dab)) -> new_esEs7(yvy49000, yvy50000, daa, dab) 47.49/23.27 new_lt19(yvy49000, yvy50000, app(app(ty_@2, chc), chd)) -> new_lt4(yvy49000, yvy50000, chc, chd) 47.49/23.27 new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.27 new_ltEs20(yvy49002, yvy50002, app(app(ty_Either, dce), dcf)) -> new_ltEs14(yvy49002, yvy50002, dce, dcf) 47.49/23.27 new_esEs28(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) 47.49/23.27 new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Maybe, ea)) -> new_ltEs4(yvy49000, yvy50000, ea) 47.49/23.27 new_ltEs19(yvy49001, yvy50001, ty_Ordering) -> new_ltEs15(yvy49001, yvy50001) 47.49/23.27 new_ltEs18(yvy4900, yvy5000, ty_Float) -> new_ltEs5(yvy4900, yvy5000) 47.49/23.27 new_lt9(yvy49000, yvy50000) -> new_esEs12(new_compare6(yvy49000, yvy50000), LT) 47.49/23.27 new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False 47.49/23.27 new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False 47.49/23.27 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(ty_Ratio, baf)) -> new_ltEs17(yvy49000, yvy50000, baf) 47.49/23.27 new_ltEs15(GT, LT) -> False 47.49/23.27 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.27 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.27 new_lt19(yvy49000, yvy50000, app(ty_Ratio, dac)) -> new_lt18(yvy49000, yvy50000, dac) 47.49/23.27 new_esEs24(yvy4000, yvy3000, app(ty_Ratio, cch)) -> new_esEs15(yvy4000, yvy3000, cch) 47.49/23.27 new_esEs24(yvy4000, yvy3000, app(app(ty_@2, ccf), ccg)) -> new_esEs4(yvy4000, yvy3000, ccf, ccg) 47.49/23.27 new_ltEs13(True, True) -> True 47.49/23.27 new_compare29(yvy49000, yvy50000, False) -> new_compare113(yvy49000, yvy50000, new_ltEs15(yvy49000, yvy50000)) 47.49/23.27 new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) 47.49/23.27 new_lt15(yvy49000, yvy50000, bbh) -> new_esEs12(new_compare15(yvy49000, yvy50000, bbh), LT) 47.49/23.27 new_ltEs20(yvy49002, yvy50002, ty_Integer) -> new_ltEs10(yvy49002, yvy50002) 47.49/23.27 new_ltEs19(yvy49001, yvy50001, app(app(ty_@2, bea), beb)) -> new_ltEs11(yvy49001, yvy50001, bea, beb) 47.49/23.27 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Bool) -> new_ltEs13(yvy49000, yvy50000) 47.49/23.27 new_not(True) -> False 47.49/23.27 new_esEs28(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) 47.49/23.27 new_esEs28(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) 47.49/23.27 new_ltEs19(yvy49001, yvy50001, app(ty_Ratio, bfa)) -> new_ltEs17(yvy49001, yvy50001, bfa) 47.49/23.27 new_primCompAux00(yvy225, LT) -> LT 47.49/23.27 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.27 new_primCmpNat0(Zero, Zero) -> EQ 47.49/23.27 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Ordering, bbg) -> new_esEs12(yvy4000, yvy3000) 47.49/23.27 new_esEs28(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) 47.49/23.27 new_lt20(yvy49001, yvy50001, ty_Bool) -> new_lt14(yvy49001, yvy50001) 47.49/23.27 new_esEs27(yvy49001, yvy50001, ty_Bool) -> new_esEs11(yvy49001, yvy50001) 47.49/23.27 new_ltEs19(yvy49001, yvy50001, ty_Integer) -> new_ltEs10(yvy49001, yvy50001) 47.49/23.27 new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.49/23.27 new_esEs27(yvy49001, yvy50001, app(ty_[], dad)) -> new_esEs8(yvy49001, yvy50001, dad) 47.49/23.27 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.27 new_esEs27(yvy49001, yvy50001, ty_Char) -> new_esEs17(yvy49001, yvy50001) 47.49/23.27 new_esEs30(yvy20, yvy15, app(ty_Ratio, ddg)) -> new_esEs15(yvy20, yvy15, ddg) 47.49/23.27 new_esEs12(LT, LT) -> True 47.49/23.27 new_esEs21(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) 47.49/23.27 new_primEqNat0(Succ(yvy40000), Zero) -> False 47.49/23.27 new_primEqNat0(Zero, Succ(yvy30000)) -> False 47.49/23.27 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(app(app(ty_@3, hh), baa), bab)) -> new_ltEs12(yvy49000, yvy50000, hh, baa, bab) 47.49/23.27 new_esEs14(@0, @0) -> True 47.49/23.27 new_compare8(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) 47.49/23.27 new_esEs31(yvy400, yvy300, app(app(app(ty_@3, bag), bah), bba)) -> new_esEs5(yvy400, yvy300, bag, bah, bba) 47.49/23.27 new_ltEs19(yvy49001, yvy50001, ty_Char) -> new_ltEs6(yvy49001, yvy50001) 47.49/23.27 new_compare10(yvy49000, yvy50000, True, bd, be) -> LT 47.49/23.27 new_ltEs15(GT, EQ) -> False 47.49/23.27 new_lt20(yvy49001, yvy50001, app(app(app(ty_@3, dag), dah), dba)) -> new_lt13(yvy49001, yvy50001, dag, dah, dba) 47.49/23.27 new_primCompAux00(yvy225, GT) -> GT 47.49/23.27 new_compare110(yvy49000, yvy50000, True) -> LT 47.49/23.27 new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, cef), ceg), ceh)) -> new_esEs5(yvy4001, yvy3001, cef, ceg, ceh) 47.49/23.27 new_compare16(yvy49000, yvy50000, bch, bda) -> new_compare26(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, bch, bda), bch, bda) 47.49/23.27 new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.27 new_esEs27(yvy49001, yvy50001, ty_Ordering) -> new_esEs12(yvy49001, yvy50001) 47.49/23.27 new_lt19(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) 47.49/23.27 new_ltEs20(yvy49002, yvy50002, ty_Bool) -> new_ltEs13(yvy49002, yvy50002) 47.49/23.27 new_esEs22(yvy4002, yvy3002, ty_Int) -> new_esEs16(yvy4002, yvy3002) 47.49/23.27 new_ltEs18(yvy4900, yvy5000, ty_Double) -> new_ltEs16(yvy4900, yvy5000) 47.49/23.27 new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT 47.49/23.27 new_esEs27(yvy49001, yvy50001, ty_Int) -> new_esEs16(yvy49001, yvy50001) 47.49/23.27 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, app(ty_Ratio, bhb)) -> new_esEs15(yvy4000, yvy3000, bhb) 47.49/23.27 new_esEs22(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) 47.49/23.27 new_compare12(yvy49000, yvy50000, bd, be) -> new_compare27(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, bd, be), bd, be) 47.49/23.27 new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_esEs5(yvy4000, yvy3000, ccb, ccc, ccd) 47.49/23.27 new_lt19(yvy49000, yvy50000, app(app(app(ty_@3, che), chf), chg)) -> new_lt13(yvy49000, yvy50000, che, chf, chg) 47.49/23.27 new_ltEs20(yvy49002, yvy50002, app(app(app(ty_@3, dca), dcb), dcc)) -> new_ltEs12(yvy49002, yvy50002, dca, dcb, dcc) 47.49/23.27 new_esEs30(yvy20, yvy15, app(app(app(ty_@3, dda), ddb), ddc)) -> new_esEs5(yvy20, yvy15, dda, ddb, ddc) 47.49/23.27 new_esEs30(yvy20, yvy15, ty_Double) -> new_esEs18(yvy20, yvy15) 47.49/23.27 new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bag, bah, bba) -> new_asAs(new_esEs24(yvy4000, yvy3000, bag), new_asAs(new_esEs23(yvy4001, yvy3001, bah), new_esEs22(yvy4002, yvy3002, bba))) 47.49/23.27 new_compare5(yvy49000, yvy50000, ty_Int) -> new_compare8(yvy49000, yvy50000) 47.49/23.27 new_compare32(yvy400, h) -> new_compare25(Just(yvy400), Nothing, False, h) 47.49/23.27 new_ltEs19(yvy49001, yvy50001, ty_Bool) -> new_ltEs13(yvy49001, yvy50001) 47.49/23.27 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, app(app(app(ty_@3, bgd), bge), bgf)) -> new_esEs5(yvy4000, yvy3000, bgd, bge, bgf) 47.49/23.27 new_ltEs18(yvy4900, yvy5000, ty_Integer) -> new_ltEs10(yvy4900, yvy5000) 47.49/23.27 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.27 new_esEs26(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.27 new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.27 new_esEs7(Left(yvy4000), Left(yvy3000), ty_@0, bbg) -> new_esEs14(yvy4000, yvy3000) 47.49/23.27 new_primCmpNat0(Zero, Succ(yvy5000)) -> LT 47.49/23.27 new_compare5(yvy49000, yvy50000, app(ty_Ratio, da)) -> new_compare19(yvy49000, yvy50000, da) 47.49/23.27 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.27 new_esEs26(yvy4000, yvy3000, app(ty_[], cha)) -> new_esEs8(yvy4000, yvy3000, cha) 47.49/23.27 new_esEs12(EQ, GT) -> False 47.49/23.27 new_esEs12(GT, EQ) -> False 47.49/23.27 new_lt8(yvy49000, yvy50000, app(ty_Ratio, bdg)) -> new_lt18(yvy49000, yvy50000, bdg) 47.49/23.27 new_ltEs19(yvy49001, yvy50001, app(app(app(ty_@3, bec), bed), bee)) -> new_ltEs12(yvy49001, yvy50001, bec, bed, bee) 47.49/23.27 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) 47.49/23.27 new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.27 new_lt8(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) 47.49/23.27 new_esEs21(yvy49000, yvy50000, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs5(yvy49000, yvy50000, bdb, bdc, bdd) 47.49/23.27 new_lt19(yvy49000, yvy50000, app(ty_[], chb)) -> new_lt12(yvy49000, yvy50000, chb) 47.49/23.27 new_primCmpNat0(Succ(yvy4900), Zero) -> GT 47.49/23.27 new_pePe(False, yvy220) -> yvy220 47.49/23.27 new_esEs27(yvy49001, yvy50001, ty_@0) -> new_esEs14(yvy49001, yvy50001) 47.49/23.27 new_esEs31(yvy400, yvy300, ty_Float) -> new_esEs13(yvy400, yvy300) 47.49/23.27 new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Maybe, gh), ga) -> new_ltEs4(yvy49000, yvy50000, gh) 47.49/23.27 new_esEs11(False, True) -> False 47.49/23.27 new_esEs11(True, False) -> False 47.49/23.27 new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cec), ced)) -> new_esEs7(yvy4000, yvy3000, cec, ced) 47.49/23.27 new_lt8(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) 47.49/23.27 new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_@2, bff), bfg), bbg) -> new_esEs4(yvy4000, yvy3000, bff, bfg) 47.49/23.27 new_compare114(yvy49000, yvy50000, True, bch, bda) -> LT 47.49/23.27 new_lt8(yvy49000, yvy50000, app(app(ty_Either, bch), bda)) -> new_lt16(yvy49000, yvy50000, bch, bda) 47.49/23.27 new_ltEs18(yvy4900, yvy5000, ty_@0) -> new_ltEs9(yvy4900, yvy5000) 47.49/23.27 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_@0) -> new_ltEs9(yvy49000, yvy50000) 47.49/23.27 new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 47.49/23.27 new_gt2(yvy35, yvy30, bb) -> new_esEs12(new_compare30(yvy35, yvy30, bb), GT) 47.49/23.27 new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) 47.49/23.27 new_ltEs7(yvy4900, yvy5000) -> new_fsEs(new_compare8(yvy4900, yvy5000)) 47.49/23.27 new_ltEs19(yvy49001, yvy50001, ty_Double) -> new_ltEs16(yvy49001, yvy50001) 47.49/23.27 new_esEs22(yvy4002, yvy3002, ty_Bool) -> new_esEs11(yvy4002, yvy3002) 47.49/23.27 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Char) -> new_ltEs6(yvy49000, yvy50000) 47.49/23.27 new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_[], gb), ga) -> new_ltEs8(yvy49000, yvy50000, gb) 47.49/23.27 new_esEs21(yvy49000, yvy50000, app(ty_[], bdf)) -> new_esEs8(yvy49000, yvy50000, bdf) 47.49/23.27 new_esEs22(yvy4002, yvy3002, app(ty_Maybe, caa)) -> new_esEs6(yvy4002, yvy3002, caa) 47.49/23.27 new_esEs21(yvy49000, yvy50000, app(app(ty_@2, bd), be)) -> new_esEs4(yvy49000, yvy50000, bd, be) 47.49/23.27 new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False 47.49/23.27 new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False 47.49/23.27 new_esEs25(yvy4001, yvy3001, app(app(ty_@2, cfb), cfc)) -> new_esEs4(yvy4001, yvy3001, cfb, cfc) 47.49/23.27 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Bool, bbg) -> new_esEs11(yvy4000, yvy3000) 47.49/23.27 new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Ratio, bfh), bbg) -> new_esEs15(yvy4000, yvy3000, bfh) 47.49/23.27 new_ltEs18(yvy4900, yvy5000, ty_Bool) -> new_ltEs13(yvy4900, yvy5000) 47.49/23.27 new_gt0(yvy300, h) -> new_esEs12(new_compare31(yvy300, h), GT) 47.49/23.27 new_ltEs18(yvy4900, yvy5000, app(app(app(ty_@3, bcd), bce), bcf)) -> new_ltEs12(yvy4900, yvy5000, bcd, bce, bcf) 47.49/23.27 new_esEs23(yvy4001, yvy3001, app(app(ty_Either, cbg), cbh)) -> new_esEs7(yvy4001, yvy3001, cbg, cbh) 47.49/23.27 new_esEs21(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) 47.49/23.27 new_esEs31(yvy400, yvy300, ty_Double) -> new_esEs18(yvy400, yvy300) 47.49/23.27 new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 47.49/23.27 new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_@2, gc), gd), ga) -> new_ltEs11(yvy49000, yvy50000, gc, gd) 47.49/23.27 new_esEs31(yvy400, yvy300, ty_@0) -> new_esEs14(yvy400, yvy300) 47.49/23.27 new_ltEs20(yvy49002, yvy50002, ty_Double) -> new_ltEs16(yvy49002, yvy50002) 47.49/23.27 new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.27 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(app(ty_Either, bad), bae)) -> new_ltEs14(yvy49000, yvy50000, bad, bae) 47.49/23.27 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Float, ga) -> new_ltEs5(yvy49000, yvy50000) 47.49/23.27 new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT 47.49/23.27 new_compare114(yvy49000, yvy50000, False, bch, bda) -> GT 47.49/23.27 new_esEs25(yvy4001, yvy3001, app(ty_[], cfg)) -> new_esEs8(yvy4001, yvy3001, cfg) 47.49/23.27 new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.27 new_esEs4(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bbc, bbd) -> new_asAs(new_esEs26(yvy4000, yvy3000, bbc), new_esEs25(yvy4001, yvy3001, bbd)) 47.49/23.27 new_ltEs5(yvy4900, yvy5000) -> new_fsEs(new_compare6(yvy4900, yvy5000)) 47.49/23.27 new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_Either, bga), bgb), bbg) -> new_esEs7(yvy4000, yvy3000, bga, bgb) 47.49/23.27 new_esEs26(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.27 new_esEs9(yvy4000, yvy3000, app(app(ty_@2, fb), fc)) -> new_esEs4(yvy4000, yvy3000, fb, fc) 47.49/23.27 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.27 new_compare25(Just(yvy4900), Nothing, False, bca) -> GT 47.49/23.27 new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) 47.49/23.27 new_compare5(yvy49000, yvy50000, ty_@0) -> new_compare9(yvy49000, yvy50000) 47.49/23.27 new_esEs24(yvy4000, yvy3000, app(ty_Maybe, cce)) -> new_esEs6(yvy4000, yvy3000, cce) 47.49/23.27 new_lt11(yvy205, yvy204) -> new_esEs12(new_compare8(yvy205, yvy204), LT) 47.49/23.27 new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 47.49/23.27 new_lt6(yvy49000, yvy50000) -> new_esEs12(new_compare9(yvy49000, yvy50000), LT) 47.49/23.27 new_primMulNat0(Succ(yvy400100), Zero) -> Zero 47.49/23.27 new_primMulNat0(Zero, Succ(yvy300000)) -> Zero 47.49/23.27 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Double, ga) -> new_ltEs16(yvy49000, yvy50000) 47.49/23.27 new_lt8(yvy49000, yvy50000, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_lt13(yvy49000, yvy50000, bdb, bdc, bdd) 47.49/23.27 new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) 47.49/23.27 new_esEs6(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, cdd), cde), cdf)) -> new_esEs5(yvy4000, yvy3000, cdd, cde, cdf) 47.49/23.27 new_esEs25(yvy4001, yvy3001, app(app(ty_Either, cfe), cff)) -> new_esEs7(yvy4001, yvy3001, cfe, cff) 47.49/23.27 new_compare5(yvy49000, yvy50000, ty_Float) -> new_compare6(yvy49000, yvy50000) 47.49/23.27 new_esEs9(yvy4000, yvy3000, app(ty_[], fh)) -> new_esEs8(yvy4000, yvy3000, fh) 47.49/23.27 new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, cah), cba), cbb)) -> new_esEs5(yvy4001, yvy3001, cah, cba, cbb) 47.49/23.27 new_esEs26(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.27 new_primPlusNat1(Succ(yvy1610), yvy300000) -> Succ(Succ(new_primPlusNat0(yvy1610, yvy300000))) 47.49/23.27 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Int, bbg) -> new_esEs16(yvy4000, yvy3000) 47.49/23.27 new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.27 new_esEs16(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) 47.49/23.27 new_primPlusNat0(Succ(yvy16100), Zero) -> Succ(yvy16100) 47.49/23.27 new_primPlusNat0(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) 47.49/23.27 new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) 47.49/23.27 new_primPlusNat1(Zero, yvy300000) -> Succ(yvy300000) 47.49/23.27 new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Int) -> new_compare8(new_sr(yvy49000, yvy50001), new_sr(yvy50000, yvy49001)) 47.49/23.27 new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.27 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_@0, ga) -> new_ltEs9(yvy49000, yvy50000) 47.49/23.27 new_lt8(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) 47.49/23.27 new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_Either, ha), hb), ga) -> new_ltEs14(yvy49000, yvy50000, ha, hb) 47.49/23.27 new_ltEs20(yvy49002, yvy50002, ty_@0) -> new_ltEs9(yvy49002, yvy50002) 47.49/23.27 new_ltEs18(yvy4900, yvy5000, app(app(ty_@2, bcb), bcc)) -> new_ltEs11(yvy4900, yvy5000, bcb, bcc) 47.49/23.27 new_ltEs9(yvy4900, yvy5000) -> new_fsEs(new_compare9(yvy4900, yvy5000)) 47.49/23.27 new_esEs22(yvy4002, yvy3002, app(ty_Ratio, cad)) -> new_esEs15(yvy4002, yvy3002, cad) 47.49/23.27 new_ltEs19(yvy49001, yvy50001, app(app(ty_Either, beg), beh)) -> new_ltEs14(yvy49001, yvy50001, beg, beh) 47.49/23.27 new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) 47.49/23.27 new_lt8(yvy49000, yvy50000, app(ty_Maybe, bbh)) -> new_lt15(yvy49000, yvy50000, bbh) 47.49/23.27 new_esEs30(yvy20, yvy15, ty_@0) -> new_esEs14(yvy20, yvy15) 47.49/23.27 new_lt20(yvy49001, yvy50001, ty_Char) -> new_lt10(yvy49001, yvy50001) 47.49/23.27 new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.49/23.27 new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.49/23.27 new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fa)) -> new_esEs6(yvy4000, yvy3000, fa) 47.49/23.27 new_esEs23(yvy4001, yvy3001, app(ty_Ratio, cbf)) -> new_esEs15(yvy4001, yvy3001, cbf) 47.49/23.27 new_compare25(Just(yvy4900), Just(yvy5000), False, bca) -> new_compare111(yvy4900, yvy5000, new_ltEs18(yvy4900, yvy5000, bca), bca) 47.49/23.27 new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.49/23.27 new_ltEs20(yvy49002, yvy50002, ty_Float) -> new_ltEs5(yvy49002, yvy50002) 47.49/23.27 new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cdh), cea)) -> new_esEs4(yvy4000, yvy3000, cdh, cea) 47.49/23.27 new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.27 new_fsEs(yvy209) -> new_not(new_esEs12(yvy209, GT)) 47.49/23.27 new_ltEs18(yvy4900, yvy5000, app(app(ty_Either, hd), ga)) -> new_ltEs14(yvy4900, yvy5000, hd, ga) 47.49/23.27 new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Ratio, ceb)) -> new_esEs15(yvy4000, yvy3000, ceb) 47.49/23.27 new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.27 new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) 47.49/23.27 new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_[], cee)) -> new_esEs8(yvy4000, yvy3000, cee) 47.49/23.27 new_compare25(yvy490, yvy500, True, bca) -> EQ 47.49/23.27 new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs5(yvy4000, yvy3000, ef, eg, eh) 47.49/23.27 new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fd)) -> new_esEs15(yvy4000, yvy3000, fd) 47.49/23.27 new_compare([], :(yvy50000, yvy50001), bf) -> LT 47.49/23.27 new_lt20(yvy49001, yvy50001, app(ty_[], dad)) -> new_lt12(yvy49001, yvy50001, dad) 47.49/23.27 new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cdg)) -> new_esEs6(yvy4000, yvy3000, cdg) 47.49/23.27 new_esEs6(Nothing, Just(yvy3000), bbb) -> False 47.49/23.27 new_esEs6(Just(yvy4000), Nothing, bbb) -> False 47.49/23.27 new_esEs23(yvy4001, yvy3001, app(ty_[], cca)) -> new_esEs8(yvy4001, yvy3001, cca) 47.49/23.27 new_ltEs15(EQ, GT) -> True 47.49/23.27 new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.27 new_esEs6(Nothing, Nothing, bbb) -> True 47.49/23.27 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Double) -> new_ltEs16(yvy49000, yvy50000) 47.49/23.27 new_esEs11(False, False) -> True 47.49/23.27 new_esEs24(yvy4000, yvy3000, app(app(ty_Either, cda), cdb)) -> new_esEs7(yvy4000, yvy3000, cda, cdb) 47.49/23.27 new_ltEs18(yvy4900, yvy5000, ty_Ordering) -> new_ltEs15(yvy4900, yvy5000) 47.49/23.27 new_ltEs11(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), bcb, bcc) -> new_pePe(new_lt8(yvy49000, yvy50000, bcb), new_asAs(new_esEs21(yvy49000, yvy50000, bcb), new_ltEs19(yvy49001, yvy50001, bcc))) 47.49/23.27 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Integer) -> new_ltEs10(yvy49000, yvy50000) 47.49/23.27 new_esEs21(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) 47.49/23.27 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.27 new_esEs30(yvy20, yvy15, ty_Char) -> new_esEs17(yvy20, yvy15) 47.49/23.27 new_ltEs14(Left(yvy49000), Right(yvy50000), hd, ga) -> True 47.49/23.27 new_ltEs19(yvy49001, yvy50001, ty_Float) -> new_ltEs5(yvy49001, yvy50001) 47.49/23.27 new_esEs23(yvy4001, yvy3001, app(app(ty_@2, cbd), cbe)) -> new_esEs4(yvy4001, yvy3001, cbd, cbe) 47.49/23.27 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.27 new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.49/23.27 new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.49/23.27 new_esEs26(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.27 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Ordering, ga) -> new_ltEs15(yvy49000, yvy50000) 47.49/23.27 new_ltEs6(yvy4900, yvy5000) -> new_fsEs(new_compare7(yvy4900, yvy5000)) 47.49/23.27 new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.27 new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 47.49/23.27 new_esEs8(:(yvy4000, yvy4001), [], ee) -> False 47.49/23.27 new_esEs8([], :(yvy3000, yvy3001), ee) -> False 47.49/23.27 new_esEs26(yvy4000, yvy3000, app(app(ty_Either, cgg), cgh)) -> new_esEs7(yvy4000, yvy3000, cgg, cgh) 47.49/23.27 new_lt19(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) 47.49/23.27 new_lt17(yvy49000, yvy50000) -> new_esEs12(new_compare17(yvy49000, yvy50000), LT) 47.49/23.27 new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Integer) -> new_compare11(new_sr0(yvy49000, yvy50001), new_sr0(yvy50000, yvy49001)) 47.49/23.27 new_esEs22(yvy4002, yvy3002, app(app(ty_@2, cab), cac)) -> new_esEs4(yvy4002, yvy3002, cab, cac) 47.49/23.27 new_esEs31(yvy400, yvy300, app(ty_Maybe, bbb)) -> new_esEs6(yvy400, yvy300, bbb) 47.49/23.27 new_esEs22(yvy4002, yvy3002, ty_Double) -> new_esEs18(yvy4002, yvy3002) 47.49/23.27 new_esEs26(yvy4000, yvy3000, app(ty_Ratio, cgf)) -> new_esEs15(yvy4000, yvy3000, cgf) 47.49/23.27 new_esEs31(yvy400, yvy300, ty_Bool) -> new_esEs11(yvy400, yvy300) 47.49/23.27 new_compare5(yvy49000, yvy50000, app(ty_Maybe, ce)) -> new_compare15(yvy49000, yvy50000, ce) 47.49/23.27 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Integer, bbg) -> new_esEs10(yvy4000, yvy3000) 47.49/23.27 new_ltEs19(yvy49001, yvy50001, ty_@0) -> new_ltEs9(yvy49001, yvy50001) 47.49/23.27 new_esEs22(yvy4002, yvy3002, app(app(app(ty_@3, bhf), bhg), bhh)) -> new_esEs5(yvy4002, yvy3002, bhf, bhg, bhh) 47.49/23.27 new_lt20(yvy49001, yvy50001, ty_@0) -> new_lt6(yvy49001, yvy50001) 47.49/23.27 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, app(app(ty_@2, bgh), bha)) -> new_esEs4(yvy4000, yvy3000, bgh, bha) 47.49/23.27 new_gt1(yvy400, h) -> new_esEs12(new_compare32(yvy400, h), GT) 47.49/23.27 new_sr0(Integer(yvy490000), Integer(yvy500010)) -> Integer(new_primMulInt(yvy490000, yvy500010)) 47.49/23.27 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Bool, ga) -> new_ltEs13(yvy49000, yvy50000) 47.49/23.27 new_esEs18(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 47.49/23.27 new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.27 new_esEs28(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) 47.49/23.27 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, app(ty_[], bhe)) -> new_esEs8(yvy4000, yvy3000, bhe) 47.49/23.27 new_ltEs15(LT, GT) -> True 47.49/23.27 new_lt19(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) 47.49/23.27 new_esEs30(yvy20, yvy15, app(ty_[], deb)) -> new_esEs8(yvy20, yvy15, deb) 47.49/23.27 new_compare33(h) -> new_compare25(Nothing, Nothing, True, h) 47.49/23.27 new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) 47.49/23.27 new_esEs12(GT, GT) -> True 47.49/23.27 new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) 47.49/23.27 new_esEs24(yvy4000, yvy3000, app(ty_[], cdc)) -> new_esEs8(yvy4000, yvy3000, cdc) 47.49/23.27 new_asAs(True, yvy201) -> yvy201 47.49/23.27 new_esEs26(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.27 new_esEs21(yvy49000, yvy50000, app(ty_Maybe, bbh)) -> new_esEs6(yvy49000, yvy50000, bbh) 47.49/23.27 new_esEs10(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) 47.49/23.27 new_compare10(yvy49000, yvy50000, False, bd, be) -> GT 47.49/23.27 new_lt8(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) 47.49/23.27 new_lt8(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) 47.49/23.27 new_compare113(yvy49000, yvy50000, True) -> LT 47.49/23.27 new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.27 new_ltEs16(yvy4900, yvy5000) -> new_fsEs(new_compare18(yvy4900, yvy5000)) 47.49/23.27 new_lt20(yvy49001, yvy50001, ty_Float) -> new_lt9(yvy49001, yvy50001) 47.49/23.27 new_esEs31(yvy400, yvy300, ty_Char) -> new_esEs17(yvy400, yvy300) 47.49/23.27 new_ltEs4(Nothing, Just(yvy50000), db) -> True 47.49/23.27 new_esEs21(yvy49000, yvy50000, app(ty_Ratio, bdg)) -> new_esEs15(yvy49000, yvy50000, bdg) 47.49/23.27 new_ltEs18(yvy4900, yvy5000, app(ty_Maybe, db)) -> new_ltEs4(yvy4900, yvy5000, db) 47.49/23.27 new_lt8(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) 47.49/23.27 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Float, bbg) -> new_esEs13(yvy4000, yvy3000) 47.49/23.27 new_ltEs8(yvy4900, yvy5000, bf) -> new_fsEs(new_compare(yvy4900, yvy5000, bf)) 47.49/23.27 new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) 47.49/23.27 new_ltEs18(yvy4900, yvy5000, app(ty_[], bf)) -> new_ltEs8(yvy4900, yvy5000, bf) 47.49/23.27 new_compare110(yvy49000, yvy50000, False) -> GT 47.49/23.27 new_primCompAux00(yvy225, EQ) -> yvy225 47.49/23.27 new_lt19(yvy49000, yvy50000, app(ty_Maybe, chh)) -> new_lt15(yvy49000, yvy50000, chh) 47.49/23.27 new_esEs12(EQ, EQ) -> True 47.49/23.27 new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) 47.49/23.27 new_lt19(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) 47.49/23.27 new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) 47.49/23.27 new_esEs21(yvy49000, yvy50000, app(app(ty_Either, bch), bda)) -> new_esEs7(yvy49000, yvy50000, bch, bda) 47.49/23.27 new_primMulNat0(Zero, Zero) -> Zero 47.49/23.27 new_compare24(yvy49000, yvy50000, False) -> new_compare110(yvy49000, yvy50000, new_ltEs13(yvy49000, yvy50000)) 47.49/23.27 new_compare5(yvy49000, yvy50000, ty_Integer) -> new_compare11(yvy49000, yvy50000) 47.49/23.27 new_esEs22(yvy4002, yvy3002, ty_Integer) -> new_esEs10(yvy4002, yvy3002) 47.49/23.27 new_esEs21(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) 47.49/23.27 new_lt19(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) 47.49/23.27 new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.27 new_ltEs12(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), bcd, bce, bcf) -> new_pePe(new_lt19(yvy49000, yvy50000, bcd), new_asAs(new_esEs28(yvy49000, yvy50000, bcd), new_pePe(new_lt20(yvy49001, yvy50001, bce), new_asAs(new_esEs27(yvy49001, yvy50001, bce), new_ltEs20(yvy49002, yvy50002, bcf))))) 47.49/23.27 new_ltEs19(yvy49001, yvy50001, app(ty_[], bdh)) -> new_ltEs8(yvy49001, yvy50001, bdh) 47.49/23.27 new_compare5(yvy49000, yvy50000, ty_Double) -> new_compare18(yvy49000, yvy50000) 47.49/23.27 new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_@2, dd), de)) -> new_ltEs11(yvy49000, yvy50000, dd, de) 47.49/23.27 new_compare11(Integer(yvy49000), Integer(yvy50000)) -> new_primCmpInt(yvy49000, yvy50000) 47.49/23.27 new_compare9(@0, @0) -> EQ 47.49/23.27 new_esEs22(yvy4002, yvy3002, app(app(ty_Either, cae), caf)) -> new_esEs7(yvy4002, yvy3002, cae, caf) 47.49/23.27 new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.27 new_compare28(yvy49000, yvy50000, True, bdb, bdc, bdd) -> EQ 47.49/23.27 new_esEs27(yvy49001, yvy50001, ty_Float) -> new_esEs13(yvy49001, yvy50001) 47.49/23.27 new_esEs26(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.27 new_ltEs13(False, True) -> True 47.49/23.27 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.27 new_ltEs13(False, False) -> True 47.49/23.27 new_esEs9(yvy4000, yvy3000, app(app(ty_Either, ff), fg)) -> new_esEs7(yvy4000, yvy3000, ff, fg) 47.49/23.27 new_esEs7(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, bfb), bfc), bfd), bbg) -> new_esEs5(yvy4000, yvy3000, bfb, bfc, bfd) 47.49/23.27 new_ltEs15(EQ, EQ) -> True 47.49/23.27 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) 47.49/23.27 new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Maybe, bfe), bbg) -> new_esEs6(yvy4000, yvy3000, bfe) 47.49/23.27 new_compare30(yvy20, yvy15, dch) -> new_compare25(Just(yvy20), Just(yvy15), new_esEs30(yvy20, yvy15, dch), dch) 47.49/23.27 new_esEs26(yvy4000, yvy3000, app(ty_Maybe, cgc)) -> new_esEs6(yvy4000, yvy3000, cgc) 47.49/23.27 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.27 new_esEs26(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.27 new_lt12(yvy49000, yvy50000, bdf) -> new_esEs12(new_compare(yvy49000, yvy50000, bdf), LT) 47.49/23.27 new_lt10(yvy49000, yvy50000) -> new_esEs12(new_compare7(yvy49000, yvy50000), LT) 47.49/23.27 new_lt19(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) 47.49/23.27 new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.27 new_compare31(yvy300, h) -> new_compare25(Nothing, Just(yvy300), False, h) 47.49/23.27 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Char, bbg) -> new_esEs17(yvy4000, yvy3000) 47.49/23.27 new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.27 new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_[], bgc), bbg) -> new_esEs8(yvy4000, yvy3000, bgc) 47.49/23.27 new_ltEs20(yvy49002, yvy50002, app(ty_[], dbf)) -> new_ltEs8(yvy49002, yvy50002, dbf) 47.49/23.27 new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_Either, eb), ec)) -> new_ltEs14(yvy49000, yvy50000, eb, ec) 47.49/23.27 new_compare17(yvy49000, yvy50000) -> new_compare29(yvy49000, yvy50000, new_esEs12(yvy49000, yvy50000)) 47.49/23.27 new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False 47.49/23.27 new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False 47.49/23.27 new_esEs21(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) 47.49/23.27 new_esEs25(yvy4001, yvy3001, app(ty_Maybe, cfa)) -> new_esEs6(yvy4001, yvy3001, cfa) 47.49/23.27 new_compare([], [], bf) -> EQ 47.49/23.27 new_ltEs15(LT, EQ) -> True 47.49/23.27 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Float) -> new_ltEs5(yvy49000, yvy50000) 47.49/23.27 new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 47.49/23.27 new_ltEs18(yvy4900, yvy5000, ty_Char) -> new_ltEs6(yvy4900, yvy5000) 47.49/23.27 new_ltEs18(yvy4900, yvy5000, app(ty_Ratio, bcg)) -> new_ltEs17(yvy4900, yvy5000, bcg) 47.49/23.27 new_lt20(yvy49001, yvy50001, ty_Double) -> new_lt7(yvy49001, yvy50001) 47.49/23.27 new_esEs26(yvy4000, yvy3000, app(app(ty_@2, cgd), cge)) -> new_esEs4(yvy4000, yvy3000, cgd, cge) 47.49/23.27 new_compare24(yvy49000, yvy50000, True) -> EQ 47.49/23.27 new_lt8(yvy49000, yvy50000, app(ty_[], bdf)) -> new_lt12(yvy49000, yvy50000, bdf) 47.49/23.27 new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(app(ty_@3, ge), gf), gg), ga) -> new_ltEs12(yvy49000, yvy50000, ge, gf, gg) 47.49/23.27 new_esEs21(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) 47.49/23.27 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, app(app(ty_Either, bhc), bhd)) -> new_esEs7(yvy4000, yvy3000, bhc, bhd) 47.49/23.27 new_esEs11(True, True) -> True 47.49/23.27 new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False 47.49/23.27 new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False 47.49/23.27 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(ty_[], he)) -> new_ltEs8(yvy49000, yvy50000, he) 47.49/23.27 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, app(ty_Maybe, bgg)) -> new_esEs6(yvy4000, yvy3000, bgg) 47.49/23.27 new_esEs31(yvy400, yvy300, app(ty_Ratio, bbe)) -> new_esEs15(yvy400, yvy300, bbe) 47.49/23.27 new_esEs25(yvy4001, yvy3001, app(ty_Ratio, cfd)) -> new_esEs15(yvy4001, yvy3001, cfd) 47.49/23.27 new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) 47.49/23.27 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Int) -> new_ltEs7(yvy49000, yvy50000) 47.49/23.27 new_esEs15(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bbe) -> new_asAs(new_esEs20(yvy4000, yvy3000, bbe), new_esEs19(yvy4001, yvy3001, bbe)) 47.49/23.27 new_compare28(yvy49000, yvy50000, False, bdb, bdc, bdd) -> new_compare112(yvy49000, yvy50000, new_ltEs12(yvy49000, yvy50000, bdb, bdc, bdd), bdb, bdc, bdd) 47.49/23.27 new_esEs22(yvy4002, yvy3002, ty_Float) -> new_esEs13(yvy4002, yvy3002) 47.49/23.27 new_esEs27(yvy49001, yvy50001, ty_Integer) -> new_esEs10(yvy49001, yvy50001) 47.49/23.27 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(app(ty_@2, hf), hg)) -> new_ltEs11(yvy49000, yvy50000, hf, hg) 47.49/23.27 new_gt(h) -> new_esEs12(new_compare33(h), GT) 47.49/23.27 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 47.49/23.27 new_ltEs15(GT, GT) -> True 47.49/23.27 new_compare111(yvy198, yvy199, False, bde) -> GT 47.49/23.27 new_esEs30(yvy20, yvy15, ty_Bool) -> new_esEs11(yvy20, yvy15) 47.49/23.27 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(ty_Maybe, bac)) -> new_ltEs4(yvy49000, yvy50000, bac) 47.49/23.27 new_esEs30(yvy20, yvy15, app(ty_Maybe, ddd)) -> new_esEs6(yvy20, yvy15, ddd) 47.49/23.27 new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 47.49/23.27 new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) 47.49/23.27 new_esEs31(yvy400, yvy300, app(app(ty_@2, bbc), bbd)) -> new_esEs4(yvy400, yvy300, bbc, bbd) 47.49/23.27 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Int, ga) -> new_ltEs7(yvy49000, yvy50000) 47.49/23.27 new_not(False) -> True 47.49/23.27 new_compare5(yvy49000, yvy50000, app(app(ty_Either, cf), cg)) -> new_compare16(yvy49000, yvy50000, cf, cg) 47.49/23.27 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.27 new_compare112(yvy49000, yvy50000, True, bdb, bdc, bdd) -> LT 47.49/23.27 new_esEs28(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) 47.49/23.27 new_compare5(yvy49000, yvy50000, ty_Bool) -> new_compare14(yvy49000, yvy50000) 47.49/23.27 new_lt13(yvy49000, yvy50000, bdb, bdc, bdd) -> new_esEs12(new_compare13(yvy49000, yvy50000, bdb, bdc, bdd), LT) 47.49/23.27 new_primCompAux0(yvy49000, yvy50000, yvy221, bf) -> new_primCompAux00(yvy221, new_compare5(yvy49000, yvy50000, bf)) 47.49/23.27 new_esEs27(yvy49001, yvy50001, app(app(ty_Either, dbc), dbd)) -> new_esEs7(yvy49001, yvy50001, dbc, dbd) 47.49/23.27 new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 47.49/23.27 new_esEs22(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) 47.49/23.27 new_lt7(yvy49000, yvy50000) -> new_esEs12(new_compare18(yvy49000, yvy50000), LT) 47.49/23.27 new_esEs28(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) 47.49/23.27 new_esEs12(LT, EQ) -> False 47.49/23.27 new_esEs12(EQ, LT) -> False 47.49/23.27 new_esEs21(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) 47.49/23.27 new_compare29(yvy49000, yvy50000, True) -> EQ 47.49/23.27 new_primPlusNat0(Succ(yvy16100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat0(yvy16100, yvy3000000))) 47.49/23.27 new_lt4(yvy49000, yvy50000, bd, be) -> new_esEs12(new_compare12(yvy49000, yvy50000, bd, be), LT) 47.49/23.27 new_compare5(yvy49000, yvy50000, app(app(app(ty_@3, cb), cc), cd)) -> new_compare13(yvy49000, yvy50000, cb, cc, cd) 47.49/23.27 new_esEs27(yvy49001, yvy50001, app(ty_Ratio, dbe)) -> new_esEs15(yvy49001, yvy50001, dbe) 47.49/23.27 new_lt19(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) 47.49/23.27 new_esEs31(yvy400, yvy300, ty_Integer) -> new_esEs10(yvy400, yvy300) 47.49/23.27 new_esEs28(yvy49000, yvy50000, app(app(app(ty_@3, che), chf), chg)) -> new_esEs5(yvy49000, yvy50000, che, chf, chg) 47.49/23.27 new_compare112(yvy49000, yvy50000, False, bdb, bdc, bdd) -> GT 47.49/23.27 new_compare27(yvy49000, yvy50000, True, bd, be) -> EQ 47.49/23.27 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.27 new_compare15(yvy49000, yvy50000, bbh) -> new_compare25(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, bbh), bbh) 47.49/23.27 new_esEs21(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) 47.49/23.27 new_esEs12(LT, GT) -> False 47.49/23.27 new_esEs12(GT, LT) -> False 47.49/23.27 new_lt20(yvy49001, yvy50001, ty_Int) -> new_lt11(yvy49001, yvy50001) 47.49/23.27 new_esEs31(yvy400, yvy300, app(ty_[], ee)) -> new_esEs8(yvy400, yvy300, ee) 47.49/23.27 new_ltEs19(yvy49001, yvy50001, ty_Int) -> new_ltEs7(yvy49001, yvy50001) 47.49/23.27 new_ltEs20(yvy49002, yvy50002, app(ty_Ratio, dcg)) -> new_ltEs17(yvy49002, yvy50002, dcg) 47.49/23.27 new_esEs8([], [], ee) -> True 47.49/23.27 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Char, ga) -> new_ltEs6(yvy49000, yvy50000) 47.49/23.27 new_ltEs20(yvy49002, yvy50002, ty_Char) -> new_ltEs6(yvy49002, yvy50002) 47.49/23.27 new_compare25(Nothing, Nothing, False, bca) -> LT 47.49/23.27 new_lt20(yvy49001, yvy50001, app(ty_Maybe, dbb)) -> new_lt15(yvy49001, yvy50001, dbb) 47.49/23.27 new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Ratio, ed)) -> new_ltEs17(yvy49000, yvy50000, ed) 47.49/23.27 new_lt8(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) 47.49/23.27 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Float) -> new_ltEs5(yvy49000, yvy50000) 47.49/23.27 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 47.49/23.27 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 47.49/23.27 new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) 47.49/23.27 new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.49/23.27 new_esEs31(yvy400, yvy300, app(app(ty_Either, bbf), bbg)) -> new_esEs7(yvy400, yvy300, bbf, bbg) 47.49/23.27 new_lt20(yvy49001, yvy50001, app(app(ty_@2, dae), daf)) -> new_lt4(yvy49001, yvy50001, dae, daf) 47.49/23.27 new_esEs28(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) 47.49/23.27 new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.27 new_compare111(yvy198, yvy199, True, bde) -> LT 47.49/23.27 new_ltEs13(True, False) -> False 47.49/23.27 new_ltEs20(yvy49002, yvy50002, ty_Int) -> new_ltEs7(yvy49002, yvy50002) 47.49/23.27 new_esEs27(yvy49001, yvy50001, app(app(ty_@2, dae), daf)) -> new_esEs4(yvy49001, yvy50001, dae, daf) 47.49/23.27 new_ltEs15(LT, LT) -> True 47.49/23.27 new_esEs31(yvy400, yvy300, ty_Int) -> new_esEs16(yvy400, yvy300) 47.49/23.27 new_esEs13(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 47.49/23.27 new_esEs22(yvy4002, yvy3002, ty_@0) -> new_esEs14(yvy4002, yvy3002) 47.49/23.27 new_esEs28(yvy49000, yvy50000, app(ty_Maybe, chh)) -> new_esEs6(yvy49000, yvy50000, chh) 47.49/23.27 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 47.49/23.27 new_esEs26(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.27 new_esEs28(yvy49000, yvy50000, app(app(ty_@2, chc), chd)) -> new_esEs4(yvy49000, yvy50000, chc, chd) 47.49/23.27 new_compare7(Char(yvy49000), Char(yvy50000)) -> new_primCmpNat0(yvy49000, yvy50000) 47.49/23.27 new_lt5(yvy49000, yvy50000) -> new_esEs12(new_compare11(yvy49000, yvy50000), LT) 47.49/23.27 new_lt20(yvy49001, yvy50001, app(app(ty_Either, dbc), dbd)) -> new_lt16(yvy49001, yvy50001, dbc, dbd) 47.49/23.27 new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) 47.49/23.27 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Char) -> new_ltEs6(yvy49000, yvy50000) 47.49/23.27 new_esEs26(yvy4000, yvy3000, app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs5(yvy4000, yvy3000, cfh, cga, cgb) 47.49/23.27 new_lt20(yvy49001, yvy50001, ty_Integer) -> new_lt5(yvy49001, yvy50001) 47.49/23.27 new_esEs30(yvy20, yvy15, ty_Int) -> new_esEs16(yvy20, yvy15) 47.49/23.27 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Double) -> new_ltEs16(yvy49000, yvy50000) 47.49/23.27 new_ltEs10(yvy4900, yvy5000) -> new_fsEs(new_compare11(yvy4900, yvy5000)) 47.49/23.27 new_lt14(yvy49000, yvy50000) -> new_esEs12(new_compare14(yvy49000, yvy50000), LT) 47.49/23.27 new_esEs31(yvy400, yvy300, ty_Ordering) -> new_esEs12(yvy400, yvy300) 47.49/23.27 new_esEs27(yvy49001, yvy50001, app(ty_Maybe, dbb)) -> new_esEs6(yvy49001, yvy50001, dbb) 47.49/23.27 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_@0) -> new_ltEs9(yvy49000, yvy50000) 47.49/23.27 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Double, bbg) -> new_esEs18(yvy4000, yvy3000) 47.49/23.27 new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_[], dc)) -> new_ltEs8(yvy49000, yvy50000, dc) 47.49/23.27 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Integer) -> new_ltEs10(yvy49000, yvy50000) 47.49/23.27 new_esEs27(yvy49001, yvy50001, ty_Double) -> new_esEs18(yvy49001, yvy50001) 47.49/23.27 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 47.49/23.27 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 47.49/23.27 new_compare25(Nothing, Just(yvy5000), False, bca) -> LT 47.49/23.27 new_compare5(yvy49000, yvy50000, app(app(ty_@2, bh), ca)) -> new_compare12(yvy49000, yvy50000, bh, ca) 47.49/23.27 new_esEs28(yvy49000, yvy50000, app(ty_[], chb)) -> new_esEs8(yvy49000, yvy50000, chb) 47.49/23.27 new_lt19(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) 47.49/23.27 new_lt18(yvy49000, yvy50000, bdg) -> new_esEs12(new_compare19(yvy49000, yvy50000, bdg), LT) 47.49/23.27 new_compare5(yvy49000, yvy50000, ty_Char) -> new_compare7(yvy49000, yvy50000) 47.49/23.27 new_ltEs19(yvy49001, yvy50001, app(ty_Maybe, bef)) -> new_ltEs4(yvy49001, yvy50001, bef) 47.49/23.27 new_compare5(yvy49000, yvy50000, app(ty_[], bg)) -> new_compare(yvy49000, yvy50000, bg) 47.49/23.27 new_compare14(yvy49000, yvy50000) -> new_compare24(yvy49000, yvy50000, new_esEs11(yvy49000, yvy50000)) 47.49/23.27 new_primEqNat0(Zero, Zero) -> True 47.49/23.27 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Integer, ga) -> new_ltEs10(yvy49000, yvy50000) 47.49/23.27 new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.49/23.27 new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) 47.49/23.27 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Bool) -> new_ltEs13(yvy49000, yvy50000) 47.49/23.27 new_esEs30(yvy20, yvy15, app(app(ty_Either, ddh), dea)) -> new_esEs7(yvy20, yvy15, ddh, dea) 47.49/23.27 new_esEs30(yvy20, yvy15, ty_Ordering) -> new_esEs12(yvy20, yvy15) 47.49/23.27 new_compare5(yvy49000, yvy50000, ty_Ordering) -> new_compare17(yvy49000, yvy50000) 47.49/23.27 new_esEs6(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.27 new_asAs(False, yvy201) -> False 47.49/23.27 new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(app(ty_@3, df), dg), dh)) -> new_ltEs12(yvy49000, yvy50000, df, dg, dh) 47.49/23.27 new_esEs28(yvy49000, yvy50000, app(ty_Ratio, dac)) -> new_esEs15(yvy49000, yvy50000, dac) 47.49/23.27 new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 47.49/23.27 new_esEs30(yvy20, yvy15, ty_Integer) -> new_esEs10(yvy20, yvy15) 47.49/23.27 new_ltEs20(yvy49002, yvy50002, app(ty_Maybe, dcd)) -> new_ltEs4(yvy49002, yvy50002, dcd) 47.49/23.27 new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) 47.49/23.27 new_lt8(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) 47.49/23.27 new_esEs7(Left(yvy4000), Right(yvy3000), bbf, bbg) -> False 47.49/23.27 new_esEs7(Right(yvy4000), Left(yvy3000), bbf, bbg) -> False 47.49/23.27 new_ltEs17(yvy4900, yvy5000, bcg) -> new_fsEs(new_compare19(yvy4900, yvy5000, bcg)) 47.49/23.27 new_lt16(yvy49000, yvy50000, bch, bda) -> new_esEs12(new_compare16(yvy49000, yvy50000, bch, bda), LT) 47.49/23.27 new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.27 new_ltEs18(yvy4900, yvy5000, ty_Int) -> new_ltEs7(yvy4900, yvy5000) 47.49/23.27 new_lt19(yvy49000, yvy50000, app(app(ty_Either, daa), dab)) -> new_lt16(yvy49000, yvy50000, daa, dab) 47.49/23.27 new_esEs27(yvy49001, yvy50001, app(app(app(ty_@3, dag), dah), dba)) -> new_esEs5(yvy49001, yvy50001, dag, dah, dba) 47.49/23.27 47.49/23.27 The set Q consists of the following terms: 47.49/23.27 47.49/23.27 new_esEs27(x0, x1, ty_@0) 47.49/23.27 new_esEs8(:(x0, x1), :(x2, x3), x4) 47.49/23.27 new_esEs25(x0, x1, app(ty_Maybe, x2)) 47.49/23.27 new_compare12(x0, x1, x2, x3) 47.49/23.27 new_esEs8([], [], x0) 47.49/23.27 new_esEs24(x0, x1, app(ty_Ratio, x2)) 47.49/23.27 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.27 new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) 47.49/23.27 new_esEs7(Right(x0), Right(x1), x2, ty_Bool) 47.49/23.27 new_lt20(x0, x1, app(ty_Ratio, x2)) 47.49/23.27 new_esEs26(x0, x1, ty_Float) 47.49/23.27 new_esEs12(EQ, EQ) 47.49/23.27 new_compare30(x0, x1, x2) 47.49/23.27 new_esEs7(Right(x0), Right(x1), x2, ty_@0) 47.49/23.27 new_esEs28(x0, x1, ty_Char) 47.49/23.27 new_compare5(x0, x1, app(ty_Maybe, x2)) 47.49/23.27 new_primMulInt(Neg(x0), Neg(x1)) 47.49/23.27 new_lt20(x0, x1, ty_@0) 47.49/23.27 new_esEs26(x0, x1, app(ty_[], x2)) 47.49/23.27 new_primCmpNat0(Succ(x0), Zero) 47.49/23.27 new_compare29(x0, x1, True) 47.49/23.27 new_compare5(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.27 new_compare28(x0, x1, False, x2, x3, x4) 47.49/23.27 new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) 47.49/23.27 new_ltEs17(x0, x1, x2) 47.49/23.27 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 47.49/23.27 new_compare15(x0, x1, x2) 47.49/23.27 new_primEqInt(Pos(Zero), Pos(Zero)) 47.49/23.27 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.27 new_primMulInt(Pos(x0), Pos(x1)) 47.49/23.27 new_esEs27(x0, x1, app(ty_Ratio, x2)) 47.49/23.27 new_ltEs14(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 47.49/23.27 new_primCompAux00(x0, GT) 47.49/23.27 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 47.49/23.27 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.27 new_lt8(x0, x1, ty_Float) 47.49/23.27 new_ltEs4(Just(x0), Just(x1), ty_Float) 47.49/23.27 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.27 new_compare27(x0, x1, True, x2, x3) 47.49/23.27 new_asAs(False, x0) 47.49/23.27 new_ltEs20(x0, x1, app(ty_[], x2)) 47.49/23.27 new_compare114(x0, x1, False, x2, x3) 47.49/23.27 new_ltEs14(Left(x0), Left(x1), app(ty_[], x2), x3) 47.49/23.27 new_esEs27(x0, x1, ty_Integer) 47.49/23.27 new_primEqInt(Neg(Zero), Neg(Zero)) 47.49/23.27 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.27 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.27 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 47.49/23.27 new_sr(x0, x1) 47.49/23.27 new_esEs28(x0, x1, ty_Bool) 47.49/23.27 new_esEs27(x0, x1, ty_Char) 47.49/23.27 new_primCmpNat0(Zero, Succ(x0)) 47.49/23.27 new_lt19(x0, x1, ty_Double) 47.49/23.27 new_ltEs13(False, True) 47.49/23.27 new_ltEs13(True, False) 47.49/23.27 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.27 new_ltEs18(x0, x1, ty_Int) 47.49/23.27 new_lt17(x0, x1) 47.49/23.27 new_esEs21(x0, x1, app(ty_Ratio, x2)) 47.49/23.27 new_esEs9(x0, x1, ty_Double) 47.49/23.27 new_esEs28(x0, x1, ty_Ordering) 47.49/23.27 new_lt8(x0, x1, ty_Integer) 47.49/23.27 new_compare110(x0, x1, False) 47.49/23.27 new_esEs7(Right(x0), Right(x1), x2, ty_Char) 47.49/23.27 new_compare10(x0, x1, False, x2, x3) 47.49/23.27 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.27 new_esEs19(x0, x1, ty_Integer) 47.49/23.27 new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) 47.49/23.27 new_ltEs14(Right(x0), Right(x1), x2, ty_Integer) 47.49/23.27 new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 47.49/23.27 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.27 new_esEs22(x0, x1, app(ty_Maybe, x2)) 47.49/23.27 new_compare111(x0, x1, False, x2) 47.49/23.27 new_ltEs19(x0, x1, ty_Float) 47.49/23.27 new_esEs21(x0, x1, app(ty_Maybe, x2)) 47.49/23.27 new_esEs28(x0, x1, app(ty_[], x2)) 47.49/23.27 new_esEs7(Right(x0), Right(x1), x2, ty_Integer) 47.49/23.27 new_esEs9(x0, x1, ty_Int) 47.49/23.27 new_esEs23(x0, x1, app(ty_[], x2)) 47.49/23.27 new_ltEs14(Right(x0), Right(x1), x2, ty_Bool) 47.49/23.27 new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 47.49/23.27 new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 47.49/23.27 new_compare25(Nothing, Just(x0), False, x1) 47.49/23.27 new_ltEs14(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 47.49/23.27 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 47.49/23.27 new_lt8(x0, x1, app(ty_[], x2)) 47.49/23.27 new_lt8(x0, x1, ty_Bool) 47.49/23.27 new_esEs18(Double(x0, x1), Double(x2, x3)) 47.49/23.27 new_ltEs8(x0, x1, x2) 47.49/23.27 new_primEqInt(Pos(Zero), Neg(Zero)) 47.49/23.27 new_primEqInt(Neg(Zero), Pos(Zero)) 47.49/23.27 new_esEs31(x0, x1, ty_Ordering) 47.49/23.27 new_esEs30(x0, x1, ty_Float) 47.49/23.27 new_esEs12(LT, GT) 47.49/23.27 new_esEs12(GT, LT) 47.49/23.27 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 47.49/23.27 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 47.49/23.27 new_esEs17(Char(x0), Char(x1)) 47.49/23.27 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.27 new_esEs21(x0, x1, ty_Float) 47.49/23.27 new_ltEs19(x0, x1, app(ty_[], x2)) 47.49/23.27 new_ltEs18(x0, x1, ty_Double) 47.49/23.27 new_lt18(x0, x1, x2) 47.49/23.27 new_primCompAux0(x0, x1, x2, x3) 47.49/23.27 new_ltEs20(x0, x1, ty_Ordering) 47.49/23.27 new_esEs27(x0, x1, ty_Bool) 47.49/23.27 new_compare25(Just(x0), Just(x1), False, x2) 47.49/23.27 new_compare14(x0, x1) 47.49/23.27 new_ltEs18(x0, x1, ty_Char) 47.49/23.27 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.27 new_asAs(True, x0) 47.49/23.27 new_esEs24(x0, x1, ty_Integer) 47.49/23.27 new_esEs30(x0, x1, ty_@0) 47.49/23.27 new_pePe(True, x0) 47.49/23.27 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 47.49/23.27 new_ltEs7(x0, x1) 47.49/23.27 new_ltEs15(EQ, EQ) 47.49/23.27 new_compare([], [], x0) 47.49/23.27 new_esEs30(x0, x1, app(ty_Ratio, x2)) 47.49/23.27 new_primEqNat0(Succ(x0), Zero) 47.49/23.27 new_esEs28(x0, x1, ty_Integer) 47.49/23.27 new_esEs25(x0, x1, ty_Float) 47.49/23.27 new_compare112(x0, x1, True, x2, x3, x4) 47.49/23.27 new_primMulNat0(Succ(x0), Succ(x1)) 47.49/23.27 new_compare25(x0, x1, True, x2) 47.49/23.27 new_gt2(x0, x1, x2) 47.49/23.27 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 47.49/23.27 new_compare5(x0, x1, ty_Ordering) 47.49/23.27 new_lt19(x0, x1, ty_Char) 47.49/23.27 new_ltEs14(Left(x0), Left(x1), ty_Char, x2) 47.49/23.27 new_ltEs19(x0, x1, ty_Integer) 47.49/23.27 new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 47.49/23.27 new_lt5(x0, x1) 47.49/23.27 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 47.49/23.27 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 47.49/23.27 new_esEs7(Right(x0), Right(x1), x2, ty_Double) 47.49/23.27 new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) 47.49/23.27 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.27 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.27 new_compare26(x0, x1, True, x2, x3) 47.49/23.27 new_compare(:(x0, x1), :(x2, x3), x4) 47.49/23.27 new_esEs9(x0, x1, ty_Char) 47.49/23.27 new_ltEs4(Just(x0), Just(x1), ty_Bool) 47.49/23.27 new_ltEs14(Left(x0), Left(x1), ty_Int, x2) 47.49/23.27 new_lt6(x0, x1) 47.49/23.27 new_lt19(x0, x1, ty_Int) 47.49/23.27 new_primEqNat0(Succ(x0), Succ(x1)) 47.49/23.27 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.27 new_ltEs6(x0, x1) 47.49/23.27 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.27 new_compare7(Char(x0), Char(x1)) 47.49/23.27 new_esEs31(x0, x1, app(ty_Maybe, x2)) 47.49/23.27 new_esEs12(GT, GT) 47.49/23.27 new_esEs12(LT, EQ) 47.49/23.27 new_esEs12(EQ, LT) 47.49/23.27 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 47.49/23.27 new_lt15(x0, x1, x2) 47.49/23.27 new_ltEs5(x0, x1) 47.49/23.27 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.27 new_ltEs15(GT, LT) 47.49/23.27 new_ltEs15(LT, GT) 47.49/23.27 new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 47.49/23.27 new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 47.49/23.27 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 47.49/23.27 new_esEs31(x0, x1, app(ty_Ratio, x2)) 47.49/23.27 new_ltEs4(Just(x0), Just(x1), ty_Integer) 47.49/23.27 new_esEs7(Left(x0), Left(x1), ty_@0, x2) 47.49/23.27 new_esEs27(x0, x1, ty_Int) 47.49/23.27 new_compare28(x0, x1, True, x2, x3, x4) 47.49/23.27 new_esEs6(Just(x0), Just(x1), ty_Integer) 47.49/23.27 new_esEs6(Just(x0), Just(x1), ty_Float) 47.49/23.27 new_lt20(x0, x1, app(ty_[], x2)) 47.49/23.27 new_compare5(x0, x1, ty_Double) 47.49/23.27 new_primMulNat0(Succ(x0), Zero) 47.49/23.27 new_esEs6(Nothing, Just(x0), x1) 47.49/23.27 new_esEs27(x0, x1, ty_Float) 47.49/23.27 new_ltEs14(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 47.49/23.27 new_esEs25(x0, x1, ty_Bool) 47.49/23.27 new_esEs6(Just(x0), Just(x1), ty_Ordering) 47.49/23.27 new_ltEs14(Right(x0), Right(x1), x2, ty_Char) 47.49/23.27 new_esEs9(x0, x1, ty_Bool) 47.49/23.27 new_lt7(x0, x1) 47.49/23.27 new_lt19(x0, x1, app(ty_Maybe, x2)) 47.49/23.27 new_lt8(x0, x1, ty_@0) 47.49/23.27 new_esEs9(x0, x1, ty_Ordering) 47.49/23.27 new_primCmpInt(Neg(Zero), Neg(Zero)) 47.49/23.27 new_lt8(x0, x1, app(ty_Ratio, x2)) 47.49/23.27 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.27 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.27 new_esEs28(x0, x1, ty_Double) 47.49/23.27 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.27 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.27 new_primCmpInt(Pos(Zero), Neg(Zero)) 47.49/23.27 new_primCmpInt(Neg(Zero), Pos(Zero)) 47.49/23.27 new_primPlusNat0(Succ(x0), Zero) 47.49/23.27 new_esEs23(x0, x1, ty_Float) 47.49/23.27 new_esEs21(x0, x1, ty_Integer) 47.49/23.27 new_ltEs14(Right(x0), Right(x1), x2, ty_Int) 47.49/23.27 new_esEs28(x0, x1, ty_@0) 47.49/23.27 new_lt19(x0, x1, ty_Bool) 47.49/23.27 new_ltEs14(Left(x0), Left(x1), ty_Bool, x2) 47.49/23.27 new_esEs25(x0, x1, ty_Ordering) 47.49/23.27 new_lt19(x0, x1, ty_Ordering) 47.49/23.27 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.27 new_esEs22(x0, x1, ty_Integer) 47.49/23.27 new_esEs31(x0, x1, ty_Double) 47.49/23.27 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.27 new_esEs11(False, False) 47.49/23.27 new_esEs30(x0, x1, app(ty_Maybe, x2)) 47.49/23.27 new_compare(:(x0, x1), [], x2) 47.49/23.27 new_lt13(x0, x1, x2, x3, x4) 47.49/23.27 new_esEs8([], :(x0, x1), x2) 47.49/23.27 new_ltEs14(Left(x0), Left(x1), ty_Ordering, x2) 47.49/23.27 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.27 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 47.49/23.27 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.27 new_compare33(x0) 47.49/23.27 new_esEs28(x0, x1, app(ty_Ratio, x2)) 47.49/23.27 new_lt19(x0, x1, app(ty_[], x2)) 47.49/23.27 new_esEs7(Left(x0), Left(x1), ty_Double, x2) 47.49/23.27 new_esEs9(x0, x1, ty_Integer) 47.49/23.27 new_ltEs14(Right(x0), Right(x1), x2, app(ty_[], x3)) 47.49/23.27 new_ltEs20(x0, x1, ty_@0) 47.49/23.27 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.27 new_ltEs4(Just(x0), Just(x1), ty_Char) 47.49/23.27 new_ltEs14(Right(x0), Right(x1), x2, ty_Float) 47.49/23.27 new_compare113(x0, x1, True) 47.49/23.27 new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 47.49/23.27 new_lt20(x0, x1, app(ty_Maybe, x2)) 47.49/23.27 new_esEs31(x0, x1, app(ty_[], x2)) 47.49/23.27 new_lt20(x0, x1, ty_Double) 47.49/23.27 new_esEs6(Just(x0), Nothing, x1) 47.49/23.27 new_ltEs19(x0, x1, ty_Bool) 47.49/23.27 new_ltEs20(x0, x1, ty_Double) 47.49/23.27 new_esEs24(x0, x1, ty_@0) 47.49/23.27 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 47.49/23.27 new_esEs31(x0, x1, ty_@0) 47.49/23.27 new_lt19(x0, x1, ty_Integer) 47.49/23.27 new_esEs22(x0, x1, ty_Ordering) 47.49/23.27 new_esEs13(Float(x0, x1), Float(x2, x3)) 47.49/23.27 new_esEs6(Just(x0), Just(x1), ty_Bool) 47.49/23.27 new_compare8(x0, x1) 47.49/23.27 new_ltEs14(Left(x0), Left(x1), ty_Integer, x2) 47.49/23.27 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 47.49/23.27 new_lt16(x0, x1, x2, x3) 47.49/23.27 new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 47.49/23.27 new_ltEs13(True, True) 47.49/23.27 new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) 47.49/23.27 new_esEs21(x0, x1, ty_Ordering) 47.49/23.27 new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 47.49/23.27 new_esEs25(x0, x1, ty_Integer) 47.49/23.27 new_ltEs4(Nothing, Just(x0), x1) 47.49/23.27 new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 47.49/23.27 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 47.49/23.27 new_esEs25(x0, x1, ty_Char) 47.49/23.27 new_compare17(x0, x1) 47.49/23.27 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.27 new_esEs22(x0, x1, ty_@0) 47.49/23.27 new_esEs26(x0, x1, ty_Ordering) 47.49/23.27 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.27 new_esEs31(x0, x1, ty_Integer) 47.49/23.27 new_gt(x0) 47.49/23.27 new_ltEs19(x0, x1, ty_Char) 47.49/23.27 new_esEs24(x0, x1, ty_Ordering) 47.49/23.27 new_compare([], :(x0, x1), x2) 47.49/23.27 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.27 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.27 new_primCompAux00(x0, EQ) 47.49/23.27 new_esEs22(x0, x1, ty_Bool) 47.49/23.27 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.27 new_ltEs14(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 47.49/23.27 new_ltEs4(Just(x0), Just(x1), ty_Int) 47.49/23.27 new_primMulNat0(Zero, Zero) 47.49/23.27 new_compare24(x0, x1, True) 47.49/23.27 new_compare5(x0, x1, ty_@0) 47.49/23.27 new_ltEs18(x0, x1, ty_Float) 47.49/23.27 new_primPlusNat1(Zero, x0) 47.49/23.27 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.27 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.27 new_esEs24(x0, x1, ty_Int) 47.49/23.27 new_lt8(x0, x1, ty_Double) 47.49/23.27 new_esEs6(Just(x0), Just(x1), ty_Char) 47.49/23.27 new_esEs25(x0, x1, ty_Int) 47.49/23.27 new_esEs23(x0, x1, ty_Char) 47.49/23.27 new_esEs6(Nothing, Nothing, x0) 47.49/23.27 new_ltEs4(Just(x0), Just(x1), ty_Ordering) 47.49/23.27 new_esEs24(x0, x1, app(ty_Maybe, x2)) 47.49/23.27 new_compare5(x0, x1, ty_Bool) 47.49/23.27 new_sr0(Integer(x0), Integer(x1)) 47.49/23.27 new_fsEs(x0) 47.49/23.27 new_ltEs14(Right(x0), Right(x1), x2, ty_Double) 47.49/23.27 new_compare9(@0, @0) 47.49/23.27 new_ltEs18(x0, x1, app(ty_[], x2)) 47.49/23.27 new_esEs25(x0, x1, app(ty_Ratio, x2)) 47.49/23.27 new_ltEs19(x0, x1, ty_Ordering) 47.49/23.27 new_esEs24(x0, x1, ty_Char) 47.49/23.27 new_esEs9(x0, x1, app(ty_[], x2)) 47.49/23.27 new_esEs21(x0, x1, ty_Bool) 47.49/23.27 new_esEs28(x0, x1, app(ty_Maybe, x2)) 47.49/23.27 new_esEs24(x0, x1, ty_Double) 47.49/23.27 new_compare112(x0, x1, False, x2, x3, x4) 47.49/23.27 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 47.49/23.27 new_primPlusNat1(Succ(x0), x1) 47.49/23.27 new_esEs23(x0, x1, ty_Int) 47.49/23.27 new_esEs31(x0, x1, ty_Bool) 47.49/23.27 new_esEs7(Left(x0), Left(x1), ty_Integer, x2) 47.49/23.27 new_esEs22(x0, x1, app(ty_[], x2)) 47.49/23.27 new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 47.49/23.27 new_esEs23(x0, x1, ty_@0) 47.49/23.27 new_esEs6(Just(x0), Just(x1), ty_Int) 47.49/23.27 new_ltEs19(x0, x1, ty_Int) 47.49/23.27 new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 47.49/23.27 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.27 new_esEs21(x0, x1, app(ty_[], x2)) 47.49/23.27 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.27 new_esEs9(x0, x1, app(ty_Maybe, x2)) 47.49/23.27 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.27 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.27 new_esEs7(Left(x0), Left(x1), ty_Float, x2) 47.49/23.27 new_esEs6(Just(x0), Just(x1), ty_@0) 47.49/23.27 new_lt8(x0, x1, ty_Ordering) 47.49/23.27 new_primPlusNat0(Zero, Zero) 47.49/23.27 new_esEs25(x0, x1, app(ty_[], x2)) 47.49/23.27 new_esEs22(x0, x1, app(ty_Ratio, x2)) 47.49/23.27 new_compare10(x0, x1, True, x2, x3) 47.49/23.27 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.27 new_lt8(x0, x1, ty_Int) 47.49/23.27 new_esEs30(x0, x1, ty_Int) 47.49/23.27 new_ltEs14(Left(x0), Left(x1), ty_@0, x2) 47.49/23.27 new_lt19(x0, x1, ty_@0) 47.49/23.27 new_not(True) 47.49/23.27 new_compare5(x0, x1, app(ty_Ratio, x2)) 47.49/23.27 new_esEs8(:(x0, x1), [], x2) 47.49/23.27 new_compare25(Just(x0), Nothing, False, x1) 47.49/23.27 new_esEs23(x0, x1, ty_Bool) 47.49/23.27 new_esEs22(x0, x1, ty_Char) 47.49/23.27 new_esEs12(EQ, GT) 47.49/23.27 new_esEs12(GT, EQ) 47.49/23.27 new_lt19(x0, x1, ty_Float) 47.49/23.27 new_ltEs14(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 47.49/23.27 new_ltEs13(False, False) 47.49/23.27 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.27 new_esEs25(x0, x1, ty_Double) 47.49/23.27 new_esEs25(x0, x1, ty_@0) 47.49/23.27 new_esEs26(x0, x1, app(ty_Ratio, x2)) 47.49/23.27 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 47.49/23.27 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 47.49/23.27 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 47.49/23.27 new_esEs11(True, True) 47.49/23.27 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 47.49/23.27 new_ltEs14(Right(x0), Right(x1), x2, ty_Ordering) 47.49/23.27 new_ltEs15(GT, EQ) 47.49/23.27 new_esEs23(x0, x1, ty_Double) 47.49/23.27 new_ltEs15(EQ, GT) 47.49/23.27 new_ltEs4(Just(x0), Nothing, x1) 47.49/23.27 new_esEs21(x0, x1, ty_Char) 47.49/23.27 new_esEs11(False, True) 47.49/23.27 new_esEs11(True, False) 47.49/23.27 new_compare113(x0, x1, False) 47.49/23.27 new_lt4(x0, x1, x2, x3) 47.49/23.27 new_lt8(x0, x1, ty_Char) 47.49/23.27 new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) 47.49/23.27 new_ltEs20(x0, x1, ty_Integer) 47.49/23.27 new_compare27(x0, x1, False, x2, x3) 47.49/23.27 new_esEs30(x0, x1, ty_Double) 47.49/23.27 new_esEs26(x0, x1, ty_Int) 47.49/23.27 new_primPlusNat0(Zero, Succ(x0)) 47.49/23.27 new_compare5(x0, x1, ty_Integer) 47.49/23.27 new_esEs30(x0, x1, ty_Char) 47.49/23.27 new_primCmpNat0(Succ(x0), Succ(x1)) 47.49/23.27 new_ltEs14(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 47.49/23.27 new_compare31(x0, x1) 47.49/23.27 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 47.49/23.27 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.27 new_esEs9(x0, x1, ty_@0) 47.49/23.27 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 47.49/23.27 new_esEs12(LT, LT) 47.49/23.27 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.27 new_esEs21(x0, x1, ty_Int) 47.49/23.27 new_compare26(x0, x1, False, x2, x3) 47.49/23.27 new_ltEs14(Left(x0), Left(x1), ty_Float, x2) 47.49/23.27 new_esEs26(x0, x1, ty_Double) 47.49/23.27 new_esEs22(x0, x1, ty_Int) 47.49/23.27 new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.27 new_esEs26(x0, x1, ty_Char) 47.49/23.27 new_esEs21(x0, x1, ty_@0) 47.49/23.27 new_lt14(x0, x1) 47.49/23.27 new_esEs9(x0, x1, ty_Float) 47.49/23.27 new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 47.49/23.27 new_esEs20(x0, x1, ty_Int) 47.49/23.27 new_primCmpInt(Pos(Zero), Pos(Zero)) 47.49/23.27 new_esEs27(x0, x1, app(ty_Maybe, x2)) 47.49/23.27 new_gt1(x0, x1) 47.49/23.27 new_esEs20(x0, x1, ty_Integer) 47.49/23.27 new_compare13(x0, x1, x2, x3, x4) 47.49/23.27 new_esEs22(x0, x1, ty_Double) 47.49/23.27 new_esEs31(x0, x1, ty_Int) 47.49/23.27 new_esEs27(x0, x1, ty_Double) 47.49/23.27 new_esEs14(@0, @0) 47.49/23.27 new_pePe(False, x0) 47.49/23.27 new_ltEs9(x0, x1) 47.49/23.27 new_esEs22(x0, x1, ty_Float) 47.49/23.27 new_ltEs11(@2(x0, x1), @2(x2, x3), x4, x5) 47.49/23.27 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.27 new_compare29(x0, x1, False) 47.49/23.27 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.27 new_ltEs14(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 47.49/23.27 new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 47.49/23.27 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.27 new_esEs16(x0, x1) 47.49/23.27 new_esEs26(x0, x1, ty_Bool) 47.49/23.27 new_compare25(Nothing, Nothing, False, x0) 47.49/23.27 new_lt10(x0, x1) 47.49/23.27 new_compare16(x0, x1, x2, x3) 47.49/23.27 new_ltEs14(Right(x0), Left(x1), x2, x3) 47.49/23.27 new_esEs26(x0, x1, ty_@0) 47.49/23.27 new_ltEs14(Left(x0), Right(x1), x2, x3) 47.49/23.27 new_ltEs18(x0, x1, ty_@0) 47.49/23.27 new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) 47.49/23.27 new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 47.49/23.27 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.27 new_esEs31(x0, x1, ty_Char) 47.49/23.27 new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 47.49/23.27 new_ltEs18(x0, x1, ty_Bool) 47.49/23.27 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.27 new_compare5(x0, x1, ty_Float) 47.49/23.27 new_esEs23(x0, x1, app(ty_Ratio, x2)) 47.49/23.27 new_esEs10(Integer(x0), Integer(x1)) 47.49/23.27 new_compare32(x0, x1) 47.49/23.27 new_lt19(x0, x1, app(ty_Ratio, x2)) 47.49/23.27 new_esEs7(Right(x0), Right(x1), x2, ty_Float) 47.49/23.27 new_esEs21(x0, x1, ty_Double) 47.49/23.27 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 47.49/23.27 new_ltEs4(Just(x0), Just(x1), ty_@0) 47.49/23.27 new_esEs7(Right(x0), Right(x1), x2, ty_Int) 47.49/23.27 new_lt12(x0, x1, x2) 47.49/23.27 new_compare5(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.27 new_lt20(x0, x1, ty_Float) 47.49/23.27 new_ltEs4(Nothing, Nothing, x0) 47.49/23.27 new_esEs26(x0, x1, ty_Integer) 47.49/23.27 new_ltEs10(x0, x1) 47.49/23.27 new_compare5(x0, x1, ty_Int) 47.49/23.27 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 47.49/23.27 new_ltEs14(Right(x0), Right(x1), x2, ty_@0) 47.49/23.27 new_lt20(x0, x1, ty_Ordering) 47.49/23.27 new_ltEs15(EQ, LT) 47.49/23.27 new_ltEs15(LT, EQ) 47.49/23.27 new_esEs30(x0, x1, ty_Bool) 47.49/23.27 new_esEs23(x0, x1, ty_Integer) 47.49/23.27 new_esEs27(x0, x1, app(ty_[], x2)) 47.49/23.27 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.49/23.27 new_compare5(x0, x1, app(ty_[], x2)) 47.49/23.27 new_esEs24(x0, x1, ty_Bool) 47.49/23.27 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 47.49/23.27 new_ltEs14(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 47.49/23.27 new_ltEs15(GT, GT) 47.49/23.27 new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 47.49/23.27 new_esEs27(x0, x1, ty_Ordering) 47.49/23.27 new_gt0(x0, x1) 47.49/23.27 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 47.49/23.27 new_esEs26(x0, x1, app(ty_Maybe, x2)) 47.49/23.27 new_compare5(x0, x1, ty_Char) 47.49/23.27 new_lt20(x0, x1, ty_Integer) 47.49/23.27 new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 47.49/23.27 new_ltEs14(Left(x0), Left(x1), ty_Double, x2) 47.49/23.27 new_ltEs19(x0, x1, ty_@0) 47.49/23.27 new_esEs23(x0, x1, app(ty_Maybe, x2)) 47.49/23.27 new_ltEs16(x0, x1) 47.49/23.27 new_lt11(x0, x1) 47.49/23.27 new_ltEs18(x0, x1, ty_Integer) 47.49/23.27 new_primEqNat0(Zero, Zero) 47.49/23.27 new_esEs9(x0, x1, app(ty_Ratio, x2)) 47.49/23.27 new_esEs23(x0, x1, ty_Ordering) 47.49/23.27 new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 47.49/23.27 new_not(False) 47.49/23.27 new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 47.49/23.27 new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 47.49/23.27 new_ltEs20(x0, x1, ty_Bool) 47.49/23.27 new_ltEs19(x0, x1, ty_Double) 47.49/23.27 new_esEs30(x0, x1, ty_Integer) 47.49/23.27 new_ltEs20(x0, x1, ty_Float) 47.49/23.27 new_esEs7(Left(x0), Left(x1), ty_Int, x2) 47.49/23.27 new_lt8(x0, x1, app(ty_Maybe, x2)) 47.49/23.27 new_compare11(Integer(x0), Integer(x1)) 47.49/23.27 new_esEs15(:%(x0, x1), :%(x2, x3), x4) 47.49/23.27 new_primCompAux00(x0, LT) 47.49/23.27 new_compare110(x0, x1, True) 47.49/23.27 new_ltEs15(LT, LT) 47.49/23.27 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 47.49/23.27 new_esEs6(Just(x0), Just(x1), ty_Double) 47.49/23.27 new_lt20(x0, x1, ty_Int) 47.49/23.27 new_lt9(x0, x1) 47.49/23.27 new_ltEs20(x0, x1, ty_Char) 47.49/23.27 new_esEs28(x0, x1, ty_Int) 47.49/23.27 new_lt20(x0, x1, ty_Bool) 47.49/23.27 new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 47.49/23.27 new_esEs31(x0, x1, ty_Float) 47.49/23.27 new_ltEs18(x0, x1, ty_Ordering) 47.49/23.27 new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 47.49/23.27 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.27 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.27 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 47.49/23.27 new_lt20(x0, x1, ty_Char) 47.49/23.27 new_compare24(x0, x1, False) 47.49/23.27 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 47.49/23.27 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 47.49/23.27 new_esEs7(Left(x0), Left(x1), ty_Char, x2) 47.49/23.27 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 47.49/23.27 new_esEs24(x0, x1, ty_Float) 47.49/23.27 new_primPlusNat0(Succ(x0), Succ(x1)) 47.49/23.27 new_compare111(x0, x1, True, x2) 47.49/23.27 new_esEs30(x0, x1, app(ty_[], x2)) 47.49/23.27 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 47.49/23.27 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 47.49/23.27 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.27 new_esEs7(Left(x0), Left(x1), ty_Bool, x2) 47.49/23.27 new_primMulInt(Pos(x0), Neg(x1)) 47.49/23.27 new_primMulInt(Neg(x0), Pos(x1)) 47.49/23.27 new_ltEs4(Just(x0), Just(x1), ty_Double) 47.49/23.27 new_esEs19(x0, x1, ty_Int) 47.49/23.27 new_esEs30(x0, x1, ty_Ordering) 47.49/23.27 new_compare114(x0, x1, True, x2, x3) 47.49/23.27 new_primMulNat0(Zero, Succ(x0)) 47.49/23.27 new_primCmpNat0(Zero, Zero) 47.49/23.27 new_primEqNat0(Zero, Succ(x0)) 47.49/23.27 new_esEs28(x0, x1, ty_Float) 47.49/23.27 new_esEs7(Left(x0), Right(x1), x2, x3) 47.49/23.27 new_esEs7(Right(x0), Left(x1), x2, x3) 47.49/23.27 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 47.49/23.27 new_ltEs20(x0, x1, ty_Int) 47.49/23.27 new_esEs24(x0, x1, app(ty_[], x2)) 47.49/23.27 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 47.49/23.27 new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 47.49/23.27 47.49/23.27 We have to consider all minimal (P,Q,R)-chains. 47.49/23.27 ---------------------------------------- 47.49/23.27 47.49/23.27 (61) DependencyGraphProof (EQUIVALENT) 47.49/23.27 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. 47.49/23.27 ---------------------------------------- 47.49/23.27 47.49/23.27 (62) 47.49/23.27 Complex Obligation (AND) 47.49/23.27 47.49/23.27 ---------------------------------------- 47.49/23.27 47.49/23.27 (63) 47.49/23.27 Obligation: 47.49/23.27 Q DP problem: 47.49/23.27 The TRS P consists of the following rules: 47.49/23.27 47.49/23.27 new_splitLT11(yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba) -> new_splitLT0(yvy34, yvy400, h, ba) 47.49/23.27 new_splitLT0(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy400, h, ba) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Just(yvy400), h, ba) 47.49/23.27 new_splitLT3(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitLT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare25(Just(yvy400), Just(yvy300), new_esEs31(yvy400, yvy300, h), h), LT), h, ba) 47.49/23.27 new_splitLT21(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, False, bb, bc) -> new_splitLT12(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, new_gt2(yvy35, yvy30, bb), bb, bc) 47.49/23.27 new_splitLT12(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, bb, bc) -> new_splitLT0(yvy34, yvy35, bb, bc) 47.49/23.27 new_splitLT21(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, bb, bc) -> new_splitLT0(yvy33, yvy35, bb, bc) 47.49/23.27 new_splitLT3(Nothing, yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitLT20(yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare25(Just(yvy400), Nothing, False, h), LT), h, ba) 47.49/23.27 new_splitLT20(yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba) -> new_splitLT11(yvy31, yvy32, yvy33, yvy34, yvy400, new_gt1(yvy400, h), h, ba) 47.49/23.27 new_splitLT20(yvy31, yvy32, Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy34, yvy400, True, h, ba) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Just(yvy400), h, ba) 47.49/23.27 47.49/23.27 The TRS R consists of the following rules: 47.49/23.27 47.49/23.27 new_esEs22(yvy4002, yvy3002, app(ty_[], cag)) -> new_esEs8(yvy4002, yvy3002, cag) 47.49/23.27 new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) 47.49/23.27 new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT 47.49/23.27 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 47.49/23.27 new_primPlusNat0(Zero, Zero) -> Zero 47.49/23.27 new_compare13(yvy49000, yvy50000, bdb, bdc, bdd) -> new_compare28(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, bdb, bdc, bdd), bdb, bdc, bdd) 47.49/23.27 new_esEs23(yvy4001, yvy3001, app(ty_Maybe, cbc)) -> new_esEs6(yvy4001, yvy3001, cbc) 47.49/23.27 new_pePe(True, yvy220) -> True 47.49/23.27 new_ltEs20(yvy49002, yvy50002, ty_Ordering) -> new_ltEs15(yvy49002, yvy50002) 47.49/23.27 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.49/23.27 new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) 47.49/23.27 new_compare26(yvy49000, yvy50000, False, bch, bda) -> new_compare114(yvy49000, yvy50000, new_ltEs14(yvy49000, yvy50000, bch, bda), bch, bda) 47.49/23.27 new_lt20(yvy49001, yvy50001, ty_Ordering) -> new_lt17(yvy49001, yvy50001) 47.49/23.27 new_esEs30(yvy20, yvy15, app(app(ty_@2, dde), ddf)) -> new_esEs4(yvy20, yvy15, dde, ddf) 47.49/23.27 new_compare(:(yvy49000, yvy49001), [], bf) -> GT 47.49/23.27 new_ltEs20(yvy49002, yvy50002, app(app(ty_@2, dbg), dbh)) -> new_ltEs11(yvy49002, yvy50002, dbg, dbh) 47.49/23.27 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 47.49/23.27 new_ltEs14(Right(yvy49000), Left(yvy50000), hd, ga) -> False 47.49/23.27 new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Ratio, hc), ga) -> new_ltEs17(yvy49000, yvy50000, hc) 47.49/23.27 new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT 47.49/23.27 new_lt20(yvy49001, yvy50001, app(ty_Ratio, dbe)) -> new_lt18(yvy49001, yvy50001, dbe) 47.49/23.27 new_compare(:(yvy49000, yvy49001), :(yvy50000, yvy50001), bf) -> new_primCompAux0(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, bf), bf) 47.49/23.27 new_compare26(yvy49000, yvy50000, True, bch, bda) -> EQ 47.49/23.27 new_esEs8(:(yvy4000, yvy4001), :(yvy3000, yvy3001), ee) -> new_asAs(new_esEs9(yvy4000, yvy3000, ee), new_esEs8(yvy4001, yvy3001, ee)) 47.49/23.27 new_compare27(yvy49000, yvy50000, False, bd, be) -> new_compare10(yvy49000, yvy50000, new_ltEs11(yvy49000, yvy50000, bd, be), bd, be) 47.49/23.27 new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) 47.49/23.27 new_esEs30(yvy20, yvy15, ty_Float) -> new_esEs13(yvy20, yvy15) 47.49/23.27 new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.27 new_ltEs4(Nothing, Nothing, db) -> True 47.49/23.27 new_ltEs4(Just(yvy49000), Nothing, db) -> False 47.49/23.27 new_lt8(yvy49000, yvy50000, app(app(ty_@2, bd), be)) -> new_lt4(yvy49000, yvy50000, bd, be) 47.49/23.27 new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat1(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) 47.49/23.27 new_compare113(yvy49000, yvy50000, False) -> GT 47.49/23.27 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Int) -> new_ltEs7(yvy49000, yvy50000) 47.49/23.27 new_ltEs15(EQ, LT) -> False 47.49/23.27 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.27 new_esEs28(yvy49000, yvy50000, app(app(ty_Either, daa), dab)) -> new_esEs7(yvy49000, yvy50000, daa, dab) 47.49/23.27 new_lt19(yvy49000, yvy50000, app(app(ty_@2, chc), chd)) -> new_lt4(yvy49000, yvy50000, chc, chd) 47.49/23.27 new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.27 new_ltEs20(yvy49002, yvy50002, app(app(ty_Either, dce), dcf)) -> new_ltEs14(yvy49002, yvy50002, dce, dcf) 47.49/23.27 new_esEs28(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) 47.49/23.27 new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Maybe, ea)) -> new_ltEs4(yvy49000, yvy50000, ea) 47.49/23.27 new_ltEs19(yvy49001, yvy50001, ty_Ordering) -> new_ltEs15(yvy49001, yvy50001) 47.49/23.27 new_ltEs18(yvy4900, yvy5000, ty_Float) -> new_ltEs5(yvy4900, yvy5000) 47.49/23.27 new_lt9(yvy49000, yvy50000) -> new_esEs12(new_compare6(yvy49000, yvy50000), LT) 47.49/23.27 new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False 47.49/23.27 new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False 47.49/23.27 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(ty_Ratio, baf)) -> new_ltEs17(yvy49000, yvy50000, baf) 47.49/23.27 new_ltEs15(GT, LT) -> False 47.49/23.27 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.27 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.49/23.27 new_lt19(yvy49000, yvy50000, app(ty_Ratio, dac)) -> new_lt18(yvy49000, yvy50000, dac) 47.49/23.27 new_esEs24(yvy4000, yvy3000, app(ty_Ratio, cch)) -> new_esEs15(yvy4000, yvy3000, cch) 47.49/23.27 new_esEs24(yvy4000, yvy3000, app(app(ty_@2, ccf), ccg)) -> new_esEs4(yvy4000, yvy3000, ccf, ccg) 47.49/23.27 new_ltEs13(True, True) -> True 47.49/23.27 new_compare29(yvy49000, yvy50000, False) -> new_compare113(yvy49000, yvy50000, new_ltEs15(yvy49000, yvy50000)) 47.49/23.27 new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) 47.49/23.27 new_lt15(yvy49000, yvy50000, bbh) -> new_esEs12(new_compare15(yvy49000, yvy50000, bbh), LT) 47.49/23.27 new_ltEs20(yvy49002, yvy50002, ty_Integer) -> new_ltEs10(yvy49002, yvy50002) 47.49/23.27 new_ltEs19(yvy49001, yvy50001, app(app(ty_@2, bea), beb)) -> new_ltEs11(yvy49001, yvy50001, bea, beb) 47.49/23.27 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Bool) -> new_ltEs13(yvy49000, yvy50000) 47.49/23.27 new_not(True) -> False 47.49/23.27 new_esEs28(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) 47.49/23.27 new_esEs28(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) 47.49/23.27 new_ltEs19(yvy49001, yvy50001, app(ty_Ratio, bfa)) -> new_ltEs17(yvy49001, yvy50001, bfa) 47.49/23.27 new_primCompAux00(yvy225, LT) -> LT 47.49/23.27 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.27 new_primCmpNat0(Zero, Zero) -> EQ 47.49/23.27 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Ordering, bbg) -> new_esEs12(yvy4000, yvy3000) 47.49/23.27 new_esEs28(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) 47.49/23.27 new_lt20(yvy49001, yvy50001, ty_Bool) -> new_lt14(yvy49001, yvy50001) 47.49/23.27 new_esEs27(yvy49001, yvy50001, ty_Bool) -> new_esEs11(yvy49001, yvy50001) 47.49/23.27 new_ltEs19(yvy49001, yvy50001, ty_Integer) -> new_ltEs10(yvy49001, yvy50001) 47.49/23.27 new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.49/23.27 new_esEs27(yvy49001, yvy50001, app(ty_[], dad)) -> new_esEs8(yvy49001, yvy50001, dad) 47.49/23.27 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.27 new_esEs27(yvy49001, yvy50001, ty_Char) -> new_esEs17(yvy49001, yvy50001) 47.49/23.27 new_esEs30(yvy20, yvy15, app(ty_Ratio, ddg)) -> new_esEs15(yvy20, yvy15, ddg) 47.49/23.27 new_esEs12(LT, LT) -> True 47.49/23.27 new_esEs21(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) 47.49/23.27 new_primEqNat0(Succ(yvy40000), Zero) -> False 47.49/23.27 new_primEqNat0(Zero, Succ(yvy30000)) -> False 47.49/23.27 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(app(app(ty_@3, hh), baa), bab)) -> new_ltEs12(yvy49000, yvy50000, hh, baa, bab) 47.49/23.27 new_esEs14(@0, @0) -> True 47.49/23.27 new_compare8(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) 47.49/23.27 new_esEs31(yvy400, yvy300, app(app(app(ty_@3, bag), bah), bba)) -> new_esEs5(yvy400, yvy300, bag, bah, bba) 47.49/23.27 new_ltEs19(yvy49001, yvy50001, ty_Char) -> new_ltEs6(yvy49001, yvy50001) 47.49/23.27 new_compare10(yvy49000, yvy50000, True, bd, be) -> LT 47.49/23.27 new_ltEs15(GT, EQ) -> False 47.49/23.27 new_lt20(yvy49001, yvy50001, app(app(app(ty_@3, dag), dah), dba)) -> new_lt13(yvy49001, yvy50001, dag, dah, dba) 47.49/23.27 new_primCompAux00(yvy225, GT) -> GT 47.49/23.27 new_compare110(yvy49000, yvy50000, True) -> LT 47.49/23.27 new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, cef), ceg), ceh)) -> new_esEs5(yvy4001, yvy3001, cef, ceg, ceh) 47.49/23.27 new_compare16(yvy49000, yvy50000, bch, bda) -> new_compare26(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, bch, bda), bch, bda) 47.49/23.27 new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.49/23.27 new_esEs27(yvy49001, yvy50001, ty_Ordering) -> new_esEs12(yvy49001, yvy50001) 47.49/23.27 new_lt19(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) 47.49/23.27 new_ltEs20(yvy49002, yvy50002, ty_Bool) -> new_ltEs13(yvy49002, yvy50002) 47.49/23.27 new_esEs22(yvy4002, yvy3002, ty_Int) -> new_esEs16(yvy4002, yvy3002) 47.49/23.27 new_ltEs18(yvy4900, yvy5000, ty_Double) -> new_ltEs16(yvy4900, yvy5000) 47.49/23.27 new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT 47.49/23.27 new_esEs27(yvy49001, yvy50001, ty_Int) -> new_esEs16(yvy49001, yvy50001) 47.49/23.27 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, app(ty_Ratio, bhb)) -> new_esEs15(yvy4000, yvy3000, bhb) 47.49/23.27 new_esEs22(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) 47.49/23.27 new_compare12(yvy49000, yvy50000, bd, be) -> new_compare27(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, bd, be), bd, be) 47.49/23.27 new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_esEs5(yvy4000, yvy3000, ccb, ccc, ccd) 47.49/23.27 new_lt19(yvy49000, yvy50000, app(app(app(ty_@3, che), chf), chg)) -> new_lt13(yvy49000, yvy50000, che, chf, chg) 47.49/23.27 new_ltEs20(yvy49002, yvy50002, app(app(app(ty_@3, dca), dcb), dcc)) -> new_ltEs12(yvy49002, yvy50002, dca, dcb, dcc) 47.49/23.27 new_esEs30(yvy20, yvy15, app(app(app(ty_@3, dda), ddb), ddc)) -> new_esEs5(yvy20, yvy15, dda, ddb, ddc) 47.49/23.27 new_esEs30(yvy20, yvy15, ty_Double) -> new_esEs18(yvy20, yvy15) 47.49/23.27 new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bag, bah, bba) -> new_asAs(new_esEs24(yvy4000, yvy3000, bag), new_asAs(new_esEs23(yvy4001, yvy3001, bah), new_esEs22(yvy4002, yvy3002, bba))) 47.49/23.27 new_compare5(yvy49000, yvy50000, ty_Int) -> new_compare8(yvy49000, yvy50000) 47.49/23.27 new_compare32(yvy400, h) -> new_compare25(Just(yvy400), Nothing, False, h) 47.49/23.27 new_ltEs19(yvy49001, yvy50001, ty_Bool) -> new_ltEs13(yvy49001, yvy50001) 47.49/23.27 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, app(app(app(ty_@3, bgd), bge), bgf)) -> new_esEs5(yvy4000, yvy3000, bgd, bge, bgf) 47.49/23.27 new_ltEs18(yvy4900, yvy5000, ty_Integer) -> new_ltEs10(yvy4900, yvy5000) 47.49/23.27 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.49/23.27 new_esEs26(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.49/23.27 new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.49/23.27 new_esEs7(Left(yvy4000), Left(yvy3000), ty_@0, bbg) -> new_esEs14(yvy4000, yvy3000) 47.49/23.27 new_primCmpNat0(Zero, Succ(yvy5000)) -> LT 47.49/23.27 new_compare5(yvy49000, yvy50000, app(ty_Ratio, da)) -> new_compare19(yvy49000, yvy50000, da) 47.49/23.27 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.49/23.27 new_esEs26(yvy4000, yvy3000, app(ty_[], cha)) -> new_esEs8(yvy4000, yvy3000, cha) 47.49/23.27 new_esEs12(EQ, GT) -> False 47.49/23.27 new_esEs12(GT, EQ) -> False 47.49/23.27 new_lt8(yvy49000, yvy50000, app(ty_Ratio, bdg)) -> new_lt18(yvy49000, yvy50000, bdg) 47.49/23.27 new_ltEs19(yvy49001, yvy50001, app(app(app(ty_@3, bec), bed), bee)) -> new_ltEs12(yvy49001, yvy50001, bec, bed, bee) 47.49/23.27 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) 47.49/23.27 new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.49/23.27 new_lt8(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) 47.49/23.27 new_esEs21(yvy49000, yvy50000, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs5(yvy49000, yvy50000, bdb, bdc, bdd) 47.49/23.27 new_lt19(yvy49000, yvy50000, app(ty_[], chb)) -> new_lt12(yvy49000, yvy50000, chb) 47.49/23.27 new_primCmpNat0(Succ(yvy4900), Zero) -> GT 47.49/23.27 new_pePe(False, yvy220) -> yvy220 47.49/23.27 new_esEs27(yvy49001, yvy50001, ty_@0) -> new_esEs14(yvy49001, yvy50001) 47.49/23.27 new_esEs31(yvy400, yvy300, ty_Float) -> new_esEs13(yvy400, yvy300) 47.49/23.27 new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Maybe, gh), ga) -> new_ltEs4(yvy49000, yvy50000, gh) 47.49/23.27 new_esEs11(False, True) -> False 47.49/23.27 new_esEs11(True, False) -> False 47.49/23.27 new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cec), ced)) -> new_esEs7(yvy4000, yvy3000, cec, ced) 47.49/23.27 new_lt8(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) 47.49/23.27 new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_@2, bff), bfg), bbg) -> new_esEs4(yvy4000, yvy3000, bff, bfg) 47.49/23.27 new_compare114(yvy49000, yvy50000, True, bch, bda) -> LT 47.49/23.27 new_lt8(yvy49000, yvy50000, app(app(ty_Either, bch), bda)) -> new_lt16(yvy49000, yvy50000, bch, bda) 47.49/23.27 new_ltEs18(yvy4900, yvy5000, ty_@0) -> new_ltEs9(yvy4900, yvy5000) 47.49/23.27 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_@0) -> new_ltEs9(yvy49000, yvy50000) 47.49/23.27 new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 47.49/23.27 new_gt2(yvy35, yvy30, bb) -> new_esEs12(new_compare30(yvy35, yvy30, bb), GT) 47.49/23.27 new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) 47.49/23.27 new_ltEs7(yvy4900, yvy5000) -> new_fsEs(new_compare8(yvy4900, yvy5000)) 47.49/23.27 new_ltEs19(yvy49001, yvy50001, ty_Double) -> new_ltEs16(yvy49001, yvy50001) 47.49/23.27 new_esEs22(yvy4002, yvy3002, ty_Bool) -> new_esEs11(yvy4002, yvy3002) 47.49/23.27 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Char) -> new_ltEs6(yvy49000, yvy50000) 47.49/23.27 new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_[], gb), ga) -> new_ltEs8(yvy49000, yvy50000, gb) 47.49/23.27 new_esEs21(yvy49000, yvy50000, app(ty_[], bdf)) -> new_esEs8(yvy49000, yvy50000, bdf) 47.49/23.27 new_esEs22(yvy4002, yvy3002, app(ty_Maybe, caa)) -> new_esEs6(yvy4002, yvy3002, caa) 47.49/23.27 new_esEs21(yvy49000, yvy50000, app(app(ty_@2, bd), be)) -> new_esEs4(yvy49000, yvy50000, bd, be) 47.49/23.27 new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False 47.49/23.27 new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False 47.49/23.27 new_esEs25(yvy4001, yvy3001, app(app(ty_@2, cfb), cfc)) -> new_esEs4(yvy4001, yvy3001, cfb, cfc) 47.49/23.27 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Bool, bbg) -> new_esEs11(yvy4000, yvy3000) 47.63/23.27 new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Ratio, bfh), bbg) -> new_esEs15(yvy4000, yvy3000, bfh) 47.63/23.27 new_ltEs18(yvy4900, yvy5000, ty_Bool) -> new_ltEs13(yvy4900, yvy5000) 47.63/23.27 new_gt0(yvy300, h) -> new_esEs12(new_compare31(yvy300, h), GT) 47.63/23.27 new_ltEs18(yvy4900, yvy5000, app(app(app(ty_@3, bcd), bce), bcf)) -> new_ltEs12(yvy4900, yvy5000, bcd, bce, bcf) 47.63/23.27 new_esEs23(yvy4001, yvy3001, app(app(ty_Either, cbg), cbh)) -> new_esEs7(yvy4001, yvy3001, cbg, cbh) 47.63/23.27 new_esEs21(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) 47.63/23.27 new_esEs31(yvy400, yvy300, ty_Double) -> new_esEs18(yvy400, yvy300) 47.63/23.27 new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 47.63/23.27 new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_@2, gc), gd), ga) -> new_ltEs11(yvy49000, yvy50000, gc, gd) 47.63/23.27 new_esEs31(yvy400, yvy300, ty_@0) -> new_esEs14(yvy400, yvy300) 47.63/23.27 new_ltEs20(yvy49002, yvy50002, ty_Double) -> new_ltEs16(yvy49002, yvy50002) 47.63/23.27 new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.63/23.27 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(app(ty_Either, bad), bae)) -> new_ltEs14(yvy49000, yvy50000, bad, bae) 47.63/23.27 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Float, ga) -> new_ltEs5(yvy49000, yvy50000) 47.63/23.27 new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT 47.63/23.27 new_compare114(yvy49000, yvy50000, False, bch, bda) -> GT 47.63/23.27 new_esEs25(yvy4001, yvy3001, app(ty_[], cfg)) -> new_esEs8(yvy4001, yvy3001, cfg) 47.63/23.27 new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 47.63/23.27 new_esEs4(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bbc, bbd) -> new_asAs(new_esEs26(yvy4000, yvy3000, bbc), new_esEs25(yvy4001, yvy3001, bbd)) 47.63/23.27 new_ltEs5(yvy4900, yvy5000) -> new_fsEs(new_compare6(yvy4900, yvy5000)) 47.63/23.27 new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_Either, bga), bgb), bbg) -> new_esEs7(yvy4000, yvy3000, bga, bgb) 47.63/23.27 new_esEs26(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.63/23.27 new_esEs9(yvy4000, yvy3000, app(app(ty_@2, fb), fc)) -> new_esEs4(yvy4000, yvy3000, fb, fc) 47.63/23.27 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.63/23.27 new_compare25(Just(yvy4900), Nothing, False, bca) -> GT 47.63/23.27 new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) 47.63/23.27 new_compare5(yvy49000, yvy50000, ty_@0) -> new_compare9(yvy49000, yvy50000) 47.63/23.27 new_esEs24(yvy4000, yvy3000, app(ty_Maybe, cce)) -> new_esEs6(yvy4000, yvy3000, cce) 47.63/23.27 new_lt11(yvy205, yvy204) -> new_esEs12(new_compare8(yvy205, yvy204), LT) 47.63/23.27 new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 47.63/23.27 new_lt6(yvy49000, yvy50000) -> new_esEs12(new_compare9(yvy49000, yvy50000), LT) 47.63/23.27 new_primMulNat0(Succ(yvy400100), Zero) -> Zero 47.63/23.27 new_primMulNat0(Zero, Succ(yvy300000)) -> Zero 47.63/23.27 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Double, ga) -> new_ltEs16(yvy49000, yvy50000) 47.63/23.27 new_lt8(yvy49000, yvy50000, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_lt13(yvy49000, yvy50000, bdb, bdc, bdd) 47.63/23.27 new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) 47.63/23.27 new_esEs6(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, cdd), cde), cdf)) -> new_esEs5(yvy4000, yvy3000, cdd, cde, cdf) 47.63/23.27 new_esEs25(yvy4001, yvy3001, app(app(ty_Either, cfe), cff)) -> new_esEs7(yvy4001, yvy3001, cfe, cff) 47.63/23.27 new_compare5(yvy49000, yvy50000, ty_Float) -> new_compare6(yvy49000, yvy50000) 47.63/23.27 new_esEs9(yvy4000, yvy3000, app(ty_[], fh)) -> new_esEs8(yvy4000, yvy3000, fh) 47.63/23.27 new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, cah), cba), cbb)) -> new_esEs5(yvy4001, yvy3001, cah, cba, cbb) 47.63/23.27 new_esEs26(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.63/23.27 new_primPlusNat1(Succ(yvy1610), yvy300000) -> Succ(Succ(new_primPlusNat0(yvy1610, yvy300000))) 47.63/23.27 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Int, bbg) -> new_esEs16(yvy4000, yvy3000) 47.63/23.27 new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.63/23.27 new_esEs16(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) 47.63/23.27 new_primPlusNat0(Succ(yvy16100), Zero) -> Succ(yvy16100) 47.63/23.27 new_primPlusNat0(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) 47.63/23.27 new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) 47.63/23.27 new_primPlusNat1(Zero, yvy300000) -> Succ(yvy300000) 47.63/23.27 new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Int) -> new_compare8(new_sr(yvy49000, yvy50001), new_sr(yvy50000, yvy49001)) 47.63/23.27 new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.63/23.27 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_@0, ga) -> new_ltEs9(yvy49000, yvy50000) 47.63/23.27 new_lt8(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) 47.63/23.27 new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_Either, ha), hb), ga) -> new_ltEs14(yvy49000, yvy50000, ha, hb) 47.63/23.27 new_ltEs20(yvy49002, yvy50002, ty_@0) -> new_ltEs9(yvy49002, yvy50002) 47.63/23.27 new_ltEs18(yvy4900, yvy5000, app(app(ty_@2, bcb), bcc)) -> new_ltEs11(yvy4900, yvy5000, bcb, bcc) 47.63/23.27 new_ltEs9(yvy4900, yvy5000) -> new_fsEs(new_compare9(yvy4900, yvy5000)) 47.63/23.27 new_esEs22(yvy4002, yvy3002, app(ty_Ratio, cad)) -> new_esEs15(yvy4002, yvy3002, cad) 47.63/23.27 new_ltEs19(yvy49001, yvy50001, app(app(ty_Either, beg), beh)) -> new_ltEs14(yvy49001, yvy50001, beg, beh) 47.63/23.28 new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) 47.63/23.28 new_lt8(yvy49000, yvy50000, app(ty_Maybe, bbh)) -> new_lt15(yvy49000, yvy50000, bbh) 47.63/23.28 new_esEs30(yvy20, yvy15, ty_@0) -> new_esEs14(yvy20, yvy15) 47.63/23.28 new_lt20(yvy49001, yvy50001, ty_Char) -> new_lt10(yvy49001, yvy50001) 47.63/23.28 new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.63/23.28 new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.63/23.28 new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fa)) -> new_esEs6(yvy4000, yvy3000, fa) 47.63/23.28 new_esEs23(yvy4001, yvy3001, app(ty_Ratio, cbf)) -> new_esEs15(yvy4001, yvy3001, cbf) 47.63/23.28 new_compare25(Just(yvy4900), Just(yvy5000), False, bca) -> new_compare111(yvy4900, yvy5000, new_ltEs18(yvy4900, yvy5000, bca), bca) 47.63/23.28 new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.63/23.28 new_ltEs20(yvy49002, yvy50002, ty_Float) -> new_ltEs5(yvy49002, yvy50002) 47.63/23.28 new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cdh), cea)) -> new_esEs4(yvy4000, yvy3000, cdh, cea) 47.63/23.28 new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.63/23.28 new_fsEs(yvy209) -> new_not(new_esEs12(yvy209, GT)) 47.63/23.28 new_ltEs18(yvy4900, yvy5000, app(app(ty_Either, hd), ga)) -> new_ltEs14(yvy4900, yvy5000, hd, ga) 47.63/23.28 new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Ratio, ceb)) -> new_esEs15(yvy4000, yvy3000, ceb) 47.63/23.28 new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 47.63/23.28 new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) 47.63/23.28 new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_[], cee)) -> new_esEs8(yvy4000, yvy3000, cee) 47.63/23.28 new_compare25(yvy490, yvy500, True, bca) -> EQ 47.63/23.28 new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs5(yvy4000, yvy3000, ef, eg, eh) 47.63/23.28 new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fd)) -> new_esEs15(yvy4000, yvy3000, fd) 47.63/23.28 new_compare([], :(yvy50000, yvy50001), bf) -> LT 47.63/23.28 new_lt20(yvy49001, yvy50001, app(ty_[], dad)) -> new_lt12(yvy49001, yvy50001, dad) 47.63/23.28 new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cdg)) -> new_esEs6(yvy4000, yvy3000, cdg) 47.63/23.28 new_esEs6(Nothing, Just(yvy3000), bbb) -> False 47.63/23.28 new_esEs6(Just(yvy4000), Nothing, bbb) -> False 47.63/23.28 new_esEs23(yvy4001, yvy3001, app(ty_[], cca)) -> new_esEs8(yvy4001, yvy3001, cca) 47.63/23.28 new_ltEs15(EQ, GT) -> True 47.63/23.28 new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.63/23.28 new_esEs6(Nothing, Nothing, bbb) -> True 47.63/23.28 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Double) -> new_ltEs16(yvy49000, yvy50000) 47.63/23.28 new_esEs11(False, False) -> True 47.63/23.28 new_esEs24(yvy4000, yvy3000, app(app(ty_Either, cda), cdb)) -> new_esEs7(yvy4000, yvy3000, cda, cdb) 47.63/23.28 new_ltEs18(yvy4900, yvy5000, ty_Ordering) -> new_ltEs15(yvy4900, yvy5000) 47.63/23.28 new_ltEs11(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), bcb, bcc) -> new_pePe(new_lt8(yvy49000, yvy50000, bcb), new_asAs(new_esEs21(yvy49000, yvy50000, bcb), new_ltEs19(yvy49001, yvy50001, bcc))) 47.63/23.28 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Integer) -> new_ltEs10(yvy49000, yvy50000) 47.63/23.28 new_esEs21(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) 47.63/23.28 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.63/23.28 new_esEs30(yvy20, yvy15, ty_Char) -> new_esEs17(yvy20, yvy15) 47.63/23.28 new_ltEs14(Left(yvy49000), Right(yvy50000), hd, ga) -> True 47.63/23.28 new_ltEs19(yvy49001, yvy50001, ty_Float) -> new_ltEs5(yvy49001, yvy50001) 47.63/23.28 new_esEs23(yvy4001, yvy3001, app(app(ty_@2, cbd), cbe)) -> new_esEs4(yvy4001, yvy3001, cbd, cbe) 47.63/23.28 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.63/23.28 new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.63/23.28 new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.63/23.28 new_esEs26(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.63/23.28 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Ordering, ga) -> new_ltEs15(yvy49000, yvy50000) 47.63/23.28 new_ltEs6(yvy4900, yvy5000) -> new_fsEs(new_compare7(yvy4900, yvy5000)) 47.63/23.28 new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 47.63/23.28 new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 47.63/23.28 new_esEs8(:(yvy4000, yvy4001), [], ee) -> False 47.63/23.28 new_esEs8([], :(yvy3000, yvy3001), ee) -> False 47.63/23.28 new_esEs26(yvy4000, yvy3000, app(app(ty_Either, cgg), cgh)) -> new_esEs7(yvy4000, yvy3000, cgg, cgh) 47.63/23.28 new_lt19(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) 47.63/23.28 new_lt17(yvy49000, yvy50000) -> new_esEs12(new_compare17(yvy49000, yvy50000), LT) 47.63/23.28 new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Integer) -> new_compare11(new_sr0(yvy49000, yvy50001), new_sr0(yvy50000, yvy49001)) 47.63/23.28 new_esEs22(yvy4002, yvy3002, app(app(ty_@2, cab), cac)) -> new_esEs4(yvy4002, yvy3002, cab, cac) 47.63/23.28 new_esEs31(yvy400, yvy300, app(ty_Maybe, bbb)) -> new_esEs6(yvy400, yvy300, bbb) 47.63/23.28 new_esEs22(yvy4002, yvy3002, ty_Double) -> new_esEs18(yvy4002, yvy3002) 47.63/23.28 new_esEs26(yvy4000, yvy3000, app(ty_Ratio, cgf)) -> new_esEs15(yvy4000, yvy3000, cgf) 47.63/23.28 new_esEs31(yvy400, yvy300, ty_Bool) -> new_esEs11(yvy400, yvy300) 47.63/23.28 new_compare5(yvy49000, yvy50000, app(ty_Maybe, ce)) -> new_compare15(yvy49000, yvy50000, ce) 47.63/23.28 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Integer, bbg) -> new_esEs10(yvy4000, yvy3000) 47.63/23.28 new_ltEs19(yvy49001, yvy50001, ty_@0) -> new_ltEs9(yvy49001, yvy50001) 47.63/23.28 new_esEs22(yvy4002, yvy3002, app(app(app(ty_@3, bhf), bhg), bhh)) -> new_esEs5(yvy4002, yvy3002, bhf, bhg, bhh) 47.63/23.28 new_lt20(yvy49001, yvy50001, ty_@0) -> new_lt6(yvy49001, yvy50001) 47.63/23.28 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, app(app(ty_@2, bgh), bha)) -> new_esEs4(yvy4000, yvy3000, bgh, bha) 47.63/23.28 new_gt1(yvy400, h) -> new_esEs12(new_compare32(yvy400, h), GT) 47.63/23.28 new_sr0(Integer(yvy490000), Integer(yvy500010)) -> Integer(new_primMulInt(yvy490000, yvy500010)) 47.63/23.28 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Bool, ga) -> new_ltEs13(yvy49000, yvy50000) 47.63/23.28 new_esEs18(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 47.63/23.28 new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.63/23.28 new_esEs28(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) 47.63/23.28 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, app(ty_[], bhe)) -> new_esEs8(yvy4000, yvy3000, bhe) 47.63/23.28 new_ltEs15(LT, GT) -> True 47.63/23.28 new_lt19(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) 47.63/23.28 new_esEs30(yvy20, yvy15, app(ty_[], deb)) -> new_esEs8(yvy20, yvy15, deb) 47.63/23.28 new_compare33(h) -> new_compare25(Nothing, Nothing, True, h) 47.63/23.28 new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) 47.63/23.28 new_esEs12(GT, GT) -> True 47.63/23.28 new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) 47.63/23.28 new_esEs24(yvy4000, yvy3000, app(ty_[], cdc)) -> new_esEs8(yvy4000, yvy3000, cdc) 47.63/23.28 new_asAs(True, yvy201) -> yvy201 47.63/23.28 new_esEs26(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.63/23.28 new_esEs21(yvy49000, yvy50000, app(ty_Maybe, bbh)) -> new_esEs6(yvy49000, yvy50000, bbh) 47.63/23.28 new_esEs10(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) 47.63/23.28 new_compare10(yvy49000, yvy50000, False, bd, be) -> GT 47.63/23.28 new_lt8(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) 47.63/23.28 new_lt8(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) 47.63/23.28 new_compare113(yvy49000, yvy50000, True) -> LT 47.63/23.28 new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.63/23.28 new_ltEs16(yvy4900, yvy5000) -> new_fsEs(new_compare18(yvy4900, yvy5000)) 47.63/23.28 new_lt20(yvy49001, yvy50001, ty_Float) -> new_lt9(yvy49001, yvy50001) 47.63/23.28 new_esEs31(yvy400, yvy300, ty_Char) -> new_esEs17(yvy400, yvy300) 47.63/23.28 new_ltEs4(Nothing, Just(yvy50000), db) -> True 47.63/23.28 new_esEs21(yvy49000, yvy50000, app(ty_Ratio, bdg)) -> new_esEs15(yvy49000, yvy50000, bdg) 47.63/23.28 new_ltEs18(yvy4900, yvy5000, app(ty_Maybe, db)) -> new_ltEs4(yvy4900, yvy5000, db) 47.63/23.28 new_lt8(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) 47.63/23.28 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Float, bbg) -> new_esEs13(yvy4000, yvy3000) 47.63/23.28 new_ltEs8(yvy4900, yvy5000, bf) -> new_fsEs(new_compare(yvy4900, yvy5000, bf)) 47.63/23.28 new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) 47.63/23.28 new_ltEs18(yvy4900, yvy5000, app(ty_[], bf)) -> new_ltEs8(yvy4900, yvy5000, bf) 47.63/23.28 new_compare110(yvy49000, yvy50000, False) -> GT 47.63/23.28 new_primCompAux00(yvy225, EQ) -> yvy225 47.63/23.28 new_lt19(yvy49000, yvy50000, app(ty_Maybe, chh)) -> new_lt15(yvy49000, yvy50000, chh) 47.63/23.28 new_esEs12(EQ, EQ) -> True 47.63/23.28 new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) 47.63/23.28 new_lt19(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) 47.63/23.28 new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) 47.63/23.28 new_esEs21(yvy49000, yvy50000, app(app(ty_Either, bch), bda)) -> new_esEs7(yvy49000, yvy50000, bch, bda) 47.63/23.28 new_primMulNat0(Zero, Zero) -> Zero 47.63/23.28 new_compare24(yvy49000, yvy50000, False) -> new_compare110(yvy49000, yvy50000, new_ltEs13(yvy49000, yvy50000)) 47.63/23.28 new_compare5(yvy49000, yvy50000, ty_Integer) -> new_compare11(yvy49000, yvy50000) 47.63/23.28 new_esEs22(yvy4002, yvy3002, ty_Integer) -> new_esEs10(yvy4002, yvy3002) 47.63/23.28 new_esEs21(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) 47.63/23.28 new_lt19(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) 47.63/23.28 new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.63/23.28 new_ltEs12(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), bcd, bce, bcf) -> new_pePe(new_lt19(yvy49000, yvy50000, bcd), new_asAs(new_esEs28(yvy49000, yvy50000, bcd), new_pePe(new_lt20(yvy49001, yvy50001, bce), new_asAs(new_esEs27(yvy49001, yvy50001, bce), new_ltEs20(yvy49002, yvy50002, bcf))))) 47.63/23.28 new_ltEs19(yvy49001, yvy50001, app(ty_[], bdh)) -> new_ltEs8(yvy49001, yvy50001, bdh) 47.63/23.28 new_compare5(yvy49000, yvy50000, ty_Double) -> new_compare18(yvy49000, yvy50000) 47.63/23.28 new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_@2, dd), de)) -> new_ltEs11(yvy49000, yvy50000, dd, de) 47.63/23.28 new_compare11(Integer(yvy49000), Integer(yvy50000)) -> new_primCmpInt(yvy49000, yvy50000) 47.63/23.28 new_compare9(@0, @0) -> EQ 47.63/23.28 new_esEs22(yvy4002, yvy3002, app(app(ty_Either, cae), caf)) -> new_esEs7(yvy4002, yvy3002, cae, caf) 47.63/23.28 new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.63/23.28 new_compare28(yvy49000, yvy50000, True, bdb, bdc, bdd) -> EQ 47.63/23.28 new_esEs27(yvy49001, yvy50001, ty_Float) -> new_esEs13(yvy49001, yvy50001) 47.63/23.28 new_esEs26(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.63/23.28 new_ltEs13(False, True) -> True 47.63/23.28 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.63/23.28 new_ltEs13(False, False) -> True 47.63/23.28 new_esEs9(yvy4000, yvy3000, app(app(ty_Either, ff), fg)) -> new_esEs7(yvy4000, yvy3000, ff, fg) 47.63/23.28 new_esEs7(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, bfb), bfc), bfd), bbg) -> new_esEs5(yvy4000, yvy3000, bfb, bfc, bfd) 47.63/23.28 new_ltEs15(EQ, EQ) -> True 47.63/23.28 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) 47.63/23.28 new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Maybe, bfe), bbg) -> new_esEs6(yvy4000, yvy3000, bfe) 47.63/23.28 new_compare30(yvy20, yvy15, dch) -> new_compare25(Just(yvy20), Just(yvy15), new_esEs30(yvy20, yvy15, dch), dch) 47.63/23.28 new_esEs26(yvy4000, yvy3000, app(ty_Maybe, cgc)) -> new_esEs6(yvy4000, yvy3000, cgc) 47.63/23.28 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.63/23.28 new_esEs26(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.63/23.28 new_lt12(yvy49000, yvy50000, bdf) -> new_esEs12(new_compare(yvy49000, yvy50000, bdf), LT) 47.63/23.28 new_lt10(yvy49000, yvy50000) -> new_esEs12(new_compare7(yvy49000, yvy50000), LT) 47.63/23.28 new_lt19(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) 47.63/23.28 new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.63/23.28 new_compare31(yvy300, h) -> new_compare25(Nothing, Just(yvy300), False, h) 47.63/23.28 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Char, bbg) -> new_esEs17(yvy4000, yvy3000) 47.63/23.28 new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.63/23.28 new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_[], bgc), bbg) -> new_esEs8(yvy4000, yvy3000, bgc) 47.63/23.28 new_ltEs20(yvy49002, yvy50002, app(ty_[], dbf)) -> new_ltEs8(yvy49002, yvy50002, dbf) 47.63/23.28 new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_Either, eb), ec)) -> new_ltEs14(yvy49000, yvy50000, eb, ec) 47.63/23.28 new_compare17(yvy49000, yvy50000) -> new_compare29(yvy49000, yvy50000, new_esEs12(yvy49000, yvy50000)) 47.63/23.28 new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False 47.63/23.28 new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False 47.63/23.28 new_esEs21(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) 47.63/23.28 new_esEs25(yvy4001, yvy3001, app(ty_Maybe, cfa)) -> new_esEs6(yvy4001, yvy3001, cfa) 47.63/23.28 new_compare([], [], bf) -> EQ 47.63/23.28 new_ltEs15(LT, EQ) -> True 47.63/23.28 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Float) -> new_ltEs5(yvy49000, yvy50000) 47.63/23.28 new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 47.63/23.28 new_ltEs18(yvy4900, yvy5000, ty_Char) -> new_ltEs6(yvy4900, yvy5000) 47.63/23.28 new_ltEs18(yvy4900, yvy5000, app(ty_Ratio, bcg)) -> new_ltEs17(yvy4900, yvy5000, bcg) 47.63/23.28 new_lt20(yvy49001, yvy50001, ty_Double) -> new_lt7(yvy49001, yvy50001) 47.63/23.28 new_esEs26(yvy4000, yvy3000, app(app(ty_@2, cgd), cge)) -> new_esEs4(yvy4000, yvy3000, cgd, cge) 47.63/23.28 new_compare24(yvy49000, yvy50000, True) -> EQ 47.63/23.28 new_lt8(yvy49000, yvy50000, app(ty_[], bdf)) -> new_lt12(yvy49000, yvy50000, bdf) 47.63/23.28 new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(app(ty_@3, ge), gf), gg), ga) -> new_ltEs12(yvy49000, yvy50000, ge, gf, gg) 47.63/23.28 new_esEs21(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) 47.63/23.28 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, app(app(ty_Either, bhc), bhd)) -> new_esEs7(yvy4000, yvy3000, bhc, bhd) 47.63/23.28 new_esEs11(True, True) -> True 47.63/23.28 new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False 47.63/23.28 new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False 47.63/23.28 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(ty_[], he)) -> new_ltEs8(yvy49000, yvy50000, he) 47.63/23.28 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, app(ty_Maybe, bgg)) -> new_esEs6(yvy4000, yvy3000, bgg) 47.63/23.28 new_esEs31(yvy400, yvy300, app(ty_Ratio, bbe)) -> new_esEs15(yvy400, yvy300, bbe) 47.63/23.28 new_esEs25(yvy4001, yvy3001, app(ty_Ratio, cfd)) -> new_esEs15(yvy4001, yvy3001, cfd) 47.63/23.28 new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) 47.63/23.28 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Int) -> new_ltEs7(yvy49000, yvy50000) 47.63/23.28 new_esEs15(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bbe) -> new_asAs(new_esEs20(yvy4000, yvy3000, bbe), new_esEs19(yvy4001, yvy3001, bbe)) 47.63/23.28 new_compare28(yvy49000, yvy50000, False, bdb, bdc, bdd) -> new_compare112(yvy49000, yvy50000, new_ltEs12(yvy49000, yvy50000, bdb, bdc, bdd), bdb, bdc, bdd) 47.63/23.28 new_esEs22(yvy4002, yvy3002, ty_Float) -> new_esEs13(yvy4002, yvy3002) 47.63/23.28 new_esEs27(yvy49001, yvy50001, ty_Integer) -> new_esEs10(yvy49001, yvy50001) 47.63/23.28 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(app(ty_@2, hf), hg)) -> new_ltEs11(yvy49000, yvy50000, hf, hg) 47.63/23.28 new_gt(h) -> new_esEs12(new_compare33(h), GT) 47.63/23.28 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 47.63/23.28 new_ltEs15(GT, GT) -> True 47.63/23.28 new_compare111(yvy198, yvy199, False, bde) -> GT 47.63/23.28 new_esEs30(yvy20, yvy15, ty_Bool) -> new_esEs11(yvy20, yvy15) 47.63/23.28 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(ty_Maybe, bac)) -> new_ltEs4(yvy49000, yvy50000, bac) 47.63/23.28 new_esEs30(yvy20, yvy15, app(ty_Maybe, ddd)) -> new_esEs6(yvy20, yvy15, ddd) 47.63/23.28 new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 47.63/23.28 new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) 47.63/23.28 new_esEs31(yvy400, yvy300, app(app(ty_@2, bbc), bbd)) -> new_esEs4(yvy400, yvy300, bbc, bbd) 47.63/23.28 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Int, ga) -> new_ltEs7(yvy49000, yvy50000) 47.63/23.28 new_not(False) -> True 47.63/23.28 new_compare5(yvy49000, yvy50000, app(app(ty_Either, cf), cg)) -> new_compare16(yvy49000, yvy50000, cf, cg) 47.63/23.28 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.63/23.28 new_compare112(yvy49000, yvy50000, True, bdb, bdc, bdd) -> LT 47.63/23.28 new_esEs28(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) 47.63/23.28 new_compare5(yvy49000, yvy50000, ty_Bool) -> new_compare14(yvy49000, yvy50000) 47.63/23.28 new_lt13(yvy49000, yvy50000, bdb, bdc, bdd) -> new_esEs12(new_compare13(yvy49000, yvy50000, bdb, bdc, bdd), LT) 47.63/23.28 new_primCompAux0(yvy49000, yvy50000, yvy221, bf) -> new_primCompAux00(yvy221, new_compare5(yvy49000, yvy50000, bf)) 47.63/23.28 new_esEs27(yvy49001, yvy50001, app(app(ty_Either, dbc), dbd)) -> new_esEs7(yvy49001, yvy50001, dbc, dbd) 47.63/23.28 new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 47.63/23.28 new_esEs22(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) 47.63/23.28 new_lt7(yvy49000, yvy50000) -> new_esEs12(new_compare18(yvy49000, yvy50000), LT) 47.63/23.28 new_esEs28(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) 47.63/23.28 new_esEs12(LT, EQ) -> False 47.63/23.28 new_esEs12(EQ, LT) -> False 47.63/23.28 new_esEs21(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) 47.63/23.28 new_compare29(yvy49000, yvy50000, True) -> EQ 47.63/23.28 new_primPlusNat0(Succ(yvy16100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat0(yvy16100, yvy3000000))) 47.63/23.28 new_lt4(yvy49000, yvy50000, bd, be) -> new_esEs12(new_compare12(yvy49000, yvy50000, bd, be), LT) 47.63/23.28 new_compare5(yvy49000, yvy50000, app(app(app(ty_@3, cb), cc), cd)) -> new_compare13(yvy49000, yvy50000, cb, cc, cd) 47.63/23.28 new_esEs27(yvy49001, yvy50001, app(ty_Ratio, dbe)) -> new_esEs15(yvy49001, yvy50001, dbe) 47.63/23.28 new_lt19(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) 47.63/23.28 new_esEs31(yvy400, yvy300, ty_Integer) -> new_esEs10(yvy400, yvy300) 47.63/23.28 new_esEs28(yvy49000, yvy50000, app(app(app(ty_@3, che), chf), chg)) -> new_esEs5(yvy49000, yvy50000, che, chf, chg) 47.63/23.28 new_compare112(yvy49000, yvy50000, False, bdb, bdc, bdd) -> GT 47.63/23.28 new_compare27(yvy49000, yvy50000, True, bd, be) -> EQ 47.63/23.28 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.63/23.28 new_compare15(yvy49000, yvy50000, bbh) -> new_compare25(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, bbh), bbh) 47.63/23.28 new_esEs21(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) 47.63/23.28 new_esEs12(LT, GT) -> False 47.63/23.28 new_esEs12(GT, LT) -> False 47.63/23.28 new_lt20(yvy49001, yvy50001, ty_Int) -> new_lt11(yvy49001, yvy50001) 47.63/23.28 new_esEs31(yvy400, yvy300, app(ty_[], ee)) -> new_esEs8(yvy400, yvy300, ee) 47.63/23.28 new_ltEs19(yvy49001, yvy50001, ty_Int) -> new_ltEs7(yvy49001, yvy50001) 47.63/23.28 new_ltEs20(yvy49002, yvy50002, app(ty_Ratio, dcg)) -> new_ltEs17(yvy49002, yvy50002, dcg) 47.63/23.28 new_esEs8([], [], ee) -> True 47.63/23.28 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Char, ga) -> new_ltEs6(yvy49000, yvy50000) 47.63/23.28 new_ltEs20(yvy49002, yvy50002, ty_Char) -> new_ltEs6(yvy49002, yvy50002) 47.63/23.28 new_compare25(Nothing, Nothing, False, bca) -> LT 47.63/23.28 new_lt20(yvy49001, yvy50001, app(ty_Maybe, dbb)) -> new_lt15(yvy49001, yvy50001, dbb) 47.63/23.28 new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Ratio, ed)) -> new_ltEs17(yvy49000, yvy50000, ed) 47.63/23.28 new_lt8(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) 47.63/23.28 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Float) -> new_ltEs5(yvy49000, yvy50000) 47.63/23.28 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 47.63/23.28 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 47.63/23.28 new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) 47.63/23.28 new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.63/23.28 new_esEs31(yvy400, yvy300, app(app(ty_Either, bbf), bbg)) -> new_esEs7(yvy400, yvy300, bbf, bbg) 47.63/23.28 new_lt20(yvy49001, yvy50001, app(app(ty_@2, dae), daf)) -> new_lt4(yvy49001, yvy50001, dae, daf) 47.63/23.28 new_esEs28(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) 47.63/23.28 new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.63/23.28 new_compare111(yvy198, yvy199, True, bde) -> LT 47.63/23.28 new_ltEs13(True, False) -> False 47.63/23.28 new_ltEs20(yvy49002, yvy50002, ty_Int) -> new_ltEs7(yvy49002, yvy50002) 47.63/23.28 new_esEs27(yvy49001, yvy50001, app(app(ty_@2, dae), daf)) -> new_esEs4(yvy49001, yvy50001, dae, daf) 47.63/23.28 new_ltEs15(LT, LT) -> True 47.63/23.28 new_esEs31(yvy400, yvy300, ty_Int) -> new_esEs16(yvy400, yvy300) 47.63/23.28 new_esEs13(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 47.63/23.28 new_esEs22(yvy4002, yvy3002, ty_@0) -> new_esEs14(yvy4002, yvy3002) 47.63/23.28 new_esEs28(yvy49000, yvy50000, app(ty_Maybe, chh)) -> new_esEs6(yvy49000, yvy50000, chh) 47.63/23.28 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 47.63/23.28 new_esEs26(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.63/23.28 new_esEs28(yvy49000, yvy50000, app(app(ty_@2, chc), chd)) -> new_esEs4(yvy49000, yvy50000, chc, chd) 47.63/23.28 new_compare7(Char(yvy49000), Char(yvy50000)) -> new_primCmpNat0(yvy49000, yvy50000) 47.63/23.28 new_lt5(yvy49000, yvy50000) -> new_esEs12(new_compare11(yvy49000, yvy50000), LT) 47.63/23.28 new_lt20(yvy49001, yvy50001, app(app(ty_Either, dbc), dbd)) -> new_lt16(yvy49001, yvy50001, dbc, dbd) 47.63/23.28 new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) 47.63/23.28 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Char) -> new_ltEs6(yvy49000, yvy50000) 47.63/23.28 new_esEs26(yvy4000, yvy3000, app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs5(yvy4000, yvy3000, cfh, cga, cgb) 47.63/23.28 new_lt20(yvy49001, yvy50001, ty_Integer) -> new_lt5(yvy49001, yvy50001) 47.63/23.28 new_esEs30(yvy20, yvy15, ty_Int) -> new_esEs16(yvy20, yvy15) 47.63/23.28 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Double) -> new_ltEs16(yvy49000, yvy50000) 47.63/23.28 new_ltEs10(yvy4900, yvy5000) -> new_fsEs(new_compare11(yvy4900, yvy5000)) 47.63/23.28 new_lt14(yvy49000, yvy50000) -> new_esEs12(new_compare14(yvy49000, yvy50000), LT) 47.63/23.28 new_esEs31(yvy400, yvy300, ty_Ordering) -> new_esEs12(yvy400, yvy300) 47.63/23.28 new_esEs27(yvy49001, yvy50001, app(ty_Maybe, dbb)) -> new_esEs6(yvy49001, yvy50001, dbb) 47.63/23.28 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_@0) -> new_ltEs9(yvy49000, yvy50000) 47.63/23.28 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Double, bbg) -> new_esEs18(yvy4000, yvy3000) 47.63/23.28 new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_[], dc)) -> new_ltEs8(yvy49000, yvy50000, dc) 47.63/23.28 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Integer) -> new_ltEs10(yvy49000, yvy50000) 47.63/23.28 new_esEs27(yvy49001, yvy50001, ty_Double) -> new_esEs18(yvy49001, yvy50001) 47.63/23.28 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 47.63/23.28 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 47.63/23.28 new_compare25(Nothing, Just(yvy5000), False, bca) -> LT 47.63/23.28 new_compare5(yvy49000, yvy50000, app(app(ty_@2, bh), ca)) -> new_compare12(yvy49000, yvy50000, bh, ca) 47.63/23.28 new_esEs28(yvy49000, yvy50000, app(ty_[], chb)) -> new_esEs8(yvy49000, yvy50000, chb) 47.63/23.28 new_lt19(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) 47.63/23.28 new_lt18(yvy49000, yvy50000, bdg) -> new_esEs12(new_compare19(yvy49000, yvy50000, bdg), LT) 47.63/23.28 new_compare5(yvy49000, yvy50000, ty_Char) -> new_compare7(yvy49000, yvy50000) 47.63/23.28 new_ltEs19(yvy49001, yvy50001, app(ty_Maybe, bef)) -> new_ltEs4(yvy49001, yvy50001, bef) 47.63/23.28 new_compare5(yvy49000, yvy50000, app(ty_[], bg)) -> new_compare(yvy49000, yvy50000, bg) 47.63/23.28 new_compare14(yvy49000, yvy50000) -> new_compare24(yvy49000, yvy50000, new_esEs11(yvy49000, yvy50000)) 47.63/23.28 new_primEqNat0(Zero, Zero) -> True 47.63/23.28 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Integer, ga) -> new_ltEs10(yvy49000, yvy50000) 47.63/23.28 new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.63/23.28 new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) 47.63/23.28 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Bool) -> new_ltEs13(yvy49000, yvy50000) 47.63/23.28 new_esEs30(yvy20, yvy15, app(app(ty_Either, ddh), dea)) -> new_esEs7(yvy20, yvy15, ddh, dea) 47.63/23.28 new_esEs30(yvy20, yvy15, ty_Ordering) -> new_esEs12(yvy20, yvy15) 47.63/23.28 new_compare5(yvy49000, yvy50000, ty_Ordering) -> new_compare17(yvy49000, yvy50000) 47.63/23.28 new_esEs6(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.63/23.28 new_asAs(False, yvy201) -> False 47.63/23.28 new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(app(ty_@3, df), dg), dh)) -> new_ltEs12(yvy49000, yvy50000, df, dg, dh) 47.63/23.28 new_esEs28(yvy49000, yvy50000, app(ty_Ratio, dac)) -> new_esEs15(yvy49000, yvy50000, dac) 47.63/23.28 new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 47.63/23.28 new_esEs30(yvy20, yvy15, ty_Integer) -> new_esEs10(yvy20, yvy15) 47.63/23.28 new_ltEs20(yvy49002, yvy50002, app(ty_Maybe, dcd)) -> new_ltEs4(yvy49002, yvy50002, dcd) 47.63/23.28 new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) 47.63/23.28 new_lt8(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) 47.63/23.28 new_esEs7(Left(yvy4000), Right(yvy3000), bbf, bbg) -> False 47.63/23.28 new_esEs7(Right(yvy4000), Left(yvy3000), bbf, bbg) -> False 47.63/23.28 new_ltEs17(yvy4900, yvy5000, bcg) -> new_fsEs(new_compare19(yvy4900, yvy5000, bcg)) 47.63/23.28 new_lt16(yvy49000, yvy50000, bch, bda) -> new_esEs12(new_compare16(yvy49000, yvy50000, bch, bda), LT) 47.63/23.28 new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.63/23.28 new_ltEs18(yvy4900, yvy5000, ty_Int) -> new_ltEs7(yvy4900, yvy5000) 47.63/23.28 new_lt19(yvy49000, yvy50000, app(app(ty_Either, daa), dab)) -> new_lt16(yvy49000, yvy50000, daa, dab) 47.63/23.28 new_esEs27(yvy49001, yvy50001, app(app(app(ty_@3, dag), dah), dba)) -> new_esEs5(yvy49001, yvy50001, dag, dah, dba) 47.63/23.28 47.63/23.28 The set Q consists of the following terms: 47.63/23.28 47.63/23.28 new_esEs27(x0, x1, ty_@0) 47.63/23.28 new_esEs8(:(x0, x1), :(x2, x3), x4) 47.63/23.28 new_esEs25(x0, x1, app(ty_Maybe, x2)) 47.63/23.28 new_compare12(x0, x1, x2, x3) 47.63/23.28 new_esEs8([], [], x0) 47.63/23.28 new_esEs24(x0, x1, app(ty_Ratio, x2)) 47.63/23.28 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 47.63/23.28 new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) 47.63/23.28 new_esEs7(Right(x0), Right(x1), x2, ty_Bool) 47.63/23.28 new_lt20(x0, x1, app(ty_Ratio, x2)) 47.63/23.28 new_esEs26(x0, x1, ty_Float) 47.63/23.28 new_esEs12(EQ, EQ) 47.63/23.28 new_compare30(x0, x1, x2) 47.63/23.28 new_esEs7(Right(x0), Right(x1), x2, ty_@0) 47.63/23.28 new_esEs28(x0, x1, ty_Char) 47.63/23.28 new_compare5(x0, x1, app(ty_Maybe, x2)) 47.63/23.28 new_primMulInt(Neg(x0), Neg(x1)) 47.63/23.28 new_lt20(x0, x1, ty_@0) 47.63/23.28 new_esEs26(x0, x1, app(ty_[], x2)) 47.63/23.28 new_primCmpNat0(Succ(x0), Zero) 47.63/23.28 new_compare29(x0, x1, True) 47.63/23.28 new_compare5(x0, x1, app(app(ty_@2, x2), x3)) 47.63/23.28 new_compare28(x0, x1, False, x2, x3, x4) 47.63/23.28 new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) 47.63/23.28 new_ltEs17(x0, x1, x2) 47.63/23.28 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 47.63/23.28 new_compare15(x0, x1, x2) 47.63/23.28 new_primEqInt(Pos(Zero), Pos(Zero)) 47.63/23.28 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 47.63/23.28 new_primMulInt(Pos(x0), Pos(x1)) 47.63/23.28 new_esEs27(x0, x1, app(ty_Ratio, x2)) 47.63/23.28 new_ltEs14(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 47.63/23.28 new_primCompAux00(x0, GT) 47.63/23.28 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 47.63/23.28 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 47.63/23.28 new_lt8(x0, x1, ty_Float) 47.63/23.28 new_ltEs4(Just(x0), Just(x1), ty_Float) 47.63/23.28 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_compare27(x0, x1, True, x2, x3) 47.63/23.28 new_asAs(False, x0) 47.63/23.28 new_ltEs20(x0, x1, app(ty_[], x2)) 47.63/23.28 new_compare114(x0, x1, False, x2, x3) 47.63/23.28 new_ltEs14(Left(x0), Left(x1), app(ty_[], x2), x3) 47.63/23.28 new_esEs27(x0, x1, ty_Integer) 47.63/23.28 new_primEqInt(Neg(Zero), Neg(Zero)) 47.63/23.28 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 47.63/23.28 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 47.63/23.28 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 47.63/23.28 new_sr(x0, x1) 47.63/23.28 new_esEs28(x0, x1, ty_Bool) 47.63/23.28 new_esEs27(x0, x1, ty_Char) 47.63/23.28 new_primCmpNat0(Zero, Succ(x0)) 47.63/23.28 new_lt19(x0, x1, ty_Double) 47.63/23.28 new_ltEs13(False, True) 47.63/23.28 new_ltEs13(True, False) 47.63/23.28 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_ltEs18(x0, x1, ty_Int) 47.63/23.28 new_lt17(x0, x1) 47.63/23.28 new_esEs21(x0, x1, app(ty_Ratio, x2)) 47.63/23.28 new_esEs9(x0, x1, ty_Double) 47.63/23.28 new_esEs28(x0, x1, ty_Ordering) 47.63/23.28 new_lt8(x0, x1, ty_Integer) 47.63/23.28 new_compare110(x0, x1, False) 47.63/23.28 new_esEs7(Right(x0), Right(x1), x2, ty_Char) 47.63/23.28 new_compare10(x0, x1, False, x2, x3) 47.63/23.28 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 47.63/23.28 new_esEs19(x0, x1, ty_Integer) 47.63/23.28 new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) 47.63/23.28 new_ltEs14(Right(x0), Right(x1), x2, ty_Integer) 47.63/23.28 new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 47.63/23.28 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_esEs22(x0, x1, app(ty_Maybe, x2)) 47.63/23.28 new_compare111(x0, x1, False, x2) 47.63/23.28 new_ltEs19(x0, x1, ty_Float) 47.63/23.28 new_esEs21(x0, x1, app(ty_Maybe, x2)) 47.63/23.28 new_esEs28(x0, x1, app(ty_[], x2)) 47.63/23.28 new_esEs7(Right(x0), Right(x1), x2, ty_Integer) 47.63/23.28 new_esEs9(x0, x1, ty_Int) 47.63/23.28 new_esEs23(x0, x1, app(ty_[], x2)) 47.63/23.28 new_ltEs14(Right(x0), Right(x1), x2, ty_Bool) 47.63/23.28 new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 47.63/23.28 new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 47.63/23.28 new_compare25(Nothing, Just(x0), False, x1) 47.63/23.28 new_ltEs14(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 47.63/23.28 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 47.63/23.28 new_lt8(x0, x1, app(ty_[], x2)) 47.63/23.28 new_lt8(x0, x1, ty_Bool) 47.63/23.28 new_esEs18(Double(x0, x1), Double(x2, x3)) 47.63/23.28 new_ltEs8(x0, x1, x2) 47.63/23.28 new_primEqInt(Pos(Zero), Neg(Zero)) 47.63/23.28 new_primEqInt(Neg(Zero), Pos(Zero)) 47.63/23.28 new_esEs31(x0, x1, ty_Ordering) 47.63/23.28 new_esEs30(x0, x1, ty_Float) 47.63/23.28 new_esEs12(LT, GT) 47.63/23.28 new_esEs12(GT, LT) 47.63/23.28 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 47.63/23.28 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 47.63/23.28 new_esEs17(Char(x0), Char(x1)) 47.63/23.28 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_esEs21(x0, x1, ty_Float) 47.63/23.28 new_ltEs19(x0, x1, app(ty_[], x2)) 47.63/23.28 new_ltEs18(x0, x1, ty_Double) 47.63/23.28 new_lt18(x0, x1, x2) 47.63/23.28 new_primCompAux0(x0, x1, x2, x3) 47.63/23.28 new_ltEs20(x0, x1, ty_Ordering) 47.63/23.28 new_esEs27(x0, x1, ty_Bool) 47.63/23.28 new_compare25(Just(x0), Just(x1), False, x2) 47.63/23.28 new_compare14(x0, x1) 47.63/23.28 new_ltEs18(x0, x1, ty_Char) 47.63/23.28 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 47.63/23.28 new_asAs(True, x0) 47.63/23.28 new_esEs24(x0, x1, ty_Integer) 47.63/23.28 new_esEs30(x0, x1, ty_@0) 47.63/23.28 new_pePe(True, x0) 47.63/23.28 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 47.63/23.28 new_ltEs7(x0, x1) 47.63/23.28 new_ltEs15(EQ, EQ) 47.63/23.28 new_compare([], [], x0) 47.63/23.28 new_esEs30(x0, x1, app(ty_Ratio, x2)) 47.63/23.28 new_primEqNat0(Succ(x0), Zero) 47.63/23.28 new_esEs28(x0, x1, ty_Integer) 47.63/23.28 new_esEs25(x0, x1, ty_Float) 47.63/23.28 new_compare112(x0, x1, True, x2, x3, x4) 47.63/23.28 new_primMulNat0(Succ(x0), Succ(x1)) 47.63/23.28 new_compare25(x0, x1, True, x2) 47.63/23.28 new_gt2(x0, x1, x2) 47.63/23.28 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 47.63/23.28 new_compare5(x0, x1, ty_Ordering) 47.63/23.28 new_lt19(x0, x1, ty_Char) 47.63/23.28 new_ltEs14(Left(x0), Left(x1), ty_Char, x2) 47.63/23.28 new_ltEs19(x0, x1, ty_Integer) 47.63/23.28 new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 47.63/23.28 new_lt5(x0, x1) 47.63/23.28 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 47.63/23.28 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 47.63/23.28 new_esEs7(Right(x0), Right(x1), x2, ty_Double) 47.63/23.28 new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) 47.63/23.28 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 47.63/23.28 new_compare26(x0, x1, True, x2, x3) 47.63/23.28 new_compare(:(x0, x1), :(x2, x3), x4) 47.63/23.28 new_esEs9(x0, x1, ty_Char) 47.63/23.28 new_ltEs4(Just(x0), Just(x1), ty_Bool) 47.63/23.28 new_ltEs14(Left(x0), Left(x1), ty_Int, x2) 47.63/23.28 new_lt6(x0, x1) 47.63/23.28 new_lt19(x0, x1, ty_Int) 47.63/23.28 new_primEqNat0(Succ(x0), Succ(x1)) 47.63/23.28 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 47.63/23.28 new_ltEs6(x0, x1) 47.63/23.28 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_compare7(Char(x0), Char(x1)) 47.63/23.28 new_esEs31(x0, x1, app(ty_Maybe, x2)) 47.63/23.28 new_esEs12(GT, GT) 47.63/23.28 new_esEs12(LT, EQ) 47.63/23.28 new_esEs12(EQ, LT) 47.63/23.28 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 47.63/23.28 new_lt15(x0, x1, x2) 47.63/23.28 new_ltEs5(x0, x1) 47.63/23.28 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 47.63/23.28 new_ltEs15(GT, LT) 47.63/23.28 new_ltEs15(LT, GT) 47.63/23.28 new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 47.63/23.28 new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 47.63/23.28 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 47.63/23.28 new_esEs31(x0, x1, app(ty_Ratio, x2)) 47.63/23.28 new_ltEs4(Just(x0), Just(x1), ty_Integer) 47.63/23.28 new_esEs7(Left(x0), Left(x1), ty_@0, x2) 47.63/23.28 new_esEs27(x0, x1, ty_Int) 47.63/23.28 new_compare28(x0, x1, True, x2, x3, x4) 47.63/23.28 new_esEs6(Just(x0), Just(x1), ty_Integer) 47.63/23.28 new_esEs6(Just(x0), Just(x1), ty_Float) 47.63/23.28 new_lt20(x0, x1, app(ty_[], x2)) 47.63/23.28 new_compare5(x0, x1, ty_Double) 47.63/23.28 new_primMulNat0(Succ(x0), Zero) 47.63/23.28 new_esEs6(Nothing, Just(x0), x1) 47.63/23.28 new_esEs27(x0, x1, ty_Float) 47.63/23.28 new_ltEs14(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 47.63/23.28 new_esEs25(x0, x1, ty_Bool) 47.63/23.28 new_esEs6(Just(x0), Just(x1), ty_Ordering) 47.63/23.28 new_ltEs14(Right(x0), Right(x1), x2, ty_Char) 47.63/23.28 new_esEs9(x0, x1, ty_Bool) 47.63/23.28 new_lt7(x0, x1) 47.63/23.28 new_lt19(x0, x1, app(ty_Maybe, x2)) 47.63/23.28 new_lt8(x0, x1, ty_@0) 47.63/23.28 new_esEs9(x0, x1, ty_Ordering) 47.63/23.28 new_primCmpInt(Neg(Zero), Neg(Zero)) 47.63/23.28 new_lt8(x0, x1, app(ty_Ratio, x2)) 47.63/23.28 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 47.63/23.28 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 47.63/23.28 new_esEs28(x0, x1, ty_Double) 47.63/23.28 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_primCmpInt(Pos(Zero), Neg(Zero)) 47.63/23.28 new_primCmpInt(Neg(Zero), Pos(Zero)) 47.63/23.28 new_primPlusNat0(Succ(x0), Zero) 47.63/23.28 new_esEs23(x0, x1, ty_Float) 47.63/23.28 new_esEs21(x0, x1, ty_Integer) 47.63/23.28 new_ltEs14(Right(x0), Right(x1), x2, ty_Int) 47.63/23.28 new_esEs28(x0, x1, ty_@0) 47.63/23.28 new_lt19(x0, x1, ty_Bool) 47.63/23.28 new_ltEs14(Left(x0), Left(x1), ty_Bool, x2) 47.63/23.28 new_esEs25(x0, x1, ty_Ordering) 47.63/23.28 new_lt19(x0, x1, ty_Ordering) 47.63/23.28 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 47.63/23.28 new_esEs22(x0, x1, ty_Integer) 47.63/23.28 new_esEs31(x0, x1, ty_Double) 47.63/23.28 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_esEs11(False, False) 47.63/23.28 new_esEs30(x0, x1, app(ty_Maybe, x2)) 47.63/23.28 new_compare(:(x0, x1), [], x2) 47.63/23.28 new_lt13(x0, x1, x2, x3, x4) 47.63/23.28 new_esEs8([], :(x0, x1), x2) 47.63/23.28 new_ltEs14(Left(x0), Left(x1), ty_Ordering, x2) 47.63/23.28 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 47.63/23.28 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 47.63/23.28 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 47.63/23.28 new_compare33(x0) 47.63/23.28 new_esEs28(x0, x1, app(ty_Ratio, x2)) 47.63/23.28 new_lt19(x0, x1, app(ty_[], x2)) 47.63/23.28 new_esEs7(Left(x0), Left(x1), ty_Double, x2) 47.63/23.28 new_esEs9(x0, x1, ty_Integer) 47.63/23.28 new_ltEs14(Right(x0), Right(x1), x2, app(ty_[], x3)) 47.63/23.28 new_ltEs20(x0, x1, ty_@0) 47.63/23.28 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 47.63/23.28 new_ltEs4(Just(x0), Just(x1), ty_Char) 47.63/23.28 new_ltEs14(Right(x0), Right(x1), x2, ty_Float) 47.63/23.28 new_compare113(x0, x1, True) 47.63/23.28 new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 47.63/23.28 new_lt20(x0, x1, app(ty_Maybe, x2)) 47.63/23.28 new_esEs31(x0, x1, app(ty_[], x2)) 47.63/23.28 new_lt20(x0, x1, ty_Double) 47.63/23.28 new_esEs6(Just(x0), Nothing, x1) 47.63/23.28 new_ltEs19(x0, x1, ty_Bool) 47.63/23.28 new_ltEs20(x0, x1, ty_Double) 47.63/23.28 new_esEs24(x0, x1, ty_@0) 47.63/23.28 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 47.63/23.28 new_esEs31(x0, x1, ty_@0) 47.63/23.28 new_lt19(x0, x1, ty_Integer) 47.63/23.28 new_esEs22(x0, x1, ty_Ordering) 47.63/23.28 new_esEs13(Float(x0, x1), Float(x2, x3)) 47.63/23.28 new_esEs6(Just(x0), Just(x1), ty_Bool) 47.63/23.28 new_compare8(x0, x1) 47.63/23.28 new_ltEs14(Left(x0), Left(x1), ty_Integer, x2) 47.63/23.28 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 47.63/23.28 new_lt16(x0, x1, x2, x3) 47.63/23.28 new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 47.63/23.28 new_ltEs13(True, True) 47.63/23.28 new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) 47.63/23.28 new_esEs21(x0, x1, ty_Ordering) 47.63/23.28 new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 47.63/23.28 new_esEs25(x0, x1, ty_Integer) 47.63/23.28 new_ltEs4(Nothing, Just(x0), x1) 47.63/23.28 new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 47.63/23.28 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 47.63/23.28 new_esEs25(x0, x1, ty_Char) 47.63/23.28 new_compare17(x0, x1) 47.63/23.28 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 47.63/23.28 new_esEs22(x0, x1, ty_@0) 47.63/23.28 new_esEs26(x0, x1, ty_Ordering) 47.63/23.28 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_esEs31(x0, x1, ty_Integer) 47.63/23.28 new_gt(x0) 47.63/23.28 new_ltEs19(x0, x1, ty_Char) 47.63/23.28 new_esEs24(x0, x1, ty_Ordering) 47.63/23.28 new_compare([], :(x0, x1), x2) 47.63/23.28 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 47.63/23.28 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_primCompAux00(x0, EQ) 47.63/23.28 new_esEs22(x0, x1, ty_Bool) 47.63/23.28 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_ltEs14(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 47.63/23.28 new_ltEs4(Just(x0), Just(x1), ty_Int) 47.63/23.28 new_primMulNat0(Zero, Zero) 47.63/23.28 new_compare24(x0, x1, True) 47.63/23.28 new_compare5(x0, x1, ty_@0) 47.63/23.28 new_ltEs18(x0, x1, ty_Float) 47.63/23.28 new_primPlusNat1(Zero, x0) 47.63/23.28 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 47.63/23.28 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_esEs24(x0, x1, ty_Int) 47.63/23.28 new_lt8(x0, x1, ty_Double) 47.63/23.28 new_esEs6(Just(x0), Just(x1), ty_Char) 47.63/23.28 new_esEs25(x0, x1, ty_Int) 47.63/23.28 new_esEs23(x0, x1, ty_Char) 47.63/23.28 new_esEs6(Nothing, Nothing, x0) 47.63/23.28 new_ltEs4(Just(x0), Just(x1), ty_Ordering) 47.63/23.28 new_esEs24(x0, x1, app(ty_Maybe, x2)) 47.63/23.28 new_compare5(x0, x1, ty_Bool) 47.63/23.28 new_sr0(Integer(x0), Integer(x1)) 47.63/23.28 new_fsEs(x0) 47.63/23.28 new_ltEs14(Right(x0), Right(x1), x2, ty_Double) 47.63/23.28 new_compare9(@0, @0) 47.63/23.28 new_ltEs18(x0, x1, app(ty_[], x2)) 47.63/23.28 new_esEs25(x0, x1, app(ty_Ratio, x2)) 47.63/23.28 new_ltEs19(x0, x1, ty_Ordering) 47.63/23.28 new_esEs24(x0, x1, ty_Char) 47.63/23.28 new_esEs9(x0, x1, app(ty_[], x2)) 47.63/23.28 new_esEs21(x0, x1, ty_Bool) 47.63/23.28 new_esEs28(x0, x1, app(ty_Maybe, x2)) 47.63/23.28 new_esEs24(x0, x1, ty_Double) 47.63/23.28 new_compare112(x0, x1, False, x2, x3, x4) 47.63/23.28 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 47.63/23.28 new_primPlusNat1(Succ(x0), x1) 47.63/23.28 new_esEs23(x0, x1, ty_Int) 47.63/23.28 new_esEs31(x0, x1, ty_Bool) 47.63/23.28 new_esEs7(Left(x0), Left(x1), ty_Integer, x2) 47.63/23.28 new_esEs22(x0, x1, app(ty_[], x2)) 47.63/23.28 new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_esEs23(x0, x1, ty_@0) 47.63/23.28 new_esEs6(Just(x0), Just(x1), ty_Int) 47.63/23.28 new_ltEs19(x0, x1, ty_Int) 47.63/23.28 new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 47.63/23.28 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_esEs21(x0, x1, app(ty_[], x2)) 47.63/23.28 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 47.63/23.28 new_esEs9(x0, x1, app(ty_Maybe, x2)) 47.63/23.28 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 47.63/23.28 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 47.63/23.28 new_esEs7(Left(x0), Left(x1), ty_Float, x2) 47.63/23.28 new_esEs6(Just(x0), Just(x1), ty_@0) 47.63/23.28 new_lt8(x0, x1, ty_Ordering) 47.63/23.28 new_primPlusNat0(Zero, Zero) 47.63/23.28 new_esEs25(x0, x1, app(ty_[], x2)) 47.63/23.28 new_esEs22(x0, x1, app(ty_Ratio, x2)) 47.63/23.28 new_compare10(x0, x1, True, x2, x3) 47.63/23.28 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 47.63/23.28 new_lt8(x0, x1, ty_Int) 47.63/23.28 new_esEs30(x0, x1, ty_Int) 47.63/23.28 new_ltEs14(Left(x0), Left(x1), ty_@0, x2) 47.63/23.28 new_lt19(x0, x1, ty_@0) 47.63/23.28 new_not(True) 47.63/23.28 new_compare5(x0, x1, app(ty_Ratio, x2)) 47.63/23.28 new_esEs8(:(x0, x1), [], x2) 47.63/23.28 new_compare25(Just(x0), Nothing, False, x1) 47.63/23.28 new_esEs23(x0, x1, ty_Bool) 47.63/23.28 new_esEs22(x0, x1, ty_Char) 47.63/23.28 new_esEs12(EQ, GT) 47.63/23.28 new_esEs12(GT, EQ) 47.63/23.28 new_lt19(x0, x1, ty_Float) 47.63/23.28 new_ltEs14(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 47.63/23.28 new_ltEs13(False, False) 47.63/23.28 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 47.63/23.28 new_esEs25(x0, x1, ty_Double) 47.63/23.28 new_esEs25(x0, x1, ty_@0) 47.63/23.28 new_esEs26(x0, x1, app(ty_Ratio, x2)) 47.63/23.28 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 47.63/23.28 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 47.63/23.28 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 47.63/23.28 new_esEs11(True, True) 47.63/23.28 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_ltEs14(Right(x0), Right(x1), x2, ty_Ordering) 47.63/23.28 new_ltEs15(GT, EQ) 47.63/23.28 new_esEs23(x0, x1, ty_Double) 47.63/23.28 new_ltEs15(EQ, GT) 47.63/23.28 new_ltEs4(Just(x0), Nothing, x1) 47.63/23.28 new_esEs21(x0, x1, ty_Char) 47.63/23.28 new_esEs11(False, True) 47.63/23.28 new_esEs11(True, False) 47.63/23.28 new_compare113(x0, x1, False) 47.63/23.28 new_lt4(x0, x1, x2, x3) 47.63/23.28 new_lt8(x0, x1, ty_Char) 47.63/23.28 new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) 47.63/23.28 new_ltEs20(x0, x1, ty_Integer) 47.63/23.28 new_compare27(x0, x1, False, x2, x3) 47.63/23.28 new_esEs30(x0, x1, ty_Double) 47.63/23.28 new_esEs26(x0, x1, ty_Int) 47.63/23.28 new_primPlusNat0(Zero, Succ(x0)) 47.63/23.28 new_compare5(x0, x1, ty_Integer) 47.63/23.28 new_esEs30(x0, x1, ty_Char) 47.63/23.28 new_primCmpNat0(Succ(x0), Succ(x1)) 47.63/23.28 new_ltEs14(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 47.63/23.28 new_compare31(x0, x1) 47.63/23.28 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 47.63/23.28 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 47.63/23.28 new_esEs9(x0, x1, ty_@0) 47.63/23.28 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 47.63/23.28 new_esEs12(LT, LT) 47.63/23.28 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_esEs21(x0, x1, ty_Int) 47.63/23.28 new_compare26(x0, x1, False, x2, x3) 47.63/23.28 new_ltEs14(Left(x0), Left(x1), ty_Float, x2) 47.63/23.28 new_esEs26(x0, x1, ty_Double) 47.63/23.28 new_esEs22(x0, x1, ty_Int) 47.63/23.28 new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_esEs26(x0, x1, ty_Char) 47.63/23.28 new_esEs21(x0, x1, ty_@0) 47.63/23.28 new_lt14(x0, x1) 47.63/23.28 new_esEs9(x0, x1, ty_Float) 47.63/23.28 new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 47.63/23.28 new_esEs20(x0, x1, ty_Int) 47.63/23.28 new_primCmpInt(Pos(Zero), Pos(Zero)) 47.63/23.28 new_esEs27(x0, x1, app(ty_Maybe, x2)) 47.63/23.28 new_gt1(x0, x1) 47.63/23.28 new_esEs20(x0, x1, ty_Integer) 47.63/23.28 new_compare13(x0, x1, x2, x3, x4) 47.63/23.28 new_esEs22(x0, x1, ty_Double) 47.63/23.28 new_esEs31(x0, x1, ty_Int) 47.63/23.28 new_esEs27(x0, x1, ty_Double) 47.63/23.28 new_esEs14(@0, @0) 47.63/23.28 new_pePe(False, x0) 47.63/23.28 new_ltEs9(x0, x1) 47.63/23.28 new_esEs22(x0, x1, ty_Float) 47.63/23.28 new_ltEs11(@2(x0, x1), @2(x2, x3), x4, x5) 47.63/23.28 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_compare29(x0, x1, False) 47.63/23.28 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 47.63/23.28 new_ltEs14(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 47.63/23.28 new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 47.63/23.28 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 47.63/23.28 new_esEs16(x0, x1) 47.63/23.28 new_esEs26(x0, x1, ty_Bool) 47.63/23.28 new_compare25(Nothing, Nothing, False, x0) 47.63/23.28 new_lt10(x0, x1) 47.63/23.28 new_compare16(x0, x1, x2, x3) 47.63/23.28 new_ltEs14(Right(x0), Left(x1), x2, x3) 47.63/23.28 new_esEs26(x0, x1, ty_@0) 47.63/23.28 new_ltEs14(Left(x0), Right(x1), x2, x3) 47.63/23.28 new_ltEs18(x0, x1, ty_@0) 47.63/23.28 new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) 47.63/23.28 new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 47.63/23.28 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 47.63/23.28 new_esEs31(x0, x1, ty_Char) 47.63/23.28 new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 47.63/23.28 new_ltEs18(x0, x1, ty_Bool) 47.63/23.28 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 47.63/23.28 new_compare5(x0, x1, ty_Float) 47.63/23.28 new_esEs23(x0, x1, app(ty_Ratio, x2)) 47.63/23.28 new_esEs10(Integer(x0), Integer(x1)) 47.63/23.28 new_compare32(x0, x1) 47.63/23.28 new_lt19(x0, x1, app(ty_Ratio, x2)) 47.63/23.28 new_esEs7(Right(x0), Right(x1), x2, ty_Float) 47.63/23.28 new_esEs21(x0, x1, ty_Double) 47.63/23.28 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 47.63/23.28 new_ltEs4(Just(x0), Just(x1), ty_@0) 47.63/23.28 new_esEs7(Right(x0), Right(x1), x2, ty_Int) 47.63/23.28 new_lt12(x0, x1, x2) 47.63/23.28 new_compare5(x0, x1, app(app(ty_Either, x2), x3)) 47.63/23.28 new_lt20(x0, x1, ty_Float) 47.63/23.28 new_ltEs4(Nothing, Nothing, x0) 47.63/23.28 new_esEs26(x0, x1, ty_Integer) 47.63/23.28 new_ltEs10(x0, x1) 47.63/23.28 new_compare5(x0, x1, ty_Int) 47.63/23.28 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 47.63/23.28 new_ltEs14(Right(x0), Right(x1), x2, ty_@0) 47.63/23.28 new_lt20(x0, x1, ty_Ordering) 47.63/23.28 new_ltEs15(EQ, LT) 47.63/23.28 new_ltEs15(LT, EQ) 47.63/23.28 new_esEs30(x0, x1, ty_Bool) 47.63/23.28 new_esEs23(x0, x1, ty_Integer) 47.63/23.28 new_esEs27(x0, x1, app(ty_[], x2)) 47.63/23.28 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_compare5(x0, x1, app(ty_[], x2)) 47.63/23.28 new_esEs24(x0, x1, ty_Bool) 47.63/23.28 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 47.63/23.28 new_ltEs14(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 47.63/23.28 new_ltEs15(GT, GT) 47.63/23.28 new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 47.63/23.28 new_esEs27(x0, x1, ty_Ordering) 47.63/23.28 new_gt0(x0, x1) 47.63/23.28 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 47.63/23.28 new_esEs26(x0, x1, app(ty_Maybe, x2)) 47.63/23.28 new_compare5(x0, x1, ty_Char) 47.63/23.28 new_lt20(x0, x1, ty_Integer) 47.63/23.28 new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 47.63/23.28 new_ltEs14(Left(x0), Left(x1), ty_Double, x2) 47.63/23.28 new_ltEs19(x0, x1, ty_@0) 47.63/23.28 new_esEs23(x0, x1, app(ty_Maybe, x2)) 47.63/23.28 new_ltEs16(x0, x1) 47.63/23.28 new_lt11(x0, x1) 47.63/23.28 new_ltEs18(x0, x1, ty_Integer) 47.63/23.28 new_primEqNat0(Zero, Zero) 47.63/23.28 new_esEs9(x0, x1, app(ty_Ratio, x2)) 47.63/23.28 new_esEs23(x0, x1, ty_Ordering) 47.63/23.28 new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 47.63/23.28 new_not(False) 47.63/23.28 new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 47.63/23.28 new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 47.63/23.28 new_ltEs20(x0, x1, ty_Bool) 47.63/23.28 new_ltEs19(x0, x1, ty_Double) 47.63/23.28 new_esEs30(x0, x1, ty_Integer) 47.63/23.28 new_ltEs20(x0, x1, ty_Float) 47.63/23.28 new_esEs7(Left(x0), Left(x1), ty_Int, x2) 47.63/23.28 new_lt8(x0, x1, app(ty_Maybe, x2)) 47.63/23.28 new_compare11(Integer(x0), Integer(x1)) 47.63/23.28 new_esEs15(:%(x0, x1), :%(x2, x3), x4) 47.63/23.28 new_primCompAux00(x0, LT) 47.63/23.28 new_compare110(x0, x1, True) 47.63/23.28 new_ltEs15(LT, LT) 47.63/23.28 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 47.63/23.28 new_esEs6(Just(x0), Just(x1), ty_Double) 47.63/23.28 new_lt20(x0, x1, ty_Int) 47.63/23.28 new_lt9(x0, x1) 47.63/23.28 new_ltEs20(x0, x1, ty_Char) 47.63/23.28 new_esEs28(x0, x1, ty_Int) 47.63/23.28 new_lt20(x0, x1, ty_Bool) 47.63/23.28 new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 47.63/23.28 new_esEs31(x0, x1, ty_Float) 47.63/23.28 new_ltEs18(x0, x1, ty_Ordering) 47.63/23.28 new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 47.63/23.28 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 47.63/23.28 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 47.63/23.28 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 47.63/23.28 new_lt20(x0, x1, ty_Char) 47.63/23.28 new_compare24(x0, x1, False) 47.63/23.28 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 47.63/23.28 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 47.63/23.28 new_esEs7(Left(x0), Left(x1), ty_Char, x2) 47.63/23.28 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 47.63/23.28 new_esEs24(x0, x1, ty_Float) 47.63/23.28 new_primPlusNat0(Succ(x0), Succ(x1)) 47.63/23.28 new_compare111(x0, x1, True, x2) 47.63/23.28 new_esEs30(x0, x1, app(ty_[], x2)) 47.63/23.28 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 47.63/23.28 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 47.63/23.28 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 47.63/23.28 new_esEs7(Left(x0), Left(x1), ty_Bool, x2) 47.63/23.28 new_primMulInt(Pos(x0), Neg(x1)) 47.63/23.28 new_primMulInt(Neg(x0), Pos(x1)) 47.63/23.28 new_ltEs4(Just(x0), Just(x1), ty_Double) 47.63/23.28 new_esEs19(x0, x1, ty_Int) 47.63/23.28 new_esEs30(x0, x1, ty_Ordering) 47.63/23.28 new_compare114(x0, x1, True, x2, x3) 47.63/23.28 new_primMulNat0(Zero, Succ(x0)) 47.63/23.28 new_primCmpNat0(Zero, Zero) 47.63/23.28 new_primEqNat0(Zero, Succ(x0)) 47.63/23.28 new_esEs28(x0, x1, ty_Float) 47.63/23.28 new_esEs7(Left(x0), Right(x1), x2, x3) 47.63/23.28 new_esEs7(Right(x0), Left(x1), x2, x3) 47.63/23.28 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 47.63/23.28 new_ltEs20(x0, x1, ty_Int) 47.63/23.28 new_esEs24(x0, x1, app(ty_[], x2)) 47.63/23.28 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 47.63/23.28 new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 47.63/23.28 47.63/23.28 We have to consider all minimal (P,Q,R)-chains. 47.63/23.28 ---------------------------------------- 47.63/23.28 47.63/23.28 (64) QDPSizeChangeProof (EQUIVALENT) 47.63/23.28 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. 47.63/23.28 47.63/23.28 From the DPs we obtained the following set of size-change graphs: 47.63/23.28 *new_splitLT0(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy400, h, ba) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Just(yvy400), h, ba) 47.63/23.28 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 3 >= 7, 4 >= 8 47.63/23.28 47.63/23.28 47.63/23.28 *new_splitLT20(yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba) -> new_splitLT11(yvy31, yvy32, yvy33, yvy34, yvy400, new_gt1(yvy400, h), h, ba) 47.63/23.28 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 7 >= 7, 8 >= 8 47.63/23.28 47.63/23.28 47.63/23.28 *new_splitLT21(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, bb, bc) -> new_splitLT0(yvy33, yvy35, bb, bc) 47.63/23.28 The graph contains the following edges 4 >= 1, 6 >= 2, 8 >= 3, 9 >= 4 47.63/23.28 47.63/23.28 47.63/23.28 *new_splitLT21(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, False, bb, bc) -> new_splitLT12(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, new_gt2(yvy35, yvy30, bb), bb, bc) 47.63/23.28 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9 47.63/23.28 47.63/23.28 47.63/23.28 *new_splitLT20(yvy31, yvy32, Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy34, yvy400, True, h, ba) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Just(yvy400), h, ba) 47.63/23.28 The graph contains the following edges 3 > 1, 3 > 2, 3 > 3, 3 > 4, 3 > 5, 7 >= 7, 8 >= 8 47.63/23.28 47.63/23.28 47.63/23.28 *new_splitLT3(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitLT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare25(Just(yvy400), Just(yvy300), new_esEs31(yvy400, yvy300, h), h), LT), h, ba) 47.63/23.28 The graph contains the following edges 1 > 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 > 6, 7 >= 8, 8 >= 9 47.63/23.28 47.63/23.28 47.63/23.28 *new_splitLT3(Nothing, yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitLT20(yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare25(Just(yvy400), Nothing, False, h), LT), h, ba) 47.63/23.28 The graph contains the following edges 2 >= 1, 3 >= 2, 4 >= 3, 5 >= 4, 6 > 5, 7 >= 7, 8 >= 8 47.63/23.28 47.63/23.28 47.63/23.28 *new_splitLT12(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, bb, bc) -> new_splitLT0(yvy34, yvy35, bb, bc) 47.63/23.28 The graph contains the following edges 5 >= 1, 6 >= 2, 8 >= 3, 9 >= 4 47.63/23.28 47.63/23.28 47.63/23.28 *new_splitLT11(yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba) -> new_splitLT0(yvy34, yvy400, h, ba) 47.63/23.28 The graph contains the following edges 4 >= 1, 5 >= 2, 7 >= 3, 8 >= 4 47.63/23.28 47.63/23.28 47.63/23.28 ---------------------------------------- 47.63/23.28 47.63/23.28 (65) 47.63/23.28 YES 47.63/23.28 47.63/23.28 ---------------------------------------- 47.63/23.28 47.63/23.28 (66) 47.63/23.28 Obligation: 47.63/23.28 Q DP problem: 47.63/23.28 The TRS P consists of the following rules: 47.63/23.28 47.63/23.28 new_splitLT2(yvy300, yvy31, yvy32, yvy33, yvy34, False, h, ba) -> new_splitLT10(yvy300, yvy31, yvy32, yvy33, yvy34, new_gt0(yvy300, h), h, ba) 47.63/23.28 new_splitLT10(yvy300, yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_splitLT(yvy34, h, ba) 47.63/23.28 new_splitLT(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), h, ba) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Nothing, h, ba) 47.63/23.28 new_splitLT3(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitLT2(yvy300, yvy31, yvy32, yvy33, yvy34, new_esEs12(new_compare25(Nothing, Just(yvy300), False, h), LT), h, ba) 47.63/23.28 new_splitLT2(yvy300, yvy31, yvy32, Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy34, True, h, ba) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Nothing, h, ba) 47.63/23.28 new_splitLT3(Nothing, yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitLT1(yvy31, yvy32, yvy33, yvy34, new_gt(h), h, ba) 47.63/23.28 new_splitLT1(yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_splitLT(yvy34, h, ba) 47.63/23.28 47.63/23.28 The TRS R consists of the following rules: 47.63/23.28 47.63/23.28 new_esEs22(yvy4002, yvy3002, app(ty_[], cag)) -> new_esEs8(yvy4002, yvy3002, cag) 47.63/23.28 new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) 47.63/23.28 new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT 47.63/23.28 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 47.63/23.28 new_primPlusNat0(Zero, Zero) -> Zero 47.63/23.28 new_compare13(yvy49000, yvy50000, bdb, bdc, bdd) -> new_compare28(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, bdb, bdc, bdd), bdb, bdc, bdd) 47.63/23.28 new_esEs23(yvy4001, yvy3001, app(ty_Maybe, cbc)) -> new_esEs6(yvy4001, yvy3001, cbc) 47.63/23.28 new_pePe(True, yvy220) -> True 47.63/23.28 new_ltEs20(yvy49002, yvy50002, ty_Ordering) -> new_ltEs15(yvy49002, yvy50002) 47.63/23.28 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.63/23.28 new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) 47.63/23.28 new_compare26(yvy49000, yvy50000, False, bch, bda) -> new_compare114(yvy49000, yvy50000, new_ltEs14(yvy49000, yvy50000, bch, bda), bch, bda) 47.63/23.28 new_lt20(yvy49001, yvy50001, ty_Ordering) -> new_lt17(yvy49001, yvy50001) 47.63/23.28 new_esEs30(yvy20, yvy15, app(app(ty_@2, dde), ddf)) -> new_esEs4(yvy20, yvy15, dde, ddf) 47.63/23.28 new_compare(:(yvy49000, yvy49001), [], bf) -> GT 47.63/23.28 new_ltEs20(yvy49002, yvy50002, app(app(ty_@2, dbg), dbh)) -> new_ltEs11(yvy49002, yvy50002, dbg, dbh) 47.63/23.28 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 47.63/23.28 new_ltEs14(Right(yvy49000), Left(yvy50000), hd, ga) -> False 47.63/23.28 new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Ratio, hc), ga) -> new_ltEs17(yvy49000, yvy50000, hc) 47.63/23.28 new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT 47.63/23.28 new_lt20(yvy49001, yvy50001, app(ty_Ratio, dbe)) -> new_lt18(yvy49001, yvy50001, dbe) 47.63/23.28 new_compare(:(yvy49000, yvy49001), :(yvy50000, yvy50001), bf) -> new_primCompAux0(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, bf), bf) 47.63/23.28 new_compare26(yvy49000, yvy50000, True, bch, bda) -> EQ 47.63/23.28 new_esEs8(:(yvy4000, yvy4001), :(yvy3000, yvy3001), ee) -> new_asAs(new_esEs9(yvy4000, yvy3000, ee), new_esEs8(yvy4001, yvy3001, ee)) 47.63/23.28 new_compare27(yvy49000, yvy50000, False, bd, be) -> new_compare10(yvy49000, yvy50000, new_ltEs11(yvy49000, yvy50000, bd, be), bd, be) 47.63/23.28 new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) 47.63/23.28 new_esEs30(yvy20, yvy15, ty_Float) -> new_esEs13(yvy20, yvy15) 47.63/23.28 new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.63/23.28 new_ltEs4(Nothing, Nothing, db) -> True 47.63/23.28 new_ltEs4(Just(yvy49000), Nothing, db) -> False 47.63/23.28 new_lt8(yvy49000, yvy50000, app(app(ty_@2, bd), be)) -> new_lt4(yvy49000, yvy50000, bd, be) 47.63/23.28 new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat1(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) 47.63/23.28 new_compare113(yvy49000, yvy50000, False) -> GT 47.63/23.28 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Int) -> new_ltEs7(yvy49000, yvy50000) 47.63/23.28 new_ltEs15(EQ, LT) -> False 47.63/23.28 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.63/23.28 new_esEs28(yvy49000, yvy50000, app(app(ty_Either, daa), dab)) -> new_esEs7(yvy49000, yvy50000, daa, dab) 47.63/23.28 new_lt19(yvy49000, yvy50000, app(app(ty_@2, chc), chd)) -> new_lt4(yvy49000, yvy50000, chc, chd) 47.63/23.28 new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.63/23.28 new_ltEs20(yvy49002, yvy50002, app(app(ty_Either, dce), dcf)) -> new_ltEs14(yvy49002, yvy50002, dce, dcf) 47.63/23.28 new_esEs28(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) 47.63/23.28 new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Maybe, ea)) -> new_ltEs4(yvy49000, yvy50000, ea) 47.63/23.28 new_ltEs19(yvy49001, yvy50001, ty_Ordering) -> new_ltEs15(yvy49001, yvy50001) 47.63/23.28 new_ltEs18(yvy4900, yvy5000, ty_Float) -> new_ltEs5(yvy4900, yvy5000) 47.63/23.28 new_lt9(yvy49000, yvy50000) -> new_esEs12(new_compare6(yvy49000, yvy50000), LT) 47.63/23.28 new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False 47.63/23.28 new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False 47.63/23.28 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(ty_Ratio, baf)) -> new_ltEs17(yvy49000, yvy50000, baf) 47.63/23.28 new_ltEs15(GT, LT) -> False 47.63/23.28 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.63/23.28 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.63/23.28 new_lt19(yvy49000, yvy50000, app(ty_Ratio, dac)) -> new_lt18(yvy49000, yvy50000, dac) 47.63/23.28 new_esEs24(yvy4000, yvy3000, app(ty_Ratio, cch)) -> new_esEs15(yvy4000, yvy3000, cch) 47.63/23.28 new_esEs24(yvy4000, yvy3000, app(app(ty_@2, ccf), ccg)) -> new_esEs4(yvy4000, yvy3000, ccf, ccg) 47.63/23.28 new_ltEs13(True, True) -> True 47.63/23.28 new_compare29(yvy49000, yvy50000, False) -> new_compare113(yvy49000, yvy50000, new_ltEs15(yvy49000, yvy50000)) 47.63/23.28 new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) 47.63/23.28 new_lt15(yvy49000, yvy50000, bbh) -> new_esEs12(new_compare15(yvy49000, yvy50000, bbh), LT) 47.63/23.28 new_ltEs20(yvy49002, yvy50002, ty_Integer) -> new_ltEs10(yvy49002, yvy50002) 47.63/23.28 new_ltEs19(yvy49001, yvy50001, app(app(ty_@2, bea), beb)) -> new_ltEs11(yvy49001, yvy50001, bea, beb) 47.63/23.28 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Bool) -> new_ltEs13(yvy49000, yvy50000) 47.63/23.28 new_not(True) -> False 47.63/23.28 new_esEs28(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) 47.63/23.28 new_esEs28(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) 47.63/23.28 new_ltEs19(yvy49001, yvy50001, app(ty_Ratio, bfa)) -> new_ltEs17(yvy49001, yvy50001, bfa) 47.63/23.28 new_primCompAux00(yvy225, LT) -> LT 47.63/23.28 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.63/23.28 new_primCmpNat0(Zero, Zero) -> EQ 47.63/23.28 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Ordering, bbg) -> new_esEs12(yvy4000, yvy3000) 47.63/23.28 new_esEs28(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) 47.63/23.28 new_lt20(yvy49001, yvy50001, ty_Bool) -> new_lt14(yvy49001, yvy50001) 47.63/23.28 new_esEs27(yvy49001, yvy50001, ty_Bool) -> new_esEs11(yvy49001, yvy50001) 47.63/23.28 new_ltEs19(yvy49001, yvy50001, ty_Integer) -> new_ltEs10(yvy49001, yvy50001) 47.63/23.28 new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.63/23.28 new_esEs27(yvy49001, yvy50001, app(ty_[], dad)) -> new_esEs8(yvy49001, yvy50001, dad) 47.63/23.28 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.63/23.28 new_esEs27(yvy49001, yvy50001, ty_Char) -> new_esEs17(yvy49001, yvy50001) 47.63/23.28 new_esEs30(yvy20, yvy15, app(ty_Ratio, ddg)) -> new_esEs15(yvy20, yvy15, ddg) 47.63/23.28 new_esEs12(LT, LT) -> True 47.63/23.28 new_esEs21(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) 47.63/23.28 new_primEqNat0(Succ(yvy40000), Zero) -> False 47.63/23.28 new_primEqNat0(Zero, Succ(yvy30000)) -> False 47.63/23.28 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(app(app(ty_@3, hh), baa), bab)) -> new_ltEs12(yvy49000, yvy50000, hh, baa, bab) 47.63/23.28 new_esEs14(@0, @0) -> True 47.63/23.28 new_compare8(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) 47.63/23.28 new_esEs31(yvy400, yvy300, app(app(app(ty_@3, bag), bah), bba)) -> new_esEs5(yvy400, yvy300, bag, bah, bba) 47.63/23.28 new_ltEs19(yvy49001, yvy50001, ty_Char) -> new_ltEs6(yvy49001, yvy50001) 47.63/23.28 new_compare10(yvy49000, yvy50000, True, bd, be) -> LT 47.63/23.28 new_ltEs15(GT, EQ) -> False 47.63/23.28 new_lt20(yvy49001, yvy50001, app(app(app(ty_@3, dag), dah), dba)) -> new_lt13(yvy49001, yvy50001, dag, dah, dba) 47.63/23.28 new_primCompAux00(yvy225, GT) -> GT 47.63/23.28 new_compare110(yvy49000, yvy50000, True) -> LT 47.63/23.28 new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, cef), ceg), ceh)) -> new_esEs5(yvy4001, yvy3001, cef, ceg, ceh) 47.63/23.28 new_compare16(yvy49000, yvy50000, bch, bda) -> new_compare26(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, bch, bda), bch, bda) 47.63/23.28 new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.63/23.28 new_esEs27(yvy49001, yvy50001, ty_Ordering) -> new_esEs12(yvy49001, yvy50001) 47.63/23.28 new_lt19(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) 47.63/23.28 new_ltEs20(yvy49002, yvy50002, ty_Bool) -> new_ltEs13(yvy49002, yvy50002) 47.63/23.28 new_esEs22(yvy4002, yvy3002, ty_Int) -> new_esEs16(yvy4002, yvy3002) 47.63/23.28 new_ltEs18(yvy4900, yvy5000, ty_Double) -> new_ltEs16(yvy4900, yvy5000) 47.63/23.28 new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT 47.63/23.28 new_esEs27(yvy49001, yvy50001, ty_Int) -> new_esEs16(yvy49001, yvy50001) 47.63/23.28 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, app(ty_Ratio, bhb)) -> new_esEs15(yvy4000, yvy3000, bhb) 47.63/23.28 new_esEs22(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) 47.63/23.28 new_compare12(yvy49000, yvy50000, bd, be) -> new_compare27(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, bd, be), bd, be) 47.63/23.28 new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_esEs5(yvy4000, yvy3000, ccb, ccc, ccd) 47.63/23.28 new_lt19(yvy49000, yvy50000, app(app(app(ty_@3, che), chf), chg)) -> new_lt13(yvy49000, yvy50000, che, chf, chg) 47.63/23.28 new_ltEs20(yvy49002, yvy50002, app(app(app(ty_@3, dca), dcb), dcc)) -> new_ltEs12(yvy49002, yvy50002, dca, dcb, dcc) 47.63/23.28 new_esEs30(yvy20, yvy15, app(app(app(ty_@3, dda), ddb), ddc)) -> new_esEs5(yvy20, yvy15, dda, ddb, ddc) 47.63/23.28 new_esEs30(yvy20, yvy15, ty_Double) -> new_esEs18(yvy20, yvy15) 47.63/23.28 new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bag, bah, bba) -> new_asAs(new_esEs24(yvy4000, yvy3000, bag), new_asAs(new_esEs23(yvy4001, yvy3001, bah), new_esEs22(yvy4002, yvy3002, bba))) 47.63/23.28 new_compare5(yvy49000, yvy50000, ty_Int) -> new_compare8(yvy49000, yvy50000) 47.63/23.28 new_compare32(yvy400, h) -> new_compare25(Just(yvy400), Nothing, False, h) 47.63/23.28 new_ltEs19(yvy49001, yvy50001, ty_Bool) -> new_ltEs13(yvy49001, yvy50001) 47.63/23.28 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, app(app(app(ty_@3, bgd), bge), bgf)) -> new_esEs5(yvy4000, yvy3000, bgd, bge, bgf) 47.63/23.28 new_ltEs18(yvy4900, yvy5000, ty_Integer) -> new_ltEs10(yvy4900, yvy5000) 47.63/23.28 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.63/23.28 new_esEs26(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.63/23.28 new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.63/23.28 new_esEs7(Left(yvy4000), Left(yvy3000), ty_@0, bbg) -> new_esEs14(yvy4000, yvy3000) 47.63/23.28 new_primCmpNat0(Zero, Succ(yvy5000)) -> LT 47.63/23.28 new_compare5(yvy49000, yvy50000, app(ty_Ratio, da)) -> new_compare19(yvy49000, yvy50000, da) 47.63/23.28 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.63/23.28 new_esEs26(yvy4000, yvy3000, app(ty_[], cha)) -> new_esEs8(yvy4000, yvy3000, cha) 47.63/23.28 new_esEs12(EQ, GT) -> False 47.63/23.28 new_esEs12(GT, EQ) -> False 47.63/23.28 new_lt8(yvy49000, yvy50000, app(ty_Ratio, bdg)) -> new_lt18(yvy49000, yvy50000, bdg) 47.63/23.28 new_ltEs19(yvy49001, yvy50001, app(app(app(ty_@3, bec), bed), bee)) -> new_ltEs12(yvy49001, yvy50001, bec, bed, bee) 47.63/23.28 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) 47.63/23.28 new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.63/23.28 new_lt8(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) 47.63/23.28 new_esEs21(yvy49000, yvy50000, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs5(yvy49000, yvy50000, bdb, bdc, bdd) 47.63/23.28 new_lt19(yvy49000, yvy50000, app(ty_[], chb)) -> new_lt12(yvy49000, yvy50000, chb) 47.63/23.28 new_primCmpNat0(Succ(yvy4900), Zero) -> GT 47.63/23.28 new_pePe(False, yvy220) -> yvy220 47.63/23.28 new_esEs27(yvy49001, yvy50001, ty_@0) -> new_esEs14(yvy49001, yvy50001) 47.63/23.28 new_esEs31(yvy400, yvy300, ty_Float) -> new_esEs13(yvy400, yvy300) 47.63/23.28 new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Maybe, gh), ga) -> new_ltEs4(yvy49000, yvy50000, gh) 47.63/23.28 new_esEs11(False, True) -> False 47.63/23.28 new_esEs11(True, False) -> False 47.63/23.28 new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cec), ced)) -> new_esEs7(yvy4000, yvy3000, cec, ced) 47.63/23.28 new_lt8(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) 47.63/23.28 new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_@2, bff), bfg), bbg) -> new_esEs4(yvy4000, yvy3000, bff, bfg) 47.63/23.28 new_compare114(yvy49000, yvy50000, True, bch, bda) -> LT 47.63/23.28 new_lt8(yvy49000, yvy50000, app(app(ty_Either, bch), bda)) -> new_lt16(yvy49000, yvy50000, bch, bda) 47.63/23.28 new_ltEs18(yvy4900, yvy5000, ty_@0) -> new_ltEs9(yvy4900, yvy5000) 47.63/23.28 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_@0) -> new_ltEs9(yvy49000, yvy50000) 47.63/23.28 new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 47.63/23.28 new_gt2(yvy35, yvy30, bb) -> new_esEs12(new_compare30(yvy35, yvy30, bb), GT) 47.63/23.28 new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) 47.63/23.28 new_ltEs7(yvy4900, yvy5000) -> new_fsEs(new_compare8(yvy4900, yvy5000)) 47.63/23.28 new_ltEs19(yvy49001, yvy50001, ty_Double) -> new_ltEs16(yvy49001, yvy50001) 47.63/23.28 new_esEs22(yvy4002, yvy3002, ty_Bool) -> new_esEs11(yvy4002, yvy3002) 47.63/23.28 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Char) -> new_ltEs6(yvy49000, yvy50000) 47.63/23.28 new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_[], gb), ga) -> new_ltEs8(yvy49000, yvy50000, gb) 47.63/23.28 new_esEs21(yvy49000, yvy50000, app(ty_[], bdf)) -> new_esEs8(yvy49000, yvy50000, bdf) 47.63/23.28 new_esEs22(yvy4002, yvy3002, app(ty_Maybe, caa)) -> new_esEs6(yvy4002, yvy3002, caa) 47.63/23.28 new_esEs21(yvy49000, yvy50000, app(app(ty_@2, bd), be)) -> new_esEs4(yvy49000, yvy50000, bd, be) 47.63/23.28 new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False 47.63/23.28 new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False 47.63/23.28 new_esEs25(yvy4001, yvy3001, app(app(ty_@2, cfb), cfc)) -> new_esEs4(yvy4001, yvy3001, cfb, cfc) 47.63/23.28 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Bool, bbg) -> new_esEs11(yvy4000, yvy3000) 47.63/23.28 new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Ratio, bfh), bbg) -> new_esEs15(yvy4000, yvy3000, bfh) 47.63/23.28 new_ltEs18(yvy4900, yvy5000, ty_Bool) -> new_ltEs13(yvy4900, yvy5000) 47.63/23.28 new_gt0(yvy300, h) -> new_esEs12(new_compare31(yvy300, h), GT) 47.63/23.28 new_ltEs18(yvy4900, yvy5000, app(app(app(ty_@3, bcd), bce), bcf)) -> new_ltEs12(yvy4900, yvy5000, bcd, bce, bcf) 47.63/23.28 new_esEs23(yvy4001, yvy3001, app(app(ty_Either, cbg), cbh)) -> new_esEs7(yvy4001, yvy3001, cbg, cbh) 47.63/23.28 new_esEs21(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) 47.63/23.28 new_esEs31(yvy400, yvy300, ty_Double) -> new_esEs18(yvy400, yvy300) 47.63/23.28 new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 47.63/23.28 new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_@2, gc), gd), ga) -> new_ltEs11(yvy49000, yvy50000, gc, gd) 47.63/23.28 new_esEs31(yvy400, yvy300, ty_@0) -> new_esEs14(yvy400, yvy300) 47.63/23.28 new_ltEs20(yvy49002, yvy50002, ty_Double) -> new_ltEs16(yvy49002, yvy50002) 47.63/23.28 new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.63/23.28 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(app(ty_Either, bad), bae)) -> new_ltEs14(yvy49000, yvy50000, bad, bae) 47.63/23.28 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Float, ga) -> new_ltEs5(yvy49000, yvy50000) 47.63/23.28 new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT 47.63/23.28 new_compare114(yvy49000, yvy50000, False, bch, bda) -> GT 47.63/23.28 new_esEs25(yvy4001, yvy3001, app(ty_[], cfg)) -> new_esEs8(yvy4001, yvy3001, cfg) 47.63/23.28 new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 47.63/23.28 new_esEs4(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bbc, bbd) -> new_asAs(new_esEs26(yvy4000, yvy3000, bbc), new_esEs25(yvy4001, yvy3001, bbd)) 47.63/23.28 new_ltEs5(yvy4900, yvy5000) -> new_fsEs(new_compare6(yvy4900, yvy5000)) 47.63/23.28 new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_Either, bga), bgb), bbg) -> new_esEs7(yvy4000, yvy3000, bga, bgb) 47.63/23.28 new_esEs26(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.63/23.28 new_esEs9(yvy4000, yvy3000, app(app(ty_@2, fb), fc)) -> new_esEs4(yvy4000, yvy3000, fb, fc) 47.63/23.28 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.63/23.28 new_compare25(Just(yvy4900), Nothing, False, bca) -> GT 47.63/23.28 new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) 47.63/23.28 new_compare5(yvy49000, yvy50000, ty_@0) -> new_compare9(yvy49000, yvy50000) 47.63/23.28 new_esEs24(yvy4000, yvy3000, app(ty_Maybe, cce)) -> new_esEs6(yvy4000, yvy3000, cce) 47.63/23.28 new_lt11(yvy205, yvy204) -> new_esEs12(new_compare8(yvy205, yvy204), LT) 47.63/23.28 new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 47.63/23.28 new_lt6(yvy49000, yvy50000) -> new_esEs12(new_compare9(yvy49000, yvy50000), LT) 47.63/23.28 new_primMulNat0(Succ(yvy400100), Zero) -> Zero 47.63/23.28 new_primMulNat0(Zero, Succ(yvy300000)) -> Zero 47.63/23.28 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Double, ga) -> new_ltEs16(yvy49000, yvy50000) 47.63/23.28 new_lt8(yvy49000, yvy50000, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_lt13(yvy49000, yvy50000, bdb, bdc, bdd) 47.63/23.28 new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) 47.63/23.28 new_esEs6(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, cdd), cde), cdf)) -> new_esEs5(yvy4000, yvy3000, cdd, cde, cdf) 47.63/23.28 new_esEs25(yvy4001, yvy3001, app(app(ty_Either, cfe), cff)) -> new_esEs7(yvy4001, yvy3001, cfe, cff) 47.63/23.28 new_compare5(yvy49000, yvy50000, ty_Float) -> new_compare6(yvy49000, yvy50000) 47.63/23.28 new_esEs9(yvy4000, yvy3000, app(ty_[], fh)) -> new_esEs8(yvy4000, yvy3000, fh) 47.63/23.28 new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, cah), cba), cbb)) -> new_esEs5(yvy4001, yvy3001, cah, cba, cbb) 47.63/23.28 new_esEs26(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.63/23.28 new_primPlusNat1(Succ(yvy1610), yvy300000) -> Succ(Succ(new_primPlusNat0(yvy1610, yvy300000))) 47.63/23.28 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Int, bbg) -> new_esEs16(yvy4000, yvy3000) 47.63/23.28 new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.63/23.28 new_esEs16(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) 47.63/23.28 new_primPlusNat0(Succ(yvy16100), Zero) -> Succ(yvy16100) 47.63/23.28 new_primPlusNat0(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) 47.63/23.28 new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) 47.63/23.28 new_primPlusNat1(Zero, yvy300000) -> Succ(yvy300000) 47.63/23.28 new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Int) -> new_compare8(new_sr(yvy49000, yvy50001), new_sr(yvy50000, yvy49001)) 47.63/23.28 new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.63/23.28 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_@0, ga) -> new_ltEs9(yvy49000, yvy50000) 47.63/23.28 new_lt8(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) 47.63/23.28 new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_Either, ha), hb), ga) -> new_ltEs14(yvy49000, yvy50000, ha, hb) 47.63/23.28 new_ltEs20(yvy49002, yvy50002, ty_@0) -> new_ltEs9(yvy49002, yvy50002) 47.63/23.28 new_ltEs18(yvy4900, yvy5000, app(app(ty_@2, bcb), bcc)) -> new_ltEs11(yvy4900, yvy5000, bcb, bcc) 47.63/23.28 new_ltEs9(yvy4900, yvy5000) -> new_fsEs(new_compare9(yvy4900, yvy5000)) 47.63/23.28 new_esEs22(yvy4002, yvy3002, app(ty_Ratio, cad)) -> new_esEs15(yvy4002, yvy3002, cad) 47.63/23.28 new_ltEs19(yvy49001, yvy50001, app(app(ty_Either, beg), beh)) -> new_ltEs14(yvy49001, yvy50001, beg, beh) 47.63/23.28 new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) 47.63/23.28 new_lt8(yvy49000, yvy50000, app(ty_Maybe, bbh)) -> new_lt15(yvy49000, yvy50000, bbh) 47.63/23.28 new_esEs30(yvy20, yvy15, ty_@0) -> new_esEs14(yvy20, yvy15) 47.63/23.28 new_lt20(yvy49001, yvy50001, ty_Char) -> new_lt10(yvy49001, yvy50001) 47.63/23.28 new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.63/23.28 new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.63/23.28 new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fa)) -> new_esEs6(yvy4000, yvy3000, fa) 47.63/23.28 new_esEs23(yvy4001, yvy3001, app(ty_Ratio, cbf)) -> new_esEs15(yvy4001, yvy3001, cbf) 47.63/23.28 new_compare25(Just(yvy4900), Just(yvy5000), False, bca) -> new_compare111(yvy4900, yvy5000, new_ltEs18(yvy4900, yvy5000, bca), bca) 47.63/23.28 new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.63/23.28 new_ltEs20(yvy49002, yvy50002, ty_Float) -> new_ltEs5(yvy49002, yvy50002) 47.63/23.28 new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cdh), cea)) -> new_esEs4(yvy4000, yvy3000, cdh, cea) 47.63/23.28 new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.63/23.28 new_fsEs(yvy209) -> new_not(new_esEs12(yvy209, GT)) 47.63/23.28 new_ltEs18(yvy4900, yvy5000, app(app(ty_Either, hd), ga)) -> new_ltEs14(yvy4900, yvy5000, hd, ga) 47.63/23.28 new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Ratio, ceb)) -> new_esEs15(yvy4000, yvy3000, ceb) 47.63/23.28 new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 47.63/23.28 new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) 47.63/23.28 new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_[], cee)) -> new_esEs8(yvy4000, yvy3000, cee) 47.63/23.28 new_compare25(yvy490, yvy500, True, bca) -> EQ 47.63/23.28 new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs5(yvy4000, yvy3000, ef, eg, eh) 47.63/23.28 new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fd)) -> new_esEs15(yvy4000, yvy3000, fd) 47.63/23.28 new_compare([], :(yvy50000, yvy50001), bf) -> LT 47.63/23.28 new_lt20(yvy49001, yvy50001, app(ty_[], dad)) -> new_lt12(yvy49001, yvy50001, dad) 47.63/23.28 new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cdg)) -> new_esEs6(yvy4000, yvy3000, cdg) 47.63/23.28 new_esEs6(Nothing, Just(yvy3000), bbb) -> False 47.63/23.28 new_esEs6(Just(yvy4000), Nothing, bbb) -> False 47.63/23.28 new_esEs23(yvy4001, yvy3001, app(ty_[], cca)) -> new_esEs8(yvy4001, yvy3001, cca) 47.63/23.28 new_ltEs15(EQ, GT) -> True 47.63/23.28 new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.63/23.28 new_esEs6(Nothing, Nothing, bbb) -> True 47.63/23.28 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Double) -> new_ltEs16(yvy49000, yvy50000) 47.63/23.28 new_esEs11(False, False) -> True 47.63/23.28 new_esEs24(yvy4000, yvy3000, app(app(ty_Either, cda), cdb)) -> new_esEs7(yvy4000, yvy3000, cda, cdb) 47.63/23.28 new_ltEs18(yvy4900, yvy5000, ty_Ordering) -> new_ltEs15(yvy4900, yvy5000) 47.63/23.28 new_ltEs11(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), bcb, bcc) -> new_pePe(new_lt8(yvy49000, yvy50000, bcb), new_asAs(new_esEs21(yvy49000, yvy50000, bcb), new_ltEs19(yvy49001, yvy50001, bcc))) 47.63/23.28 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Integer) -> new_ltEs10(yvy49000, yvy50000) 47.63/23.28 new_esEs21(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) 47.63/23.28 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.63/23.28 new_esEs30(yvy20, yvy15, ty_Char) -> new_esEs17(yvy20, yvy15) 47.63/23.28 new_ltEs14(Left(yvy49000), Right(yvy50000), hd, ga) -> True 47.63/23.28 new_ltEs19(yvy49001, yvy50001, ty_Float) -> new_ltEs5(yvy49001, yvy50001) 47.63/23.28 new_esEs23(yvy4001, yvy3001, app(app(ty_@2, cbd), cbe)) -> new_esEs4(yvy4001, yvy3001, cbd, cbe) 47.63/23.28 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.63/23.28 new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.63/23.28 new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.63/23.28 new_esEs26(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.63/23.28 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Ordering, ga) -> new_ltEs15(yvy49000, yvy50000) 47.63/23.28 new_ltEs6(yvy4900, yvy5000) -> new_fsEs(new_compare7(yvy4900, yvy5000)) 47.63/23.28 new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 47.63/23.28 new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 47.63/23.28 new_esEs8(:(yvy4000, yvy4001), [], ee) -> False 47.63/23.28 new_esEs8([], :(yvy3000, yvy3001), ee) -> False 47.63/23.28 new_esEs26(yvy4000, yvy3000, app(app(ty_Either, cgg), cgh)) -> new_esEs7(yvy4000, yvy3000, cgg, cgh) 47.63/23.28 new_lt19(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) 47.63/23.28 new_lt17(yvy49000, yvy50000) -> new_esEs12(new_compare17(yvy49000, yvy50000), LT) 47.63/23.28 new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Integer) -> new_compare11(new_sr0(yvy49000, yvy50001), new_sr0(yvy50000, yvy49001)) 47.63/23.28 new_esEs22(yvy4002, yvy3002, app(app(ty_@2, cab), cac)) -> new_esEs4(yvy4002, yvy3002, cab, cac) 47.63/23.28 new_esEs31(yvy400, yvy300, app(ty_Maybe, bbb)) -> new_esEs6(yvy400, yvy300, bbb) 47.63/23.28 new_esEs22(yvy4002, yvy3002, ty_Double) -> new_esEs18(yvy4002, yvy3002) 47.63/23.28 new_esEs26(yvy4000, yvy3000, app(ty_Ratio, cgf)) -> new_esEs15(yvy4000, yvy3000, cgf) 47.63/23.28 new_esEs31(yvy400, yvy300, ty_Bool) -> new_esEs11(yvy400, yvy300) 47.63/23.28 new_compare5(yvy49000, yvy50000, app(ty_Maybe, ce)) -> new_compare15(yvy49000, yvy50000, ce) 47.63/23.28 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Integer, bbg) -> new_esEs10(yvy4000, yvy3000) 47.63/23.28 new_ltEs19(yvy49001, yvy50001, ty_@0) -> new_ltEs9(yvy49001, yvy50001) 47.63/23.28 new_esEs22(yvy4002, yvy3002, app(app(app(ty_@3, bhf), bhg), bhh)) -> new_esEs5(yvy4002, yvy3002, bhf, bhg, bhh) 47.63/23.28 new_lt20(yvy49001, yvy50001, ty_@0) -> new_lt6(yvy49001, yvy50001) 47.63/23.28 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, app(app(ty_@2, bgh), bha)) -> new_esEs4(yvy4000, yvy3000, bgh, bha) 47.63/23.28 new_gt1(yvy400, h) -> new_esEs12(new_compare32(yvy400, h), GT) 47.63/23.28 new_sr0(Integer(yvy490000), Integer(yvy500010)) -> Integer(new_primMulInt(yvy490000, yvy500010)) 47.63/23.28 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Bool, ga) -> new_ltEs13(yvy49000, yvy50000) 47.63/23.28 new_esEs18(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 47.63/23.28 new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.63/23.28 new_esEs28(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) 47.63/23.28 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, app(ty_[], bhe)) -> new_esEs8(yvy4000, yvy3000, bhe) 47.63/23.28 new_ltEs15(LT, GT) -> True 47.63/23.28 new_lt19(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) 47.63/23.28 new_esEs30(yvy20, yvy15, app(ty_[], deb)) -> new_esEs8(yvy20, yvy15, deb) 47.63/23.28 new_compare33(h) -> new_compare25(Nothing, Nothing, True, h) 47.63/23.28 new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) 47.63/23.28 new_esEs12(GT, GT) -> True 47.63/23.28 new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) 47.63/23.28 new_esEs24(yvy4000, yvy3000, app(ty_[], cdc)) -> new_esEs8(yvy4000, yvy3000, cdc) 47.63/23.28 new_asAs(True, yvy201) -> yvy201 47.63/23.28 new_esEs26(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.63/23.28 new_esEs21(yvy49000, yvy50000, app(ty_Maybe, bbh)) -> new_esEs6(yvy49000, yvy50000, bbh) 47.63/23.28 new_esEs10(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) 47.63/23.28 new_compare10(yvy49000, yvy50000, False, bd, be) -> GT 47.63/23.28 new_lt8(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) 47.63/23.28 new_lt8(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) 47.63/23.28 new_compare113(yvy49000, yvy50000, True) -> LT 47.63/23.28 new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.63/23.28 new_ltEs16(yvy4900, yvy5000) -> new_fsEs(new_compare18(yvy4900, yvy5000)) 47.63/23.28 new_lt20(yvy49001, yvy50001, ty_Float) -> new_lt9(yvy49001, yvy50001) 47.63/23.28 new_esEs31(yvy400, yvy300, ty_Char) -> new_esEs17(yvy400, yvy300) 47.63/23.28 new_ltEs4(Nothing, Just(yvy50000), db) -> True 47.63/23.28 new_esEs21(yvy49000, yvy50000, app(ty_Ratio, bdg)) -> new_esEs15(yvy49000, yvy50000, bdg) 47.63/23.28 new_ltEs18(yvy4900, yvy5000, app(ty_Maybe, db)) -> new_ltEs4(yvy4900, yvy5000, db) 47.63/23.28 new_lt8(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) 47.63/23.28 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Float, bbg) -> new_esEs13(yvy4000, yvy3000) 47.63/23.28 new_ltEs8(yvy4900, yvy5000, bf) -> new_fsEs(new_compare(yvy4900, yvy5000, bf)) 47.63/23.28 new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) 47.63/23.28 new_ltEs18(yvy4900, yvy5000, app(ty_[], bf)) -> new_ltEs8(yvy4900, yvy5000, bf) 47.63/23.28 new_compare110(yvy49000, yvy50000, False) -> GT 47.63/23.28 new_primCompAux00(yvy225, EQ) -> yvy225 47.63/23.28 new_lt19(yvy49000, yvy50000, app(ty_Maybe, chh)) -> new_lt15(yvy49000, yvy50000, chh) 47.63/23.28 new_esEs12(EQ, EQ) -> True 47.63/23.28 new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) 47.63/23.28 new_lt19(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) 47.63/23.28 new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) 47.63/23.28 new_esEs21(yvy49000, yvy50000, app(app(ty_Either, bch), bda)) -> new_esEs7(yvy49000, yvy50000, bch, bda) 47.63/23.28 new_primMulNat0(Zero, Zero) -> Zero 47.63/23.28 new_compare24(yvy49000, yvy50000, False) -> new_compare110(yvy49000, yvy50000, new_ltEs13(yvy49000, yvy50000)) 47.63/23.28 new_compare5(yvy49000, yvy50000, ty_Integer) -> new_compare11(yvy49000, yvy50000) 47.63/23.28 new_esEs22(yvy4002, yvy3002, ty_Integer) -> new_esEs10(yvy4002, yvy3002) 47.63/23.28 new_esEs21(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) 47.63/23.28 new_lt19(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) 47.63/23.28 new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.63/23.28 new_ltEs12(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), bcd, bce, bcf) -> new_pePe(new_lt19(yvy49000, yvy50000, bcd), new_asAs(new_esEs28(yvy49000, yvy50000, bcd), new_pePe(new_lt20(yvy49001, yvy50001, bce), new_asAs(new_esEs27(yvy49001, yvy50001, bce), new_ltEs20(yvy49002, yvy50002, bcf))))) 47.63/23.28 new_ltEs19(yvy49001, yvy50001, app(ty_[], bdh)) -> new_ltEs8(yvy49001, yvy50001, bdh) 47.63/23.28 new_compare5(yvy49000, yvy50000, ty_Double) -> new_compare18(yvy49000, yvy50000) 47.63/23.28 new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_@2, dd), de)) -> new_ltEs11(yvy49000, yvy50000, dd, de) 47.63/23.28 new_compare11(Integer(yvy49000), Integer(yvy50000)) -> new_primCmpInt(yvy49000, yvy50000) 47.63/23.28 new_compare9(@0, @0) -> EQ 47.63/23.28 new_esEs22(yvy4002, yvy3002, app(app(ty_Either, cae), caf)) -> new_esEs7(yvy4002, yvy3002, cae, caf) 47.63/23.28 new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.63/23.28 new_compare28(yvy49000, yvy50000, True, bdb, bdc, bdd) -> EQ 47.63/23.28 new_esEs27(yvy49001, yvy50001, ty_Float) -> new_esEs13(yvy49001, yvy50001) 47.63/23.28 new_esEs26(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.63/23.28 new_ltEs13(False, True) -> True 47.63/23.28 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.63/23.28 new_ltEs13(False, False) -> True 47.63/23.28 new_esEs9(yvy4000, yvy3000, app(app(ty_Either, ff), fg)) -> new_esEs7(yvy4000, yvy3000, ff, fg) 47.63/23.28 new_esEs7(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, bfb), bfc), bfd), bbg) -> new_esEs5(yvy4000, yvy3000, bfb, bfc, bfd) 47.63/23.28 new_ltEs15(EQ, EQ) -> True 47.63/23.28 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) 47.63/23.28 new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Maybe, bfe), bbg) -> new_esEs6(yvy4000, yvy3000, bfe) 47.63/23.28 new_compare30(yvy20, yvy15, dch) -> new_compare25(Just(yvy20), Just(yvy15), new_esEs30(yvy20, yvy15, dch), dch) 47.63/23.28 new_esEs26(yvy4000, yvy3000, app(ty_Maybe, cgc)) -> new_esEs6(yvy4000, yvy3000, cgc) 47.63/23.28 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) 47.63/23.28 new_esEs26(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) 47.63/23.28 new_lt12(yvy49000, yvy50000, bdf) -> new_esEs12(new_compare(yvy49000, yvy50000, bdf), LT) 47.63/23.28 new_lt10(yvy49000, yvy50000) -> new_esEs12(new_compare7(yvy49000, yvy50000), LT) 47.63/23.28 new_lt19(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) 47.63/23.28 new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.63/23.28 new_compare31(yvy300, h) -> new_compare25(Nothing, Just(yvy300), False, h) 47.63/23.28 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Char, bbg) -> new_esEs17(yvy4000, yvy3000) 47.63/23.28 new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.63/23.28 new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_[], bgc), bbg) -> new_esEs8(yvy4000, yvy3000, bgc) 47.63/23.28 new_ltEs20(yvy49002, yvy50002, app(ty_[], dbf)) -> new_ltEs8(yvy49002, yvy50002, dbf) 47.63/23.28 new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_Either, eb), ec)) -> new_ltEs14(yvy49000, yvy50000, eb, ec) 47.63/23.28 new_compare17(yvy49000, yvy50000) -> new_compare29(yvy49000, yvy50000, new_esEs12(yvy49000, yvy50000)) 47.63/23.28 new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False 47.63/23.28 new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False 47.63/23.28 new_esEs21(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) 47.63/23.28 new_esEs25(yvy4001, yvy3001, app(ty_Maybe, cfa)) -> new_esEs6(yvy4001, yvy3001, cfa) 47.63/23.28 new_compare([], [], bf) -> EQ 47.63/23.28 new_ltEs15(LT, EQ) -> True 47.63/23.28 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Float) -> new_ltEs5(yvy49000, yvy50000) 47.63/23.28 new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 47.63/23.28 new_ltEs18(yvy4900, yvy5000, ty_Char) -> new_ltEs6(yvy4900, yvy5000) 47.63/23.28 new_ltEs18(yvy4900, yvy5000, app(ty_Ratio, bcg)) -> new_ltEs17(yvy4900, yvy5000, bcg) 47.63/23.28 new_lt20(yvy49001, yvy50001, ty_Double) -> new_lt7(yvy49001, yvy50001) 47.63/23.28 new_esEs26(yvy4000, yvy3000, app(app(ty_@2, cgd), cge)) -> new_esEs4(yvy4000, yvy3000, cgd, cge) 47.63/23.28 new_compare24(yvy49000, yvy50000, True) -> EQ 47.63/23.28 new_lt8(yvy49000, yvy50000, app(ty_[], bdf)) -> new_lt12(yvy49000, yvy50000, bdf) 47.63/23.28 new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(app(ty_@3, ge), gf), gg), ga) -> new_ltEs12(yvy49000, yvy50000, ge, gf, gg) 47.63/23.28 new_esEs21(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) 47.63/23.28 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, app(app(ty_Either, bhc), bhd)) -> new_esEs7(yvy4000, yvy3000, bhc, bhd) 47.63/23.28 new_esEs11(True, True) -> True 47.63/23.28 new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False 47.63/23.28 new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False 47.63/23.28 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(ty_[], he)) -> new_ltEs8(yvy49000, yvy50000, he) 47.63/23.28 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, app(ty_Maybe, bgg)) -> new_esEs6(yvy4000, yvy3000, bgg) 47.63/23.28 new_esEs31(yvy400, yvy300, app(ty_Ratio, bbe)) -> new_esEs15(yvy400, yvy300, bbe) 47.63/23.28 new_esEs25(yvy4001, yvy3001, app(ty_Ratio, cfd)) -> new_esEs15(yvy4001, yvy3001, cfd) 47.63/23.28 new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) 47.63/23.28 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Int) -> new_ltEs7(yvy49000, yvy50000) 47.63/23.28 new_esEs15(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bbe) -> new_asAs(new_esEs20(yvy4000, yvy3000, bbe), new_esEs19(yvy4001, yvy3001, bbe)) 47.63/23.28 new_compare28(yvy49000, yvy50000, False, bdb, bdc, bdd) -> new_compare112(yvy49000, yvy50000, new_ltEs12(yvy49000, yvy50000, bdb, bdc, bdd), bdb, bdc, bdd) 47.63/23.28 new_esEs22(yvy4002, yvy3002, ty_Float) -> new_esEs13(yvy4002, yvy3002) 47.63/23.28 new_esEs27(yvy49001, yvy50001, ty_Integer) -> new_esEs10(yvy49001, yvy50001) 47.63/23.28 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(app(ty_@2, hf), hg)) -> new_ltEs11(yvy49000, yvy50000, hf, hg) 47.63/23.28 new_gt(h) -> new_esEs12(new_compare33(h), GT) 47.63/23.28 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 47.63/23.28 new_ltEs15(GT, GT) -> True 47.63/23.28 new_compare111(yvy198, yvy199, False, bde) -> GT 47.63/23.28 new_esEs30(yvy20, yvy15, ty_Bool) -> new_esEs11(yvy20, yvy15) 47.63/23.28 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(ty_Maybe, bac)) -> new_ltEs4(yvy49000, yvy50000, bac) 47.63/23.28 new_esEs30(yvy20, yvy15, app(ty_Maybe, ddd)) -> new_esEs6(yvy20, yvy15, ddd) 47.63/23.28 new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 47.63/23.28 new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) 47.63/23.28 new_esEs31(yvy400, yvy300, app(app(ty_@2, bbc), bbd)) -> new_esEs4(yvy400, yvy300, bbc, bbd) 47.63/23.28 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Int, ga) -> new_ltEs7(yvy49000, yvy50000) 47.63/23.28 new_not(False) -> True 47.63/23.28 new_compare5(yvy49000, yvy50000, app(app(ty_Either, cf), cg)) -> new_compare16(yvy49000, yvy50000, cf, cg) 47.63/23.28 new_esEs6(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs13(yvy4000, yvy3000) 47.63/23.28 new_compare112(yvy49000, yvy50000, True, bdb, bdc, bdd) -> LT 47.63/23.28 new_esEs28(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) 47.63/23.28 new_compare5(yvy49000, yvy50000, ty_Bool) -> new_compare14(yvy49000, yvy50000) 47.63/23.28 new_lt13(yvy49000, yvy50000, bdb, bdc, bdd) -> new_esEs12(new_compare13(yvy49000, yvy50000, bdb, bdc, bdd), LT) 47.63/23.28 new_primCompAux0(yvy49000, yvy50000, yvy221, bf) -> new_primCompAux00(yvy221, new_compare5(yvy49000, yvy50000, bf)) 47.63/23.28 new_esEs27(yvy49001, yvy50001, app(app(ty_Either, dbc), dbd)) -> new_esEs7(yvy49001, yvy50001, dbc, dbd) 47.63/23.28 new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 47.63/23.28 new_esEs22(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) 47.63/23.28 new_lt7(yvy49000, yvy50000) -> new_esEs12(new_compare18(yvy49000, yvy50000), LT) 47.63/23.28 new_esEs28(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) 47.63/23.28 new_esEs12(LT, EQ) -> False 47.63/23.28 new_esEs12(EQ, LT) -> False 47.63/23.28 new_esEs21(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) 47.63/23.28 new_compare29(yvy49000, yvy50000, True) -> EQ 47.63/23.28 new_primPlusNat0(Succ(yvy16100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat0(yvy16100, yvy3000000))) 47.63/23.28 new_lt4(yvy49000, yvy50000, bd, be) -> new_esEs12(new_compare12(yvy49000, yvy50000, bd, be), LT) 47.63/23.28 new_compare5(yvy49000, yvy50000, app(app(app(ty_@3, cb), cc), cd)) -> new_compare13(yvy49000, yvy50000, cb, cc, cd) 47.63/23.28 new_esEs27(yvy49001, yvy50001, app(ty_Ratio, dbe)) -> new_esEs15(yvy49001, yvy50001, dbe) 47.63/23.28 new_lt19(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) 47.63/23.28 new_esEs31(yvy400, yvy300, ty_Integer) -> new_esEs10(yvy400, yvy300) 47.63/23.28 new_esEs28(yvy49000, yvy50000, app(app(app(ty_@3, che), chf), chg)) -> new_esEs5(yvy49000, yvy50000, che, chf, chg) 47.63/23.28 new_compare112(yvy49000, yvy50000, False, bdb, bdc, bdd) -> GT 47.63/23.28 new_compare27(yvy49000, yvy50000, True, bd, be) -> EQ 47.63/23.28 new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Int) -> new_esEs16(yvy4000, yvy3000) 47.63/23.28 new_compare15(yvy49000, yvy50000, bbh) -> new_compare25(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, bbh), bbh) 47.63/23.28 new_esEs21(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) 47.63/23.28 new_esEs12(LT, GT) -> False 47.63/23.28 new_esEs12(GT, LT) -> False 47.63/23.28 new_lt20(yvy49001, yvy50001, ty_Int) -> new_lt11(yvy49001, yvy50001) 47.63/23.28 new_esEs31(yvy400, yvy300, app(ty_[], ee)) -> new_esEs8(yvy400, yvy300, ee) 47.63/23.28 new_ltEs19(yvy49001, yvy50001, ty_Int) -> new_ltEs7(yvy49001, yvy50001) 47.63/23.28 new_ltEs20(yvy49002, yvy50002, app(ty_Ratio, dcg)) -> new_ltEs17(yvy49002, yvy50002, dcg) 47.63/23.28 new_esEs8([], [], ee) -> True 47.63/23.28 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Char, ga) -> new_ltEs6(yvy49000, yvy50000) 47.63/23.28 new_ltEs20(yvy49002, yvy50002, ty_Char) -> new_ltEs6(yvy49002, yvy50002) 47.63/23.28 new_compare25(Nothing, Nothing, False, bca) -> LT 47.63/23.28 new_lt20(yvy49001, yvy50001, app(ty_Maybe, dbb)) -> new_lt15(yvy49001, yvy50001, dbb) 47.63/23.28 new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Ratio, ed)) -> new_ltEs17(yvy49000, yvy50000, ed) 47.63/23.28 new_lt8(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) 47.63/23.28 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Float) -> new_ltEs5(yvy49000, yvy50000) 47.63/23.28 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 47.63/23.28 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 47.63/23.28 new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) 47.63/23.28 new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 47.63/23.28 new_esEs31(yvy400, yvy300, app(app(ty_Either, bbf), bbg)) -> new_esEs7(yvy400, yvy300, bbf, bbg) 47.63/23.28 new_lt20(yvy49001, yvy50001, app(app(ty_@2, dae), daf)) -> new_lt4(yvy49001, yvy50001, dae, daf) 47.63/23.28 new_esEs28(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) 47.63/23.28 new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 47.63/23.28 new_compare111(yvy198, yvy199, True, bde) -> LT 47.63/23.28 new_ltEs13(True, False) -> False 47.63/23.28 new_ltEs20(yvy49002, yvy50002, ty_Int) -> new_ltEs7(yvy49002, yvy50002) 47.63/23.28 new_esEs27(yvy49001, yvy50001, app(app(ty_@2, dae), daf)) -> new_esEs4(yvy49001, yvy50001, dae, daf) 47.63/23.28 new_ltEs15(LT, LT) -> True 47.63/23.28 new_esEs31(yvy400, yvy300, ty_Int) -> new_esEs16(yvy400, yvy300) 47.63/23.28 new_esEs13(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 47.63/23.28 new_esEs22(yvy4002, yvy3002, ty_@0) -> new_esEs14(yvy4002, yvy3002) 47.63/23.28 new_esEs28(yvy49000, yvy50000, app(ty_Maybe, chh)) -> new_esEs6(yvy49000, yvy50000, chh) 47.63/23.28 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 47.63/23.28 new_esEs26(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) 47.63/23.28 new_esEs28(yvy49000, yvy50000, app(app(ty_@2, chc), chd)) -> new_esEs4(yvy49000, yvy50000, chc, chd) 47.63/23.28 new_compare7(Char(yvy49000), Char(yvy50000)) -> new_primCmpNat0(yvy49000, yvy50000) 47.63/23.28 new_lt5(yvy49000, yvy50000) -> new_esEs12(new_compare11(yvy49000, yvy50000), LT) 47.63/23.28 new_lt20(yvy49001, yvy50001, app(app(ty_Either, dbc), dbd)) -> new_lt16(yvy49001, yvy50001, dbc, dbd) 47.63/23.28 new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) 47.63/23.28 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Char) -> new_ltEs6(yvy49000, yvy50000) 47.63/23.28 new_esEs26(yvy4000, yvy3000, app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs5(yvy4000, yvy3000, cfh, cga, cgb) 47.63/23.28 new_lt20(yvy49001, yvy50001, ty_Integer) -> new_lt5(yvy49001, yvy50001) 47.63/23.28 new_esEs30(yvy20, yvy15, ty_Int) -> new_esEs16(yvy20, yvy15) 47.63/23.28 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Double) -> new_ltEs16(yvy49000, yvy50000) 47.63/23.28 new_ltEs10(yvy4900, yvy5000) -> new_fsEs(new_compare11(yvy4900, yvy5000)) 47.63/23.28 new_lt14(yvy49000, yvy50000) -> new_esEs12(new_compare14(yvy49000, yvy50000), LT) 47.63/23.28 new_esEs31(yvy400, yvy300, ty_Ordering) -> new_esEs12(yvy400, yvy300) 47.63/23.28 new_esEs27(yvy49001, yvy50001, app(ty_Maybe, dbb)) -> new_esEs6(yvy49001, yvy50001, dbb) 47.63/23.28 new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_@0) -> new_ltEs9(yvy49000, yvy50000) 47.63/23.28 new_esEs7(Left(yvy4000), Left(yvy3000), ty_Double, bbg) -> new_esEs18(yvy4000, yvy3000) 47.63/23.28 new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_[], dc)) -> new_ltEs8(yvy49000, yvy50000, dc) 47.63/23.28 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Integer) -> new_ltEs10(yvy49000, yvy50000) 47.63/23.28 new_esEs27(yvy49001, yvy50001, ty_Double) -> new_esEs18(yvy49001, yvy50001) 47.63/23.28 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 47.63/23.28 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 47.63/23.28 new_compare25(Nothing, Just(yvy5000), False, bca) -> LT 47.63/23.28 new_compare5(yvy49000, yvy50000, app(app(ty_@2, bh), ca)) -> new_compare12(yvy49000, yvy50000, bh, ca) 47.63/23.28 new_esEs28(yvy49000, yvy50000, app(ty_[], chb)) -> new_esEs8(yvy49000, yvy50000, chb) 47.63/23.28 new_lt19(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) 47.63/23.28 new_lt18(yvy49000, yvy50000, bdg) -> new_esEs12(new_compare19(yvy49000, yvy50000, bdg), LT) 47.63/23.28 new_compare5(yvy49000, yvy50000, ty_Char) -> new_compare7(yvy49000, yvy50000) 47.63/23.28 new_ltEs19(yvy49001, yvy50001, app(ty_Maybe, bef)) -> new_ltEs4(yvy49001, yvy50001, bef) 47.63/23.28 new_compare5(yvy49000, yvy50000, app(ty_[], bg)) -> new_compare(yvy49000, yvy50000, bg) 47.63/23.28 new_compare14(yvy49000, yvy50000) -> new_compare24(yvy49000, yvy50000, new_esEs11(yvy49000, yvy50000)) 47.63/23.28 new_primEqNat0(Zero, Zero) -> True 47.63/23.28 new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Integer, ga) -> new_ltEs10(yvy49000, yvy50000) 47.63/23.28 new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) 47.63/23.28 new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) 47.63/23.28 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Bool) -> new_ltEs13(yvy49000, yvy50000) 47.63/23.28 new_esEs30(yvy20, yvy15, app(app(ty_Either, ddh), dea)) -> new_esEs7(yvy20, yvy15, ddh, dea) 47.63/23.28 new_esEs30(yvy20, yvy15, ty_Ordering) -> new_esEs12(yvy20, yvy15) 47.63/23.28 new_compare5(yvy49000, yvy50000, ty_Ordering) -> new_compare17(yvy49000, yvy50000) 47.63/23.28 new_esEs6(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs14(yvy4000, yvy3000) 47.63/23.28 new_asAs(False, yvy201) -> False 47.63/23.28 new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(app(ty_@3, df), dg), dh)) -> new_ltEs12(yvy49000, yvy50000, df, dg, dh) 47.63/23.28 new_esEs28(yvy49000, yvy50000, app(ty_Ratio, dac)) -> new_esEs15(yvy49000, yvy50000, dac) 47.63/23.28 new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 47.63/23.28 new_esEs30(yvy20, yvy15, ty_Integer) -> new_esEs10(yvy20, yvy15) 47.63/23.28 new_ltEs20(yvy49002, yvy50002, app(ty_Maybe, dcd)) -> new_ltEs4(yvy49002, yvy50002, dcd) 47.63/23.28 new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) 47.63/23.28 new_lt8(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) 47.63/23.28 new_esEs7(Left(yvy4000), Right(yvy3000), bbf, bbg) -> False 47.63/23.28 new_esEs7(Right(yvy4000), Left(yvy3000), bbf, bbg) -> False 47.63/23.28 new_ltEs17(yvy4900, yvy5000, bcg) -> new_fsEs(new_compare19(yvy4900, yvy5000, bcg)) 47.63/23.28 new_lt16(yvy49000, yvy50000, bch, bda) -> new_esEs12(new_compare16(yvy49000, yvy50000, bch, bda), LT) 47.63/23.28 new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) 47.63/23.28 new_ltEs18(yvy4900, yvy5000, ty_Int) -> new_ltEs7(yvy4900, yvy5000) 47.63/23.28 new_lt19(yvy49000, yvy50000, app(app(ty_Either, daa), dab)) -> new_lt16(yvy49000, yvy50000, daa, dab) 47.63/23.28 new_esEs27(yvy49001, yvy50001, app(app(app(ty_@3, dag), dah), dba)) -> new_esEs5(yvy49001, yvy50001, dag, dah, dba) 47.63/23.28 47.63/23.28 The set Q consists of the following terms: 47.63/23.28 47.63/23.28 new_esEs27(x0, x1, ty_@0) 47.63/23.28 new_esEs8(:(x0, x1), :(x2, x3), x4) 47.63/23.28 new_esEs25(x0, x1, app(ty_Maybe, x2)) 47.63/23.28 new_compare12(x0, x1, x2, x3) 47.63/23.28 new_esEs8([], [], x0) 47.63/23.28 new_esEs24(x0, x1, app(ty_Ratio, x2)) 47.63/23.28 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 47.63/23.28 new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) 47.63/23.28 new_esEs7(Right(x0), Right(x1), x2, ty_Bool) 47.63/23.28 new_lt20(x0, x1, app(ty_Ratio, x2)) 47.63/23.28 new_esEs26(x0, x1, ty_Float) 47.63/23.28 new_esEs12(EQ, EQ) 47.63/23.28 new_compare30(x0, x1, x2) 47.63/23.28 new_esEs7(Right(x0), Right(x1), x2, ty_@0) 47.63/23.28 new_esEs28(x0, x1, ty_Char) 47.63/23.28 new_compare5(x0, x1, app(ty_Maybe, x2)) 47.63/23.28 new_primMulInt(Neg(x0), Neg(x1)) 47.63/23.28 new_lt20(x0, x1, ty_@0) 47.63/23.28 new_esEs26(x0, x1, app(ty_[], x2)) 47.63/23.28 new_primCmpNat0(Succ(x0), Zero) 47.63/23.28 new_compare29(x0, x1, True) 47.63/23.28 new_compare5(x0, x1, app(app(ty_@2, x2), x3)) 47.63/23.28 new_compare28(x0, x1, False, x2, x3, x4) 47.63/23.28 new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) 47.63/23.28 new_ltEs17(x0, x1, x2) 47.63/23.28 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 47.63/23.28 new_compare15(x0, x1, x2) 47.63/23.28 new_primEqInt(Pos(Zero), Pos(Zero)) 47.63/23.28 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 47.63/23.28 new_primMulInt(Pos(x0), Pos(x1)) 47.63/23.28 new_esEs27(x0, x1, app(ty_Ratio, x2)) 47.63/23.28 new_ltEs14(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 47.63/23.28 new_primCompAux00(x0, GT) 47.63/23.28 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 47.63/23.28 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 47.63/23.28 new_lt8(x0, x1, ty_Float) 47.63/23.28 new_ltEs4(Just(x0), Just(x1), ty_Float) 47.63/23.28 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_compare27(x0, x1, True, x2, x3) 47.63/23.28 new_asAs(False, x0) 47.63/23.28 new_ltEs20(x0, x1, app(ty_[], x2)) 47.63/23.28 new_compare114(x0, x1, False, x2, x3) 47.63/23.28 new_ltEs14(Left(x0), Left(x1), app(ty_[], x2), x3) 47.63/23.28 new_esEs27(x0, x1, ty_Integer) 47.63/23.28 new_primEqInt(Neg(Zero), Neg(Zero)) 47.63/23.28 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 47.63/23.28 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 47.63/23.28 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 47.63/23.28 new_sr(x0, x1) 47.63/23.28 new_esEs28(x0, x1, ty_Bool) 47.63/23.28 new_esEs27(x0, x1, ty_Char) 47.63/23.28 new_primCmpNat0(Zero, Succ(x0)) 47.63/23.28 new_lt19(x0, x1, ty_Double) 47.63/23.28 new_ltEs13(False, True) 47.63/23.28 new_ltEs13(True, False) 47.63/23.28 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_ltEs18(x0, x1, ty_Int) 47.63/23.28 new_lt17(x0, x1) 47.63/23.28 new_esEs21(x0, x1, app(ty_Ratio, x2)) 47.63/23.28 new_esEs9(x0, x1, ty_Double) 47.63/23.28 new_esEs28(x0, x1, ty_Ordering) 47.63/23.28 new_lt8(x0, x1, ty_Integer) 47.63/23.28 new_compare110(x0, x1, False) 47.63/23.28 new_esEs7(Right(x0), Right(x1), x2, ty_Char) 47.63/23.28 new_compare10(x0, x1, False, x2, x3) 47.63/23.28 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 47.63/23.28 new_esEs19(x0, x1, ty_Integer) 47.63/23.28 new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) 47.63/23.28 new_ltEs14(Right(x0), Right(x1), x2, ty_Integer) 47.63/23.28 new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 47.63/23.28 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_esEs22(x0, x1, app(ty_Maybe, x2)) 47.63/23.28 new_compare111(x0, x1, False, x2) 47.63/23.28 new_ltEs19(x0, x1, ty_Float) 47.63/23.28 new_esEs21(x0, x1, app(ty_Maybe, x2)) 47.63/23.28 new_esEs28(x0, x1, app(ty_[], x2)) 47.63/23.28 new_esEs7(Right(x0), Right(x1), x2, ty_Integer) 47.63/23.28 new_esEs9(x0, x1, ty_Int) 47.63/23.28 new_esEs23(x0, x1, app(ty_[], x2)) 47.63/23.28 new_ltEs14(Right(x0), Right(x1), x2, ty_Bool) 47.63/23.28 new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 47.63/23.28 new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 47.63/23.28 new_compare25(Nothing, Just(x0), False, x1) 47.63/23.28 new_ltEs14(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 47.63/23.28 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 47.63/23.28 new_lt8(x0, x1, app(ty_[], x2)) 47.63/23.28 new_lt8(x0, x1, ty_Bool) 47.63/23.28 new_esEs18(Double(x0, x1), Double(x2, x3)) 47.63/23.28 new_ltEs8(x0, x1, x2) 47.63/23.28 new_primEqInt(Pos(Zero), Neg(Zero)) 47.63/23.28 new_primEqInt(Neg(Zero), Pos(Zero)) 47.63/23.28 new_esEs31(x0, x1, ty_Ordering) 47.63/23.28 new_esEs30(x0, x1, ty_Float) 47.63/23.28 new_esEs12(LT, GT) 47.63/23.28 new_esEs12(GT, LT) 47.63/23.28 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 47.63/23.28 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 47.63/23.28 new_esEs17(Char(x0), Char(x1)) 47.63/23.28 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_esEs21(x0, x1, ty_Float) 47.63/23.28 new_ltEs19(x0, x1, app(ty_[], x2)) 47.63/23.28 new_ltEs18(x0, x1, ty_Double) 47.63/23.28 new_lt18(x0, x1, x2) 47.63/23.28 new_primCompAux0(x0, x1, x2, x3) 47.63/23.28 new_ltEs20(x0, x1, ty_Ordering) 47.63/23.28 new_esEs27(x0, x1, ty_Bool) 47.63/23.28 new_compare25(Just(x0), Just(x1), False, x2) 47.63/23.28 new_compare14(x0, x1) 47.63/23.28 new_ltEs18(x0, x1, ty_Char) 47.63/23.28 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 47.63/23.28 new_asAs(True, x0) 47.63/23.28 new_esEs24(x0, x1, ty_Integer) 47.63/23.28 new_esEs30(x0, x1, ty_@0) 47.63/23.28 new_pePe(True, x0) 47.63/23.28 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 47.63/23.28 new_ltEs7(x0, x1) 47.63/23.28 new_ltEs15(EQ, EQ) 47.63/23.28 new_compare([], [], x0) 47.63/23.28 new_esEs30(x0, x1, app(ty_Ratio, x2)) 47.63/23.28 new_primEqNat0(Succ(x0), Zero) 47.63/23.28 new_esEs28(x0, x1, ty_Integer) 47.63/23.28 new_esEs25(x0, x1, ty_Float) 47.63/23.28 new_compare112(x0, x1, True, x2, x3, x4) 47.63/23.28 new_primMulNat0(Succ(x0), Succ(x1)) 47.63/23.28 new_compare25(x0, x1, True, x2) 47.63/23.28 new_gt2(x0, x1, x2) 47.63/23.28 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 47.63/23.28 new_compare5(x0, x1, ty_Ordering) 47.63/23.28 new_lt19(x0, x1, ty_Char) 47.63/23.28 new_ltEs14(Left(x0), Left(x1), ty_Char, x2) 47.63/23.28 new_ltEs19(x0, x1, ty_Integer) 47.63/23.28 new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 47.63/23.28 new_lt5(x0, x1) 47.63/23.28 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 47.63/23.28 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 47.63/23.28 new_esEs7(Right(x0), Right(x1), x2, ty_Double) 47.63/23.28 new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) 47.63/23.28 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 47.63/23.28 new_compare26(x0, x1, True, x2, x3) 47.63/23.28 new_compare(:(x0, x1), :(x2, x3), x4) 47.63/23.28 new_esEs9(x0, x1, ty_Char) 47.63/23.28 new_ltEs4(Just(x0), Just(x1), ty_Bool) 47.63/23.28 new_ltEs14(Left(x0), Left(x1), ty_Int, x2) 47.63/23.28 new_lt6(x0, x1) 47.63/23.28 new_lt19(x0, x1, ty_Int) 47.63/23.28 new_primEqNat0(Succ(x0), Succ(x1)) 47.63/23.28 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 47.63/23.28 new_ltEs6(x0, x1) 47.63/23.28 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_compare7(Char(x0), Char(x1)) 47.63/23.28 new_esEs31(x0, x1, app(ty_Maybe, x2)) 47.63/23.28 new_esEs12(GT, GT) 47.63/23.28 new_esEs12(LT, EQ) 47.63/23.28 new_esEs12(EQ, LT) 47.63/23.28 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 47.63/23.28 new_lt15(x0, x1, x2) 47.63/23.28 new_ltEs5(x0, x1) 47.63/23.28 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 47.63/23.28 new_ltEs15(GT, LT) 47.63/23.28 new_ltEs15(LT, GT) 47.63/23.28 new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 47.63/23.28 new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 47.63/23.28 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 47.63/23.28 new_esEs31(x0, x1, app(ty_Ratio, x2)) 47.63/23.28 new_ltEs4(Just(x0), Just(x1), ty_Integer) 47.63/23.28 new_esEs7(Left(x0), Left(x1), ty_@0, x2) 47.63/23.28 new_esEs27(x0, x1, ty_Int) 47.63/23.28 new_compare28(x0, x1, True, x2, x3, x4) 47.63/23.28 new_esEs6(Just(x0), Just(x1), ty_Integer) 47.63/23.28 new_esEs6(Just(x0), Just(x1), ty_Float) 47.63/23.28 new_lt20(x0, x1, app(ty_[], x2)) 47.63/23.28 new_compare5(x0, x1, ty_Double) 47.63/23.28 new_primMulNat0(Succ(x0), Zero) 47.63/23.28 new_esEs6(Nothing, Just(x0), x1) 47.63/23.28 new_esEs27(x0, x1, ty_Float) 47.63/23.28 new_ltEs14(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 47.63/23.28 new_esEs25(x0, x1, ty_Bool) 47.63/23.28 new_esEs6(Just(x0), Just(x1), ty_Ordering) 47.63/23.28 new_ltEs14(Right(x0), Right(x1), x2, ty_Char) 47.63/23.28 new_esEs9(x0, x1, ty_Bool) 47.63/23.28 new_lt7(x0, x1) 47.63/23.28 new_lt19(x0, x1, app(ty_Maybe, x2)) 47.63/23.28 new_lt8(x0, x1, ty_@0) 47.63/23.28 new_esEs9(x0, x1, ty_Ordering) 47.63/23.28 new_primCmpInt(Neg(Zero), Neg(Zero)) 47.63/23.28 new_lt8(x0, x1, app(ty_Ratio, x2)) 47.63/23.28 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 47.63/23.28 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 47.63/23.28 new_esEs28(x0, x1, ty_Double) 47.63/23.28 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_primCmpInt(Pos(Zero), Neg(Zero)) 47.63/23.28 new_primCmpInt(Neg(Zero), Pos(Zero)) 47.63/23.28 new_primPlusNat0(Succ(x0), Zero) 47.63/23.28 new_esEs23(x0, x1, ty_Float) 47.63/23.28 new_esEs21(x0, x1, ty_Integer) 47.63/23.28 new_ltEs14(Right(x0), Right(x1), x2, ty_Int) 47.63/23.28 new_esEs28(x0, x1, ty_@0) 47.63/23.28 new_lt19(x0, x1, ty_Bool) 47.63/23.28 new_ltEs14(Left(x0), Left(x1), ty_Bool, x2) 47.63/23.28 new_esEs25(x0, x1, ty_Ordering) 47.63/23.28 new_lt19(x0, x1, ty_Ordering) 47.63/23.28 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 47.63/23.28 new_esEs22(x0, x1, ty_Integer) 47.63/23.28 new_esEs31(x0, x1, ty_Double) 47.63/23.28 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_esEs11(False, False) 47.63/23.28 new_esEs30(x0, x1, app(ty_Maybe, x2)) 47.63/23.28 new_compare(:(x0, x1), [], x2) 47.63/23.28 new_lt13(x0, x1, x2, x3, x4) 47.63/23.28 new_esEs8([], :(x0, x1), x2) 47.63/23.28 new_ltEs14(Left(x0), Left(x1), ty_Ordering, x2) 47.63/23.28 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 47.63/23.28 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 47.63/23.28 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 47.63/23.28 new_compare33(x0) 47.63/23.28 new_esEs28(x0, x1, app(ty_Ratio, x2)) 47.63/23.28 new_lt19(x0, x1, app(ty_[], x2)) 47.63/23.28 new_esEs7(Left(x0), Left(x1), ty_Double, x2) 47.63/23.28 new_esEs9(x0, x1, ty_Integer) 47.63/23.28 new_ltEs14(Right(x0), Right(x1), x2, app(ty_[], x3)) 47.63/23.28 new_ltEs20(x0, x1, ty_@0) 47.63/23.28 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 47.63/23.28 new_ltEs4(Just(x0), Just(x1), ty_Char) 47.63/23.28 new_ltEs14(Right(x0), Right(x1), x2, ty_Float) 47.63/23.28 new_compare113(x0, x1, True) 47.63/23.28 new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 47.63/23.28 new_lt20(x0, x1, app(ty_Maybe, x2)) 47.63/23.28 new_esEs31(x0, x1, app(ty_[], x2)) 47.63/23.28 new_lt20(x0, x1, ty_Double) 47.63/23.28 new_esEs6(Just(x0), Nothing, x1) 47.63/23.28 new_ltEs19(x0, x1, ty_Bool) 47.63/23.28 new_ltEs20(x0, x1, ty_Double) 47.63/23.28 new_esEs24(x0, x1, ty_@0) 47.63/23.28 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 47.63/23.28 new_esEs31(x0, x1, ty_@0) 47.63/23.28 new_lt19(x0, x1, ty_Integer) 47.63/23.28 new_esEs22(x0, x1, ty_Ordering) 47.63/23.28 new_esEs13(Float(x0, x1), Float(x2, x3)) 47.63/23.28 new_esEs6(Just(x0), Just(x1), ty_Bool) 47.63/23.28 new_compare8(x0, x1) 47.63/23.28 new_ltEs14(Left(x0), Left(x1), ty_Integer, x2) 47.63/23.28 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 47.63/23.28 new_lt16(x0, x1, x2, x3) 47.63/23.28 new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 47.63/23.28 new_ltEs13(True, True) 47.63/23.28 new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) 47.63/23.28 new_esEs21(x0, x1, ty_Ordering) 47.63/23.28 new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 47.63/23.28 new_esEs25(x0, x1, ty_Integer) 47.63/23.28 new_ltEs4(Nothing, Just(x0), x1) 47.63/23.28 new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 47.63/23.28 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 47.63/23.28 new_esEs25(x0, x1, ty_Char) 47.63/23.28 new_compare17(x0, x1) 47.63/23.28 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 47.63/23.28 new_esEs22(x0, x1, ty_@0) 47.63/23.28 new_esEs26(x0, x1, ty_Ordering) 47.63/23.28 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_esEs31(x0, x1, ty_Integer) 47.63/23.28 new_gt(x0) 47.63/23.28 new_ltEs19(x0, x1, ty_Char) 47.63/23.28 new_esEs24(x0, x1, ty_Ordering) 47.63/23.28 new_compare([], :(x0, x1), x2) 47.63/23.28 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 47.63/23.28 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_primCompAux00(x0, EQ) 47.63/23.28 new_esEs22(x0, x1, ty_Bool) 47.63/23.28 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_ltEs14(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 47.63/23.28 new_ltEs4(Just(x0), Just(x1), ty_Int) 47.63/23.28 new_primMulNat0(Zero, Zero) 47.63/23.28 new_compare24(x0, x1, True) 47.63/23.28 new_compare5(x0, x1, ty_@0) 47.63/23.28 new_ltEs18(x0, x1, ty_Float) 47.63/23.28 new_primPlusNat1(Zero, x0) 47.63/23.28 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 47.63/23.28 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_esEs24(x0, x1, ty_Int) 47.63/23.28 new_lt8(x0, x1, ty_Double) 47.63/23.28 new_esEs6(Just(x0), Just(x1), ty_Char) 47.63/23.28 new_esEs25(x0, x1, ty_Int) 47.63/23.28 new_esEs23(x0, x1, ty_Char) 47.63/23.28 new_esEs6(Nothing, Nothing, x0) 47.63/23.28 new_ltEs4(Just(x0), Just(x1), ty_Ordering) 47.63/23.28 new_esEs24(x0, x1, app(ty_Maybe, x2)) 47.63/23.28 new_compare5(x0, x1, ty_Bool) 47.63/23.28 new_sr0(Integer(x0), Integer(x1)) 47.63/23.28 new_fsEs(x0) 47.63/23.28 new_ltEs14(Right(x0), Right(x1), x2, ty_Double) 47.63/23.28 new_compare9(@0, @0) 47.63/23.28 new_ltEs18(x0, x1, app(ty_[], x2)) 47.63/23.28 new_esEs25(x0, x1, app(ty_Ratio, x2)) 47.63/23.28 new_ltEs19(x0, x1, ty_Ordering) 47.63/23.28 new_esEs24(x0, x1, ty_Char) 47.63/23.28 new_esEs9(x0, x1, app(ty_[], x2)) 47.63/23.28 new_esEs21(x0, x1, ty_Bool) 47.63/23.28 new_esEs28(x0, x1, app(ty_Maybe, x2)) 47.63/23.28 new_esEs24(x0, x1, ty_Double) 47.63/23.28 new_compare112(x0, x1, False, x2, x3, x4) 47.63/23.28 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 47.63/23.28 new_primPlusNat1(Succ(x0), x1) 47.63/23.28 new_esEs23(x0, x1, ty_Int) 47.63/23.28 new_esEs31(x0, x1, ty_Bool) 47.63/23.28 new_esEs7(Left(x0), Left(x1), ty_Integer, x2) 47.63/23.28 new_esEs22(x0, x1, app(ty_[], x2)) 47.63/23.28 new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_esEs23(x0, x1, ty_@0) 47.63/23.28 new_esEs6(Just(x0), Just(x1), ty_Int) 47.63/23.28 new_ltEs19(x0, x1, ty_Int) 47.63/23.28 new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 47.63/23.28 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_esEs21(x0, x1, app(ty_[], x2)) 47.63/23.28 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 47.63/23.28 new_esEs9(x0, x1, app(ty_Maybe, x2)) 47.63/23.28 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 47.63/23.28 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 47.63/23.28 new_esEs7(Left(x0), Left(x1), ty_Float, x2) 47.63/23.28 new_esEs6(Just(x0), Just(x1), ty_@0) 47.63/23.28 new_lt8(x0, x1, ty_Ordering) 47.63/23.28 new_primPlusNat0(Zero, Zero) 47.63/23.28 new_esEs25(x0, x1, app(ty_[], x2)) 47.63/23.28 new_esEs22(x0, x1, app(ty_Ratio, x2)) 47.63/23.28 new_compare10(x0, x1, True, x2, x3) 47.63/23.28 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 47.63/23.28 new_lt8(x0, x1, ty_Int) 47.63/23.28 new_esEs30(x0, x1, ty_Int) 47.63/23.28 new_ltEs14(Left(x0), Left(x1), ty_@0, x2) 47.63/23.28 new_lt19(x0, x1, ty_@0) 47.63/23.28 new_not(True) 47.63/23.28 new_compare5(x0, x1, app(ty_Ratio, x2)) 47.63/23.28 new_esEs8(:(x0, x1), [], x2) 47.63/23.28 new_compare25(Just(x0), Nothing, False, x1) 47.63/23.28 new_esEs23(x0, x1, ty_Bool) 47.63/23.28 new_esEs22(x0, x1, ty_Char) 47.63/23.28 new_esEs12(EQ, GT) 47.63/23.28 new_esEs12(GT, EQ) 47.63/23.28 new_lt19(x0, x1, ty_Float) 47.63/23.28 new_ltEs14(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 47.63/23.28 new_ltEs13(False, False) 47.63/23.28 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 47.63/23.28 new_esEs25(x0, x1, ty_Double) 47.63/23.28 new_esEs25(x0, x1, ty_@0) 47.63/23.28 new_esEs26(x0, x1, app(ty_Ratio, x2)) 47.63/23.28 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 47.63/23.28 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 47.63/23.28 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 47.63/23.28 new_esEs11(True, True) 47.63/23.28 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_ltEs14(Right(x0), Right(x1), x2, ty_Ordering) 47.63/23.28 new_ltEs15(GT, EQ) 47.63/23.28 new_esEs23(x0, x1, ty_Double) 47.63/23.28 new_ltEs15(EQ, GT) 47.63/23.28 new_ltEs4(Just(x0), Nothing, x1) 47.63/23.28 new_esEs21(x0, x1, ty_Char) 47.63/23.28 new_esEs11(False, True) 47.63/23.28 new_esEs11(True, False) 47.63/23.28 new_compare113(x0, x1, False) 47.63/23.28 new_lt4(x0, x1, x2, x3) 47.63/23.28 new_lt8(x0, x1, ty_Char) 47.63/23.28 new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) 47.63/23.28 new_ltEs20(x0, x1, ty_Integer) 47.63/23.28 new_compare27(x0, x1, False, x2, x3) 47.63/23.28 new_esEs30(x0, x1, ty_Double) 47.63/23.28 new_esEs26(x0, x1, ty_Int) 47.63/23.28 new_primPlusNat0(Zero, Succ(x0)) 47.63/23.28 new_compare5(x0, x1, ty_Integer) 47.63/23.28 new_esEs30(x0, x1, ty_Char) 47.63/23.28 new_primCmpNat0(Succ(x0), Succ(x1)) 47.63/23.28 new_ltEs14(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 47.63/23.28 new_compare31(x0, x1) 47.63/23.28 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 47.63/23.28 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 47.63/23.28 new_esEs9(x0, x1, ty_@0) 47.63/23.28 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 47.63/23.28 new_esEs12(LT, LT) 47.63/23.28 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_esEs21(x0, x1, ty_Int) 47.63/23.28 new_compare26(x0, x1, False, x2, x3) 47.63/23.28 new_ltEs14(Left(x0), Left(x1), ty_Float, x2) 47.63/23.28 new_esEs26(x0, x1, ty_Double) 47.63/23.28 new_esEs22(x0, x1, ty_Int) 47.63/23.28 new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_esEs26(x0, x1, ty_Char) 47.63/23.28 new_esEs21(x0, x1, ty_@0) 47.63/23.28 new_lt14(x0, x1) 47.63/23.28 new_esEs9(x0, x1, ty_Float) 47.63/23.28 new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 47.63/23.28 new_esEs20(x0, x1, ty_Int) 47.63/23.28 new_primCmpInt(Pos(Zero), Pos(Zero)) 47.63/23.28 new_esEs27(x0, x1, app(ty_Maybe, x2)) 47.63/23.28 new_gt1(x0, x1) 47.63/23.28 new_esEs20(x0, x1, ty_Integer) 47.63/23.28 new_compare13(x0, x1, x2, x3, x4) 47.63/23.28 new_esEs22(x0, x1, ty_Double) 47.63/23.28 new_esEs31(x0, x1, ty_Int) 47.63/23.28 new_esEs27(x0, x1, ty_Double) 47.63/23.28 new_esEs14(@0, @0) 47.63/23.28 new_pePe(False, x0) 47.63/23.28 new_ltEs9(x0, x1) 47.63/23.28 new_esEs22(x0, x1, ty_Float) 47.63/23.28 new_ltEs11(@2(x0, x1), @2(x2, x3), x4, x5) 47.63/23.28 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_compare29(x0, x1, False) 47.63/23.28 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 47.63/23.28 new_ltEs14(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 47.63/23.28 new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 47.63/23.28 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 47.63/23.28 new_esEs16(x0, x1) 47.63/23.28 new_esEs26(x0, x1, ty_Bool) 47.63/23.28 new_compare25(Nothing, Nothing, False, x0) 47.63/23.28 new_lt10(x0, x1) 47.63/23.28 new_compare16(x0, x1, x2, x3) 47.63/23.28 new_ltEs14(Right(x0), Left(x1), x2, x3) 47.63/23.28 new_esEs26(x0, x1, ty_@0) 47.63/23.28 new_ltEs14(Left(x0), Right(x1), x2, x3) 47.63/23.28 new_ltEs18(x0, x1, ty_@0) 47.63/23.28 new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) 47.63/23.28 new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 47.63/23.28 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 47.63/23.28 new_esEs31(x0, x1, ty_Char) 47.63/23.28 new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 47.63/23.28 new_ltEs18(x0, x1, ty_Bool) 47.63/23.28 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 47.63/23.28 new_compare5(x0, x1, ty_Float) 47.63/23.28 new_esEs23(x0, x1, app(ty_Ratio, x2)) 47.63/23.28 new_esEs10(Integer(x0), Integer(x1)) 47.63/23.28 new_compare32(x0, x1) 47.63/23.28 new_lt19(x0, x1, app(ty_Ratio, x2)) 47.63/23.28 new_esEs7(Right(x0), Right(x1), x2, ty_Float) 47.63/23.28 new_esEs21(x0, x1, ty_Double) 47.63/23.28 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 47.63/23.28 new_ltEs4(Just(x0), Just(x1), ty_@0) 47.63/23.28 new_esEs7(Right(x0), Right(x1), x2, ty_Int) 47.63/23.28 new_lt12(x0, x1, x2) 47.63/23.28 new_compare5(x0, x1, app(app(ty_Either, x2), x3)) 47.63/23.28 new_lt20(x0, x1, ty_Float) 47.63/23.28 new_ltEs4(Nothing, Nothing, x0) 47.63/23.28 new_esEs26(x0, x1, ty_Integer) 47.63/23.28 new_ltEs10(x0, x1) 47.63/23.28 new_compare5(x0, x1, ty_Int) 47.63/23.28 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 47.63/23.28 new_ltEs14(Right(x0), Right(x1), x2, ty_@0) 47.63/23.28 new_lt20(x0, x1, ty_Ordering) 47.63/23.28 new_ltEs15(EQ, LT) 47.63/23.28 new_ltEs15(LT, EQ) 47.63/23.28 new_esEs30(x0, x1, ty_Bool) 47.63/23.28 new_esEs23(x0, x1, ty_Integer) 47.63/23.28 new_esEs27(x0, x1, app(ty_[], x2)) 47.63/23.28 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 47.63/23.28 new_compare5(x0, x1, app(ty_[], x2)) 47.63/23.28 new_esEs24(x0, x1, ty_Bool) 47.63/23.28 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 47.63/23.28 new_ltEs14(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 47.63/23.28 new_ltEs15(GT, GT) 47.63/23.28 new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 47.63/23.28 new_esEs27(x0, x1, ty_Ordering) 47.63/23.28 new_gt0(x0, x1) 47.63/23.28 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 47.63/23.28 new_esEs26(x0, x1, app(ty_Maybe, x2)) 47.63/23.28 new_compare5(x0, x1, ty_Char) 47.63/23.28 new_lt20(x0, x1, ty_Integer) 47.63/23.28 new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 47.63/23.28 new_ltEs14(Left(x0), Left(x1), ty_Double, x2) 47.63/23.28 new_ltEs19(x0, x1, ty_@0) 47.63/23.28 new_esEs23(x0, x1, app(ty_Maybe, x2)) 47.63/23.28 new_ltEs16(x0, x1) 47.63/23.28 new_lt11(x0, x1) 47.63/23.28 new_ltEs18(x0, x1, ty_Integer) 47.63/23.28 new_primEqNat0(Zero, Zero) 47.63/23.28 new_esEs9(x0, x1, app(ty_Ratio, x2)) 47.63/23.28 new_esEs23(x0, x1, ty_Ordering) 47.63/23.28 new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 47.63/23.28 new_not(False) 47.63/23.28 new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 47.63/23.28 new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 47.63/23.28 new_ltEs20(x0, x1, ty_Bool) 47.63/23.28 new_ltEs19(x0, x1, ty_Double) 47.63/23.28 new_esEs30(x0, x1, ty_Integer) 47.63/23.28 new_ltEs20(x0, x1, ty_Float) 47.63/23.28 new_esEs7(Left(x0), Left(x1), ty_Int, x2) 47.63/23.28 new_lt8(x0, x1, app(ty_Maybe, x2)) 47.63/23.28 new_compare11(Integer(x0), Integer(x1)) 47.63/23.28 new_esEs15(:%(x0, x1), :%(x2, x3), x4) 47.63/23.28 new_primCompAux00(x0, LT) 47.63/23.28 new_compare110(x0, x1, True) 47.63/23.28 new_ltEs15(LT, LT) 47.63/23.28 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 47.63/23.28 new_esEs6(Just(x0), Just(x1), ty_Double) 47.63/23.28 new_lt20(x0, x1, ty_Int) 47.63/23.28 new_lt9(x0, x1) 47.63/23.28 new_ltEs20(x0, x1, ty_Char) 47.63/23.28 new_esEs28(x0, x1, ty_Int) 47.63/23.28 new_lt20(x0, x1, ty_Bool) 47.63/23.28 new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 47.63/23.28 new_esEs31(x0, x1, ty_Float) 47.63/23.28 new_ltEs18(x0, x1, ty_Ordering) 47.63/23.28 new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 47.63/23.28 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 47.63/23.28 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 47.63/23.28 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 47.63/23.28 new_lt20(x0, x1, ty_Char) 47.63/23.28 new_compare24(x0, x1, False) 47.63/23.28 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 47.63/23.28 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 47.63/23.28 new_esEs7(Left(x0), Left(x1), ty_Char, x2) 47.63/23.28 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 47.63/23.28 new_esEs24(x0, x1, ty_Float) 47.63/23.28 new_primPlusNat0(Succ(x0), Succ(x1)) 47.63/23.28 new_compare111(x0, x1, True, x2) 47.63/23.28 new_esEs30(x0, x1, app(ty_[], x2)) 47.63/23.28 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 47.63/23.28 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 47.63/23.28 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 47.63/23.28 new_esEs7(Left(x0), Left(x1), ty_Bool, x2) 47.63/23.28 new_primMulInt(Pos(x0), Neg(x1)) 47.63/23.28 new_primMulInt(Neg(x0), Pos(x1)) 47.63/23.28 new_ltEs4(Just(x0), Just(x1), ty_Double) 47.63/23.28 new_esEs19(x0, x1, ty_Int) 47.63/23.28 new_esEs30(x0, x1, ty_Ordering) 47.63/23.28 new_compare114(x0, x1, True, x2, x3) 47.63/23.28 new_primMulNat0(Zero, Succ(x0)) 47.63/23.28 new_primCmpNat0(Zero, Zero) 47.63/23.28 new_primEqNat0(Zero, Succ(x0)) 47.63/23.29 new_esEs28(x0, x1, ty_Float) 47.63/23.29 new_esEs7(Left(x0), Right(x1), x2, x3) 47.63/23.29 new_esEs7(Right(x0), Left(x1), x2, x3) 47.63/23.29 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 47.63/23.29 new_ltEs20(x0, x1, ty_Int) 47.63/23.29 new_esEs24(x0, x1, app(ty_[], x2)) 47.63/23.29 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 47.63/23.29 new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 47.63/23.29 47.63/23.29 We have to consider all minimal (P,Q,R)-chains. 47.63/23.29 ---------------------------------------- 47.63/23.29 47.63/23.29 (67) QDPSizeChangeProof (EQUIVALENT) 47.63/23.29 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. 47.63/23.29 47.63/23.29 From the DPs we obtained the following set of size-change graphs: 47.63/23.29 *new_splitLT10(yvy300, yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_splitLT(yvy34, h, ba) 47.63/23.29 The graph contains the following edges 5 >= 1, 7 >= 2, 8 >= 3 47.63/23.29 47.63/23.29 47.63/23.29 *new_splitLT3(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitLT2(yvy300, yvy31, yvy32, yvy33, yvy34, new_esEs12(new_compare25(Nothing, Just(yvy300), False, h), LT), h, ba) 47.63/23.29 The graph contains the following edges 1 > 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 7 >= 7, 8 >= 8 47.63/23.29 47.63/23.29 47.63/23.29 *new_splitLT(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), h, ba) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Nothing, h, ba) 47.63/23.29 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 >= 7, 3 >= 8 47.63/23.29 47.63/23.29 47.63/23.29 *new_splitLT2(yvy300, yvy31, yvy32, yvy33, yvy34, False, h, ba) -> new_splitLT10(yvy300, yvy31, yvy32, yvy33, yvy34, new_gt0(yvy300, h), h, ba) 47.63/23.29 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 7 >= 7, 8 >= 8 47.63/23.29 47.63/23.29 47.63/23.29 *new_splitLT3(Nothing, yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitLT1(yvy31, yvy32, yvy33, yvy34, new_gt(h), h, ba) 47.63/23.29 The graph contains the following edges 2 >= 1, 3 >= 2, 4 >= 3, 5 >= 4, 7 >= 6, 8 >= 7 47.63/23.29 47.63/23.29 47.63/23.29 *new_splitLT1(yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_splitLT(yvy34, h, ba) 47.63/23.29 The graph contains the following edges 4 >= 1, 6 >= 2, 7 >= 3 47.63/23.29 47.63/23.29 47.63/23.29 *new_splitLT2(yvy300, yvy31, yvy32, Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy34, True, h, ba) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Nothing, h, ba) 47.63/23.29 The graph contains the following edges 4 > 1, 4 > 2, 4 > 3, 4 > 4, 4 > 5, 7 >= 7, 8 >= 8 47.63/23.29 47.63/23.29 47.63/23.29 ---------------------------------------- 47.63/23.29 47.63/23.29 (68) 47.63/23.29 YES 47.63/23.29 47.63/23.29 ---------------------------------------- 47.63/23.29 47.63/23.29 (69) 47.63/23.29 Obligation: 47.63/23.29 Q DP problem: 47.63/23.29 The TRS P consists of the following rules: 47.63/23.29 47.63/23.29 new_primMulNat(Succ(yvy400100), Succ(yvy300000)) -> new_primMulNat(yvy400100, Succ(yvy300000)) 47.63/23.29 47.63/23.29 R is empty. 47.63/23.29 Q is empty. 47.63/23.29 We have to consider all minimal (P,Q,R)-chains. 47.63/23.29 ---------------------------------------- 47.63/23.29 47.63/23.29 (70) QDPSizeChangeProof (EQUIVALENT) 47.63/23.29 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. 47.63/23.29 47.63/23.29 From the DPs we obtained the following set of size-change graphs: 47.63/23.29 *new_primMulNat(Succ(yvy400100), Succ(yvy300000)) -> new_primMulNat(yvy400100, Succ(yvy300000)) 47.63/23.29 The graph contains the following edges 1 > 1, 2 >= 2 47.63/23.29 47.63/23.29 47.63/23.29 ---------------------------------------- 47.63/23.29 47.63/23.29 (71) 47.63/23.29 YES 47.63/23.29 47.63/23.29 ---------------------------------------- 47.63/23.29 47.63/23.29 (72) 47.63/23.29 Obligation: 47.63/23.29 Q DP problem: 47.63/23.29 The TRS P consists of the following rules: 47.63/23.29 47.63/23.29 new_primEqNat(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat(yvy40000, yvy30000) 47.63/23.29 47.63/23.29 R is empty. 47.63/23.29 Q is empty. 47.63/23.29 We have to consider all minimal (P,Q,R)-chains. 47.63/23.29 ---------------------------------------- 47.63/23.29 47.63/23.29 (73) QDPSizeChangeProof (EQUIVALENT) 47.63/23.29 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. 47.63/23.29 47.63/23.29 From the DPs we obtained the following set of size-change graphs: 47.63/23.29 *new_primEqNat(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat(yvy40000, yvy30000) 47.63/23.29 The graph contains the following edges 1 > 1, 2 > 2 47.63/23.29 47.63/23.29 47.63/23.29 ---------------------------------------- 47.63/23.29 47.63/23.29 (74) 47.63/23.29 YES 47.63/23.29 47.63/23.29 ---------------------------------------- 47.63/23.29 47.63/23.29 (75) 47.63/23.29 Obligation: 47.63/23.29 Q DP problem: 47.63/23.29 The TRS P consists of the following rules: 47.63/23.29 47.63/23.29 new_primMinusNat(Succ(yvy20800), Succ(yvy20700)) -> new_primMinusNat(yvy20800, yvy20700) 47.63/23.29 47.63/23.29 R is empty. 47.63/23.29 Q is empty. 47.63/23.29 We have to consider all minimal (P,Q,R)-chains. 47.63/23.29 ---------------------------------------- 47.63/23.29 47.63/23.29 (76) QDPSizeChangeProof (EQUIVALENT) 47.63/23.29 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. 47.63/23.29 47.63/23.29 From the DPs we obtained the following set of size-change graphs: 47.63/23.29 *new_primMinusNat(Succ(yvy20800), Succ(yvy20700)) -> new_primMinusNat(yvy20800, yvy20700) 47.63/23.29 The graph contains the following edges 1 > 1, 2 > 2 47.63/23.29 47.63/23.29 47.63/23.29 ---------------------------------------- 47.63/23.29 47.63/23.29 (77) 47.63/23.29 YES 47.63/23.29 47.63/23.29 ---------------------------------------- 47.63/23.29 47.63/23.29 (78) 47.63/23.29 Obligation: 47.63/23.29 Q DP problem: 47.63/23.29 The TRS P consists of the following rules: 47.63/23.29 47.63/23.29 new_primPlusNat(Succ(yvy16100), Succ(yvy3000000)) -> new_primPlusNat(yvy16100, yvy3000000) 47.63/23.29 47.63/23.29 R is empty. 47.63/23.29 Q is empty. 47.63/23.29 We have to consider all minimal (P,Q,R)-chains. 47.63/23.29 ---------------------------------------- 47.63/23.29 47.63/23.29 (79) QDPSizeChangeProof (EQUIVALENT) 47.63/23.29 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. 47.63/23.29 47.63/23.29 From the DPs we obtained the following set of size-change graphs: 47.63/23.29 *new_primPlusNat(Succ(yvy16100), Succ(yvy3000000)) -> new_primPlusNat(yvy16100, yvy3000000) 47.63/23.29 The graph contains the following edges 1 > 1, 2 > 2 47.63/23.29 47.63/23.29 47.63/23.29 ---------------------------------------- 47.63/23.29 47.63/23.29 (80) 47.63/23.29 YES 47.63/23.34 EOF